diff --git a/hugo/content/insights/devops-dozen-awards-2025/devops-dozen-2025-dora-report.png b/hugo/content/insights/devops-dozen-awards-2025/devops-dozen-2025-dora-report.png new file mode 100644 index 000000000..e83f79a62 Binary files /dev/null and b/hugo/content/insights/devops-dozen-awards-2025/devops-dozen-2025-dora-report.png differ diff --git a/hugo/content/insights/devops-dozen-awards-2025/devops-dozen-nathen-harvey.png b/hugo/content/insights/devops-dozen-awards-2025/devops-dozen-nathen-harvey.png new file mode 100644 index 000000000..83b3278ff Binary files /dev/null and b/hugo/content/insights/devops-dozen-awards-2025/devops-dozen-nathen-harvey.png differ diff --git a/hugo/content/insights/devops-dozen-awards-2025/index.md b/hugo/content/insights/devops-dozen-awards-2025/index.md new file mode 100644 index 000000000..8ab47fe6d --- /dev/null +++ b/hugo/content/insights/devops-dozen-awards-2025/index.md @@ -0,0 +1,34 @@ +--- +title: "DevOps Dozen Awards 2025" +date: 2026-01-15 +updated: 2026-01-15 +draft: false +# authors: we'll leave this insight authorless +type: "insights" +tags: ["DORA", "Community"] +summary: "The DevOps Dozen Awards are an annual program organized by the Techstrong Group. They honor the most influential individuals, innovative tools, and impactful companies within the DevOps community. DORA and some of our sponsors were nominated as finalists for the awards." +--- + +The [DevOps Dozen Awards](https://devopsdozen.com/) are an annual program organized by the [Techstrong Group](https://techstronggroup.com/). They honor the most influential individuals, innovative tools, and impactful companies within the DevOps community. + +The awards are divided into two main tracks: [Community Awards](https://devopsdozen.com/devops-dozen-2026-community-award-winners/), focusing on people and leadership, and [Tools & Services Awards](https://devopsdozen.com/devops-dozen-2026-tools-and-services-award-winners/), focusing on technology and vendors. Winners are selected through a combination of public voting and a panel of expert judges. + +## Congratulations to DORA! + +The [State of AI-assisted Software Development](/research/2025/dora-report) won in the Best DevOps Survey/Analysis/Research category. + +[![devops-dozen-2025-dora-report](devops-dozen-2025-dora-report.png)](/research/2025/dora-report) + +DORA's lead, [Nathen Harvey](https://www.linkedin.com/in/nathen), won in the Top DevOps Community Evangelist category. + +[![devops-dozen-nathen-harvey](devops-dozen-nathen-harvey.png)](https://www.linkedin.com/in/nathen) + +## Congratulations to the DORA community! + +Here are some of the other winners from across the [DORA community](https://dora.community/). Congratulations to all! + +* **Best DevOps Book of the Year**: [Progressive Delivery](https://progressivedelivery.com/) +* **DevOps Industry Leader of the Year**: [Jyoti Bansal](https://www.linkedin.com/in/jyotibansal/) the CEO of [Harness](https://www.harness.io/?utm_source=dora&utm_medium=referral&utm_content=dora-report), a Gold Sponsor of the [2025 report](/research/2025/dora-report). +* **Best End-to-End DevOps Platform**: [Harness](https://www.harness.io/?utm_source=dora&utm_medium=referral&utm_content=dora-report), a Gold Sponsor of the [2025 report](/research/2025/dora-report). +* **Best Application of Generative AI in a DevOps Tool/Platform**: [Octopus Deploy's](https://octopus.com/?utm_source=DORA-google&utm_medium=referral&utm_campaign=global-082025-dora-report&utm_content=&utm_term=) Octopus AI Assistant. Octopus Deploy is a Gold Sponsor of the [2025 report](/research/2025/dora-report). +* **Best Platform Engineering Solution**: [Harness's](https://www.harness.io/?utm_source=dora&utm_medium=referral&utm_content=dora-report) Harness Internal Developer Portal (IDP). Harness is a Gold Sponsor of the [2025 report](/research/2025/dora-report). diff --git a/test/playwright/tests/insights/devops-dozen-awards-2025.spec.ts b/test/playwright/tests/insights/devops-dozen-awards-2025.spec.ts new file mode 100644 index 000000000..b29568b1a --- /dev/null +++ b/test/playwright/tests/insights/devops-dozen-awards-2025.spec.ts @@ -0,0 +1,20 @@ +import { test, expect } from '@playwright/test'; +import { LAST_UPDATED_DATE_REGEX } from '../constants'; + +test.describe('DevOps Dozen Awards 2025 page', () => { + test.beforeEach(async ({ page }) => { + await page.goto('/insights/devops-dozen-awards-2025/'); + }); + + test('has the correct title.', async ({ page }) => { + await expect(page).toHaveTitle('DORA | DevOps Dozen Awards 2025'); + }); + + test('has the correct header.', async ({ page }) => { + await expect(page.getByRole('heading', { name: 'DevOps Dozen Awards 2025', level: 1 })).toBeVisible(); + }); + + test('displays its last updated date.', async ({ page }) => { + await expect(page.locator('.updated')).toContainText(LAST_UPDATED_DATE_REGEX); + }); +});