[{"data":1,"prerenderedAt":7943},["ShallowReactive",2],{"/de-de/blog/3-best-practices-for-building-software-in-the-era-of-llms":3,"navigation-de-de":35,"banner-de-de":453,"footer-de-de":466,"footer-source-/de-de/blog/3-best-practices-for-building-software-in-the-era-of-llms/":675,"blogAuthors-de-de":681,"next-steps-de-de":7928},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":11,"config":24,"_id":28,"_type":29,"title":30,"_source":31,"_file":32,"_stem":33,"_extension":34},"/de-de/blog/3-best-practices-for-building-software-in-the-era-of-llms","blog",false,"",{"noIndex":6,"title":9,"description":10,"ogTitle":9,"ogDescription":10},"3 Regeln für sichere Softwareentwicklung mit KI/LLMs","81% der Entwickler nutzen bereits KI. Lerne 3 essenzielle Sicherheitspraktiken: Zero-Trust für KI-Code, sicheres Prompting und automatisierte Scans.",{"heroImage":12,"body":13,"authors":14,"updatedDate":16,"date":17,"title":18,"tags":19,"description":22,"category":23},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662523/Blog/Hero%20Images/Gartner_DevOps_Blog_Post_Cover_Image_1800x945__2_.png","KI ist schnell zu einem Kernbestandteil der modernen Softwareentwicklung geworden. Sie hilft Entwickler(innen) nicht nur dabei, schneller als je zuvor zu programmieren, sondern automatisiert auch Low-Level-Aufgaben wie das Schreiben von Testfällen oder das Zusammenfassen von Dokumentationen. Laut unserer [2024 Global DevSecOps Survey](https://about.gitlab.com/de-de/developer-survey/) nutzen bereits 81 % der Entwickler(innen) KI in ihren Workflows oder planen dies in den nächsten zwei Jahren.\n\nDa Code mit weniger manuellem Aufwand geschrieben wird, beobachten wir eine subtile, aber wichtige Verhaltensänderung: Entwickler(innen) beginnen, KI-generiertem Code mit weniger Prüfung zu vertrauen. Dieses Vertrauen – so verständlich es auch sein mag – kann stillschweigend Sicherheitsrisiken einführen, insbesondere wenn das Gesamtvolumen des Codes zunimmt.\n\nVon Entwickler(innen) kann nicht erwartet werden, dass sie über jede Schwachstelle oder jeden Exploit auf dem Laufenden bleiben. Deshalb brauchen wir Systeme und Sicherheitsvorkehrungen, die mit ihnen skalieren. KI-Tools sind gekommen, um zu bleiben. Als Sicherheitsexperten ist es daher die Pflicht, Entwickler(innen) zu befähigen, diese so zu übernehmen, dass sowohl Geschwindigkeit als auch Sicherheit verbessert werden.\n\nHier sind drei praktische Wege, dies zu erreichen.\n\n## Niemals vertrauen, immer verifizieren\n\nWie bereits erwähnt, beginnen Entwickler(innen), KI-generiertem Code bereitwilliger zu vertrauen, besonders wenn er sauber aussieht und fehlerfrei kompiliert. Um dem entgegenzuwirken, sollte eine Zero-Trust-Mentalität angenommen werden. Während oft über [Zero Trust (englischsprachiger Artikel)](https://about.gitlab.com/blog/why-devops-and-zero-trust-go-together/) im Kontext von Identitäts- und Zugriffsmanagement gesprochen wird, kann dasselbe Prinzip hier mit einem etwas anderen Rahmen angewendet werden. KI-generierten Code wie Input von einem Junior-Entwickler behandeln: hilfreich, aber nicht produktionsreif ohne ordnungsgemäße Überprüfung.\n\nEntwickler(innen) sollten erklären können, was der Code tut und warum er sicher ist, bevor er gemergt wird. Die Überprüfung von KI-generiertem Code könnte sich sogar als eine aufkommende Fähigkeit herausstellen, die in der Welt der Softwareentwicklung erforderlich ist. Die Entwickler(innen), die darin sehr gut sind, werden unverzichtbar sein, weil sie die Geschwindigkeit von LLMs mit der Denkweise zur Risikominderung verbinden, um sicheren Code schneller zu produzieren.\n\nHier können Tools wie [GitLab Duo Code Review (englischsprachiger Artikel)](https://docs.gitlab.com/user/project/merge_requests/duo_in_merge_requests/) helfen. Als Feature unseres KI-Begleiters über den gesamten Softwareentwicklungszyklus hinweg bringt es KI in den Code-Review-Prozess – nicht um menschliches Urteilsvermögen zu ersetzen, sondern um es zu verbessern. Durch das Aufzeigen von Fragen, Inkonsistenzen und übersehenen Problemen in den Merge Requests kann KI Entwickler(innen) dabei helfen, mit genau der KI Schritt zu halten, die Entwicklungszyklen beschleunigt.\n\n## Prompts für sichere Muster\n\nLarge Language Models [LLMs (englischsprachiger Artikel)](https://about.gitlab.com/blog/what-is-a-large-language-model-llm/) sind leistungsfähig, aber nur so präzise wie die ihnen gegebenen Prompts. Deshalb wird Prompt Engineering zu einem Kernbestandteil der Arbeit mit KI-Tools. In der Welt der LLMs *ist* die Eingabe die Schnittstelle. Entwickler(innen), die lernen, klare, sicherheitsbewusste Prompts zu schreiben, werden eine Schlüsselrolle beim Aufbau sichererer Software von Anfang an spielen.\n\nBeispielsweise führen vage Anfragen wie „baue ein Login-Formular\" oft zu unsicheren oder zu vereinfachten Ergebnissen. Durch die Einbeziehung von mehr Kontext, wie „baue ein Login-Formular **mit** Eingabevalidierung, Rate Limiting und Hashing, **und** unterstütze Phishing-resistente Authentifizierungsmethoden wie Passkeys\", ist es wahrscheinlicher, dass eine Ausgabe produziert wird, die den Sicherheitsstandards der Organisation entspricht.\n\nAktuelle [Forschung (englischsprachiger Artikel)](https://www.backslash.security/press-releases/backslash-security-reveals-in-new-research-that-gpt-4-1-other-popular-llms-generate-insecure-code-unless-explicitly-prompted) von Backlash Security unterstützt dies. Hiernach verbessere sicheres Prompting die Ergebnisse bei beliebten LLMs. Wenn Entwickler(innen) die Modelle einfach baten, „sicheren Code zu schreiben\", blieben die Erfolgsraten niedrig. Wenn jedoch Prompts auf [OWASP Best Practices (englischsprachiger Artikel)](https://cheatsheetseries.owasp.org/cheatsheets/LLM_Prompt_Injection_Prevention_Cheat_Sheet.html) verwiesen, stieg die Rate der sicheren Code-Generierung.\n\nPrompt Engineering sollte Teil dessen sein, wie Security Champions innerhalb von Entwicklungsteams geschult und befähigt werden. Genau wie sichere Coding-Muster und Threat Modeling gelehrt werden, sollte Entwickler(innen) auch beigebracht werden, wie KI-Tools mit derselben Sicherheitsdenkweise geleitet werden.\n\n> Erfahre mehr mit diesen hilfreichen englischsprachigen [Prompt-Engineering-Tipps](https://docs.gitlab.com/development/ai_features/prompt_engineering/).\n\n## Alles scannen, keine Ausnahmen\n\nDer Aufstieg der KI bedeutet, dass mehr Code schneller mit der gleichen Anzahl von Menschen geschrieben wird. Diese Verschiebung sollte die Denkweise über Sicherheit ändern – nicht nur als abschließende Überprüfung, sondern als ständig aktive Schutzmaßnahme, die in jeden Aspekt des Entwicklungsprozesses eingewoben ist.\n\nMehr Code bedeutet eine größere Angriffsfläche. Und wenn dieser Code teilweise oder vollständig generiert ist, können wir uns nicht allein auf sichere Coding-Praktiken oder individuelle Intuition verlassen, um Risiken zu erkennen. Hier kommt automatisiertes Scannen ins Spiel. [Static Application Security Testing (SAST) (englischsprachiger Artikel)](https://docs.gitlab.com/user/application_security/sast/), [Software Composition Analysis (SCA) (englischsprachiger Artikel)](https://docs.gitlab.com/user/application_security/dependency_scanning/) und [Secret Detection (englischsprachiger Artikel)](https://docs.gitlab.com/user/application_security/secret_detection/) werden zu kritischen Kontrollen, um das Risiko von Secret Leaks, Supply-Chain-Angriffen und Schwachstellen wie SQL-Injections zu mindern. Mit Plattformen wie GitLab ist \\[Application Security] (englischsprachiger Artikel)(https://about.gitlab.com/solutions/application-security-testing/) nativ in den Workflow der Entwickler(innen) integriert, was sie zu einem natürlichen Teil des Entwicklungslebenszyklus macht. Scanner können auch durch das gesamte Programm verfolgen, um sicherzustellen, dass neuer KI-generierter Code sicher ist *im Kontext des gesamten anderen Codes* – das kann schwer zu erkennen sein, wenn nur neuer Code in der IDE oder in einem KI-generierten Patch betrachtet wird.\n\nAber es geht nicht nur ums Scannen, es geht darum, Schritt zu halten. Wenn Entwicklungsteams mit der Geschwindigkeit der KI-unterstützten Entwicklung mithalten wollen, brauchen sie Scans, die schnell, genau und auf Skalierung ausgelegt sind. Genauigkeit ist besonders wichtig. Wenn Scanner Entwickler(innen) mit False Positives überwältigen, besteht das Risiko, das Vertrauen in das System insgesamt zu verlieren.\n\nDer einzige Weg, schnell zu agieren *und* sicher zu bleiben, ist, das Scannen nicht verhandelbar zu machen.\n\nJeder Commit. Jeder Branch. Keine Ausnahmen.\n\n## Sicherer KI-generierter Code mit GitLab\n\nKI verändert die Art und Weise, wie Software entwickelt wird, aber die Grundlagen der sicheren Softwareentwicklung gelten weiterhin. Code muss immer noch überprüft werden. Bedrohungen müssen immer noch getestet werden. Und Sicherheit muss immer noch in die Arbeitsweise eingebettet sein. Bei GitLab haben wir genau das getan.\n\nAls Entwicklerplattform schrauben wir Sicherheit nicht an den Workflow – wir betten sie direkt dort ein, wo Entwickler(innen) bereits arbeiten: in der IDE, in Merge Requests und in der Pipeline. Scans laufen automatisch und relevanter Sicherheitskontext wird angezeigt, um schnellere Behebungszyklen zu ermöglichen. Und da es Teil derselben Plattform ist, auf der Entwickler(innen) Software erstellen, testen und bereitstellen, gibt es weniger Tools zu jonglieren, weniger Kontextwechsel und einen viel reibungsloseren Weg zu sicherem Code.\n\nKI-Funktionen wie [Duo Vulnerability Explanation und Vulnerability Resolution](https://about.gitlab.com/de-de/the-source/ai/understand-and-resolve-vulnerabilities-with-ai-powered-gitlab-duo/) fügen eine weitere Ebene von Geschwindigkeit und Einblick hinzu und helfen Entwickler(innen), Risiken zu verstehen und sie schneller zu beheben, ohne ihren Flow zu unterbrechen.\n\nKI ist keine Abkürzung zur Sicherheit. Aber mit den richtigen Praktiken – und einer Plattform, die Entwickler(innen) dort abholt, wo sie sind – kann sie absolut Teil des Aufbaus von Software sein, die schnell, sicher und skalierbar ist.\n\n> Starte deine [kostenlose Testversion von GitLab Ultimate mit Duo Enterprise](https://about.gitlab.com/de-de/free-trial/) und erlebe, wie es ist, sichere Software schneller zu entwickeln. Mit nativer Sicherheitsprüfung, KI-gestützten Einblicken und einer nahtlosen Entwicklererfahrung hilft GitLab dabei, Sicherheit nach links zu verschieben, ohne zu verlangsamen.",[15],"Salman Ladha","2025-07-22","2025-07-10","3 Best Practices für die Softwareentwicklung im Zeitalter von LLMs",[20,21],"AI/ML","security","Da KI die Entwicklungsgeschwindigkeit transformiert, brauchen Entwickler(innen) neue Sicherheitsgewohnheiten. Erfahre, welche das sind und wie sie im DevSecOps-Workflow eingesetzt werden.","ai-ml",{"featured":25,"template":26,"slug":27},true,"BlogPost","3-best-practices-for-building-software-in-the-era-of-llms","content:de-de:blog:3-best-practices-for-building-software-in-the-era-of-llms.yml","yaml","3 Best Practices For Building Software In The Era Of Llms","content","de-de/blog/3-best-practices-for-building-software-in-the-era-of-llms.yml","de-de/blog/3-best-practices-for-building-software-in-the-era-of-llms","yml",{"_path":36,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"data":38,"_id":449,"_type":29,"title":450,"_source":31,"_file":451,"_stem":452,"_extension":34},"/shared/de-de/main-navigation","de-de",{"logo":39,"freeTrial":44,"sales":49,"login":54,"items":59,"search":390,"minimal":426,"duo":440},{"config":40},{"href":41,"dataGaName":42,"dataGaLocation":43},"/de-de/","gitlab logo","header",{"text":45,"config":46},"Kostenlose Testversion anfordern",{"href":47,"dataGaName":48,"dataGaLocation":43},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":50,"config":51},"Vertrieb kontaktieren",{"href":52,"dataGaName":53,"dataGaLocation":43},"/de-de/sales/","sales",{"text":55,"config":56},"Anmelden",{"href":57,"dataGaName":58,"dataGaLocation":43},"https://gitlab.com/users/sign_in/","sign in",[60,104,201,206,311,371],{"text":61,"config":62,"cards":64,"footer":87},"Plattform",{"dataNavLevelOne":63},"platform",[65,71,79],{"title":61,"description":66,"link":67},"Die umfassendste KI-basierte DevSecOps-Plattform",{"text":68,"config":69},"Erkunde unsere Plattform",{"href":70,"dataGaName":63,"dataGaLocation":43},"/de-de/platform/",{"title":72,"description":73,"link":74},"GitLab Duo (KI)","Entwickle Software schneller mit KI in jeder Phase der Entwicklung",{"text":75,"config":76},"Lerne GitLab Duo kennen",{"href":77,"dataGaName":78,"dataGaLocation":43},"/de-de/gitlab-duo/","gitlab duo ai",{"title":80,"description":81,"link":82},"Gründe, die für GitLab sprechen","10 Gründe, warum Unternehmen sich für GitLab entscheiden",{"text":83,"config":84},"Mehr erfahren",{"href":85,"dataGaName":86,"dataGaLocation":43},"/de-de/why-gitlab/","why gitlab",{"title":88,"items":89},"Erste Schritte mit",[90,95,100],{"text":91,"config":92},"Platform Engineering",{"href":93,"dataGaName":94,"dataGaLocation":43},"/de-de/solutions/platform-engineering/","platform engineering",{"text":96,"config":97},"Entwicklererfahrung",{"href":98,"dataGaName":99,"dataGaLocation":43},"/de-de/developer-experience/","Developer experience",{"text":101,"config":102},"MLOps",{"href":103,"dataGaName":101,"dataGaLocation":43},"/de-de/topics/devops/the-role-of-ai-in-devops/",{"text":105,"left":25,"config":106,"link":108,"lists":112,"footer":183},"Produkt",{"dataNavLevelOne":107},"solutions",{"text":109,"config":110},"Alle Lösungen anzeigen",{"href":111,"dataGaName":107,"dataGaLocation":43},"/de-de/solutions/",[113,139,161],{"title":114,"description":115,"link":116,"items":121},"Automatisierung","CI/CD und Automatisierung zur Beschleunigung der Bereitstellung",{"config":117},{"icon":118,"href":119,"dataGaName":120,"dataGaLocation":43},"AutomatedCodeAlt","/de-de/solutions/delivery-automation/","automated software delivery",[122,126,130,135],{"text":123,"config":124},"CI/CD",{"href":125,"dataGaLocation":43,"dataGaName":123},"/de-de/solutions/continuous-integration/",{"text":127,"config":128},"KI-unterstützte Entwicklung",{"href":77,"dataGaLocation":43,"dataGaName":129},"AI assisted development",{"text":131,"config":132},"Quellcodeverwaltung",{"href":133,"dataGaLocation":43,"dataGaName":134},"/de-de/solutions/source-code-management/","Source Code Management",{"text":136,"config":137},"Automatisierte Softwarebereitstellung",{"href":119,"dataGaLocation":43,"dataGaName":138},"Automated software delivery",{"title":140,"description":141,"link":142,"items":147},"Sicherheit","Entwickle schneller, ohne die Sicherheit zu gefährden",{"config":143},{"href":144,"dataGaName":145,"dataGaLocation":43,"icon":146},"/de-de/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[148,152,157],{"text":149,"config":150},"Application Security Testing",{"href":144,"dataGaName":151,"dataGaLocation":43},"Application security testing",{"text":153,"config":154},"Schutz der Software-Lieferkette",{"href":155,"dataGaLocation":43,"dataGaName":156},"/de-de/solutions/supply-chain/","Software supply chain security",{"text":158,"config":159},"Software Compliance",{"href":160,"dataGaName":158,"dataGaLocation":43},"/de-de/solutions/software-compliance/",{"title":162,"link":163,"items":168},"Bewertung",{"config":164},{"icon":165,"href":166,"dataGaName":167,"dataGaLocation":43},"DigitalTransformation","/de-de/solutions/visibility-measurement/","visibility and measurement",[169,173,178],{"text":170,"config":171},"Sichtbarkeit und Bewertung",{"href":166,"dataGaLocation":43,"dataGaName":172},"Visibility and Measurement",{"text":174,"config":175},"Wertstrommanagement",{"href":176,"dataGaLocation":43,"dataGaName":177},"/de-de/solutions/value-stream-management/","Value Stream Management",{"text":179,"config":180},"Analysen und Einblicke",{"href":181,"dataGaLocation":43,"dataGaName":182},"/de-de/solutions/analytics-and-insights/","Analytics and insights",{"title":184,"items":185},"GitLab für",[186,191,196],{"text":187,"config":188},"Enterprise",{"href":189,"dataGaLocation":43,"dataGaName":190},"/de-de/enterprise/","enterprise",{"text":192,"config":193},"Kleinunternehmen",{"href":194,"dataGaLocation":43,"dataGaName":195},"/de-de/small-business/","small business",{"text":197,"config":198},"den öffentlichen Sektor",{"href":199,"dataGaLocation":43,"dataGaName":200},"/de-de/solutions/public-sector/","public sector",{"text":202,"config":203},"Preise",{"href":204,"dataGaName":205,"dataGaLocation":43,"dataNavLevelOne":205},"/de-de/pricing/","pricing",{"text":207,"config":208,"link":210,"lists":214,"feature":298},"Ressourcen",{"dataNavLevelOne":209},"resources",{"text":211,"config":212},"Alle Ressourcen anzeigen",{"href":213,"dataGaName":209,"dataGaLocation":43},"/de-de/resources/",[215,248,270],{"title":216,"items":217},"Erste Schritte",[218,223,228,233,238,243],{"text":219,"config":220},"Installieren",{"href":221,"dataGaName":222,"dataGaLocation":43},"/de-de/install/","install",{"text":224,"config":225},"Kurzanleitungen",{"href":226,"dataGaName":227,"dataGaLocation":43},"/de-de/get-started/","quick setup checklists",{"text":229,"config":230},"Lernen",{"href":231,"dataGaLocation":43,"dataGaName":232},"https://university.gitlab.com/","learn",{"text":234,"config":235},"Produktdokumentation",{"href":236,"dataGaName":237,"dataGaLocation":43},"https://docs.gitlab.com/","product documentation",{"text":239,"config":240},"Best-Practice-Videos",{"href":241,"dataGaName":242,"dataGaLocation":43},"/de-de/getting-started-videos/","best practice videos",{"text":244,"config":245},"Integrationen",{"href":246,"dataGaName":247,"dataGaLocation":43},"/de-de/integrations/","integrations",{"title":249,"items":250},"Entdecken",[251,256,260,265],{"text":252,"config":253},"Kundenerfolge",{"href":254,"dataGaName":255,"dataGaLocation":43},"/de-de/customers/","customer success stories",{"text":257,"config":258},"Blog",{"href":259,"dataGaName":5,"dataGaLocation":43},"/de-de/blog/",{"text":261,"config":262},"Remote",{"href":263,"dataGaName":264,"dataGaLocation":43},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":266,"config":267},"TeamOps",{"href":268,"dataGaName":269,"dataGaLocation":43},"/de-de/teamops/","teamops",{"title":271,"items":272},"Vernetzen",[273,278,283,288,293],{"text":274,"config":275},"GitLab-Services",{"href":276,"dataGaName":277,"dataGaLocation":43},"/de-de/services/","services",{"text":279,"config":280},"Community",{"href":281,"dataGaName":282,"dataGaLocation":43},"/community/","community",{"text":284,"config":285},"Forum",{"href":286,"dataGaName":287,"dataGaLocation":43},"https://forum.gitlab.com/","forum",{"text":289,"config":290},"Veranstaltungen",{"href":291,"dataGaName":292,"dataGaLocation":43},"/events/","events",{"text":294,"config":295},"Partner",{"href":296,"dataGaName":297,"dataGaLocation":43},"/de-de/partners/","partners",{"backgroundColor":299,"textColor":300,"text":301,"image":302,"link":306},"#2f2a6b","#fff","Perspektiven für die Softwareentwicklung der Zukunft",{"altText":303,"config":304},"the source promo card",{"src":305},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":307,"config":308},"Lies die News",{"href":309,"dataGaName":310,"dataGaLocation":43},"/de-de/the-source/","the source",{"text":312,"config":313,"lists":315},"Unternehmen",{"dataNavLevelOne":314},"company",[316],{"items":317},[318,323,329,331,336,341,346,351,356,361,366],{"text":319,"config":320},"Über",{"href":321,"dataGaName":322,"dataGaLocation":43},"/de-de/company/","about",{"text":324,"config":325,"footerGa":328},"Karriere",{"href":326,"dataGaName":327,"dataGaLocation":43},"/jobs/","jobs",{"dataGaName":327},{"text":289,"config":330},{"href":291,"dataGaName":292,"dataGaLocation":43},{"text":332,"config":333},"Geschäftsführung",{"href":334,"dataGaName":335,"dataGaLocation":43},"/company/team/e-group/","leadership",{"text":337,"config":338},"Team",{"href":339,"dataGaName":340,"dataGaLocation":43},"/company/team/","team",{"text":342,"config":343},"Handbuch",{"href":344,"dataGaName":345,"dataGaLocation":43},"https://handbook.gitlab.com/","handbook",{"text":347,"config":348},"Investor Relations",{"href":349,"dataGaName":350,"dataGaLocation":43},"https://ir.gitlab.com/","investor relations",{"text":352,"config":353},"Trust Center",{"href":354,"dataGaName":355,"dataGaLocation":43},"/de-de/security/","trust center",{"text":357,"config":358},"AI Transparency Center",{"href":359,"dataGaName":360,"dataGaLocation":43},"/de-de/ai-transparency-center/","ai transparency center",{"text":362,"config":363},"Newsletter",{"href":364,"dataGaName":365,"dataGaLocation":43},"/company/contact/","newsletter",{"text":367,"config":368},"Presse",{"href":369,"dataGaName":370,"dataGaLocation":43},"/press/","press",{"text":372,"config":373,"lists":374},"Kontakt",{"dataNavLevelOne":314},[375],{"items":376},[377,380,385],{"text":50,"config":378},{"href":52,"dataGaName":379,"dataGaLocation":43},"talk to sales",{"text":381,"config":382},"Support",{"href":383,"dataGaName":384,"dataGaLocation":43},"/support/","get help",{"text":386,"config":387},"Kundenportal",{"href":388,"dataGaName":389,"dataGaLocation":43},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":391,"login":392,"suggestions":399},"Schließen",{"text":393,"link":394},"Um Repositories und Projekte zu durchsuchen, melde dich an bei",{"text":395,"config":396},"gitlab.com",{"href":57,"dataGaName":397,"dataGaLocation":398},"search login","search",{"text":400,"default":401},"Vorschläge",[402,405,410,412,417,422],{"text":72,"config":403},{"href":77,"dataGaName":404,"dataGaLocation":398},"GitLab Duo (AI)",{"text":406,"config":407},"Code Suggestions (KI)",{"href":408,"dataGaName":409,"dataGaLocation":398},"/de-de/solutions/code-suggestions/","Code Suggestions (AI)",{"text":123,"config":411},{"href":125,"dataGaName":123,"dataGaLocation":398},{"text":413,"config":414},"GitLab auf AWS",{"href":415,"dataGaName":416,"dataGaLocation":398},"/de-de/partners/technology-partners/aws/","GitLab on AWS",{"text":418,"config":419},"GitLab auf Google Cloud",{"href":420,"dataGaName":421,"dataGaLocation":398},"/de-de/partners/technology-partners/google-cloud-platform/","GitLab on Google Cloud",{"text":423,"config":424},"Warum GitLab?",{"href":85,"dataGaName":425,"dataGaLocation":398},"Why GitLab?",{"freeTrial":427,"mobileIcon":432,"desktopIcon":437},{"text":428,"config":429},"Kostenlos testen",{"href":430,"dataGaName":48,"dataGaLocation":431},"https://gitlab.com/-/trials/new/","nav",{"altText":433,"config":434},"GitLab-Symbol",{"src":435,"dataGaName":436,"dataGaLocation":431},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":433,"config":438},{"src":439,"dataGaName":436,"dataGaLocation":431},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":441,"mobileIcon":445,"desktopIcon":447},{"text":442,"config":443},"Erfahre mehr über GitLab Duo",{"href":77,"dataGaName":444,"dataGaLocation":431},"gitlab duo",{"altText":433,"config":446},{"src":435,"dataGaName":436,"dataGaLocation":431},{"altText":433,"config":448},{"src":439,"dataGaName":436,"dataGaLocation":431},"content:shared:de-de:main-navigation.yml","Main Navigation","shared/de-de/main-navigation.yml","shared/de-de/main-navigation",{"_path":454,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"title":455,"button":456,"config":461,"_id":463,"_type":29,"_source":31,"_file":464,"_stem":465,"_extension":34},"/shared/de-de/banner","GitLab Duo Agent Platform ist jetzt in öffentlicher Beta!",{"text":457,"config":458},"Beta testen",{"href":459,"dataGaName":460,"dataGaLocation":43},"/de-de/gitlab-duo/agent-platform/","duo banner",{"layout":462},"release","content:shared:de-de:banner.yml","shared/de-de/banner.yml","shared/de-de/banner",{"_path":467,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"data":468,"_id":671,"_type":29,"title":672,"_source":31,"_file":673,"_stem":674,"_extension":34},"/shared/de-de/main-footer",{"text":469,"source":470,"edit":476,"contribute":481,"config":486,"items":491,"minimal":663},"Git ist eine Marke von Software Freedom Conservancy und unsere Verwendung von „GitLab“ erfolgt unter Lizenz.",{"text":471,"config":472},"Quelltext der Seite anzeigen",{"href":473,"dataGaName":474,"dataGaLocation":475},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":477,"config":478},"Diese Seite bearbeiten",{"href":479,"dataGaName":480,"dataGaLocation":475},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":482,"config":483},"Beteilige dich",{"href":484,"dataGaName":485,"dataGaLocation":475},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":487,"facebook":488,"youtube":489,"linkedin":490},"https://x.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[492,515,570,599,633],{"title":61,"links":493,"subMenu":498},[494],{"text":495,"config":496},"DevSecOps-Plattform",{"href":70,"dataGaName":497,"dataGaLocation":475},"devsecops platform",[499],{"title":202,"links":500},[501,505,510],{"text":502,"config":503},"Tarife anzeigen",{"href":204,"dataGaName":504,"dataGaLocation":475},"view plans",{"text":506,"config":507},"Vorteile von Premium",{"href":508,"dataGaName":509,"dataGaLocation":475},"/de-de/pricing/premium/","why premium",{"text":511,"config":512},"Vorteile von Ultimate",{"href":513,"dataGaName":514,"dataGaLocation":475},"/de-de/pricing/ultimate/","why ultimate",{"title":516,"links":517},"Lösungen",[518,523,526,528,533,538,542,545,548,553,555,557,560,565],{"text":519,"config":520},"Digitale Transformation",{"href":521,"dataGaName":522,"dataGaLocation":475},"/de-de/topics/digital-transformation/","digital transformation",{"text":524,"config":525},"Sicherheit und Compliance",{"href":144,"dataGaName":151,"dataGaLocation":475},{"text":136,"config":527},{"href":119,"dataGaName":120,"dataGaLocation":475},{"text":529,"config":530},"Agile Entwicklung",{"href":531,"dataGaName":532,"dataGaLocation":475},"/de-de/solutions/agile-delivery/","agile delivery",{"text":534,"config":535},"Cloud-Transformation",{"href":536,"dataGaName":537,"dataGaLocation":475},"/de-de/topics/cloud-native/","cloud transformation",{"text":539,"config":540},"SCM",{"href":133,"dataGaName":541,"dataGaLocation":475},"source code management",{"text":123,"config":543},{"href":125,"dataGaName":544,"dataGaLocation":475},"continuous integration & delivery",{"text":174,"config":546},{"href":176,"dataGaName":547,"dataGaLocation":475},"value stream management",{"text":549,"config":550},"GitOps",{"href":551,"dataGaName":552,"dataGaLocation":475},"/de-de/solutions/gitops/","gitops",{"text":187,"config":554},{"href":189,"dataGaName":190,"dataGaLocation":475},{"text":192,"config":556},{"href":194,"dataGaName":195,"dataGaLocation":475},{"text":558,"config":559},"Öffentlicher Sektor",{"href":199,"dataGaName":200,"dataGaLocation":475},{"text":561,"config":562},"Bildungswesen",{"href":563,"dataGaName":564,"dataGaLocation":475},"/de-de/solutions/education/","education",{"text":566,"config":567},"Finanzdienstleistungen",{"href":568,"dataGaName":569,"dataGaLocation":475},"/de-de/solutions/finance/","financial services",{"title":207,"links":571},[572,574,576,578,581,583,585,587,589,591,593,595,597],{"text":219,"config":573},{"href":221,"dataGaName":222,"dataGaLocation":475},{"text":224,"config":575},{"href":226,"dataGaName":227,"dataGaLocation":475},{"text":229,"config":577},{"href":231,"dataGaName":232,"dataGaLocation":475},{"text":234,"config":579},{"href":236,"dataGaName":580,"dataGaLocation":475},"docs",{"text":257,"config":582},{"href":259,"dataGaName":5,"dataGaLocation":475},{"text":252,"config":584},{"href":254,"dataGaName":255,"dataGaLocation":475},{"text":261,"config":586},{"href":263,"dataGaName":264,"dataGaLocation":475},{"text":274,"config":588},{"href":276,"dataGaName":277,"dataGaLocation":475},{"text":266,"config":590},{"href":268,"dataGaName":269,"dataGaLocation":475},{"text":279,"config":592},{"href":281,"dataGaName":282,"dataGaLocation":475},{"text":284,"config":594},{"href":286,"dataGaName":287,"dataGaLocation":475},{"text":289,"config":596},{"href":291,"dataGaName":292,"dataGaLocation":475},{"text":294,"config":598},{"href":296,"dataGaName":297,"dataGaLocation":475},{"title":312,"links":600},[601,603,605,607,609,611,613,617,622,624,626,628],{"text":319,"config":602},{"href":321,"dataGaName":314,"dataGaLocation":475},{"text":324,"config":604},{"href":326,"dataGaName":327,"dataGaLocation":475},{"text":332,"config":606},{"href":334,"dataGaName":335,"dataGaLocation":475},{"text":337,"config":608},{"href":339,"dataGaName":340,"dataGaLocation":475},{"text":342,"config":610},{"href":344,"dataGaName":345,"dataGaLocation":475},{"text":347,"config":612},{"href":349,"dataGaName":350,"dataGaLocation":475},{"text":614,"config":615},"Sustainability",{"href":616,"dataGaName":614,"dataGaLocation":475},"/sustainability/",{"text":618,"config":619},"Vielfalt, Inklusion und Zugehörigkeit",{"href":620,"dataGaName":621,"dataGaLocation":475},"/de-de/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":352,"config":623},{"href":354,"dataGaName":355,"dataGaLocation":475},{"text":362,"config":625},{"href":364,"dataGaName":365,"dataGaLocation":475},{"text":367,"config":627},{"href":369,"dataGaName":370,"dataGaLocation":475},{"text":629,"config":630},"Transparenzerklärung zu moderner Sklaverei",{"href":631,"dataGaName":632,"dataGaLocation":475},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":634,"links":635},"Nimm Kontakt auf",[636,639,641,643,648,653,658],{"text":637,"config":638},"Sprich mit einem Experten/einer Expertin",{"href":52,"dataGaName":53,"dataGaLocation":475},{"text":381,"config":640},{"href":383,"dataGaName":384,"dataGaLocation":475},{"text":386,"config":642},{"href":388,"dataGaName":389,"dataGaLocation":475},{"text":644,"config":645},"Status",{"href":646,"dataGaName":647,"dataGaLocation":475},"https://status.gitlab.com/","status",{"text":649,"config":650},"Nutzungsbedingungen",{"href":651,"dataGaName":652,"dataGaLocation":475},"/terms/","terms of use",{"text":654,"config":655},"Datenschutzerklärung",{"href":656,"dataGaName":657,"dataGaLocation":475},"/de-de/privacy/","privacy statement",{"text":659,"config":660},"Cookie-Einstellungen",{"dataGaName":661,"dataGaLocation":475,"id":662,"isOneTrustButton":25},"cookie preferences","ot-sdk-btn",{"items":664},[665,667,669],{"text":649,"config":666},{"href":651,"dataGaName":652,"dataGaLocation":475},{"text":654,"config":668},{"href":656,"dataGaName":657,"dataGaLocation":475},{"text":659,"config":670},{"dataGaName":661,"dataGaLocation":475,"id":662,"isOneTrustButton":25},"content:shared:de-de:main-footer.yml","Main Footer","shared/de-de/main-footer.yml","shared/de-de/main-footer",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":676,"content":677,"config":680,"_id":28,"_type":29,"title":30,"_source":31,"_file":32,"_stem":33,"_extension":34},{"noIndex":6,"title":9,"description":10,"ogTitle":9,"ogDescription":10},{"heroImage":12,"body":13,"authors":678,"updatedDate":16,"date":17,"title":18,"tags":679,"description":22,"category":23},[15],[20,21],{"featured":25,"template":26,"slug":27},[682,695,706,717,728,739,750,761,771,781,792,803,813,824,835,845,855,865,875,886,896,906,916,927,938,948,959,970,980,991,1001,1012,1023,1034,1045,1055,1066,1077,1087,1098,1108,1119,1130,1140,1150,1161,1171,1181,1191,1202,1213,1224,1235,1245,1256,1267,1278,1289,1299,1310,1322,1333,1344,1354,1366,1377,1387,1398,1408,1419,1429,1440,1451,1461,1471,1481,1492,1502,1512,1522,1532,1543,1553,1564,1574,1585,1595,1605,1615,1626,1637,1648,1659,1670,1682,1692,1703,1713,1724,1735,1746,1757,1767,1778,1789,1800,1811,1821,1832,1843,1854,1864,1877,1887,1898,1909,1920,1930,1941,1952,1963,1973,1983,1993,2003,2014,2024,2034,2045,2055,2066,2076,2087,2098,2108,2119,2129,2139,2149,2160,2170,2180,2191,2202,2212,2223,2234,2245,2255,2268,2279,2289,2301,2313,2323,2333,2344,2354,2365,2377,2388,2399,2410,2422,2433,2443,2453,2464,2474,2484,2495,2506,2516,2527,2538,2548,2558,2569,2580,2590,2601,2611,2622,2633,2644,2654,2664,2675,2686,2696,2706,2717,2729,2739,2749,2759,2770,2781,2791,2801,2811,2821,2831,2842,2853,2863,2874,2884,2894,2904,2914,2924,2935,2945,2955,2966,2976,2986,2997,3008,3018,3030,3040,3050,3062,3073,3084,3094,3105,3116,3127,3137,3149,3160,3170,3181,3192,3203,3214,3225,3236,3247,3257,3268,3279,3290,3300,3310,3321,3331,3341,3352,3363,3376,3387,3398,3408,3419,3431,3442,3453,3464,3474,3484,3495,3505,3516,3527,3538,3548,3558,3568,3578,3589,3600,3611,3622,3634,3645,3657,3668,3678,3688,3700,3710,3721,3731,3742,3752,3762,3773,3785,3795,3805,3815,3826,3836,3847,3857,3867,3878,3889,3900,3912,3923,3933,3944,3955,3965,3975,3986,3997,4008,4019,4029,4040,4051,4062,4072,4083,4094,4104,4115,4126,4137,4147,4157,4168,4179,4189,4200,4211,4222,4232,4242,4253,4264,4275,4286,4297,4307,4318,4329,4339,4349,4359,4371,4383,4393,4405,4415,4426,4437,4448,4459,4472,4482,4493,4504,4514,4524,4534,4545,4555,4566,4577,4587,4598,4608,4619,4630,4641,4652,4663,4674,4684,4694,4705,4716,4726,4736,4746,4757,4768,4778,4788,4798,4808,4819,4829,4839,4850,4860,4871,4881,4892,4903,4913,4923,4934,4944,4954,4965,4976,4987,4998,5008,5020,5031,5042,5052,5062,5072,5083,5094,5105,5116,5126,5137,5148,5158,5169,5181,5191,5201,5211,5222,5233,5244,5254,5264,5275,5286,5296,5308,5318,5328,5339,5349,5360,5372,5383,5393,5404,5415,5425,5436,5447,5459,5469,5479,5490,5500,5511,5521,5532,5542,5552,5563,5573,5584,5594,5604,5615,5625,5636,5647,5657,5667,5678,5688,5698,5708,5718,5729,5740,5752,5763,5774,5786,5798,5809,5820,5830,5841,5851,5861,5872,5883,5894,5904,5914,5924,5934,5944,5955,5967,5978,5990,6001,6011,6021,6032,6042,6052,6062,6072,6082,6092,6103,6113,6123,6134,6144,6154,6165,6176,6186,6198,6209,6219,6231,6242,6252,6263,6274,6284,6294,6304,6316,6326,6337,6348,6359,6370,6380,6390,6401,6413,6423,6433,6444,6454,6465,6475,6487,6498,6508,6518,6529,6541,6551,6564,6574,6586,6597,6607,6617,6628,6638,6649,6660,6671,6682,6693,6703,6714,6725,6736,6747,6758,6769,6780,6791,6802,6812,6825,6835,6846,6856,6867,6877,6887,6898,6909,6920,6930,6940,6951,6961,6972,6983,6995,7006,7016,7027,7038,7048,7058,7068,7078,7088,7099,7109,7120,7130,7141,7156,7167,7177,7188,7199,7210,7221,7232,7242,7253,7264,7275,7285,7296,7306,7316,7326,7336,7346,7357,7369,7379,7390,7401,7413,7423,7434,7444,7456,7467,7477,7487,7498,7509,7519,7530,7540,7550,7561,7572,7583,7594,7604,7615,7626,7636,7646,7656,7667,7678,7688,7698,7709,7720,7730,7740,7750,7761,7771,7782,7793,7804,7814,7824,7834,7844,7855,7866,7876,7886,7896,7906,7917],{"_path":683,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":685,"config":690,"_id":692,"_type":29,"title":686,"_source":31,"_file":693,"_stem":694,"_extension":34},"/en-us/blog/authors/aakriti-gupta","authors",{"name":686,"config":687},"Aakriti Gupta",{"headshot":688,"ctfId":689},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":691},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":696,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":697,"config":701,"_id":702,"_type":29,"title":703,"_source":31,"_file":704,"_stem":705,"_extension":34},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":698,"config":699},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":700},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":691},"content:en-us:blog:authors:aaron-peters-member-good-docs-project.yml","Aaron Peters Member Good Docs Project","en-us/blog/authors/aaron-peters-member-good-docs-project.yml","en-us/blog/authors/aaron-peters-member-good-docs-project",{"_path":707,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":708,"config":713,"_id":714,"_type":29,"title":709,"_source":31,"_file":715,"_stem":716,"_extension":34},"/en-us/blog/authors/aathira-nair",{"name":709,"config":710},"Aathira Nair",{"headshot":711,"ctfId":712},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":691},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":718,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":719,"config":724,"_id":725,"_type":29,"title":720,"_source":31,"_file":726,"_stem":727,"_extension":34},"/en-us/blog/authors/abdulkader-benchi",{"name":720,"config":721},"Abdulkader Benchi",{"headshot":722,"ctfId":723},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":691},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":729,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":730,"config":735,"_id":736,"_type":29,"title":731,"_source":31,"_file":737,"_stem":738,"_extension":34},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":731,"config":732},"Abubakar Siddiq Ango",{"headshot":733,"ctfId":734},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":691},"content:en-us:blog:authors:abubakar-siddiq-ango.yml","en-us/blog/authors/abubakar-siddiq-ango.yml","en-us/blog/authors/abubakar-siddiq-ango",{"_path":740,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":741,"config":746,"_id":747,"_type":29,"title":742,"_source":31,"_file":748,"_stem":749,"_extension":34},"/en-us/blog/authors/achilleas-pipinellis",{"name":742,"config":743},"Achilleas Pipinellis",{"headshot":744,"ctfId":745},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":691},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":751,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":752,"config":756,"_id":757,"_type":29,"title":758,"_source":31,"_file":759,"_stem":760,"_extension":34},"/en-us/blog/authors/adfinis-sygroup",{"name":753,"config":754},"Adfinis SyGroup",{"headshot":722,"ctfId":755},"Adfinis-SyGroup",{"template":691},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":762,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":763,"config":767,"_id":768,"_type":29,"title":764,"_source":31,"_file":769,"_stem":770,"_extension":34},"/en-us/blog/authors/ahmet-kizilay",{"name":764,"config":765},"Ahmet Kizilay",{"headshot":722,"ctfId":766},"Ahmet-Kizilay",{"template":691},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":772,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":773,"config":777,"_id":778,"_type":29,"title":774,"_source":31,"_file":779,"_stem":780,"_extension":34},"/en-us/blog/authors/akashdeep-dhar",{"name":774,"config":775},"Akashdeep Dhar",{"headshot":7,"ctfId":776},"t0xic0der",{"template":691},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":782,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":783,"config":788,"_id":789,"_type":29,"title":784,"_source":31,"_file":790,"_stem":791,"_extension":34},"/en-us/blog/authors/alana-bellucci",{"name":784,"config":785},"Alana Bellucci",{"headshot":786,"ctfId":787},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":691},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":793,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":794,"config":799,"_id":800,"_type":29,"title":795,"_source":31,"_file":801,"_stem":802,"_extension":34},"/en-us/blog/authors/alex-fracazo",{"name":795,"config":796},"Alex Fracazo",{"headshot":797,"ctfId":798},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":691},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":804,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":805,"config":809,"_id":810,"_type":29,"title":806,"_source":31,"_file":811,"_stem":812,"_extension":34},"/en-us/blog/authors/alex-groleau",{"name":806,"config":807},"Alex Groleau",{"headshot":722,"ctfId":808},"3VVHytQSHu9ehZgsUEJ3qq",{"template":691},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":814,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":815,"config":820,"_id":821,"_type":29,"title":816,"_source":31,"_file":822,"_stem":823,"_extension":34},"/en-us/blog/authors/alex-mark",{"name":816,"config":817},"Alex Mark",{"headshot":818,"ctfId":819},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":691},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":825,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":826,"config":831,"_id":832,"_type":29,"title":827,"_source":31,"_file":833,"_stem":834,"_extension":34},"/en-us/blog/authors/alex-martin",{"name":827,"config":828},"Alex Martin",{"headshot":829,"ctfId":830},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":691},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":836,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":837,"config":841,"_id":842,"_type":29,"title":838,"_source":31,"_file":843,"_stem":844,"_extension":34},"/en-us/blog/authors/alexander-dietrich",{"name":838,"config":839},"Alexander Dietrich",{"headshot":722,"ctfId":840},"2CzeEOPVjjGKpdblIm0JfO",{"template":691},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":846,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":847,"config":851,"_id":852,"_type":29,"title":848,"_source":31,"_file":853,"_stem":854,"_extension":34},"/en-us/blog/authors/alexander-malaev",{"name":848,"config":849},"Alexander Malaev",{"headshot":722,"ctfId":850},"Alexander-Malaev",{"template":691},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":856,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":857,"config":861,"_id":862,"_type":29,"title":858,"_source":31,"_file":863,"_stem":864,"_extension":34},"/en-us/blog/authors/alexander-pereverzevs",{"name":858,"config":859},"Alexander Pereverzevs",{"headshot":7,"ctfId":860},"lokalise",{"template":691},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":866,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":867,"config":871,"_id":872,"_type":29,"title":868,"_source":31,"_file":873,"_stem":874,"_extension":34},"/en-us/blog/authors/alexis-ginsberg",{"name":868,"config":869},"Alexis Ginsberg",{"headshot":722,"ctfId":870},"lmDIchpcDx48jKuke2B4l",{"template":691},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":876,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":877,"config":882,"_id":883,"_type":29,"title":878,"_source":31,"_file":884,"_stem":885,"_extension":34},"/en-us/blog/authors/allie-holland",{"name":878,"config":879},"Allie Holland",{"headshot":880,"ctfId":881},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":691},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":887,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":888,"config":892,"_id":893,"_type":29,"title":889,"_source":31,"_file":894,"_stem":895,"_extension":34},"/en-us/blog/authors/allison-whilden",{"name":889,"config":890},"Allison Whilden",{"headshot":722,"ctfId":891},"Allison-Whilden",{"template":691},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":897,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":898,"config":902,"_id":903,"_type":29,"title":899,"_source":31,"_file":904,"_stem":905,"_extension":34},"/en-us/blog/authors/alyssa-rock",{"name":899,"config":900},"Alyssa Rock",{"headshot":722,"ctfId":901},"4T2hddEfeK0Kp1zF8Ncvej",{"template":691},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":907,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":908,"config":912,"_id":913,"_type":29,"title":909,"_source":31,"_file":914,"_stem":915,"_extension":34},"/en-us/blog/authors/amanda-folson",{"name":909,"config":910},"Amanda Folson",{"headshot":722,"ctfId":911},"Amanda-Folson",{"template":691},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":917,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":918,"config":923,"_id":924,"_type":29,"title":919,"_source":31,"_file":925,"_stem":926,"_extension":34},"/en-us/blog/authors/amanda-rueda",{"name":919,"config":920},"Amanda Rueda",{"headshot":921,"ctfId":922},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":691},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":928,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":929,"config":934,"_id":935,"_type":29,"title":930,"_source":31,"_file":936,"_stem":937,"_extension":34},"/en-us/blog/authors/amar-patel",{"name":930,"config":931},"Amar Patel",{"headshot":932,"ctfId":933},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":691},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":939,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":940,"config":944,"_id":945,"_type":29,"title":941,"_source":31,"_file":946,"_stem":947,"_extension":34},"/en-us/blog/authors/amara-nwaigwe",{"name":941,"config":942},"Amara Nwaigwe",{"headshot":722,"ctfId":943},"Amara-Nwaigwe",{"template":691},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":949,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":950,"config":955,"_id":956,"_type":29,"title":951,"_source":31,"_file":957,"_stem":958,"_extension":34},"/en-us/blog/authors/amelia-bauerly",{"name":951,"config":952},"Amelia Bauerly",{"headshot":953,"ctfId":954},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":691},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":960,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":961,"config":966,"_id":967,"_type":29,"title":962,"_source":31,"_file":968,"_stem":969,"_extension":34},"/en-us/blog/authors/ameya-darshan",{"name":962,"config":963},"Ameya Darshan",{"headshot":964,"ctfId":965},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":691},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":971,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":972,"config":976,"_id":977,"_type":29,"title":973,"_source":31,"_file":978,"_stem":979,"_extension":34},"/en-us/blog/authors/andrea-borga",{"name":973,"config":974},"Andrea Borga",{"headshot":722,"ctfId":975},"6dPpfov6kpNcMdmyHyhKcN",{"template":691},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":981,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":982,"config":987,"_id":988,"_type":29,"title":983,"_source":31,"_file":989,"_stem":990,"_extension":34},"/en-us/blog/authors/andreas-brandl",{"name":983,"config":984},"Andreas Brandl",{"headshot":985,"ctfId":986},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":691},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":992,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":993,"config":997,"_id":998,"_type":29,"title":994,"_source":31,"_file":999,"_stem":1000,"_extension":34},"/en-us/blog/authors/andrew-chilton",{"name":994,"config":995},"Andrew Chilton",{"headshot":7,"ctfId":996},"chilts",{"template":691},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":1002,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1003,"config":1008,"_id":1009,"_type":29,"title":1004,"_source":31,"_file":1010,"_stem":1011,"_extension":34},"/en-us/blog/authors/andrew-fontaine",{"name":1004,"config":1005},"Andrew Fontaine",{"headshot":1006,"ctfId":1007},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":691},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1013,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1014,"config":1019,"_id":1020,"_type":29,"title":1015,"_source":31,"_file":1021,"_stem":1022,"_extension":34},"/en-us/blog/authors/andrew-kelly",{"name":1015,"config":1016},"Andrew Kelly",{"headshot":1017,"ctfId":1018},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":691},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1024,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1025,"config":1030,"_id":1031,"_type":29,"title":1026,"_source":31,"_file":1032,"_stem":1033,"_extension":34},"/en-us/blog/authors/andrew-newdigate",{"name":1026,"config":1027},"Andrew Newdigate",{"headshot":1028,"ctfId":1029},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":691},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1035,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1036,"config":1041,"_id":1042,"_type":29,"title":1037,"_source":31,"_file":1043,"_stem":1044,"_extension":34},"/en-us/blog/authors/andrew-patterson",{"name":1037,"config":1038},"Andrew Patterson",{"headshot":1039,"ctfId":1040},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":691},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1046,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1047,"config":1051,"_id":1052,"_type":29,"title":1048,"_source":31,"_file":1053,"_stem":1054,"_extension":34},"/en-us/blog/authors/andrew-taylor",{"name":1048,"config":1049},"Andrew Taylor",{"headshot":722,"ctfId":1050},"Andrew-Taylor",{"template":691},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1056,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1057,"config":1062,"_id":1063,"_type":29,"title":1058,"_source":31,"_file":1064,"_stem":1065,"_extension":34},"/en-us/blog/authors/andrew-thomas",{"name":1058,"config":1059},"Andrew Thomas",{"headshot":1060,"ctfId":1061},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":691},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1067,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1068,"config":1073,"_id":1074,"_type":29,"title":1069,"_source":31,"_file":1075,"_stem":1076,"_extension":34},"/en-us/blog/authors/andy-bradfield",{"name":1069,"role":1070,"config":1071},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1072},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":691},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1078,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1079,"config":1083,"_id":1084,"_type":29,"title":1080,"_source":31,"_file":1085,"_stem":1086,"_extension":34},"/en-us/blog/authors/andy-rogers",{"name":1080,"config":1081},"Andy Rogers",{"headshot":722,"ctfId":1082},"Andy-Rogers",{"template":691},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1088,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1089,"config":1094,"_id":1095,"_type":29,"title":1090,"_source":31,"_file":1096,"_stem":1097,"_extension":34},"/en-us/blog/authors/andy-volpe",{"name":1090,"config":1091},"Andy Volpe",{"headshot":1092,"ctfId":1093},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":691},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1099,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1100,"config":1104,"_id":1105,"_type":29,"title":1101,"_source":31,"_file":1106,"_stem":1107,"_extension":34},"/en-us/blog/authors/angelo-stavrow",{"name":1101,"config":1102},"Angelo Stavrow",{"headshot":722,"ctfId":1103},"Angelo-Stavrow",{"template":691},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1109,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1110,"config":1115,"_id":1116,"_type":29,"title":1111,"_source":31,"_file":1117,"_stem":1118,"_extension":34},"/en-us/blog/authors/anna-vovchenko",{"name":1111,"config":1112},"Anna Vovchenko",{"headshot":1113,"ctfId":1114},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":691},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1120,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1121,"config":1126,"_id":1127,"_type":29,"title":1122,"_source":31,"_file":1128,"_stem":1129,"_extension":34},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1122,"config":1123},"Annabel Dunstone Gray",{"headshot":1124,"ctfId":1125},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":691},"content:en-us:blog:authors:annabel-dunstone-gray.yml","en-us/blog/authors/annabel-dunstone-gray.yml","en-us/blog/authors/annabel-dunstone-gray",{"_path":1131,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1132,"config":1136,"_id":1137,"_type":29,"title":1133,"_source":31,"_file":1138,"_stem":1139,"_extension":34},"/en-us/blog/authors/anshuman-singh",{"name":1133,"config":1134},"Anshuman Singh",{"headshot":722,"ctfId":1135},"4xzrY67JSkxp4j7hlK1DWA",{"template":691},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1141,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1142,"config":1146,"_id":1147,"_type":29,"title":1143,"_source":31,"_file":1148,"_stem":1149,"_extension":34},"/en-us/blog/authors/anthony-davanzo",{"name":1143,"config":1144},"Anthony Davanzo",{"headshot":722,"ctfId":1145},"4KccrB6k5jq46xQRDOdWSb",{"template":691},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1151,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1152,"config":1157,"_id":1158,"_type":29,"title":1153,"_source":31,"_file":1159,"_stem":1160,"_extension":34},"/en-us/blog/authors/anton-smith",{"name":1153,"config":1154},"Anton Smith",{"headshot":1155,"ctfId":1156},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":691},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1162,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1163,"config":1167,"_id":1168,"_type":29,"title":1164,"_source":31,"_file":1169,"_stem":1170,"_extension":34},"/en-us/blog/authors/aricka-flowers",{"name":1164,"config":1165},"Aricka Flowers",{"headshot":7,"ctfId":1166},"atflowers",{"template":691},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1172,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1173,"config":1177,"_id":1178,"_type":29,"title":1174,"_source":31,"_file":1179,"_stem":1180,"_extension":34},"/en-us/blog/authors/ariel-camus",{"name":1174,"config":1175},"Ariel Camus",{"headshot":7,"ctfId":1176},"arielcamus",{"template":691},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1182,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1183,"config":1187,"_id":1188,"_type":29,"title":1184,"_source":31,"_file":1189,"_stem":1190,"_extension":34},"/en-us/blog/authors/arunoda-susiripala",{"name":1184,"config":1185},"Arunoda Susiripala",{"headshot":722,"ctfId":1186},"7kQaq0xFWPi2zRW6NZIDHp",{"template":691},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1192,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1193,"config":1197,"_id":1199,"_type":29,"title":1194,"_source":31,"_file":1200,"_stem":1201,"_extension":34},"/en-us/blog/authors/ashher-syed",{"name":1194,"config":1195},"Ashher Syed",{"headshot":1196},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":691,"gitlabHandle":1198},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1203,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1204,"config":1209,"_id":1210,"_type":29,"title":1205,"_source":31,"_file":1211,"_stem":1212,"_extension":34},"/en-us/blog/authors/ashley-knobloch",{"name":1205,"config":1206},"Ashley Knobloch",{"headshot":1207,"ctfId":1208},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":691},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1214,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1215,"config":1220,"_id":1221,"_type":29,"title":1216,"_source":31,"_file":1222,"_stem":1223,"_extension":34},"/en-us/blog/authors/ashley-kramer",{"name":1216,"config":1217},"Ashley Kramer",{"headshot":1218,"ctfId":1219},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":691},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1225,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1226,"config":1230,"_id":1231,"_type":29,"title":1232,"_source":31,"_file":1233,"_stem":1234,"_extension":34},"/en-us/blog/authors/ashley-mcalpin",{"name":1227,"config":1228},"Ashley McAlpin",{"headshot":722,"ctfId":1229},"Ashley-McAlpin",{"template":691},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1236,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1237,"config":1241,"_id":1242,"_type":29,"title":1238,"_source":31,"_file":1243,"_stem":1244,"_extension":34},"/en-us/blog/authors/ashley-smith",{"name":1238,"config":1239},"Ashley Smith",{"headshot":722,"ctfId":1240},"Ashley-Smith",{"template":691},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1246,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1247,"config":1251,"_id":1252,"_type":29,"title":1253,"_source":31,"_file":1254,"_stem":1255,"_extension":34},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1248,"config":1249},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":722,"ctfId":1250},"Atlassian-Bitbucket-GitHub-GitLab",{"template":691},"content:en-us:blog:authors:atlassian-bitbucket-github-gitlab.yml","Atlassian Bitbucket Github Gitlab","en-us/blog/authors/atlassian-bitbucket-github-gitlab.yml","en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"_path":1257,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1258,"config":1263,"_id":1264,"_type":29,"title":1259,"_source":31,"_file":1265,"_stem":1266,"_extension":34},"/en-us/blog/authors/austin-regnery",{"name":1259,"config":1260},"Austin Regnery",{"headshot":1261,"ctfId":1262},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":691},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1268,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1269,"config":1274,"_id":1275,"_type":29,"title":1270,"_source":31,"_file":1276,"_stem":1277,"_extension":34},"/en-us/blog/authors/ayoub-fandi",{"name":1270,"config":1271},"Ayoub Fandi",{"headshot":1272,"ctfId":1273},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":691},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1279,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1280,"config":1284,"_id":1285,"_type":29,"title":1286,"_source":31,"_file":1287,"_stem":1288,"_extension":34},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1281,"config":1282},"Bahubali (Bill) Shetti",{"headshot":722,"ctfId":1283},"4rFnUJeUt0JNGQwwCZSLMj",{"template":691},"content:en-us:blog:authors:bahubali-bill-shetti.yml","Bahubali Bill Shetti","en-us/blog/authors/bahubali-bill-shetti.yml","en-us/blog/authors/bahubali-bill-shetti",{"_path":1290,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1291,"config":1295,"_id":1296,"_type":29,"title":1292,"_source":31,"_file":1297,"_stem":1298,"_extension":34},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1292,"config":1293},"Baksheesh Singh Ghuman",{"headshot":722,"ctfId":1294},"Baksheesh-Singh-Ghuman",{"template":691},"content:en-us:blog:authors:baksheesh-singh-ghuman.yml","en-us/blog/authors/baksheesh-singh-ghuman.yml","en-us/blog/authors/baksheesh-singh-ghuman",{"_path":1300,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1301,"config":1306,"_id":1307,"_type":29,"title":1302,"_source":31,"_file":1308,"_stem":1309,"_extension":34},"/en-us/blog/authors/bala-allam",{"name":1302,"config":1303},"Bala Allam",{"headshot":1304,"ctfId":1305},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":691},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1311,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1312,"config":1317,"_id":1318,"_type":29,"title":1319,"_source":31,"_file":1320,"_stem":1321,"_extension":34},"/en-us/blog/authors/balasankar-balu-c",{"name":1313,"config":1314},"Balasankar 'Balu' C",{"headshot":1315,"ctfId":1316},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":691},"content:en-us:blog:authors:balasankar-balu-c.yml","Balasankar Balu C","en-us/blog/authors/balasankar-balu-c.yml","en-us/blog/authors/balasankar-balu-c",{"_path":1323,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1324,"config":1329,"_id":1330,"_type":29,"title":1325,"_source":31,"_file":1331,"_stem":1332,"_extension":34},"/en-us/blog/authors/bart-zhang",{"name":1325,"config":1326},"Bart Zhang",{"headshot":1327,"ctfId":1328},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":691},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1334,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1335,"config":1340,"_id":1341,"_type":29,"title":1336,"_source":31,"_file":1342,"_stem":1343,"_extension":34},"/en-us/blog/authors/beatriz-barbosa",{"name":1336,"config":1337},"Beatriz Barbosa",{"headshot":1338,"ctfId":1339},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":691},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1345,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1346,"config":1350,"_id":1351,"_type":29,"title":1347,"_source":31,"_file":1352,"_stem":1353,"_extension":34},"/en-us/blog/authors/becka-lippert",{"name":1347,"config":1348},"Becka Lippert",{"headshot":722,"ctfId":1349},"7wX6Hbvb3AbKwa6NnClvBX",{"template":691},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1355,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1356,"config":1361,"_id":1362,"_type":29,"title":1363,"_source":31,"_file":1364,"_stem":1365,"_extension":34},"/en-us/blog/authors/ben-leduc-mills",{"name":1357,"config":1358},"Ben Leduc-Mills",{"headshot":1359,"ctfId":1360},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":691},"content:en-us:blog:authors:ben-leduc-mills.yml","Ben Leduc Mills","en-us/blog/authors/ben-leduc-mills.yml","en-us/blog/authors/ben-leduc-mills",{"_path":1367,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1368,"config":1373,"_id":1374,"_type":29,"title":1369,"_source":31,"_file":1375,"_stem":1376,"_extension":34},"/en-us/blog/authors/ben-ridley",{"name":1369,"config":1370},"Ben Ridley",{"headshot":1371,"ctfId":1372},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":691},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1378,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1379,"config":1383,"_id":1384,"_type":29,"title":1380,"_source":31,"_file":1385,"_stem":1386,"_extension":34},"/en-us/blog/authors/benedikt-rollik",{"name":1380,"config":1381},"Benedikt Rollik",{"headshot":722,"ctfId":1382},"Benedikt-Rollik",{"template":691},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1388,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1389,"config":1394,"_id":1395,"_type":29,"title":1390,"_source":31,"_file":1396,"_stem":1397,"_extension":34},"/en-us/blog/authors/benjamin-skierlak",{"name":1390,"config":1391},"Benjamin Skierlak",{"headshot":1392,"ctfId":1393},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":691},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1399,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1400,"config":1404,"_id":1405,"_type":29,"title":1401,"_source":31,"_file":1406,"_stem":1407,"_extension":34},"/en-us/blog/authors/bert-van-eyck",{"name":1401,"config":1402},"Bert Van Eyck",{"headshot":7,"ctfId":1403},"bertveproximus",{"template":691},"content:en-us:blog:authors:bert-van-eyck.yml","en-us/blog/authors/bert-van-eyck.yml","en-us/blog/authors/bert-van-eyck",{"_path":1409,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1410,"config":1415,"_id":1416,"_type":29,"title":1411,"_source":31,"_file":1417,"_stem":1418,"_extension":34},"/en-us/blog/authors/betsy-bula",{"name":1411,"config":1412},"Betsy Bula",{"headshot":1413,"ctfId":1414},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":691},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1420,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1421,"config":1425,"_id":1426,"_type":29,"title":1422,"_source":31,"_file":1427,"_stem":1428,"_extension":34},"/en-us/blog/authors/betsy-church",{"name":1422,"config":1423},"Betsy Church",{"headshot":7,"ctfId":1424},"bchurch",{"template":691},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1430,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1431,"config":1436,"_id":1437,"_type":29,"title":1432,"_source":31,"_file":1438,"_stem":1439,"_extension":34},"/en-us/blog/authors/bill-staples",{"name":1432,"config":1433,"role":1435},"Bill Staples",{"headshot":1434},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":691},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1441,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1442,"config":1447,"_id":1448,"_type":29,"title":1443,"_source":31,"_file":1449,"_stem":1450,"_extension":34},"/en-us/blog/authors/bob-van-landuyt",{"name":1443,"config":1444},"Bob Van Landuyt",{"headshot":1445,"ctfId":1446},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":691},"content:en-us:blog:authors:bob-van-landuyt.yml","en-us/blog/authors/bob-van-landuyt.yml","en-us/blog/authors/bob-van-landuyt",{"_path":1452,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1453,"config":1457,"_id":1458,"_type":29,"title":1454,"_source":31,"_file":1459,"_stem":1460,"_extension":34},"/en-us/blog/authors/boris-baldassari",{"name":1454,"config":1455},"Boris Baldassari",{"headshot":7,"ctfId":1456},"bbaldassari",{"template":691},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1462,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1463,"config":1467,"_id":1468,"_type":29,"title":1464,"_source":31,"_file":1469,"_stem":1470,"_extension":34},"/en-us/blog/authors/borivoje-tasovac",{"name":1464,"config":1465},"Borivoje Tasovac",{"headshot":7,"ctfId":1466},"borivoje",{"template":691},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1472,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1473,"config":1477,"_id":1478,"_type":29,"title":1474,"_source":31,"_file":1479,"_stem":1480,"_extension":34},"/en-us/blog/authors/brad-downey",{"name":1474,"config":1475},"Brad Downey",{"headshot":722,"ctfId":1476},"6b6RTu6832NFEju2zKJhbE",{"template":691},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1482,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1483,"config":1488,"_id":1489,"_type":29,"title":1484,"_source":31,"_file":1490,"_stem":1491,"_extension":34},"/en-us/blog/authors/bradley-lee",{"name":1484,"config":1485},"Bradley Lee",{"headshot":1486,"ctfId":1487},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":691},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1493,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1494,"config":1498,"_id":1499,"_type":29,"title":1495,"_source":31,"_file":1500,"_stem":1501,"_extension":34},"/en-us/blog/authors/brandon-foo",{"name":1495,"config":1496},"Brandon Foo",{"headshot":722,"ctfId":1497},"Brandon-Foo",{"template":691},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1503,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1504,"config":1508,"_id":1509,"_type":29,"title":1505,"_source":31,"_file":1510,"_stem":1511,"_extension":34},"/en-us/blog/authors/brandon-jung",{"name":1505,"config":1506},"Brandon Jung",{"headshot":722,"ctfId":1507},"Brandon-Jung",{"template":691},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1513,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1514,"config":1518,"_id":1519,"_type":29,"title":1515,"_source":31,"_file":1520,"_stem":1521,"_extension":34},"/en-us/blog/authors/brandon-lyon",{"name":1515,"config":1516},"Brandon Lyon",{"headshot":7,"ctfId":1517},"brandonlyon",{"template":691},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1523,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1524,"config":1528,"_id":1529,"_type":29,"title":1525,"_source":31,"_file":1530,"_stem":1531,"_extension":34},"/en-us/blog/authors/brein-matturro",{"name":1525,"config":1526},"Brein Matturro",{"headshot":7,"ctfId":1527},"bmatturro",{"template":691},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1533,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1534,"config":1538,"_id":1539,"_type":29,"title":1540,"_source":31,"_file":1541,"_stem":1542,"_extension":34},"/en-us/blog/authors/brendan-oleary",{"name":1535,"config":1536},"Brendan O'Leary",{"headshot":7,"ctfId":1537},"brendan",{"template":691},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1544,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1545,"config":1549,"_id":1550,"_type":29,"title":1546,"_source":31,"_file":1551,"_stem":1552,"_extension":34},"/en-us/blog/authors/brendan-regan",{"name":1546,"config":1547},"Brendan Regan",{"headshot":7,"ctfId":1548},"brendanregan11",{"template":691},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1554,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1555,"config":1560,"_id":1561,"_type":29,"title":1556,"_source":31,"_file":1562,"_stem":1563,"_extension":34},"/en-us/blog/authors/brett-walker",{"name":1556,"config":1557},"Brett Walker",{"headshot":1558,"ctfId":1559},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":691},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1565,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1566,"config":1570,"_id":1571,"_type":29,"title":1567,"_source":31,"_file":1572,"_stem":1573,"_extension":34},"/en-us/blog/authors/brian-glanz",{"name":1567,"config":1568},"Brian Glanz",{"headshot":7,"ctfId":1569},"brianglanz",{"template":691},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1575,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1576,"config":1580,"_id":1581,"_type":29,"title":1582,"_source":31,"_file":1583,"_stem":1584,"_extension":34},"/en-us/blog/authors/brian-oconnell",{"name":1577,"config":1578},"Brian O'Connell",{"headshot":722,"ctfId":1579},"Brian-OConnell",{"template":691},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1586,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1587,"config":1591,"_id":1592,"_type":29,"title":1588,"_source":31,"_file":1593,"_stem":1594,"_extension":34},"/en-us/blog/authors/brian-rhea",{"name":1588,"config":1589},"Brian Rhea",{"headshot":7,"ctfId":1590},"brhea",{"template":691},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1596,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1597,"config":1601,"_id":1602,"_type":29,"title":1598,"_source":31,"_file":1603,"_stem":1604,"_extension":34},"/en-us/blog/authors/brian-wald",{"name":1598,"config":1599},"Brian Wald",{"headshot":722,"ctfId":1600},"78qOxgHKlgDY2IxMrBrgCu",{"template":691},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1606,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1607,"config":1611,"_id":1612,"_type":29,"title":1608,"_source":31,"_file":1613,"_stem":1614,"_extension":34},"/en-us/blog/authors/brittany-rohde",{"name":1608,"config":1609},"Brittany Rohde",{"headshot":7,"ctfId":1610},"brittanyr",{"template":691},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1616,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1617,"config":1622,"_id":1623,"_type":29,"title":1618,"_source":31,"_file":1624,"_stem":1625,"_extension":34},"/en-us/blog/authors/bryan-behrenshausen",{"name":1618,"config":1619},"Bryan Behrenshausen",{"headshot":1620,"ctfId":1621},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":691},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1627,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1628,"config":1633,"_id":1634,"_type":29,"title":1629,"_source":31,"_file":1635,"_stem":1636,"_extension":34},"/en-us/blog/authors/bryan-may",{"name":1629,"config":1630},"Bryan May",{"headshot":1631,"ctfId":1632},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":691},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1638,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1639,"config":1644,"_id":1645,"_type":29,"title":1640,"_source":31,"_file":1646,"_stem":1647,"_extension":34},"/en-us/blog/authors/byron-boots",{"name":1640,"config":1641},"Byron Boots",{"headshot":1642,"ctfId":1643},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":691},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1649,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1650,"config":1655,"_id":1656,"_type":29,"title":1651,"_source":31,"_file":1657,"_stem":1658,"_extension":34},"/en-us/blog/authors/camellia-yang",{"name":1651,"config":1652},"Camellia Yang",{"headshot":1653,"ctfId":1654},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":691},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1660,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1661,"config":1666,"_id":1667,"_type":29,"title":1662,"_source":31,"_file":1668,"_stem":1669,"_extension":34},"/en-us/blog/authors/cameron-swords",{"name":1662,"config":1663},"Cameron Swords",{"headshot":1664,"ctfId":1665},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":691},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1671,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1672,"config":1678,"_id":1679,"_type":29,"title":1674,"_source":31,"_file":1680,"_stem":1681,"_extension":34},"/en-us/blog/authors/carl-myers",{"role":1673,"name":1674,"config":1675},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1676,"ctfId":1677},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":691},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1683,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1684,"config":1688,"_id":1689,"_type":29,"title":1685,"_source":31,"_file":1690,"_stem":1691,"_extension":34},"/en-us/blog/authors/carol-teskey",{"name":1685,"config":1686},"Carol Teskey",{"headshot":7,"ctfId":1687},"cteskey",{"template":691},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1693,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1694,"config":1699,"_id":1700,"_type":29,"title":1695,"_source":31,"_file":1701,"_stem":1702,"_extension":34},"/en-us/blog/authors/cesar-saavedra",{"name":1695,"config":1696},"Cesar Saavedra",{"headshot":1697,"ctfId":1698},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":691},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1704,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1705,"config":1709,"_id":1710,"_type":29,"title":1706,"_source":31,"_file":1711,"_stem":1712,"_extension":34},"/en-us/blog/authors/chad-malchow",{"name":1706,"config":1707},"Chad Malchow",{"headshot":722,"ctfId":1708},"Chad-Malchow",{"template":691},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1714,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1715,"config":1720,"_id":1721,"_type":29,"title":1716,"_source":31,"_file":1722,"_stem":1723,"_extension":34},"/en-us/blog/authors/chance-feick",{"name":1716,"config":1717},"Chance Feick",{"headshot":1718,"ctfId":1719},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666442/Blog/Author%20Headshots/chance_feick_headshot.png","18dtRbXV47xqf5iDrOIduM",{"template":691},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1725,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1726,"config":1731,"_id":1732,"_type":29,"title":1727,"_source":31,"_file":1733,"_stem":1734,"_extension":34},"/en-us/blog/authors/chandler-gibbons",{"name":1727,"config":1728},"Chandler Gibbons",{"headshot":1729,"ctfId":1730},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663276/Blog/Author%20Headshots/chandlergibb-headshot.jpg","chandlergibb",{"template":691},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1736,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1737,"config":1741,"_id":1742,"_type":29,"title":1743,"_source":31,"_file":1744,"_stem":1745,"_extension":34},"/en-us/blog/authors/charl-de-wit",{"name":1738,"config":1739},"Charl de Wit",{"headshot":722,"ctfId":1740},"45mQeypQVLNvvTWMzserbR",{"template":691},"content:en-us:blog:authors:charl-de-wit.yml","Charl De Wit","en-us/blog/authors/charl-de-wit.yml","en-us/blog/authors/charl-de-wit",{"_path":1747,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1748,"config":1753,"_id":1754,"_type":29,"title":1749,"_source":31,"_file":1755,"_stem":1756,"_extension":34},"/en-us/blog/authors/charlie-ablett",{"name":1749,"config":1750},"Charlie Ablett",{"headshot":1751,"ctfId":1752},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670131/Blog/Author%20Headshots/cablett-headshot.png","cablett",{"template":691},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1758,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1759,"config":1763,"_id":1764,"_type":29,"title":1760,"_source":31,"_file":1765,"_stem":1766,"_extension":34},"/en-us/blog/authors/charvi-mendiratta",{"name":1760,"config":1761},"Charvi Mendiratta",{"headshot":722,"ctfId":1762},"YV7WvnjPWFS3JhXmSYJLk",{"template":691},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1768,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1769,"config":1774,"_id":1775,"_type":29,"title":1770,"_source":31,"_file":1776,"_stem":1777,"_extension":34},"/en-us/blog/authors/cherry-han",{"name":1770,"config":1771},"Cherry Han",{"headshot":1772,"ctfId":1773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ehktvdbix2o1t0mmcvll.png","6gkuhRkgzCNP1Ee6J14yLu",{"template":691},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1779,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1780,"config":1784,"_id":1786,"_type":29,"title":1781,"_source":31,"_file":1787,"_stem":1788,"_extension":34},"/en-us/blog/authors/chloe-cartron",{"name":1781,"config":1782},"Chloe Cartron",{"headshot":1783},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":691,"gitlabHandle":1785},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1790,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1791,"config":1796,"_id":1797,"_type":29,"title":1792,"_source":31,"_file":1798,"_stem":1799,"_extension":34},"/en-us/blog/authors/chloe-whitestone",{"name":1792,"config":1793},"Chloe Whitestone",{"headshot":1794,"ctfId":1795},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678693/Blog/Author%20Headshots/chloe-headshot.jpg","chloe",{"template":691},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1801,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1802,"config":1807,"_id":1808,"_type":29,"title":1803,"_source":31,"_file":1809,"_stem":1810,"_extension":34},"/en-us/blog/authors/chris-balane",{"name":1803,"config":1804},"Chris Balane",{"headshot":1805,"ctfId":1806},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667630/Blog/Author%20Headshots/chris_balane_headshot.png","40SOCfTl3frynjL3dbg63o",{"template":691},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1812,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1813,"config":1817,"_id":1818,"_type":29,"title":1814,"_source":31,"_file":1819,"_stem":1820,"_extension":34},"/en-us/blog/authors/chris-baus",{"name":1814,"config":1815},"Chris Baus",{"headshot":7,"ctfId":1816},"chrisbaus",{"template":691},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1822,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1823,"config":1828,"_id":1829,"_type":29,"title":1824,"_source":31,"_file":1830,"_stem":1831,"_extension":34},"/en-us/blog/authors/chris-micek",{"name":1824,"config":1825},"Chris Micek",{"headshot":1826,"ctfId":1827},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666144/Blog/Author%20Headshots/chris_micek_headshot.png","62ZsvfXlttQEQ1tnikgoq9",{"template":691},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1833,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1834,"config":1839,"_id":1840,"_type":29,"title":1835,"_source":31,"_file":1841,"_stem":1842,"_extension":34},"/en-us/blog/authors/chris-moberly",{"name":1835,"config":1836},"Chris Moberly",{"headshot":1837,"ctfId":1838},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664235/Blog/Author%20Headshots/cmoberly-headshot.jpg","cmoberly",{"template":691},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1844,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1845,"config":1849,"_id":1850,"_type":29,"title":1851,"_source":31,"_file":1852,"_stem":1853,"_extension":34},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1846,"config":1847},"Chris Sterry, Dotscience",{"headshot":722,"ctfId":1848},"Chris-Sterry-Dotscience",{"template":691},"content:en-us:blog:authors:chris-sterry-dotscience.yml","Chris Sterry Dotscience","en-us/blog/authors/chris-sterry-dotscience.yml","en-us/blog/authors/chris-sterry-dotscience",{"_path":1855,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1856,"config":1860,"_id":1861,"_type":29,"title":1857,"_source":31,"_file":1862,"_stem":1863,"_extension":34},"/en-us/blog/authors/chris-ward",{"name":1857,"config":1858},"Chris Ward",{"headshot":7,"ctfId":1859},"chrischinchilla",{"template":691},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1865,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1866,"config":1873,"_id":1874,"_type":29,"title":1868,"_source":31,"_file":1875,"_stem":1876,"_extension":34},"/en-us/blog/authors/chris-weber",{"role":1867,"name":1868,"config":1869},"CRO ","Chris Weber",{"headshot":1870,"linkedin":1871,"ctfId":1872},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670579/Blog/Author%20Headshots/Chris_Weber_Photo.png","https://www.linkedin.com/in/chris-weber/","4V6qmuzCIjMs5IdD7EKS5X",{"template":691},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1878,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1879,"config":1883,"_id":1884,"_type":29,"title":1880,"_source":31,"_file":1885,"_stem":1886,"_extension":34},"/en-us/blog/authors/chrissie-buchanan",{"name":1880,"config":1881},"Chrissie Buchanan",{"headshot":722,"ctfId":1882},"cbuchanan",{"template":691},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1888,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1889,"config":1894,"_id":1895,"_type":29,"title":1890,"_source":31,"_file":1896,"_stem":1897,"_extension":34},"/en-us/blog/authors/christen-dybenko",{"name":1890,"config":1891},"Christen Dybenko",{"headshot":1892,"ctfId":1893},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668811/Blog/Author%20Headshots/cdybenko-headshot.jpg","cdybenko",{"template":691},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1899,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1900,"config":1905,"_id":1906,"_type":29,"title":1901,"_source":31,"_file":1907,"_stem":1908,"_extension":34},"/en-us/blog/authors/christian-couder",{"name":1901,"config":1902},"Christian Couder",{"headshot":1903,"ctfId":1904},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool",{"template":691},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1910,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1911,"config":1916,"_id":1917,"_type":29,"title":1912,"_source":31,"_file":1918,"_stem":1919,"_extension":34},"/en-us/blog/authors/christian-nnachi",{"name":1912,"config":1913},"Christian Nnachi",{"headshot":1914,"ctfId":1915},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665343/Blog/Author%20Headshots/christian_nnachi_headshot.png","6pE7HjtzzpRhBFVdwTFjEX",{"template":691},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1921,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1922,"config":1926,"_id":1927,"_type":29,"title":1923,"_source":31,"_file":1928,"_stem":1929,"_extension":34},"/en-us/blog/authors/christian-simko",{"name":1923,"config":1924},"Christian Simko",{"headshot":7,"ctfId":1925},"csimko",{"template":691},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1931,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1932,"config":1937,"_id":1938,"_type":29,"title":1933,"_source":31,"_file":1939,"_stem":1940,"_extension":34},"/en-us/blog/authors/christie-lenneville",{"name":1933,"config":1934},"Christie Lenneville",{"headshot":1935,"ctfId":1936},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670047/Blog/Author%20Headshots/clenneville-headshot.jpg","clenneville",{"template":691},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1942,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1943,"config":1947,"_id":1948,"_type":29,"title":1949,"_source":31,"_file":1950,"_stem":1951,"_extension":34},"/en-us/blog/authors/christina-hupy-phd",{"name":1944,"config":1945},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1946},"chupy",{"template":691},"content:en-us:blog:authors:christina-hupy-phd.yml","Christina Hupy Phd","en-us/blog/authors/christina-hupy-phd.yml","en-us/blog/authors/christina-hupy-phd",{"_path":1953,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1954,"config":1959,"_id":1960,"_type":29,"title":1955,"_source":31,"_file":1961,"_stem":1962,"_extension":34},"/en-us/blog/authors/christina-lohr",{"name":1955,"config":1956},"Christina Lohr",{"headshot":1957,"ctfId":1958},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662499/Blog/Author%20Headshots/lohrc-headshot.jpg","lohrc",{"template":691},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":1964,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1965,"config":1969,"_id":1970,"_type":29,"title":1966,"_source":31,"_file":1971,"_stem":1972,"_extension":34},"/en-us/blog/authors/christine-yoshida",{"name":1966,"config":1967},"Christine Yoshida",{"headshot":7,"ctfId":1968},"cyoshida",{"template":691},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":1974,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1975,"config":1979,"_id":1980,"_type":29,"title":1976,"_source":31,"_file":1981,"_stem":1982,"_extension":34},"/en-us/blog/authors/christopher-watson",{"name":1976,"config":1977},"Christopher Watson",{"headshot":722,"ctfId":1978},"Christopher-Watson",{"template":691},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":1984,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1985,"config":1989,"_id":1990,"_type":29,"title":1986,"_source":31,"_file":1991,"_stem":1992,"_extension":34},"/en-us/blog/authors/christos-bacharakis",{"name":1986,"config":1987},"Christos Bacharakis",{"headshot":722,"ctfId":1988},"Christos-Bacharakis",{"template":691},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":1994,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":1995,"config":1999,"_id":2000,"_type":29,"title":1996,"_source":31,"_file":2001,"_stem":2002,"_extension":34},"/en-us/blog/authors/cindy-blake",{"name":1996,"config":1997},"Cindy Blake",{"headshot":722,"ctfId":1998},"cblake",{"template":691},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":2004,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2005,"config":2010,"_id":2011,"_type":29,"title":2006,"_source":31,"_file":2012,"_stem":2013,"_extension":34},"/en-us/blog/authors/claire-champernowne",{"name":2006,"config":2007},"Claire Champernowne",{"headshot":2008,"ctfId":2009},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ",{"template":691},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2015,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2016,"config":2020,"_id":2021,"_type":29,"title":2017,"_source":31,"_file":2022,"_stem":2023,"_extension":34},"/en-us/blog/authors/clement-ho",{"name":2017,"config":2018},"Clement Ho",{"headshot":7,"ctfId":2019},"ClemMakesApps",{"template":691},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2025,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2026,"config":2030,"_id":2031,"_type":29,"title":2027,"_source":31,"_file":2032,"_stem":2033,"_extension":34},"/en-us/blog/authors/colin-fletcher",{"name":2027,"config":2028},"Colin Fletcher",{"headshot":7,"ctfId":2029},"cfletcher1",{"template":691},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2035,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2036,"config":2041,"_id":2042,"_type":29,"title":2037,"_source":31,"_file":2043,"_stem":2044,"_extension":34},"/en-us/blog/authors/connor-gilbert",{"name":2037,"config":2038},"Connor Gilbert",{"headshot":2039,"ctfId":2040},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665913/Blog/Author%20Headshots/connorgilbert-headshot.jpg","connorgilbert",{"template":691},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2046,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2047,"config":2051,"_id":2052,"_type":29,"title":2048,"_source":31,"_file":2053,"_stem":2054,"_extension":34},"/en-us/blog/authors/connor-shea",{"name":2048,"config":2049},"Connor Shea",{"headshot":722,"ctfId":2050},"Connor-Shea",{"template":691},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2056,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2057,"config":2062,"_id":2063,"_type":29,"title":2058,"_source":31,"_file":2064,"_stem":2065,"_extension":34},"/en-us/blog/authors/corey-oas",{"name":2058,"config":2059},"Corey Oas",{"headshot":2060,"ctfId":2061},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667633/Blog/Author%20Headshots/corey_oas_headshot.png","1Dd1lJ4aKCv36YWdlUhlPf",{"template":691},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2067,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2068,"config":2072,"_id":2073,"_type":29,"title":2069,"_source":31,"_file":2074,"_stem":2075,"_extension":34},"/en-us/blog/authors/cormac-foster",{"name":2069,"config":2070},"Cormac Foster",{"headshot":7,"ctfId":2071},"cfoster3",{"template":691},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2077,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2078,"config":2083,"_id":2084,"_type":29,"title":2079,"_source":31,"_file":2085,"_stem":2086,"_extension":34},"/en-us/blog/authors/costel-maxim",{"name":2079,"config":2080},"Costel Maxim",{"headshot":2081,"ctfId":2082},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663173/Blog/Author%20Headshots/costel_maxim_headshot.png","3QzzrMksaRD9ZPytt0SPPL",{"template":691},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2088,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2089,"config":2094,"_id":2095,"_type":29,"title":2090,"_source":31,"_file":2096,"_stem":2097,"_extension":34},"/en-us/blog/authors/courtney-meddaugh",{"name":2090,"config":2091},"Courtney Meddaugh",{"headshot":2092,"ctfId":2093},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665168/Blog/Author%20Headshots/courtney_meddaugh_headshot.png","5avtK3YS9MrDBkaOnB9ZmG",{"template":691},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2099,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2100,"config":2104,"_id":2105,"_type":29,"title":2101,"_source":31,"_file":2106,"_stem":2107,"_extension":34},"/en-us/blog/authors/craig-gomes",{"name":2101,"config":2102},"Craig Gomes",{"headshot":7,"ctfId":2103},"craiggomes",{"template":691},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2109,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2110,"config":2115,"_id":2116,"_type":29,"title":2111,"_source":31,"_file":2117,"_stem":2118,"_extension":34},"/en-us/blog/authors/craig-miskell",{"name":2111,"config":2112},"Craig Miskell",{"headshot":2113,"ctfId":2114},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667372/Blog/Author%20Headshots/cmiskell-headshot.jpg","cmiskell",{"template":691},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2120,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2121,"config":2125,"_id":2126,"_type":29,"title":2122,"_source":31,"_file":2127,"_stem":2128,"_extension":34},"/en-us/blog/authors/creighton-swank",{"name":2122,"config":2123},"Creighton Swank",{"headshot":722,"ctfId":2124},"5uf3k9lutpbelxJQ373eWu",{"template":691},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2130,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2131,"config":2135,"_id":2136,"_type":29,"title":2132,"_source":31,"_file":2137,"_stem":2138,"_extension":34},"/en-us/blog/authors/daisy-miclat",{"name":2132,"config":2133},"Daisy Miclat",{"headshot":722,"ctfId":2134},"IU4zOKoPhWS7hok7qsy7w",{"template":691},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2140,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2141,"config":2145,"_id":2146,"_type":29,"title":2142,"_source":31,"_file":2147,"_stem":2148,"_extension":34},"/en-us/blog/authors/dan-luhring",{"name":2142,"config":2143},"Dan Luhring",{"headshot":7,"ctfId":2144},"danluhring",{"template":691},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2150,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2151,"config":2156,"_id":2157,"_type":29,"title":2152,"_source":31,"_file":2158,"_stem":2159,"_extension":34},"/en-us/blog/authors/dan-rabinovitz",{"name":2152,"config":2153},"Dan Rabinovitz",{"headshot":2154,"ctfId":2155},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664796/Blog/Author%20Headshots/dan_rabinovitz_headshot.png","31AXb267jy94budCWQZQyr",{"template":691},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2161,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2162,"config":2166,"_id":2167,"_type":29,"title":2163,"_source":31,"_file":2168,"_stem":2169,"_extension":34},"/en-us/blog/authors/daniel-berman",{"name":2163,"config":2164},"Daniel Berman",{"headshot":722,"ctfId":2165},"Daniel-Berman",{"template":691},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2171,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2172,"config":2176,"_id":2177,"_type":29,"title":2173,"_source":31,"_file":2178,"_stem":2179,"_extension":34},"/en-us/blog/authors/daniel-gruesso",{"name":2173,"config":2174},"Daniel Gruesso",{"headshot":7,"ctfId":2175},"danielgruesso",{"template":691},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2181,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2182,"config":2187,"_id":2188,"_type":29,"title":2183,"_source":31,"_file":2189,"_stem":2190,"_extension":34},"/en-us/blog/authors/daniel-hauenstein",{"name":2183,"config":2184},"Daniel Hauenstein",{"headshot":2185,"ctfId":2186},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662434/Blog/Author%20Headshots/daniel_hauenstein_headshot.png","2gXGuSmuvZSxv0iCn4sinV",{"template":691},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2192,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2193,"config":2198,"_id":2199,"_type":29,"title":2194,"_source":31,"_file":2200,"_stem":2201,"_extension":34},"/en-us/blog/authors/daniel-helfand",{"name":2194,"config":2195},"Daniel Helfand",{"headshot":2196,"ctfId":2197},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662418/Blog/Author%20Headshots/dhelfand.png","b9sRP0HJhdPsOEruWUfih",{"template":691},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2203,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2204,"config":2208,"_id":2209,"_type":29,"title":2205,"_source":31,"_file":2210,"_stem":2211,"_extension":34},"/en-us/blog/authors/daniel-mora",{"name":2205,"config":2206},"Daniel Mora",{"headshot":7,"ctfId":2207},"dmoraberlin",{"template":691},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2213,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2214,"config":2218,"_id":2220,"_type":29,"title":2215,"_source":31,"_file":2221,"_stem":2222,"_extension":34},"/en-us/blog/authors/daniel-murphy",{"name":2215,"config":2216},"Daniel Murphy",{"headshot":2217},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":691,"gitlabHandle":2219},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2224,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2225,"config":2230,"_id":2231,"_type":29,"title":2226,"_source":31,"_file":2232,"_stem":2233,"_extension":34},"/en-us/blog/authors/darby-frey",{"name":2226,"config":2227},"Darby Frey",{"headshot":2228,"ctfId":2229},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey",{"template":691},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2235,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2236,"config":2241,"_id":2242,"_type":29,"title":2237,"_source":31,"_file":2243,"_stem":2244,"_extension":34},"/en-us/blog/authors/darren-eastman",{"name":2237,"config":2238},"Darren Eastman",{"headshot":2239,"ctfId":2240},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman",{"template":691},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2246,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2247,"config":2251,"_id":2252,"_type":29,"title":2248,"_source":31,"_file":2253,"_stem":2254,"_extension":34},"/en-us/blog/authors/darren-murph",{"name":2248,"config":2249},"Darren Murph",{"headshot":7,"ctfId":2250},"dmurph",{"template":691},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2256,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2257,"config":2264,"_id":2265,"_type":29,"title":2259,"_source":31,"_file":2266,"_stem":2267,"_extension":34},"/en-us/blog/authors/darwin-sanoy",{"role":2258,"name":2259,"config":2260},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2261,"linkedin":2262,"ctfId":2263},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659751/Blog/Author%20Headshots/Darwin-Sanoy-headshot-395-square-gitlab-teampage-avatar.png","https://linkedin.com/in/darwinsanoy","DarwinJS",{"template":691},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2269,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2270,"config":2275,"_id":2276,"_type":29,"title":2271,"_source":31,"_file":2277,"_stem":2278,"_extension":34},"/en-us/blog/authors/dave-steer",{"name":2271,"config":2272},"Dave Steer",{"headshot":2273,"ctfId":2274},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658895/Blog/Author%20Headshots/dsteer-headshot.jpg","dsteer",{"template":691},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2280,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2281,"config":2285,"_id":2286,"_type":29,"title":2282,"_source":31,"_file":2287,"_stem":2288,"_extension":34},"/en-us/blog/authors/dave-wentzel",{"name":2282,"config":2283},"Dave Wentzel",{"headshot":722,"ctfId":2284},"Dave-Wentzel",{"template":691},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2290,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2291,"config":2296,"_id":2297,"_type":29,"title":2298,"_source":31,"_file":2299,"_stem":2300,"_extension":34},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2292,"config":2293},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2294,"ctfId":2295},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660185/Blog/Author%20Headshots/david-headshot.jpg","david",{"template":691},"content:en-us:blog:authors:david-desanto-chief-product-officer-gitlab.yml","David Desanto Chief Product Officer Gitlab","en-us/blog/authors/david-desanto-chief-product-officer-gitlab.yml","en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"_path":2302,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2303,"config":2308,"_id":2309,"_type":29,"title":2310,"_source":31,"_file":2311,"_stem":2312,"_extension":34},"/en-us/blog/authors/david-oregan",{"name":2304,"config":2305},"David O'Regan",{"headshot":2306,"ctfId":2307},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659853/Blog/Author%20Headshots/oregand-headshot.png","oregand",{"template":691},"content:en-us:blog:authors:david-oregan.yml","David Oregan","en-us/blog/authors/david-oregan.yml","en-us/blog/authors/david-oregan",{"_path":2314,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2315,"config":2319,"_id":2320,"_type":29,"title":2316,"_source":31,"_file":2321,"_stem":2322,"_extension":34},"/en-us/blog/authors/david-planella",{"name":2316,"config":2317},"David Planella",{"headshot":722,"ctfId":2318},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":691},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2324,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2325,"config":2329,"_id":2330,"_type":29,"title":2326,"_source":31,"_file":2331,"_stem":2332,"_extension":34},"/en-us/blog/authors/david-russell",{"name":2326,"config":2327},"David Russell",{"headshot":722,"ctfId":2328},"David-Russell",{"template":691},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2334,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2335,"config":2340,"_id":2341,"_type":29,"title":2336,"_source":31,"_file":2342,"_stem":2343,"_extension":34},"/en-us/blog/authors/david-smith",{"name":2336,"config":2337},"David Smith",{"headshot":2338,"ctfId":2339},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671135/Blog/Author%20Headshots/dawsmith-headshot.jpg","dawsmith",{"template":691},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2345,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2346,"config":2350,"_id":2351,"_type":29,"title":2347,"_source":31,"_file":2352,"_stem":2353,"_extension":34},"/en-us/blog/authors/davis-townsend",{"name":2347,"config":2348},"Davis Townsend",{"headshot":7,"ctfId":2349},"davistownsend",{"template":691},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2355,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2356,"config":2360,"_id":2362,"_type":29,"title":2357,"_source":31,"_file":2363,"_stem":2364,"_extension":34},"/en-us/blog/authors/davoud-tu",{"name":2357,"config":2358},"Davoud Tu",{"headshot":2359},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":691,"gitlabHandle":2361},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2366,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2367,"config":2372,"_id":2373,"_type":29,"title":2374,"_source":31,"_file":2375,"_stem":2376,"_extension":34},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2368,"config":2369},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2370,"ctfId":2371},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671963/Blog/Author%20Headshots/Dean_Photo__1_.jpg","6wQ0QwFZdbzAtYGZgnALkw",{"template":691},"content:en-us:blog:authors:dean-agron-co-founder-and-ceo-oxeye.yml","Dean Agron Co Founder And Ceo Oxeye","en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye.yml","en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"_path":2378,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2379,"config":2384,"_id":2385,"_type":29,"title":2380,"_source":31,"_file":2386,"_stem":2387,"_extension":34},"/en-us/blog/authors/deepa-mahalingam",{"name":2380,"config":2381},"Deepa Mahalingam",{"headshot":2382,"ctfId":2383},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662019/Blog/Author%20Headshots/deepa-headshot.jpg","M54z9AWDuU7L9nBR9gRF4",{"template":691},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2389,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2390,"config":2395,"_id":2396,"_type":29,"title":2391,"_source":31,"_file":2397,"_stem":2398,"_extension":34},"/en-us/blog/authors/dennis-appelt",{"name":2391,"config":2392},"Dennis Appelt",{"headshot":2393,"ctfId":2394},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt",{"template":691},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2400,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2401,"config":2406,"_id":2407,"_type":29,"title":2402,"_source":31,"_file":2408,"_stem":2409,"_extension":34},"/en-us/blog/authors/dennis-tang",{"name":2402,"config":2403},"Dennis Tang",{"headshot":2404,"ctfId":2405},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672189/Blog/Author%20Headshots/dennis-headshot.jpg","dennis",{"template":691},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2411,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2412,"config":2416,"_id":2418,"_type":29,"title":2419,"_source":31,"_file":2420,"_stem":2421,"_extension":34},"/en-us/blog/authors/dennis-van-rooijen",{"name":2413,"config":2414},"Dennis van Rooijen",{"headshot":2415},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":691,"gitlabHandle":2417},"dvanrooijen2","content:en-us:blog:authors:dennis-van-rooijen.yml","Dennis Van Rooijen","en-us/blog/authors/dennis-van-rooijen.yml","en-us/blog/authors/dennis-van-rooijen",{"_path":2423,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2424,"config":2429,"_id":2430,"_type":29,"title":2425,"_source":31,"_file":2431,"_stem":2432,"_extension":34},"/en-us/blog/authors/devin-sylva",{"name":2425,"config":2426},"Devin Sylva",{"headshot":2427,"ctfId":2428},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679087/Blog/Author%20Headshots/devin-headshot.jpg","devin",{"template":691},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2434,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2435,"config":2439,"_id":2440,"_type":29,"title":2436,"_source":31,"_file":2441,"_stem":2442,"_extension":34},"/en-us/blog/authors/dhruv-jain",{"name":2436,"config":2437},"Dhruv Jain",{"headshot":722,"ctfId":2438},"2wyibk9HBKn6PjgaEuzXuZ",{"template":691},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2444,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2445,"config":2449,"_id":2450,"_type":29,"title":2446,"_source":31,"_file":2451,"_stem":2452,"_extension":34},"/en-us/blog/authors/diana-logan",{"name":2446,"config":2447},"Diana Logan",{"headshot":722,"ctfId":2448},"6poIwhQe6W9ysm5rBuSPXX",{"template":691},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2454,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2455,"config":2460,"_id":2461,"_type":29,"title":2456,"_source":31,"_file":2462,"_stem":2463,"_extension":34},"/en-us/blog/authors/dilan-orrino",{"name":2456,"config":2457},"Dilan Orrino",{"headshot":2458,"ctfId":2459},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666180/Blog/Author%20Headshots/dorrino-headshot.png","dorrino",{"template":691},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2465,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2466,"config":2470,"_id":2471,"_type":29,"title":2467,"_source":31,"_file":2472,"_stem":2473,"_extension":34},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2467,"config":2468},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2469},"dimitrieh",{"template":691},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2475,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2476,"config":2480,"_id":2481,"_type":29,"title":2477,"_source":31,"_file":2482,"_stem":2483,"_extension":34},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2477,"config":2478},"Dinesh Bolkensteyn",{"headshot":722,"ctfId":2479},"EpylYWgjPmFOL5NX3Zxmk",{"template":691},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2485,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2486,"config":2490,"_id":2491,"_type":29,"title":2492,"_source":31,"_file":2493,"_stem":2494,"_extension":34},"/en-us/blog/authors/dj-mountney",{"name":2487,"config":2488},"DJ Mountney",{"headshot":722,"ctfId":2489},"DJ-Mountney",{"template":691},"content:en-us:blog:authors:dj-mountney.yml","Dj Mountney","en-us/blog/authors/dj-mountney.yml","en-us/blog/authors/dj-mountney",{"_path":2496,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2497,"config":2501,"_id":2502,"_type":29,"title":2503,"_source":31,"_file":2504,"_stem":2505,"_extension":34},"/en-us/blog/authors/dmitriy-job",{"name":2498,"config":2499},"Dmitriy, Job",{"headshot":722,"ctfId":2500},"Dmitriy-Job",{"template":691},"content:en-us:blog:authors:dmitriy-job.yml","Dmitriy Job","en-us/blog/authors/dmitriy-job.yml","en-us/blog/authors/dmitriy-job",{"_path":2507,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2508,"config":2512,"_id":2513,"_type":29,"title":2509,"_source":31,"_file":2514,"_stem":2515,"_extension":34},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2509,"config":2510},"Dmitriy Zaporozhets",{"headshot":722,"ctfId":2511},"Dmitriy-Zaporozhets",{"template":691},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2517,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2518,"config":2523,"_id":2524,"_type":29,"title":2519,"_source":31,"_file":2525,"_stem":2526,"_extension":34},"/en-us/blog/authors/dmitry-gruzd",{"name":2519,"config":2520},"Dmitry Gruzd",{"headshot":2521,"ctfId":2522},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682014/Blog/Author%20Headshots/dgruzd-headshot.jpg","dgruzd",{"template":691},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2528,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2529,"config":2534,"_id":2535,"_type":29,"title":2530,"_source":31,"_file":2536,"_stem":2537,"_extension":34},"/en-us/blog/authors/dominic-couture",{"name":2530,"config":2531},"Dominic Couture",{"headshot":2532,"ctfId":2533},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683783/Blog/Author%20Headshots/dominic.png","3K2DmuMWV5isBeVtKsplia",{"template":691},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2539,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2540,"config":2544,"_id":2545,"_type":29,"title":2541,"_source":31,"_file":2546,"_stem":2547,"_extension":34},"/en-us/blog/authors/douglas-alexandre",{"name":2541,"config":2542},"Douglas Alexandre",{"headshot":722,"ctfId":2543},"Douglas-Alexandre",{"template":691},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2549,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2550,"config":2554,"_id":2555,"_type":29,"title":2551,"_source":31,"_file":2556,"_stem":2557,"_extension":34},"/en-us/blog/authors/douwe-maan",{"name":2551,"config":2552},"Douwe Maan",{"headshot":7,"ctfId":2553},"DouweM",{"template":691},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2559,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2560,"config":2565,"_id":2566,"_type":29,"title":2561,"_source":31,"_file":2567,"_stem":2568,"_extension":34},"/en-us/blog/authors/dov-hershkovitch",{"name":2561,"config":2562},"Dov Hershkovitch",{"headshot":2563,"ctfId":2564},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665628/Blog/Author%20Headshots/dhershkovitch-headshot.png","dhershkovitch",{"template":691},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2570,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2571,"config":2575,"_id":2576,"_type":29,"title":2577,"_source":31,"_file":2578,"_stem":2579,"_extension":34},"/en-us/blog/authors/dr-elle-obrien",{"name":2572,"config":2573},"Dr. Elle O'Brien",{"headshot":722,"ctfId":2574},"Dr-Elle-OBrien",{"template":691},"content:en-us:blog:authors:dr-elle-obrien.yml","Dr Elle Obrien","en-us/blog/authors/dr-elle-obrien.yml","en-us/blog/authors/dr-elle-obrien",{"_path":2581,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2582,"config":2586,"_id":2587,"_type":29,"title":2583,"_source":31,"_file":2588,"_stem":2589,"_extension":34},"/en-us/blog/authors/drew-blessing",{"name":2583,"config":2584},"Drew Blessing",{"headshot":722,"ctfId":2585},"Drew-Blessing",{"template":691},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2591,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2592,"config":2597,"_id":2598,"_type":29,"title":2593,"_source":31,"_file":2599,"_stem":2600,"_extension":34},"/en-us/blog/authors/dylan-griffith",{"name":2593,"config":2594},"Dylan Griffith",{"headshot":2595,"ctfId":2596},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672822/Blog/Author%20Headshots/DylanGriffith-headshot.jpg","DylanGriffith",{"template":691},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2602,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2603,"config":2607,"_id":2608,"_type":29,"title":2604,"_source":31,"_file":2609,"_stem":2610,"_extension":34},"/en-us/blog/authors/eddie-glenn",{"name":2604,"config":2605},"Eddie Glenn",{"headshot":7,"ctfId":2606},"eglenn",{"template":691},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2612,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2613,"config":2618,"_id":2619,"_type":29,"title":2614,"_source":31,"_file":2620,"_stem":2621,"_extension":34},"/en-us/blog/authors/eduardo-bonet",{"name":2614,"config":2615},"Eduardo Bonet",{"headshot":2616,"ctfId":2617},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682722/Blog/Author%20Headshots/eduardobonet-headshot.jpg","eduardobonet",{"template":691},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2623,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2624,"config":2629,"_id":2630,"_type":29,"title":2625,"_source":31,"_file":2631,"_stem":2632,"_extension":34},"/en-us/blog/authors/eliran-mesika",{"name":2625,"config":2626},"Eliran Mesika",{"headshot":2627,"ctfId":2628},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670111/Blog/Author%20Headshots/eliran.jpg","eliranmesika",{"template":691},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2634,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2635,"config":2640,"_id":2641,"_type":29,"title":2636,"_source":31,"_file":2642,"_stem":2643,"_extension":34},"/en-us/blog/authors/elisabeth-burrows",{"name":2636,"config":2637},"Elisabeth Burrows",{"headshot":2638,"ctfId":2639},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659535/Blog/Author%20Headshots/liz_burrows_headshot.png","6Nj2Lio5W7HdeNYoysVgCf",{"template":691},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2645,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2646,"config":2650,"_id":2651,"_type":29,"title":2647,"_source":31,"_file":2652,"_stem":2653,"_extension":34},"/en-us/blog/authors/elliot-rushton",{"name":2647,"config":2648},"Elliot Rushton",{"headshot":7,"ctfId":2649},"erushton",{"template":691},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2655,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2656,"config":2660,"_id":2661,"_type":29,"title":2657,"_source":31,"_file":2662,"_stem":2663,"_extension":34},"/en-us/blog/authors/emilie-schario",{"name":2657,"config":2658},"Emilie Schario",{"headshot":7,"ctfId":2659},"emilie",{"template":691},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2665,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2666,"config":2671,"_id":2672,"_type":29,"title":2667,"_source":31,"_file":2673,"_stem":2674,"_extension":34},"/en-us/blog/authors/emilio-salvador",{"name":2667,"config":2668},"Emilio Salvador",{"headshot":2669,"ctfId":2670},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660161/Blog/Author%20Headshots/esalvadorp-headshot.png","esalvadorp",{"template":691},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2676,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2677,"config":2682,"_id":2683,"_type":29,"title":2678,"_source":31,"_file":2684,"_stem":2685,"_extension":34},"/en-us/blog/authors/emily-bauman",{"name":2678,"config":2679},"Emily Bauman",{"headshot":2680,"ctfId":2681},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664145/Blog/Author%20Headshots/emilybauman-headshot.jpg","emilybauman",{"template":691},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2687,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2688,"config":2692,"_id":2693,"_type":29,"title":2689,"_source":31,"_file":2694,"_stem":2695,"_extension":34},"/en-us/blog/authors/emily-chin",{"name":2689,"config":2690},"Emily Chin",{"headshot":7,"ctfId":2691},"echin",{"template":691},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2697,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2698,"config":2702,"_id":2703,"_type":29,"title":2699,"_source":31,"_file":2704,"_stem":2705,"_extension":34},"/en-us/blog/authors/emily-kyle",{"name":2699,"config":2700},"Emily Kyle",{"headshot":722,"ctfId":2701},"Emily-Kyle",{"template":691},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2707,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2708,"config":2712,"_id":2713,"_type":29,"title":2714,"_source":31,"_file":2715,"_stem":2716,"_extension":34},"/en-us/blog/authors/emily-von-hoffmann",{"name":2709,"config":2710},"Emily von Hoffmann",{"headshot":722,"ctfId":2711},"evhoffmann",{"template":691},"content:en-us:blog:authors:emily-von-hoffmann.yml","Emily Von Hoffmann","en-us/blog/authors/emily-von-hoffmann.yml","en-us/blog/authors/emily-von-hoffmann",{"_path":2718,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2719,"config":2724,"_id":2725,"_type":29,"title":2726,"_source":31,"_file":2727,"_stem":2728,"_extension":34},"/en-us/blog/authors/enrique-alcntara",{"name":2720,"config":2721},"Enrique Alcántara",{"headshot":2722,"ctfId":2723},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669746/Blog/Author%20Headshots/ealcantara-headshot.jpg","3E3c30ZWRUTq6rlFiYrjtq",{"template":691},"content:en-us:blog:authors:enrique-alcntara.yml","Enrique Alcntara","en-us/blog/authors/enrique-alcntara.yml","en-us/blog/authors/enrique-alcntara",{"_path":2730,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2731,"config":2735,"_id":2736,"_type":29,"title":2732,"_source":31,"_file":2737,"_stem":2738,"_extension":34},"/en-us/blog/authors/eric-brinkman",{"name":2732,"config":2733},"Eric Brinkman",{"headshot":7,"ctfId":2734},"ebrinkman",{"template":691},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2740,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2741,"config":2745,"_id":2746,"_type":29,"title":2742,"_source":31,"_file":2747,"_stem":2748,"_extension":34},"/en-us/blog/authors/eric-eastwood",{"name":2742,"config":2743},"Eric Eastwood",{"headshot":7,"ctfId":2744},"MadLittleMods",{"template":691},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2750,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2751,"config":2755,"_id":2756,"_type":29,"title":2752,"_source":31,"_file":2757,"_stem":2758,"_extension":34},"/en-us/blog/authors/eric-rosenberg",{"name":2752,"config":2753},"Eric Rosenberg",{"headshot":7,"ctfId":2754},"ericrosenberg88",{"template":691},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2760,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2761,"config":2766,"_id":2767,"_type":29,"title":2762,"_source":31,"_file":2768,"_stem":2769,"_extension":34},"/en-us/blog/authors/eric-rubin",{"name":2762,"config":2763},"Eric Rubin",{"headshot":2764,"ctfId":2765},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682494/Blog/Author%20Headshots/ericrubin-headshot.png","ericrubin",{"template":691},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2771,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2772,"config":2777,"_id":2778,"_type":29,"title":2773,"_source":31,"_file":2779,"_stem":2780,"_extension":34},"/en-us/blog/authors/eric-schurter",{"name":2773,"config":2774},"Eric Schurter",{"headshot":2775,"ctfId":2776},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679281/Blog/Author%20Headshots/ericschurter-headshot.jpg","ericschurter",{"template":691},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2782,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2783,"config":2787,"_id":2788,"_type":29,"title":2784,"_source":31,"_file":2789,"_stem":2790,"_extension":34},"/en-us/blog/authors/erica-huang",{"name":2784,"config":2785},"Erica Huang",{"headshot":7,"ctfId":2786},"exhuang",{"template":691},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2792,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2793,"config":2797,"_id":2798,"_type":29,"title":2794,"_source":31,"_file":2799,"_stem":2800,"_extension":34},"/en-us/blog/authors/erica-lindberg",{"name":2794,"config":2795},"Erica Lindberg",{"headshot":722,"ctfId":2796},"Erica-Lindberg",{"template":691},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2802,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2803,"config":2807,"_id":2808,"_type":29,"title":2804,"_source":31,"_file":2809,"_stem":2810,"_extension":34},"/en-us/blog/authors/erich-wegscheider",{"name":2804,"config":2805},"Erich Wegscheider",{"headshot":7,"ctfId":2806},"ewegscheider",{"template":691},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2812,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2813,"config":2817,"_id":2818,"_type":29,"title":2814,"_source":31,"_file":2819,"_stem":2820,"_extension":34},"/en-us/blog/authors/erick-banks",{"name":2814,"config":2815},"Erick Banks",{"headshot":722,"ctfId":2816},"4CGXhAxudTq69aZOtPnLfu",{"template":691},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2822,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2823,"config":2827,"_id":2828,"_type":29,"title":2824,"_source":31,"_file":2829,"_stem":2830,"_extension":34},"/en-us/blog/authors/erika-feldman",{"name":2824,"config":2825},"Erika Feldman",{"headshot":722,"ctfId":2826},"78oCat8vvbl6mzXsLawd9d",{"template":691},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2832,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2833,"config":2837,"_id":2838,"_type":29,"title":2839,"_source":31,"_file":2840,"_stem":2841,"_extension":34},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2834,"config":2835},"Erin Krengel, Pulumi",{"headshot":722,"ctfId":2836},"Erin-Krengel-Pulumi",{"template":691},"content:en-us:blog:authors:erin-krengel-pulumi.yml","Erin Krengel Pulumi","en-us/blog/authors/erin-krengel-pulumi.yml","en-us/blog/authors/erin-krengel-pulumi",{"_path":2843,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2844,"config":2848,"_id":2849,"_type":29,"title":2850,"_source":31,"_file":2851,"_stem":2852,"_extension":34},"/en-us/blog/authors/ernst-van-nierop",{"name":2845,"config":2846},"Ernst van Nierop",{"headshot":7,"ctfId":2847},"ernstvn",{"template":691},"content:en-us:blog:authors:ernst-van-nierop.yml","Ernst Van Nierop","en-us/blog/authors/ernst-van-nierop.yml","en-us/blog/authors/ernst-van-nierop",{"_path":2854,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2855,"config":2859,"_id":2860,"_type":29,"title":2856,"_source":31,"_file":2861,"_stem":2862,"_extension":34},"/en-us/blog/authors/esther-shein",{"name":2856,"config":2857},"Esther Shein",{"headshot":722,"ctfId":2858},"Esther-Shein",{"template":691},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2864,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2865,"config":2870,"_id":2871,"_type":29,"title":2866,"_source":31,"_file":2872,"_stem":2873,"_extension":34},"/en-us/blog/authors/ethan-strike",{"name":2866,"config":2867},"Ethan Strike",{"headshot":2868,"ctfId":2869},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679067/Blog/Author%20Headshots/estrike-headshot.png","estrike",{"template":691},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2875,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2876,"config":2880,"_id":2881,"_type":29,"title":2877,"_source":31,"_file":2882,"_stem":2883,"_extension":34},"/en-us/blog/authors/ethan-urie",{"name":2877,"config":2878},"Ethan Urie",{"headshot":722,"ctfId":2879},"mJhtQw4TY9ZRNF7dfitIF",{"template":691},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2885,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2886,"config":2890,"_id":2891,"_type":29,"title":2887,"_source":31,"_file":2892,"_stem":2893,"_extension":34},"/en-us/blog/authors/eugene-lim",{"name":2887,"config":2888},"Eugene Lim",{"headshot":722,"ctfId":2889},"6KHdIdghkUfSTzV2MzxNcj",{"template":691},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2895,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2896,"config":2900,"_id":2901,"_type":29,"title":2897,"_source":31,"_file":2902,"_stem":2903,"_extension":34},"/en-us/blog/authors/eugenia-hannon",{"name":2897,"config":2898},"Eugenia Hannon",{"headshot":7,"ctfId":2899},"eugeniah",{"template":691},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2905,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2906,"config":2910,"_id":2911,"_type":29,"title":2907,"_source":31,"_file":2912,"_stem":2913,"_extension":34},"/en-us/blog/authors/ev-kontsevoy",{"name":2907,"config":2908},"Ev Kontsevoy",{"headshot":7,"ctfId":2909},"ekontsevoy",{"template":691},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2915,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2916,"config":2920,"_id":2921,"_type":29,"title":2917,"_source":31,"_file":2922,"_stem":2923,"_extension":34},"/en-us/blog/authors/eva-sasson",{"name":2917,"config":2918},"Eva Sasson",{"headshot":722,"ctfId":2919},"Eva-Sasson",{"template":691},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2925,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2926,"config":2931,"_id":2932,"_type":29,"title":2927,"_source":31,"_file":2933,"_stem":2934,"_extension":34},"/en-us/blog/authors/fabian-zimmer",{"name":2927,"config":2928},"Fabian Zimmer",{"headshot":2929,"ctfId":2930},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/q6awwqbxtg0a4x9gtmhs.png","3TK88UogcX5lx83kWMVuvI",{"template":691},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2936,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2937,"config":2941,"_id":2942,"_type":29,"title":2938,"_source":31,"_file":2943,"_stem":2944,"_extension":34},"/en-us/blog/authors/fabio-akita",{"name":2938,"config":2939},"Fabio Akita",{"headshot":722,"ctfId":2940},"Fabio-Akita",{"template":691},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2946,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2947,"config":2951,"_id":2952,"_type":29,"title":2948,"_source":31,"_file":2953,"_stem":2954,"_extension":34},"/en-us/blog/authors/fabio-busatto",{"name":2948,"config":2949},"Fabio Busatto",{"headshot":7,"ctfId":2950},"bikebilly",{"template":691},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":2956,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2957,"config":2962,"_id":2963,"_type":29,"title":2958,"_source":31,"_file":2964,"_stem":2965,"_extension":34},"/en-us/blog/authors/fabio-pitino",{"name":2958,"config":2959},"Fabio Pitino",{"headshot":2960,"ctfId":2961},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659958/Blog/Author%20Headshots/fabiopitino-headshot.jpg","fabiopitino",{"template":691},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":2967,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2968,"config":2972,"_id":2973,"_type":29,"title":2969,"_source":31,"_file":2974,"_stem":2975,"_extension":34},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2969,"config":2970},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2971},"fseifoddini",{"template":691},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":2977,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2978,"config":2982,"_id":2983,"_type":29,"title":2979,"_source":31,"_file":2984,"_stem":2985,"_extension":34},"/en-us/blog/authors/fatih-acet",{"name":2979,"config":2980},"Fatih Acet",{"headshot":7,"ctfId":2981},"fatihacet",{"template":691},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":2987,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2988,"config":2993,"_id":2994,"_type":29,"title":2989,"_source":31,"_file":2995,"_stem":2996,"_extension":34},"/en-us/blog/authors/fatima-sarah-khalid",{"name":2989,"config":2990},"Fatima Sarah Khalid",{"headshot":2991,"ctfId":2992},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663337/Blog/Author%20Headshots/sugaroverflow-headshot.jpg","sugaroverflow",{"template":691},"content:en-us:blog:authors:fatima-sarah-khalid.yml","en-us/blog/authors/fatima-sarah-khalid.yml","en-us/blog/authors/fatima-sarah-khalid",{"_path":2998,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":2999,"config":3004,"_id":3005,"_type":29,"title":3000,"_source":31,"_file":3006,"_stem":3007,"_extension":34},"/en-us/blog/authors/fernando-diaz",{"name":3000,"config":3001},"Fernando Diaz",{"headshot":3002,"ctfId":3003},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659556/Blog/Author%20Headshots/fern_diaz.png","fjdiaz",{"template":691},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3009,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3010,"config":3014,"_id":3015,"_type":29,"title":3011,"_source":31,"_file":3016,"_stem":3017,"_extension":34},"/en-us/blog/authors/filipa-lacerda",{"name":3011,"config":3012},"Filipa Lacerda",{"headshot":7,"ctfId":3013},"filipa",{"template":691},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3019,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3020,"config":3025,"_id":3026,"_type":29,"title":3027,"_source":31,"_file":3028,"_stem":3029,"_extension":34},"/en-us/blog/authors/flix-veillette-potvin",{"name":3021,"config":3022}," Félix Veillette-Potvin",{"headshot":3023,"ctfId":3024},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662606/Blog/Author%20Headshots/_F%C3%A9lix_Veillette-Potvin_headshot.png","3nkwcdE5K3Uw9nrovEngxW",{"template":691},"content:en-us:blog:authors:flix-veillette-potvin.yml","Flix Veillette Potvin","en-us/blog/authors/flix-veillette-potvin.yml","en-us/blog/authors/flix-veillette-potvin",{"_path":3031,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3032,"config":3036,"_id":3037,"_type":29,"title":3033,"_source":31,"_file":3038,"_stem":3039,"_extension":34},"/en-us/blog/authors/forrest-brazeal",{"name":3033,"config":3034},"Forrest Brazeal",{"headshot":7,"ctfId":3035},"fbrazeal",{"template":691},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3041,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3042,"config":3046,"_id":3047,"_type":29,"title":3043,"_source":31,"_file":3048,"_stem":3049,"_extension":34},"/en-us/blog/authors/francis-ofungwu",{"name":3043,"config":3044},"Francis Ofungwu",{"headshot":722,"ctfId":3045},"fofungwu",{"template":691},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3051,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3052,"config":3057,"_id":3058,"_type":29,"title":3059,"_source":31,"_file":3060,"_stem":3061,"_extension":34},"/en-us/blog/authors/frdric-caplette",{"name":3053,"config":3054},"Frédéric Caplette",{"headshot":3055,"ctfId":3056},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661878/Blog/Author%20Headshots/frederic_caplette_headshot.png","6nMRwNMwciKSX03zmbBbPF",{"template":691},"content:en-us:blog:authors:frdric-caplette.yml","Frdric Caplette","en-us/blog/authors/frdric-caplette.yml","en-us/blog/authors/frdric-caplette",{"_path":3063,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3064,"config":3069,"_id":3070,"_type":29,"title":3065,"_source":31,"_file":3071,"_stem":3072,"_extension":34},"/en-us/blog/authors/gabe-weaver",{"name":3065,"config":3066},"Gabe Weaver",{"headshot":3067,"ctfId":3068},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667605/Blog/Author%20Headshots/gweaver-headshot.jpg","gweaver",{"template":691},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3074,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3075,"config":3080,"_id":3081,"_type":29,"title":3076,"_source":31,"_file":3082,"_stem":3083,"_extension":34},"/en-us/blog/authors/gabriel-engel",{"name":3076,"config":3077},"Gabriel Engel",{"headshot":3078,"ctfId":3079},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664747/Blog/Author%20Headshots/gabrielengel_gl-headshot.jpg","gabrielengelgl",{"template":691},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3085,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3086,"config":3090,"_id":3091,"_type":29,"title":3087,"_source":31,"_file":3092,"_stem":3093,"_extension":34},"/en-us/blog/authors/gabriel-le-breton",{"name":3087,"config":3088},"Gabriel Le Breton",{"headshot":722,"ctfId":3089},"Gabriel-Le-Breton",{"template":691},"content:en-us:blog:authors:gabriel-le-breton.yml","en-us/blog/authors/gabriel-le-breton.yml","en-us/blog/authors/gabriel-le-breton",{"_path":3095,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3096,"config":3101,"_id":3102,"_type":29,"title":3097,"_source":31,"_file":3103,"_stem":3104,"_extension":34},"/en-us/blog/authors/gabriel-mazetto",{"name":3097,"config":3098},"Gabriel Mazetto",{"headshot":3099,"ctfId":3100},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678982/Blog/Author%20Headshots/brodock-headshot.jpg","brodock",{"template":691},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3106,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3107,"config":3112,"_id":3113,"_type":29,"title":3108,"_source":31,"_file":3114,"_stem":3115,"_extension":34},"/en-us/blog/authors/gavin-peltz",{"name":3108,"config":3109},"Gavin Peltz",{"headshot":3110,"ctfId":3111},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662831/Blog/Author%20Headshots/gavin_peltz.png","27UwgXDMqa0oBWV93rXTgN",{"template":691},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3117,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3118,"config":3123,"_id":3124,"_type":29,"title":3119,"_source":31,"_file":3125,"_stem":3126,"_extension":34},"/en-us/blog/authors/george-kichukov",{"name":3119,"config":3120},"George Kichukov",{"headshot":3121,"ctfId":3122},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664866/Blog/Author%20Headshots/george_kichukov.png","7e8bn05u4pXwYjkRrqdprE",{"template":691},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3128,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3129,"config":3133,"_id":3134,"_type":29,"title":3130,"_source":31,"_file":3135,"_stem":3136,"_extension":34},"/en-us/blog/authors/gerard-hickey",{"name":3130,"config":3131},"Gerard Hickey",{"headshot":7,"ctfId":3132},"ghickey",{"template":691},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3138,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3139,"config":3144,"_id":3145,"_type":29,"title":3146,"_source":31,"_file":3147,"_stem":3148,"_extension":34},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3140,"config":3141},"Gerardo Lopez-Fernandez",{"headshot":3142,"ctfId":3143},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679925/Blog/Author%20Headshots/glopezfernandez-headshot.jpg","glopezfernandez",{"template":691},"content:en-us:blog:authors:gerardo-lopez-fernandez.yml","Gerardo Lopez Fernandez","en-us/blog/authors/gerardo-lopez-fernandez.yml","en-us/blog/authors/gerardo-lopez-fernandez",{"_path":3150,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3151,"config":3156,"_id":3157,"_type":29,"title":3152,"_source":31,"_file":3158,"_stem":3159,"_extension":34},"/en-us/blog/authors/gina-doyle",{"name":3152,"config":3153},"Gina Doyle",{"headshot":3154,"ctfId":3155},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679201/Blog/Author%20Headshots/gdoyle-headshot.png","gdoyle",{"template":691},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3161,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3162,"config":3165,"_id":3166,"_type":29,"title":3167,"_source":31,"_file":3168,"_stem":3169,"_extension":34},"/en-us/blog/authors/gitlab",{"name":3163,"config":3164},"GitLab",{"headshot":722,"ctfId":3163},{"template":691},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3171,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3172,"config":3176,"_id":3177,"_type":29,"title":3178,"_source":31,"_file":3179,"_stem":3180,"_extension":34},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3173,"config":3174},"GitLab AI Assisted Group",{"headshot":722,"ctfId":3175},"GitLab-AI-Assisted-Group",{"template":691},"content:en-us:blog:authors:gitlab-ai-assisted-group.yml","Gitlab Ai Assisted Group","en-us/blog/authors/gitlab-ai-assisted-group.yml","en-us/blog/authors/gitlab-ai-assisted-group",{"_path":3182,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3183,"config":3187,"_id":3188,"_type":29,"title":3189,"_source":31,"_file":3190,"_stem":3191,"_extension":34},"/en-us/blog/authors/gitlab-france-team",{"name":3184,"config":3185},"GitLab France Team",{"headshot":722,"ctfId":3186},"1gfblqN0ibYIuWGk7MOTny",{"template":691},"content:en-us:blog:authors:gitlab-france-team.yml","Gitlab France Team","en-us/blog/authors/gitlab-france-team.yml","en-us/blog/authors/gitlab-france-team",{"_path":3193,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3194,"config":3198,"_id":3199,"_type":29,"title":3200,"_source":31,"_file":3201,"_stem":3202,"_extension":34},"/en-us/blog/authors/gitlab-germany-team",{"name":3195,"config":3196},"GitLab Germany Team",{"headshot":722,"ctfId":3197},"6tNquF8jQeRRRi8k3ZXpvS",{"template":691},"content:en-us:blog:authors:gitlab-germany-team.yml","Gitlab Germany Team","en-us/blog/authors/gitlab-germany-team.yml","en-us/blog/authors/gitlab-germany-team",{"_path":3204,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3205,"config":3209,"_id":3210,"_type":29,"title":3211,"_source":31,"_file":3212,"_stem":3213,"_extension":34},"/en-us/blog/authors/gitlab-japan-team",{"name":3206,"config":3207},"GitLab Japan Team",{"headshot":722,"ctfId":3208},"5YWHF8vG80rluQ41QjgP7V",{"template":691},"content:en-us:blog:authors:gitlab-japan-team.yml","Gitlab Japan Team","en-us/blog/authors/gitlab-japan-team.yml","en-us/blog/authors/gitlab-japan-team",{"_path":3215,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3216,"config":3220,"_id":3221,"_type":29,"title":3222,"_source":31,"_file":3223,"_stem":3224,"_extension":34},"/en-us/blog/authors/gitlab-security-team",{"name":3217,"config":3218},"GitLab Security Team",{"headshot":722,"ctfId":3219},"GitLab-Security-Team",{"template":691},"content:en-us:blog:authors:gitlab-security-team.yml","Gitlab Security Team","en-us/blog/authors/gitlab-security-team.yml","en-us/blog/authors/gitlab-security-team",{"_path":3226,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3227,"config":3231,"_id":3232,"_type":29,"title":3233,"_source":31,"_file":3234,"_stem":3235,"_extension":34},"/en-us/blog/authors/gitlab-team",{"name":3228,"config":3229},"GitLab Team",{"headshot":722,"ctfId":3230},"GitLab-Team",{"template":691},"content:en-us:blog:authors:gitlab-team.yml","Gitlab Team","en-us/blog/authors/gitlab-team.yml","en-us/blog/authors/gitlab-team",{"_path":3237,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3238,"config":3242,"_id":3243,"_type":29,"title":3244,"_source":31,"_file":3245,"_stem":3246,"_extension":34},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3239,"config":3240},"GitLab Vulnerability Research Team",{"headshot":722,"ctfId":3241},"GitLab-Vulnerability-Research-Team",{"template":691},"content:en-us:blog:authors:gitlab-vulnerability-research-team.yml","Gitlab Vulnerability Research Team","en-us/blog/authors/gitlab-vulnerability-research-team.yml","en-us/blog/authors/gitlab-vulnerability-research-team",{"_path":3248,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3249,"config":3253,"_id":3254,"_type":29,"title":3250,"_source":31,"_file":3255,"_stem":3256,"_extension":34},"/en-us/blog/authors/goetz-buerkle",{"name":3250,"config":3251},"Goetz Buerkle",{"headshot":722,"ctfId":3252},"Goetz-Buerkle",{"template":691},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3258,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3259,"config":3264,"_id":3265,"_type":29,"title":3260,"_source":31,"_file":3266,"_stem":3267,"_extension":34},"/en-us/blog/authors/gosia-ksionek",{"name":3260,"config":3261},"Gosia Ksionek",{"headshot":3262,"ctfId":3263},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680521/Blog/Author%20Headshots/mksionek-headshot.jpg","mksionek",{"template":691},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3269,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3270,"config":3275,"_id":3276,"_type":29,"title":3271,"_source":31,"_file":3277,"_stem":3278,"_extension":34},"/en-us/blog/authors/grant-hickman",{"name":3271,"config":3272},"Grant Hickman",{"headshot":3273,"ctfId":3274},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682570/Blog/Author%20Headshots/g.png","ghickman",{"template":691},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3280,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3281,"config":3286,"_id":3287,"_type":29,"title":3282,"_source":31,"_file":3288,"_stem":3289,"_extension":34},"/en-us/blog/authors/grant-young",{"name":3282,"config":3283},"Grant Young",{"headshot":3284,"ctfId":3285},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666346/Blog/Author%20Headshots/grantyoung-headshot.jpg","grantyoung",{"template":691},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3291,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3292,"config":3296,"_id":3297,"_type":29,"title":3293,"_source":31,"_file":3298,"_stem":3299,"_extension":34},"/en-us/blog/authors/greg-alfaro",{"name":3293,"config":3294},"Greg Alfaro",{"headshot":7,"ctfId":3295},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":691},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3301,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3302,"config":3306,"_id":3307,"_type":29,"title":3303,"_source":31,"_file":3308,"_stem":3309,"_extension":34},"/en-us/blog/authors/greg-johnson",{"name":3303,"config":3304},"Greg Johnson",{"headshot":7,"ctfId":3305},"codeEmitter",{"template":691},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3311,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3312,"config":3317,"_id":3318,"_type":29,"title":3313,"_source":31,"_file":3319,"_stem":3320,"_extension":34},"/en-us/blog/authors/greg-myers",{"name":3313,"config":3314},"Greg Myers",{"headshot":3315,"ctfId":3316},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665570/Blog/Author%20Headshots/greg_myers_headshot.png","2uUYKgdtszyGfoOHbakiQX",{"template":691},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3322,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3323,"config":3327,"_id":3328,"_type":29,"title":3324,"_source":31,"_file":3329,"_stem":3330,"_extension":34},"/en-us/blog/authors/grzegorz-bizon",{"name":3324,"config":3325},"Grzegorz Bizon",{"headshot":722,"ctfId":3326},"Grzegorz-Bizon",{"template":691},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3332,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3333,"config":3337,"_id":3338,"_type":29,"title":3334,"_source":31,"_file":3339,"_stem":3340,"_extension":34},"/en-us/blog/authors/guenjun-yoo",{"name":3334,"config":3335},"Guenjun Yoo",{"headshot":7,"ctfId":3336},"gyoo",{"template":691},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3342,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3343,"config":3347,"_id":3348,"_type":29,"title":3349,"_source":31,"_file":3350,"_stem":3351,"_extension":34},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3344,"config":3345},"Guest author André Arko of Ruby Together",{"headshot":722,"ctfId":3346},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":691},"content:en-us:blog:authors:guest-author-andr-arko-of-ruby-together.yml","Guest Author Andr Arko Of Ruby Together","en-us/blog/authors/guest-author-andr-arko-of-ruby-together.yml","en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"_path":3353,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3354,"config":3358,"_id":3359,"_type":29,"title":3360,"_source":31,"_file":3361,"_stem":3362,"_extension":34},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3355,"config":3356},"Guest author André Miranda",{"headshot":722,"ctfId":3357},"Guest-author-Andr-Miranda",{"template":691},"content:en-us:blog:authors:guest-author-andr-miranda.yml","Guest Author Andr Miranda","en-us/blog/authors/guest-author-andr-miranda.yml","en-us/blog/authors/guest-author-andr-miranda",{"_path":3364,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3365,"config":3371,"_id":3372,"_type":29,"title":3373,"_source":31,"_file":3374,"_stem":3375,"_extension":34},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3366,"config":3367},"Gufran Yeşilyurt, OBSS",{"headshot":3368,"linkedin":3369,"ctfId":3370},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666380/Blog/Author%20Headshots/1643972670650.jpg","https://www.linkedin.com/in/gufran-yesilyurt/","2ydYMU86my71BUASual2EI",{"template":691},"content:en-us:blog:authors:gufran-yeilyurt-obss.yml","Gufran Yeilyurt Obss","en-us/blog/authors/gufran-yeilyurt-obss.yml","en-us/blog/authors/gufran-yeilyurt-obss",{"_path":3377,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3378,"config":3382,"_id":3383,"_type":29,"title":3384,"_source":31,"_file":3385,"_stem":3386,"_extension":34},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3379,"config":3380},"Gustaw Fit of Zoopla",{"headshot":722,"ctfId":3381},"Gustaw-Fit-of-Zoopla",{"template":691},"content:en-us:blog:authors:gustaw-fit-of-zoopla.yml","Gustaw Fit Of Zoopla","en-us/blog/authors/gustaw-fit-of-zoopla.yml","en-us/blog/authors/gustaw-fit-of-zoopla",{"_path":3388,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3389,"config":3393,"_id":3394,"_type":29,"title":3395,"_source":31,"_file":3396,"_stem":3397,"_extension":34},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3390,"config":3391},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":722,"ctfId":3392},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":691},"content:en-us:blog:authors:guy-bar-gil-product-manager-at-whitesource.yml","Guy Bar Gil Product Manager At Whitesource","en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource.yml","en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"_path":3399,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3400,"config":3404,"_id":3405,"_type":29,"title":3401,"_source":31,"_file":3406,"_stem":3407,"_extension":34},"/en-us/blog/authors/gyan-chawdhary",{"name":3401,"config":3402},"Gyan Chawdhary",{"headshot":722,"ctfId":3403},"Gyan-Chawdhary",{"template":691},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3409,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3410,"config":3415,"_id":3416,"_type":29,"title":3411,"_source":31,"_file":3417,"_stem":3418,"_extension":34},"/en-us/blog/authors/haim-snir",{"name":3411,"config":3412},"Haim Snir",{"headshot":3413,"ctfId":3414},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664386/Blog/Author%20Headshots/hsnir1-headshot.jpg","hsnir1",{"template":691},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3420,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3421,"config":3426,"_id":3427,"_type":29,"title":3428,"_source":31,"_file":3429,"_stem":3430,"_extension":34},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3422,"config":3423},"Hakeem Abdul-Razak",{"headshot":3424,"ctfId":3425},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662077/Blog/Author%20Headshots/Hakeem_Abdul-Razak_headshot.png","7H6nuZfVCK5mqJBK4fuaDH",{"template":691},"content:en-us:blog:authors:hakeem-abdul-razak.yml","Hakeem Abdul Razak","en-us/blog/authors/hakeem-abdul-razak.yml","en-us/blog/authors/hakeem-abdul-razak",{"_path":3432,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3433,"config":3437,"_id":3439,"_type":29,"title":3434,"_source":31,"_file":3440,"_stem":3441,"_extension":34},"/en-us/blog/authors/halil-coban",{"name":3434,"config":3435},"Halil Coban",{"headshot":3436},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":691,"gitlabHandle":3438},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3443,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3444,"config":3449,"_id":3450,"_type":29,"title":3445,"_source":31,"_file":3451,"_stem":3452,"_extension":34},"/en-us/blog/authors/hannah-sutor",{"name":3445,"config":3446},"Hannah Sutor",{"headshot":3447,"ctfId":3448},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665588/Blog/Author%20Headshots/hsutor-headshot.png","hsutor",{"template":691},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3454,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3455,"config":3460,"_id":3461,"_type":29,"title":3456,"_source":31,"_file":3462,"_stem":3463,"_extension":34},"/en-us/blog/authors/harjeet-sharma",{"name":3456,"config":3457},"Harjeet Sharma",{"headshot":3458,"ctfId":3459},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665497/Blog/Author%20Headshots/harjeet_sharma_headshot.png","723O6GGQQEu75MCuhw6lqh",{"template":691},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3465,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3466,"config":3470,"_id":3471,"_type":29,"title":3467,"_source":31,"_file":3472,"_stem":3473,"_extension":34},"/en-us/blog/authors/haydn-mackay",{"name":3467,"config":3468},"Haydn Mackay",{"headshot":722,"ctfId":3469},"Haydn-Mackay",{"template":691},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3475,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3476,"config":3480,"_id":3481,"_type":29,"title":3477,"_source":31,"_file":3482,"_stem":3483,"_extension":34},"/en-us/blog/authors/hazel-yang",{"name":3477,"config":3478},"Hazel Yang",{"headshot":7,"ctfId":3479},"hazelyang",{"template":691},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3485,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3486,"config":3490,"_id":3491,"_type":29,"title":3492,"_source":31,"_file":3493,"_stem":3494,"_extension":34},"/en-us/blog/authors/heather-mcnamee",{"name":3487,"config":3488},"Heather McNamee",{"headshot":722,"ctfId":3489},"Heather-McNamee",{"template":691},"content:en-us:blog:authors:heather-mcnamee.yml","Heather Mcnamee","en-us/blog/authors/heather-mcnamee.yml","en-us/blog/authors/heather-mcnamee",{"_path":3496,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3497,"config":3501,"_id":3502,"_type":29,"title":3498,"_source":31,"_file":3503,"_stem":3504,"_extension":34},"/en-us/blog/authors/heather-simpson",{"name":3498,"config":3499},"Heather Simpson",{"headshot":722,"ctfId":3500},"hsimpson",{"template":691},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3506,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3507,"config":3512,"_id":3513,"_type":29,"title":3508,"_source":31,"_file":3514,"_stem":3515,"_extension":34},"/en-us/blog/authors/hillary-benson",{"name":3508,"config":3509},"Hillary Benson",{"headshot":3510,"ctfId":3511},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683387/Blog/Author%20Headshots/hillarybensonheadshot.png","45VEFoISCoOhRXzyPyAf1x",{"template":691},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3517,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3518,"config":3522,"_id":3524,"_type":29,"title":3519,"_source":31,"_file":3525,"_stem":3526,"_extension":34},"/en-us/blog/authors/himanshu-kapoor",{"name":3519,"config":3520},"Himanshu Kapoor",{"headshot":3521},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":691,"gitlabHandle":3523},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3528,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3529,"config":3534,"_id":3535,"_type":29,"title":3530,"_source":31,"_file":3536,"_stem":3537,"_extension":34},"/en-us/blog/authors/hiroki-suezawa",{"name":3530,"config":3531},"Hiroki Suezawa",{"headshot":3532,"ctfId":3533},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662370/Blog/Author%20Headshots/hiroki_suezawa.png","cw6ZIj0yjr1uw2LAFr23h",{"template":691},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3539,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3540,"config":3544,"_id":3545,"_type":29,"title":3541,"_source":31,"_file":3546,"_stem":3547,"_extension":34},"/en-us/blog/authors/holly-reynolds",{"name":3541,"config":3542},"Holly Reynolds",{"headshot":7,"ctfId":3543},"hollyreynolds",{"template":691},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3549,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3550,"config":3554,"_id":3555,"_type":29,"title":3551,"_source":31,"_file":3556,"_stem":3557,"_extension":34},"/en-us/blog/authors/huldra",{"name":3551,"config":3552},"Huldra",{"headshot":7,"ctfId":3553},"huldra",{"template":691},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3559,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3560,"config":3564,"_id":3565,"_type":29,"title":3561,"_source":31,"_file":3566,"_stem":3567,"_extension":34},"/en-us/blog/authors/iain-camacho",{"name":3561,"config":3562},"Iain Camacho",{"headshot":7,"ctfId":3563},"icamacho",{"template":691},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3569,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3570,"config":3574,"_id":3575,"_type":29,"title":3571,"_source":31,"_file":3576,"_stem":3577,"_extension":34},"/en-us/blog/authors/ian-bartholomew",{"name":3571,"config":3572},"Ian Bartholomew",{"headshot":722,"ctfId":3573},"7D4PE43CXfi8pgOSCmipH0",{"template":691},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3579,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3580,"config":3585,"_id":3586,"_type":29,"title":3581,"_source":31,"_file":3587,"_stem":3588,"_extension":34},"/en-us/blog/authors/ian-khor",{"name":3581,"config":3582},"Ian Khor",{"headshot":3583,"ctfId":3584},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662933/Blog/Author%20Headshots/ian_khor_headshot.png","nSk8fzDwtG3LVFWwg8HrF",{"template":691},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3590,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3591,"config":3596,"_id":3597,"_type":29,"title":3592,"_source":31,"_file":3598,"_stem":3599,"_extension":34},"/en-us/blog/authors/ian-pedowitz",{"name":3592,"config":3593},"Ian Pedowitz",{"headshot":3594,"ctfId":3595},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683040/Blog/Author%20Headshots/ipedowitz-headshot.jpg","ipedowitz",{"template":691},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3601,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3602,"config":3607,"_id":3608,"_type":29,"title":3603,"_source":31,"_file":3609,"_stem":3610,"_extension":34},"/en-us/blog/authors/igor-drozdov",{"name":3603,"config":3604},"Igor Drozdov",{"headshot":3605,"ctfId":3606},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672455/Blog/Author%20Headshots/igor.png","igordrozdov",{"template":691},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3612,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3613,"config":3618,"_id":3619,"_type":29,"title":3614,"_source":31,"_file":3620,"_stem":3621,"_extension":34},"/en-us/blog/authors/igor-wiedler",{"name":3614,"config":3615},"Igor Wiedler",{"headshot":3616,"ctfId":3617},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681841/Blog/Author%20Headshots/igorwwwwwwwwwwwwwwwwwwww-headshot.png","igorwwwwwwwwwwwwwwwwwwww",{"template":691},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3623,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3624,"config":3629,"_id":3630,"_type":29,"title":3631,"_source":31,"_file":3632,"_stem":3633,"_extension":34},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3625,"config":3626},"Inchul Yoo, Sunjung Park",{"headshot":3627,"ctfId":3628},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669731/Blog/Author%20Headshots/sunjungp-headshot.png","sunjungp",{"template":691},"content:en-us:blog:authors:inchul-yoo-sunjung-park.yml","Inchul Yoo Sunjung Park","en-us/blog/authors/inchul-yoo-sunjung-park.yml","en-us/blog/authors/inchul-yoo-sunjung-park",{"_path":3635,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3636,"config":3641,"_id":3642,"_type":29,"title":3637,"_source":31,"_file":3643,"_stem":3644,"_extension":34},"/en-us/blog/authors/isaac-dawson",{"name":3637,"config":3638},"Isaac Dawson",{"headshot":3639,"ctfId":3640},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669814/Blog/Author%20Headshots/idawson-headshot.jpg","idawson",{"template":691},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3646,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3647,"config":3651,"_id":3653,"_type":29,"title":3654,"_source":31,"_file":3655,"_stem":3656,"_extension":34},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3648,"name":3650},{"headshot":3649},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":691,"gitlabHandle":3652},"https://gitlab.com/issei-hamada","content:en-us:blog:authors:issei-hamada-sony-biz-networks-corporation.yml","Issei Hamada Sony Biz Networks Corporation","en-us/blog/authors/issei-hamada-sony-biz-networks-corporation.yml","en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"_path":3658,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3659,"config":3664,"_id":3665,"_type":29,"title":3660,"_source":31,"_file":3666,"_stem":3667,"_extension":34},"/en-us/blog/authors/itzik-gan-baruch",{"name":3660,"config":3661},"Itzik Gan Baruch",{"headshot":3662,"ctfId":3663},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch",{"template":691},"content:en-us:blog:authors:itzik-gan-baruch.yml","en-us/blog/authors/itzik-gan-baruch.yml","en-us/blog/authors/itzik-gan-baruch",{"_path":3669,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3670,"config":3674,"_id":3675,"_type":29,"title":3671,"_source":31,"_file":3676,"_stem":3677,"_extension":34},"/en-us/blog/authors/ivan-lychev",{"name":3671,"config":3672},"Ivan Lychev",{"headshot":7,"ctfId":3673},"iLychevAD",{"template":691},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3679,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3680,"config":3684,"_id":3685,"_type":29,"title":3681,"_source":31,"_file":3686,"_stem":3687,"_extension":34},"/en-us/blog/authors/ivan-nemytchenko",{"name":3681,"config":3682},"Ivan Nemytchenko",{"headshot":722,"ctfId":3683},"Ivan-Nemytchenko",{"template":691},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3689,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3690,"config":3696,"_id":3697,"_type":29,"title":3692,"_source":31,"_file":3698,"_stem":3699,"_extension":34},"/en-us/blog/authors/ivanha-paz",{"role":3691,"name":3692,"config":3693},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3694,"ctfId":3695},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":691},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3701,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3702,"config":3706,"_id":3707,"_type":29,"title":3703,"_source":31,"_file":3708,"_stem":3709,"_extension":34},"/en-us/blog/authors/jacie-bandur",{"name":3703,"config":3704},"Jacie Bandur",{"headshot":7,"ctfId":3705},"jbandur",{"template":691},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3711,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3712,"config":3717,"_id":3718,"_type":29,"title":3713,"_source":31,"_file":3719,"_stem":3720,"_extension":34},"/en-us/blog/authors/jacki-bauer",{"name":3713,"config":3714},"Jacki Bauer",{"headshot":3715,"ctfId":3716},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":691},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3722,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3723,"config":3727,"_id":3728,"_type":29,"title":3724,"_source":31,"_file":3729,"_stem":3730,"_extension":34},"/en-us/blog/authors/jackie-meshell",{"name":3724,"config":3725},"Jackie Meshell",{"headshot":7,"ctfId":3726},"jmeshell",{"template":691},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3732,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3733,"config":3738,"_id":3739,"_type":29,"title":3734,"_source":31,"_file":3740,"_stem":3741,"_extension":34},"/en-us/blog/authors/jackie-porter",{"name":3734,"config":3735},"Jackie Porter",{"headshot":3736,"ctfId":3737},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":691},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3743,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3744,"config":3748,"_id":3749,"_type":29,"title":3745,"_source":31,"_file":3750,"_stem":3751,"_extension":34},"/en-us/blog/authors/jacob-schatz",{"name":3745,"config":3746},"Jacob Schatz",{"headshot":7,"ctfId":3747},"jschatz1",{"template":691},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3753,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3754,"config":3758,"_id":3759,"_type":29,"title":3755,"_source":31,"_file":3760,"_stem":3761,"_extension":34},"/en-us/blog/authors/jacob-vosmaer",{"name":3755,"config":3756},"Jacob Vosmaer",{"headshot":722,"ctfId":3757},"Jacob-Vosmaer",{"template":691},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3763,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3764,"config":3769,"_id":3770,"_type":29,"title":3765,"_source":31,"_file":3771,"_stem":3772,"_extension":34},"/en-us/blog/authors/jacques-erasmus",{"name":3765,"config":3766},"Jacques Erasmus",{"headshot":3767,"ctfId":3768},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":691},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3774,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3775,"config":3780,"_id":3781,"_type":29,"title":3782,"_source":31,"_file":3783,"_stem":3784,"_extension":34},"/en-us/blog/authors/jaime-martnez",{"name":3776,"config":3777},"Jaime Martínez",{"headshot":3778,"ctfId":3779},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":691},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3786,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3787,"config":3791,"_id":3792,"_type":29,"title":3788,"_source":31,"_file":3793,"_stem":3794,"_extension":34},"/en-us/blog/authors/jake-foster",{"name":3788,"config":3789},"Jake Foster",{"headshot":722,"ctfId":3790},"jakefoster1",{"template":691},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3796,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3797,"config":3801,"_id":3802,"_type":29,"title":3798,"_source":31,"_file":3803,"_stem":3804,"_extension":34},"/en-us/blog/authors/jake-stein",{"name":3798,"config":3799},"Jake Stein",{"headshot":722,"ctfId":3800},"Jake-Stein",{"template":691},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3806,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3807,"config":3811,"_id":3812,"_type":29,"title":3808,"_source":31,"_file":3813,"_stem":3814,"_extension":34},"/en-us/blog/authors/james-dang",{"name":3808,"config":3809},"James Dang",{"headshot":722,"ctfId":3810},"James-Dang",{"template":691},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3816,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3817,"config":3822,"_id":3823,"_type":29,"title":3818,"_source":31,"_file":3824,"_stem":3825,"_extension":34},"/en-us/blog/authors/james-heimbuck",{"name":3818,"config":3819},"James Heimbuck",{"headshot":3820,"ctfId":3821},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":691},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3827,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3828,"config":3832,"_id":3833,"_type":29,"title":3829,"_source":31,"_file":3834,"_stem":3835,"_extension":34},"/en-us/blog/authors/james-ramsay",{"name":3829,"config":3830},"James Ramsay",{"headshot":7,"ctfId":3831},"jramsay",{"template":691},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3837,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3838,"config":3843,"_id":3844,"_type":29,"title":3839,"_source":31,"_file":3845,"_stem":3846,"_extension":34},"/en-us/blog/authors/james-wormwell",{"name":3839,"config":3840},"James Wormwell",{"headshot":3841,"ctfId":3842},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":691},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3848,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3849,"config":3853,"_id":3854,"_type":29,"title":3850,"_source":31,"_file":3855,"_stem":3856,"_extension":34},"/en-us/blog/authors/jamie-hurewitz",{"name":3850,"config":3851},"Jamie Hurewitz",{"headshot":722,"ctfId":3852},"Jamie-Hurewitz",{"template":691},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3858,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3859,"config":3863,"_id":3864,"_type":29,"title":3860,"_source":31,"_file":3865,"_stem":3866,"_extension":34},"/en-us/blog/authors/jamie-rachel",{"name":3860,"config":3861},"Jamie Rachel",{"headshot":7,"ctfId":3862},"jrachel1",{"template":691},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3868,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3869,"config":3874,"_id":3875,"_type":29,"title":3870,"_source":31,"_file":3876,"_stem":3877,"_extension":34},"/en-us/blog/authors/jan-provaznik",{"name":3870,"config":3871},"Jan Provaznik",{"headshot":3872,"ctfId":3873},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":691},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3879,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3880,"config":3885,"_id":3886,"_type":29,"title":3881,"_source":31,"_file":3887,"_stem":3888,"_extension":34},"/en-us/blog/authors/janis-altherr",{"name":3881,"config":3882},"Janis Altherr",{"headshot":3883,"ctfId":3884},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":691},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3890,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3891,"config":3896,"_id":3897,"_type":29,"title":3892,"_source":31,"_file":3898,"_stem":3899,"_extension":34},"/en-us/blog/authors/jannik-lehmann",{"name":3892,"config":3893},"Jannik Lehmann",{"headshot":3894,"ctfId":3895},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":691},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3901,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3902,"config":3907,"_id":3908,"_type":29,"title":3909,"_source":31,"_file":3910,"_stem":3911,"_extension":34},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3903,"config":3904},"Jarka Košanová et al",{"headshot":3905,"ctfId":3906},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":691},"content:en-us:blog:authors:jarka-koanov-et-al.yml","Jarka Koanov Et Al","en-us/blog/authors/jarka-koanov-et-al.yml","en-us/blog/authors/jarka-koanov-et-al",{"_path":3913,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3914,"config":3918,"_id":3919,"_type":29,"title":3920,"_source":31,"_file":3921,"_stem":3922,"_extension":34},"/en-us/blog/authors/jason-blais-mattermost",{"name":3915,"config":3916},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3917},"jasonblais",{"template":691},"content:en-us:blog:authors:jason-blais-mattermost.yml","Jason Blais Mattermost","en-us/blog/authors/jason-blais-mattermost.yml","en-us/blog/authors/jason-blais-mattermost",{"_path":3924,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3925,"config":3929,"_id":3930,"_type":29,"title":3926,"_source":31,"_file":3931,"_stem":3932,"_extension":34},"/en-us/blog/authors/jason-chen",{"name":3926,"config":3927},"Jason Chen",{"headshot":722,"ctfId":3928},"Jason-Chen",{"template":691},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3934,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3935,"config":3940,"_id":3941,"_type":29,"title":3936,"_source":31,"_file":3942,"_stem":3943,"_extension":34},"/en-us/blog/authors/jason-colyer",{"name":3936,"config":3937},"Jason Colyer",{"headshot":3938,"ctfId":3939},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":691},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3945,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3946,"config":3951,"_id":3952,"_type":29,"title":3947,"_source":31,"_file":3953,"_stem":3954,"_extension":34},"/en-us/blog/authors/jason-plum",{"name":3947,"config":3948},"Jason Plum",{"headshot":3949,"ctfId":3950},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":691},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":3956,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3957,"config":3961,"_id":3962,"_type":29,"title":3958,"_source":31,"_file":3963,"_stem":3964,"_extension":34},"/en-us/blog/authors/jason-yavorska",{"name":3958,"config":3959},"Jason Yavorska",{"headshot":7,"ctfId":3960},"jyavorska",{"template":691},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":3966,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3967,"config":3971,"_id":3972,"_type":29,"title":3968,"_source":31,"_file":3973,"_stem":3974,"_extension":34},"/en-us/blog/authors/jay-newman",{"name":3968,"config":3969},"Jay Newman",{"headshot":722,"ctfId":3970},"Jay-Newman",{"template":691},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":3976,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3977,"config":3982,"_id":3983,"_type":29,"title":3978,"_source":31,"_file":3984,"_stem":3985,"_extension":34},"/en-us/blog/authors/jayson-salazar",{"name":3978,"config":3979},"Jayson Salazar",{"headshot":3980,"ctfId":3981},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":691},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":3987,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3988,"config":3992,"_id":3993,"_type":29,"title":3994,"_source":31,"_file":3995,"_stem":3996,"_extension":34},"/en-us/blog/authors/jd-alex",{"name":3989,"config":3990},"JD Alex",{"headshot":7,"ctfId":3991},"jalex1",{"template":691},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":3998,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":3999,"config":4003,"_id":4004,"_type":29,"title":4005,"_source":31,"_file":4006,"_stem":4007,"_extension":34},"/en-us/blog/authors/jean-philippe-baconnais",{"name":4000,"config":4001},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":4002},"jeanphibaconnais",{"template":691},"content:en-us:blog:authors:jean-philippe-baconnais.yml","Jean Philippe Baconnais","en-us/blog/authors/jean-philippe-baconnais.yml","en-us/blog/authors/jean-philippe-baconnais",{"_path":4009,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4010,"config":4015,"_id":4016,"_type":29,"title":4011,"_source":31,"_file":4017,"_stem":4018,"_extension":34},"/en-us/blog/authors/jeff-burrows",{"name":4011,"config":4012},"Jeff Burrows",{"headshot":4013,"ctfId":4014},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":691},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4020,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4021,"config":4025,"_id":4026,"_type":29,"title":4022,"_source":31,"_file":4027,"_stem":4028,"_extension":34},"/en-us/blog/authors/jeff-kelsey",{"name":4022,"config":4023},"Jeff Kelsey",{"headshot":722,"ctfId":4024},"Jeff-Kelsey",{"template":691},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4030,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4031,"config":4036,"_id":4037,"_type":29,"title":4032,"_source":31,"_file":4038,"_stem":4039,"_extension":34},"/en-us/blog/authors/jeff-park",{"name":4032,"config":4033},"Jeff Park",{"headshot":4034,"ctfId":4035},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":691},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4041,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4042,"config":4047,"_id":4048,"_type":29,"title":4043,"_source":31,"_file":4049,"_stem":4050,"_extension":34},"/en-us/blog/authors/jeff-tucker",{"name":4043,"config":4044},"Jeff Tucker",{"headshot":4045,"ctfId":4046},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":691},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4052,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4053,"config":4058,"_id":4059,"_type":29,"title":4054,"_source":31,"_file":4060,"_stem":4061,"_extension":34},"/en-us/blog/authors/jensen-stava",{"name":4054,"config":4055},"Jensen Stava",{"headshot":4056,"ctfId":4057},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":691},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4063,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4064,"config":4068,"_id":4069,"_type":29,"title":4065,"_source":31,"_file":4070,"_stem":4071,"_extension":34},"/en-us/blog/authors/jeremy-cooper",{"name":4065,"config":4066},"Jeremy Cooper",{"headshot":722,"ctfId":4067},"6sXs62l8jODDcUlS9OPgTu",{"template":691},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4073,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4074,"config":4079,"_id":4080,"_type":29,"title":4075,"_source":31,"_file":4081,"_stem":4082,"_extension":34},"/en-us/blog/authors/jeremy-elder",{"name":4075,"config":4076},"Jeremy Elder",{"headshot":4077,"ctfId":4078},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":691},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4084,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4085,"config":4090,"_id":4091,"_type":29,"title":4086,"_source":31,"_file":4092,"_stem":4093,"_extension":34},"/en-us/blog/authors/jeremy-wagner",{"name":4086,"config":4087},"Jeremy Wagner",{"headshot":4088,"ctfId":4089},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":691},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4095,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4096,"config":4100,"_id":4101,"_type":29,"title":4097,"_source":31,"_file":4102,"_stem":4103,"_extension":34},"/en-us/blog/authors/jeremy-watson",{"name":4097,"config":4098},"Jeremy Watson",{"headshot":7,"ctfId":4099},"jeremy",{"template":691},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4105,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4106,"config":4111,"_id":4112,"_type":29,"title":4107,"_source":31,"_file":4113,"_stem":4114,"_extension":34},"/en-us/blog/authors/jerez-solis",{"name":4107,"config":4108},"Jerez Solis",{"headshot":4109,"ctfId":4110},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":691},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4116,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4117,"config":4121,"_id":4122,"_type":29,"title":4123,"_source":31,"_file":4124,"_stem":4125,"_extension":34},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4118,"config":4119},"Jeroen van Baarsen",{"headshot":722,"ctfId":4120},"Jeroen-van-Baarsen",{"template":691},"content:en-us:blog:authors:jeroen-van-baarsen.yml","Jeroen Van Baarsen","en-us/blog/authors/jeroen-van-baarsen.yml","en-us/blog/authors/jeroen-van-baarsen",{"_path":4127,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4128,"config":4133,"_id":4134,"_type":29,"title":4129,"_source":31,"_file":4135,"_stem":4136,"_extension":34},"/en-us/blog/authors/jessica-hurwitz",{"name":4129,"config":4130},"Jessica Hurwitz",{"headshot":4131,"ctfId":4132},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":691},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4138,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4139,"config":4143,"_id":4144,"_type":29,"title":4140,"_source":31,"_file":4145,"_stem":4146,"_extension":34},"/en-us/blog/authors/jim-riley",{"name":4140,"config":4141},"Jim Riley",{"headshot":7,"ctfId":4142},"GitLabcom-username-jrileyinva",{"template":691},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4148,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4149,"config":4153,"_id":4154,"_type":29,"title":4150,"_source":31,"_file":4155,"_stem":4156,"_extension":34},"/en-us/blog/authors/jim-thavisouk",{"name":4150,"config":4151},"Jim Thavisouk",{"headshot":722,"ctfId":4152},"jimthavisouk",{"template":691},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4158,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4159,"config":4163,"_id":4164,"_type":29,"title":4165,"_source":31,"_file":4166,"_stem":4167,"_extension":34},"/en-us/blog/authors/job-van-der-voort",{"name":4160,"config":4161},"Job van der Voort",{"headshot":722,"ctfId":4162},"Job-van-der-Voort",{"template":691},"content:en-us:blog:authors:job-van-der-voort.yml","Job Van Der Voort","en-us/blog/authors/job-van-der-voort.yml","en-us/blog/authors/job-van-der-voort",{"_path":4169,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4170,"config":4175,"_id":4176,"_type":29,"title":4171,"_source":31,"_file":4177,"_stem":4178,"_extension":34},"/en-us/blog/authors/jocelyn-eillis",{"name":4171,"config":4172},"Jocelyn Eillis",{"headshot":4173,"ctfId":4174},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":691},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4180,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4181,"config":4185,"_id":4186,"_type":29,"title":4182,"_source":31,"_file":4187,"_stem":4188,"_extension":34},"/en-us/blog/authors/jochen-roth",{"name":4182,"config":4183},"Jochen Roth",{"headshot":7,"ctfId":4184},"ochorocho",{"template":691},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4190,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4191,"config":4196,"_id":4197,"_type":29,"title":4192,"_source":31,"_file":4198,"_stem":4199,"_extension":34},"/en-us/blog/authors/joe-randazzo",{"name":4192,"config":4193},"Joe Randazzo",{"headshot":4194,"ctfId":4195},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":691},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4201,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4202,"config":4207,"_id":4208,"_type":29,"title":4203,"_source":31,"_file":4209,"_stem":4210,"_extension":34},"/en-us/blog/authors/joel-krooswyk",{"name":4203,"config":4204},"Joel Krooswyk",{"headshot":4205,"ctfId":4206},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":691},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4212,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4213,"config":4218,"_id":4219,"_type":29,"title":4214,"_source":31,"_file":4220,"_stem":4221,"_extension":34},"/en-us/blog/authors/joern-schneeweisz",{"name":4214,"config":4215},"Joern Schneeweisz",{"headshot":4216,"ctfId":4217},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":691},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4223,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4224,"config":4228,"_id":4229,"_type":29,"title":4225,"_source":31,"_file":4230,"_stem":4231,"_extension":34},"/en-us/blog/authors/joey-salazar",{"name":4225,"config":4226},"Joey Salazar",{"headshot":722,"ctfId":4227},"4LgUP4bzQV6kuhoZNFID9r",{"template":691},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4233,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4234,"config":4238,"_id":4239,"_type":29,"title":4235,"_source":31,"_file":4240,"_stem":4241,"_extension":34},"/en-us/blog/authors/johanna-ambrosio",{"name":4235,"config":4236},"Johanna Ambrosio",{"headshot":722,"ctfId":4237},"Johanna-Ambrosio",{"template":691},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4243,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4244,"config":4249,"_id":4250,"_type":29,"title":4245,"_source":31,"_file":4251,"_stem":4252,"_extension":34},"/en-us/blog/authors/johannes-bauer",{"name":4245,"config":4246},"Johannes Bauer",{"headshot":4247,"ctfId":4248},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":691},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4254,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4255,"config":4260,"_id":4261,"_type":29,"title":4256,"_source":31,"_file":4262,"_stem":4263,"_extension":34},"/en-us/blog/authors/john-cai",{"name":4256,"config":4257},"John Cai",{"headshot":4258,"ctfId":4259},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":691},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4265,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4266,"config":4271,"_id":4272,"_type":29,"title":4267,"_source":31,"_file":4273,"_stem":4274,"_extension":34},"/en-us/blog/authors/john-coghlan",{"name":4267,"config":4268},"John Coghlan",{"headshot":4269,"ctfId":4270},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":691},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4276,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4277,"config":4282,"_id":4283,"_type":29,"title":4278,"_source":31,"_file":4284,"_stem":4285,"_extension":34},"/en-us/blog/authors/john-crowley",{"name":4278,"config":4279},"John Crowley",{"headshot":4280,"ctfId":4281},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":691},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4287,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4288,"config":4293,"_id":4294,"_type":29,"title":4289,"_source":31,"_file":4295,"_stem":4296,"_extension":34},"/en-us/blog/authors/john-jarvis",{"name":4289,"config":4290},"John Jarvis",{"headshot":4291,"ctfId":4292},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":691},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4298,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4299,"config":4303,"_id":4304,"_type":29,"title":4300,"_source":31,"_file":4305,"_stem":4306,"_extension":34},"/en-us/blog/authors/john-jeremiah",{"name":4300,"config":4301},"John Jeremiah",{"headshot":722,"ctfId":4302},"johnjeremiah",{"template":691},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4308,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4309,"config":4313,"_id":4314,"_type":29,"title":4315,"_source":31,"_file":4316,"_stem":4317,"_extension":34},"/en-us/blog/authors/john-mcguire",{"name":4310,"config":4311},"John McGuire",{"headshot":722,"ctfId":4312},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":691},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4319,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4320,"config":4324,"_id":4326,"_type":29,"title":4321,"_source":31,"_file":4327,"_stem":4328,"_extension":34},"/en-us/blog/authors/john-skarbek",{"name":4321,"config":4322},"John Skarbek",{"headshot":4323},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":691,"gitlabHandle":4325},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4330,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4331,"config":4335,"_id":4336,"_type":29,"title":4332,"_source":31,"_file":4337,"_stem":4338,"_extension":34},"/en-us/blog/authors/john-sparrow",{"name":4332,"config":4333},"John Sparrow",{"headshot":722,"ctfId":4334},"John-Sparrow",{"template":691},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4340,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4341,"config":4345,"_id":4346,"_type":29,"title":4342,"_source":31,"_file":4347,"_stem":4348,"_extension":34},"/en-us/blog/authors/johnathan-hunt",{"name":4342,"config":4343},"Johnathan Hunt",{"headshot":722,"ctfId":4344},"JohnathanHunt",{"template":691},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4350,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4351,"config":4355,"_id":4356,"_type":29,"title":4352,"_source":31,"_file":4357,"_stem":4358,"_extension":34},"/en-us/blog/authors/joni-klippert",{"name":4352,"config":4353},"Joni Klippert",{"headshot":722,"ctfId":4354},"Joni-Klippert",{"template":691},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4360,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4361,"config":4366,"_id":4367,"_type":29,"title":4368,"_source":31,"_file":4369,"_stem":4370,"_extension":34},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4362,"config":4363},"João Alexandre Prado Tavares Cunha",{"headshot":4364,"ctfId":4365},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":691},"content:en-us:blog:authors:joo-alexandre-prado-tavares-cunha.yml","Joo Alexandre Prado Tavares Cunha","en-us/blog/authors/joo-alexandre-prado-tavares-cunha.yml","en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"_path":4372,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4373,"config":4378,"_id":4379,"_type":29,"title":4380,"_source":31,"_file":4381,"_stem":4382,"_extension":34},"/en-us/blog/authors/joo-pereira",{"name":4374,"config":4375},"João Pereira",{"headshot":4376,"ctfId":4377},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":691},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4384,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4385,"config":4389,"_id":4390,"_type":29,"title":4386,"_source":31,"_file":4391,"_stem":4392,"_extension":34},"/en-us/blog/authors/jordi-mon",{"name":4386,"config":4387},"Jordi Mon",{"headshot":7,"ctfId":4388},"jordimon",{"template":691},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4394,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4395,"config":4400,"_id":4401,"_type":29,"title":4402,"_source":31,"_file":4403,"_stem":4404,"_extension":34},"/en-us/blog/authors/jos-ivn-vargas",{"name":4396,"config":4397},"José Iván Vargas",{"headshot":4398,"ctfId":4399},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":691},"content:en-us:blog:authors:jos-ivn-vargas.yml","Jos Ivn Vargas","en-us/blog/authors/jos-ivn-vargas.yml","en-us/blog/authors/jos-ivn-vargas",{"_path":4406,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4407,"config":4411,"_id":4412,"_type":29,"title":4408,"_source":31,"_file":4413,"_stem":4414,"_extension":34},"/en-us/blog/authors/jose-finotto",{"name":4408,"config":4409},"Jose Finotto",{"headshot":7,"ctfId":4410},"finotto",{"template":691},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4416,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4417,"config":4421,"_id":4423,"_type":29,"title":4420,"_source":31,"_file":4424,"_stem":4425,"_extension":34},"/en-us/blog/authors/joseph-burnett",{"config":4418,"name":4420},{"headshot":4419},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":691,"gitlabHandle":4422},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4427,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4428,"config":4433,"_id":4434,"_type":29,"title":4429,"_source":31,"_file":4435,"_stem":4436,"_extension":34},"/en-us/blog/authors/joseph-longo",{"name":4429,"config":4430},"Joseph Longo",{"headshot":4431,"ctfId":4432},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":691},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4438,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4439,"config":4443,"_id":4444,"_type":29,"title":4445,"_source":31,"_file":4446,"_stem":4447,"_extension":34},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4440,"config":4441},"Joseph Schorr from CoreOS",{"headshot":722,"ctfId":4442},"Joseph-Schorr-from-CoreOS",{"template":691},"content:en-us:blog:authors:joseph-schorr-from-coreos.yml","Joseph Schorr From Coreos","en-us/blog/authors/joseph-schorr-from-coreos.yml","en-us/blog/authors/joseph-schorr-from-coreos",{"_path":4449,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4450,"config":4455,"_id":4456,"_type":29,"title":4451,"_source":31,"_file":4457,"_stem":4458,"_extension":34},"/en-us/blog/authors/josh-feehs",{"name":4451,"config":4452},"Josh Feehs",{"headshot":4453,"ctfId":4454},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683068/Blog/Author%20Headshots/Screenshot_2023-11-28_at_9.12.13_AM.png","g5S7qgnlO5aJJ00brs77P",{"template":691},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4460,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4461,"config":4467,"_id":4468,"_type":29,"title":4469,"_source":31,"_file":4470,"_stem":4471,"_extension":34},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4462,"name":4463,"config":4464},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4465,"ctfId":4466},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":691},"content:en-us:blog:authors:josh-kodroff-pulumi.yml","Josh Kodroff Pulumi","en-us/blog/authors/josh-kodroff-pulumi.yml","en-us/blog/authors/josh-kodroff-pulumi",{"_path":4473,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4474,"config":4478,"_id":4479,"_type":29,"title":4475,"_source":31,"_file":4480,"_stem":4481,"_extension":34},"/en-us/blog/authors/josh-zimmerman",{"name":4475,"config":4476},"Josh Zimmerman",{"headshot":7,"ctfId":4477},"JoshZimmerman",{"template":691},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4483,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4484,"config":4489,"_id":4490,"_type":29,"title":4485,"_source":31,"_file":4491,"_stem":4492,"_extension":34},"/en-us/blog/authors/joshua-carroll",{"name":4485,"config":4486},"Joshua Carroll",{"headshot":4487,"ctfId":4488},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":691},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4494,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4495,"config":4500,"_id":4501,"_type":29,"title":4496,"_source":31,"_file":4502,"_stem":4503,"_extension":34},"/en-us/blog/authors/joshua-lambert",{"name":4496,"config":4497},"Joshua Lambert",{"headshot":4498,"ctfId":4499},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":691},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4505,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4506,"config":4510,"_id":4511,"_type":29,"title":4507,"_source":31,"_file":4512,"_stem":4513,"_extension":34},"/en-us/blog/authors/joyce-tompsett",{"name":4507,"config":4508},"Joyce Tompsett",{"headshot":7,"ctfId":4509},"Tompsett",{"template":691},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4515,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4516,"config":4520,"_id":4521,"_type":29,"title":4517,"_source":31,"_file":4522,"_stem":4523,"_extension":34},"/en-us/blog/authors/juan-broullon",{"name":4517,"config":4518},"Juan Broullon",{"headshot":7,"ctfId":4519},"jbroullon",{"template":691},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4525,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4526,"config":4530,"_id":4531,"_type":29,"title":4527,"_source":31,"_file":4532,"_stem":4533,"_extension":34},"/en-us/blog/authors/julia-lake",{"name":4527,"config":4528},"Julia Lake",{"headshot":722,"ctfId":4529},"5i9IDwCDDg3lfkiu9T3edZ",{"template":691},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4535,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4536,"config":4541,"_id":4542,"_type":29,"title":4537,"_source":31,"_file":4543,"_stem":4544,"_extension":34},"/en-us/blog/authors/julia-miocene",{"name":4537,"config":4538},"Julia Miocene",{"headshot":4539,"ctfId":4540},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":691},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4546,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4547,"config":4551,"_id":4552,"_type":29,"title":4548,"_source":31,"_file":4553,"_stem":4554,"_extension":34},"/en-us/blog/authors/julian-thome",{"name":4548,"config":4549},"Julian Thome",{"headshot":7,"ctfId":4550},"jthome",{"template":691},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4556,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4557,"config":4562,"_id":4563,"_type":29,"title":4558,"_source":31,"_file":4564,"_stem":4565,"_extension":34},"/en-us/blog/authors/julie-byrne",{"name":4558,"config":4559},"Julie Byrne",{"headshot":4560,"ctfId":4561},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":691},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4567,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4568,"config":4573,"_id":4574,"_type":29,"title":4569,"_source":31,"_file":4575,"_stem":4576,"_extension":34},"/en-us/blog/authors/julie-griffin",{"name":4569,"config":4570},"Julie Griffin",{"headshot":4571,"ctfId":4572},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":691},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4578,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4579,"config":4583,"_id":4584,"_type":29,"title":4580,"_source":31,"_file":4585,"_stem":4586,"_extension":34},"/en-us/blog/authors/julien-andrieux",{"name":4580,"config":4581},"Julien Andrieux",{"headshot":722,"ctfId":4582},"Julien-Andrieux",{"template":691},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4588,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4589,"config":4594,"_id":4595,"_type":29,"title":4590,"_source":31,"_file":4596,"_stem":4597,"_extension":34},"/en-us/blog/authors/juliet-wanjohi",{"name":4590,"config":4591},"Juliet Wanjohi",{"headshot":4592,"ctfId":4593},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":691},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4599,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4600,"config":4604,"_id":4605,"_type":29,"title":4601,"_source":31,"_file":4606,"_stem":4607,"_extension":34},"/en-us/blog/authors/justin-farris",{"name":4601,"config":4602},"Justin Farris",{"headshot":722,"ctfId":4603},"5RHYudAlWLmSj5U7AOIcbG",{"template":691},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4609,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4610,"config":4615,"_id":4616,"_type":29,"title":4611,"_source":31,"_file":4617,"_stem":4618,"_extension":34},"/en-us/blog/authors/justin-tobler",{"name":4611,"config":4612},"Justin Tobler",{"headshot":4613,"ctfId":4614},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":691},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4620,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4621,"config":4626,"_id":4627,"_type":29,"title":4622,"_source":31,"_file":4628,"_stem":4629,"_extension":34},"/en-us/blog/authors/kai-armstrong",{"name":4622,"config":4623},"Kai Armstrong",{"headshot":4624,"ctfId":4625},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":691},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4631,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4632,"config":4636,"_id":4637,"_type":29,"title":4638,"_source":31,"_file":4639,"_stem":4640,"_extension":34},"/en-us/blog/authors/kamil-trzciski",{"name":4633,"config":4634},"Kamil Trzciński",{"headshot":722,"ctfId":4635},"Kamil-Trzciski",{"template":691},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4642,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4643,"config":4647,"_id":4648,"_type":29,"title":4649,"_source":31,"_file":4650,"_stem":4651,"_extension":34},"/en-us/blog/authors/karen-caras",{"name":4644,"config":4645},"Karen Carías",{"headshot":722,"ctfId":4646},"Karen-Caras",{"template":691},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4653,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4654,"config":4658,"_id":4660,"_type":29,"title":4655,"_source":31,"_file":4661,"_stem":4662,"_extension":34},"/en-us/blog/authors/karishma-kumar",{"name":4655,"config":4656},"Karishma Kumar",{"headshot":4657},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1761931048/z7wcdkw5czs9uwtpmfwg.png",{"template":691,"gitlabHandle":4659},"karishmakumar","content:en-us:blog:authors:karishma-kumar.yml","en-us/blog/authors/karishma-kumar.yml","en-us/blog/authors/karishma-kumar",{"_path":4664,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4665,"config":4670,"_id":4671,"_type":29,"title":4666,"_source":31,"_file":4672,"_stem":4673,"_extension":34},"/en-us/blog/authors/karthik-nayak",{"name":4666,"config":4667},"Karthik Nayak",{"headshot":4668,"ctfId":4669},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659809/Blog/Author%20Headshots/Screenshot_2025-06-04_at_8.49.51%C3%A2__AM.png","3Q6ZKvaiCRw7tFZdDGlecg",{"template":691},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4675,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4676,"config":4680,"_id":4681,"_type":29,"title":4677,"_source":31,"_file":4682,"_stem":4683,"_extension":34},"/en-us/blog/authors/katherine-okpara",{"name":4677,"config":4678},"Katherine Okpara",{"headshot":7,"ctfId":4679},"katokpara",{"template":691},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4685,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4686,"config":4690,"_id":4691,"_type":29,"title":4687,"_source":31,"_file":4692,"_stem":4693,"_extension":34},"/en-us/blog/authors/kathy-wang",{"name":4687,"config":4688},"Kathy Wang",{"headshot":7,"ctfId":4689},"kathyw",{"template":691},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4695,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4696,"config":4700,"_id":4701,"_type":29,"title":4702,"_source":31,"_file":4703,"_stem":4704,"_extension":34},"/en-us/blog/authors/keanon-okeefe",{"name":4697,"config":4698},"Keanon O’Keefe",{"headshot":7,"ctfId":4699},"kokeefe",{"template":691},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4706,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4707,"config":4712,"_id":4713,"_type":29,"title":4708,"_source":31,"_file":4714,"_stem":4715,"_extension":34},"/en-us/blog/authors/kees-valkhof",{"name":4708,"role":4709,"config":4710},"Kees Valkhof","Configuration manager at Lely",{"headshot":4711},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":691},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4717,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4718,"config":4722,"_id":4723,"_type":29,"title":4719,"_source":31,"_file":4724,"_stem":4725,"_extension":34},"/en-us/blog/authors/kelly-hair",{"name":4719,"config":4720},"Kelly Hair",{"headshot":722,"ctfId":4721},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":691},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4727,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4728,"config":4732,"_id":4733,"_type":29,"title":4729,"_source":31,"_file":4734,"_stem":4735,"_extension":34},"/en-us/blog/authors/kendra-marquart",{"name":4729,"config":4730},"Kendra Marquart",{"headshot":7,"ctfId":4731},"kmarquart",{"template":691},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4737,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4738,"config":4742,"_id":4743,"_type":29,"title":4739,"_source":31,"_file":4744,"_stem":4745,"_extension":34},"/en-us/blog/authors/kenny-johnston",{"name":4739,"config":4740},"Kenny Johnston",{"headshot":7,"ctfId":4741},"kencjohnston",{"template":691},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4747,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4748,"config":4753,"_id":4754,"_type":29,"title":4749,"_source":31,"_file":4755,"_stem":4756,"_extension":34},"/en-us/blog/authors/kevin-chu",{"name":4749,"config":4750},"Kevin Chu",{"headshot":4751,"ctfId":4752},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683472/Blog/Author%20Headshots/Screenshot_2024-01-12_at_2.12.33_PM.png","4wPeZqchWYCDsBeGjla485",{"template":691},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4758,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4759,"config":4764,"_id":4765,"_type":29,"title":4760,"_source":31,"_file":4766,"_stem":4767,"_extension":34},"/en-us/blog/authors/kevin-morrison",{"name":4760,"config":4761},"Kevin Morrison",{"headshot":4762,"ctfId":4763},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":691},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4769,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4770,"config":4774,"_id":4775,"_type":29,"title":4771,"_source":31,"_file":4776,"_stem":4777,"_extension":34},"/en-us/blog/authors/khrystyna-humenna",{"name":4771,"config":4772},"Khrystyna Humenna",{"headshot":722,"ctfId":4773},"Khrystyna-Humenna",{"template":691},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4779,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4780,"config":4784,"_id":4785,"_type":29,"title":4781,"_source":31,"_file":4786,"_stem":4787,"_extension":34},"/en-us/blog/authors/kim-lock",{"name":4781,"config":4782},"Kim Lock",{"headshot":7,"ctfId":4783},"KimLock",{"template":691},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4789,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4790,"config":4794,"_id":4795,"_type":29,"title":4791,"_source":31,"_file":4796,"_stem":4797,"_extension":34},"/en-us/blog/authors/kirsten-abma",{"name":4791,"config":4792},"Kirsten Abma",{"headshot":722,"ctfId":4793},"Kirsten-Abma",{"template":691},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4799,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4800,"config":4804,"_id":4805,"_type":29,"title":4801,"_source":31,"_file":4806,"_stem":4807,"_extension":34},"/en-us/blog/authors/kristian-larsson",{"name":4801,"config":4802},"Kristian Larsson",{"headshot":722,"ctfId":4803},"Kristian-Larsson",{"template":691},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4809,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4810,"config":4815,"_id":4816,"_type":29,"title":4811,"_source":31,"_file":4817,"_stem":4818,"_extension":34},"/en-us/blog/authors/kristina-weis",{"name":4811,"config":4812},"Kristina Weis",{"headshot":4813,"ctfId":4814},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":691},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4820,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4821,"config":4825,"_id":4826,"_type":29,"title":4822,"_source":31,"_file":4827,"_stem":4828,"_extension":34},"/en-us/blog/authors/kurt-dusek",{"name":4822,"config":4823},"Kurt Dusek",{"headshot":7,"ctfId":4824},"kdusek",{"template":691},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4830,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4831,"config":4835,"_id":4836,"_type":29,"title":4832,"_source":31,"_file":4837,"_stem":4838,"_extension":34},"/en-us/blog/authors/kushal-koolwal",{"name":4832,"config":4833},"Kushal Koolwal",{"headshot":722,"ctfId":4834},"Kushal-Koolwal",{"template":691},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4840,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4841,"config":4846,"_id":4847,"_type":29,"title":4842,"_source":31,"_file":4848,"_stem":4849,"_extension":34},"/en-us/blog/authors/kushal-pandya",{"name":4842,"config":4843},"Kushal Pandya",{"headshot":4844,"ctfId":4845},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":691},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4851,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4852,"config":4856,"_id":4857,"_type":29,"title":4853,"_source":31,"_file":4858,"_stem":4859,"_extension":34},"/en-us/blog/authors/kwan-lee",{"name":4853,"config":4854},"Kwan Lee",{"headshot":722,"ctfId":4855},"Kwan-Lee",{"template":691},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4861,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4862,"config":4867,"_id":4868,"_type":29,"title":4863,"_source":31,"_file":4869,"_stem":4870,"_extension":34},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4863,"config":4864},"Kyla Gradin Dahl",{"headshot":4865,"ctfId":4866},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":691},"content:en-us:blog:authors:kyla-gradin-dahl.yml","en-us/blog/authors/kyla-gradin-dahl.yml","en-us/blog/authors/kyla-gradin-dahl",{"_path":4872,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4873,"config":4877,"_id":4878,"_type":29,"title":4874,"_source":31,"_file":4879,"_stem":4880,"_extension":34},"/en-us/blog/authors/kyle-mann",{"name":4874,"config":4875},"Kyle Mann",{"headshot":722,"ctfId":4876},"44YiW1r6sTpbC9wKBeHGgE",{"template":691},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4882,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4883,"config":4888,"_id":4889,"_type":29,"title":4884,"_source":31,"_file":4890,"_stem":4891,"_extension":34},"/en-us/blog/authors/kyle-smith",{"name":4884,"config":4885},"Kyle Smith",{"headshot":4886,"ctfId":4887},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":691},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4893,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4894,"config":4898,"_id":4900,"_type":29,"title":4895,"_source":31,"_file":4901,"_stem":4902,"_extension":34},"/en-us/blog/authors/kymberlee-price",{"name":4895,"config":4896},"Kymberlee Price",{"headshot":4897},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":691,"gitlabHandle":4899},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4904,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4905,"config":4909,"_id":4910,"_type":29,"title":4906,"_source":31,"_file":4911,"_stem":4912,"_extension":34},"/en-us/blog/authors/lasse-schuirmann",{"name":4906,"config":4907},"Lasse Schuirmann",{"headshot":722,"ctfId":4908},"5vpo2ZOrPIS8PBp3k47S6w",{"template":691},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4914,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4915,"config":4919,"_id":4920,"_type":29,"title":4916,"_source":31,"_file":4921,"_stem":4922,"_extension":34},"/en-us/blog/authors/laura-montemayor",{"name":4916,"config":4917},"Laura Montemayor",{"headshot":7,"ctfId":4918},"lauraMon",{"template":691},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4924,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4925,"config":4930,"_id":4931,"_type":29,"title":4926,"_source":31,"_file":4932,"_stem":4933,"_extension":34},"/en-us/blog/authors/lauren-barker",{"name":4926,"config":4927},"Lauren Barker",{"headshot":4928,"ctfId":4929},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":691},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4935,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4936,"config":4940,"_id":4941,"_type":29,"title":4937,"_source":31,"_file":4942,"_stem":4943,"_extension":34},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4937,"config":4938},"Lauren Gibbons Paul",{"headshot":722,"ctfId":4939},"Lauren-Gibbons-Paul",{"template":691},"content:en-us:blog:authors:lauren-gibbons-paul.yml","en-us/blog/authors/lauren-gibbons-paul.yml","en-us/blog/authors/lauren-gibbons-paul",{"_path":4945,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4946,"config":4950,"_id":4951,"_type":29,"title":4947,"_source":31,"_file":4952,"_stem":4953,"_extension":34},"/en-us/blog/authors/lauren-minning",{"name":4947,"config":4948},"Lauren Minning",{"headshot":7,"ctfId":4949},"lminning",{"template":691},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":4955,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4956,"config":4961,"_id":4962,"_type":29,"title":4957,"_source":31,"_file":4963,"_stem":4964,"_extension":34},"/en-us/blog/authors/laurena-alves",{"name":4957,"config":4958},"Laurena Alves",{"headshot":4959,"ctfId":4960},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":691},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":4966,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4967,"config":4972,"_id":4973,"_type":29,"title":4968,"_source":31,"_file":4974,"_stem":4975,"_extension":34},"/en-us/blog/authors/lee-faus",{"name":4968,"config":4969},"Lee Faus",{"headshot":4970,"ctfId":4971},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":691},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":4977,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4978,"config":4983,"_id":4984,"_type":29,"title":4979,"_source":31,"_file":4985,"_stem":4986,"_extension":34},"/en-us/blog/authors/lee-matos",{"name":4979,"config":4980},"Lee Matos",{"headshot":4981,"ctfId":4982},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":691},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":4988,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":4989,"config":4994,"_id":4995,"_type":29,"title":4990,"_source":31,"_file":4996,"_stem":4997,"_extension":34},"/en-us/blog/authors/lee-tickett",{"name":4990,"config":4991},"Lee Tickett",{"headshot":4992,"ctfId":4993},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":691},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":4999,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5000,"config":5004,"_id":5005,"_type":29,"title":5001,"_source":31,"_file":5006,"_stem":5007,"_extension":34},"/en-us/blog/authors/levente-polyak",{"name":5001,"config":5002},"Levente Polyak",{"headshot":7,"ctfId":5003},"anthraxx",{"template":691},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":5009,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5010,"config":5015,"_id":5016,"_type":29,"title":5017,"_source":31,"_file":5018,"_stem":5019,"_extension":34},"/en-us/blog/authors/lin-jen-shin",{"name":5011,"config":5012},"Lin Jen-Shin",{"headshot":5013,"ctfId":5014},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":691},"content:en-us:blog:authors:lin-jen-shin.yml","Lin Jen Shin","en-us/blog/authors/lin-jen-shin.yml","en-us/blog/authors/lin-jen-shin",{"_path":5021,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5022,"config":5027,"_id":5028,"_type":29,"title":5023,"_source":31,"_file":5029,"_stem":5030,"_extension":34},"/en-us/blog/authors/liz-coleman",{"name":5023,"config":5024},"Liz Coleman",{"headshot":5025,"ctfId":5026},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":691},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5032,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5033,"config":5038,"_id":5039,"_type":29,"title":5034,"_source":31,"_file":5040,"_stem":5041,"_extension":34},"/en-us/blog/authors/loryn-bortins",{"name":5034,"config":5035},"Loryn Bortins",{"headshot":5036,"ctfId":5037},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":691},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5043,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5044,"config":5048,"_id":5049,"_type":29,"title":5045,"_source":31,"_file":5050,"_stem":5051,"_extension":34},"/en-us/blog/authors/lucas-charles",{"name":5045,"config":5046},"Lucas Charles",{"headshot":722,"ctfId":5047},"01OUkmRJImMowxMk3YHGNS",{"template":691},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5053,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5054,"config":5058,"_id":5059,"_type":29,"title":5055,"_source":31,"_file":5060,"_stem":5061,"_extension":34},"/en-us/blog/authors/luka-trbojevic",{"name":5055,"config":5056},"Luka Trbojevic",{"headshot":7,"ctfId":5057},"ltrbojevic",{"template":691},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5063,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5064,"config":5068,"_id":5069,"_type":29,"title":5065,"_source":31,"_file":5070,"_stem":5071,"_extension":34},"/en-us/blog/authors/lukas-eipert",{"name":5065,"config":5066},"Lukas Eipert",{"headshot":722,"ctfId":5067},"37PO8stm7JUQgglr4tWcmw",{"template":691},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5073,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5074,"config":5079,"_id":5080,"_type":29,"title":5075,"_source":31,"_file":5081,"_stem":5082,"_extension":34},"/en-us/blog/authors/lyle-kozloff",{"name":5075,"config":5076},"Lyle Kozloff",{"headshot":5077,"ctfId":5078},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":691},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5084,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5085,"config":5090,"_id":5091,"_type":29,"title":5086,"_source":31,"_file":5092,"_stem":5093,"_extension":34},"/en-us/blog/authors/madeline-lake",{"name":5086,"config":5087},"Madeline Lake",{"headshot":5088,"ctfId":5089},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":691},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5095,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5096,"config":5101,"_id":5102,"_type":29,"title":5097,"_source":31,"_file":5103,"_stem":5104,"_extension":34},"/en-us/blog/authors/madou-coulibaly",{"name":5097,"config":5098},"Madou Coulibaly",{"headshot":5099,"ctfId":5100},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":691},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5106,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5107,"config":5112,"_id":5113,"_type":29,"title":5108,"_source":31,"_file":5114,"_stem":5115,"_extension":34},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5108,"config":5109},"Magdalena Frankiewicz",{"headshot":5110,"ctfId":5111},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":691},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5117,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5118,"config":5122,"_id":5123,"_type":29,"title":5119,"_source":31,"_file":5124,"_stem":5125,"_extension":34},"/en-us/blog/authors/mahesh-kumar",{"name":5119,"config":5120},"Mahesh Kumar",{"headshot":722,"ctfId":5121},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":691},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5127,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5128,"config":5133,"_id":5134,"_type":29,"title":5129,"_source":31,"_file":5135,"_stem":5136,"_extension":34},"/en-us/blog/authors/manav-khurana",{"name":5129,"config":5130,"role":5132},"Manav Khurana",{"headshot":5131},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":691,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5138,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5139,"config":5144,"_id":5145,"_type":29,"title":5140,"_source":31,"_file":5146,"_stem":5147,"_extension":34},"/en-us/blog/authors/manuel-kraft",{"name":5140,"config":5141},"Manuel Kraft",{"headshot":5142,"ctfId":5143},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":691},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5149,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5150,"config":5154,"_id":5155,"_type":29,"title":5151,"_source":31,"_file":5156,"_stem":5157,"_extension":34},"/en-us/blog/authors/marc-radulescu",{"name":5151,"config":5152},"Marc Radulescu",{"headshot":722,"ctfId":5153},"Marc-Radulescu",{"template":691},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5159,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5160,"config":5165,"_id":5166,"_type":29,"title":5161,"_source":31,"_file":5167,"_stem":5168,"_extension":34},"/en-us/blog/authors/marc-shaw",{"name":5161,"config":5162},"Marc Shaw",{"headshot":5163,"ctfId":5164},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":691},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5170,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5171,"config":5176,"_id":5177,"_type":29,"title":5178,"_source":31,"_file":5179,"_stem":5180,"_extension":34},"/en-us/blog/authors/marcel-van-remmerden",{"name":5172,"config":5173},"Marcel van Remmerden",{"headshot":5174,"ctfId":5175},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":691},"content:en-us:blog:authors:marcel-van-remmerden.yml","Marcel Van Remmerden","en-us/blog/authors/marcel-van-remmerden.yml","en-us/blog/authors/marcel-van-remmerden",{"_path":5182,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5183,"config":5187,"_id":5188,"_type":29,"title":5184,"_source":31,"_file":5189,"_stem":5190,"_extension":34},"/en-us/blog/authors/marcia-ramos",{"name":5184,"config":5185},"Marcia Ramos",{"headshot":722,"ctfId":5186},"Marcia-Ramos",{"template":691},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5192,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5193,"config":5197,"_id":5198,"_type":29,"title":5194,"_source":31,"_file":5199,"_stem":5200,"_extension":34},"/en-us/blog/authors/marco-lenzo",{"name":5194,"config":5195},"Marco Lenzo",{"headshot":722,"ctfId":5196},"Marco-Lenzo",{"template":691},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5202,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5203,"config":5207,"_id":5208,"_type":29,"title":5204,"_source":31,"_file":5209,"_stem":5210,"_extension":34},"/en-us/blog/authors/marie-hargitt",{"name":5204,"config":5205},"Marie Hargitt",{"headshot":722,"ctfId":5206},"Marie-Hargitt",{"template":691},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5212,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5213,"config":5218,"_id":5219,"_type":29,"title":5214,"_source":31,"_file":5220,"_stem":5221,"_extension":34},"/en-us/blog/authors/marin-jankovski",{"name":5214,"config":5215},"Marin Jankovski",{"headshot":5216,"ctfId":5217},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":691},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5223,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5224,"config":5228,"_id":5229,"_type":29,"title":5230,"_source":31,"_file":5231,"_stem":5232,"_extension":34},"/en-us/blog/authors/marin-job",{"name":5225,"config":5226},"Marin, Job",{"headshot":722,"ctfId":5227},"Marin-Job",{"template":691},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5234,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5235,"config":5239,"_id":5240,"_type":29,"title":5241,"_source":31,"_file":5242,"_stem":5243,"_extension":34},"/en-us/blog/authors/mario-de-la-ossa",{"name":5236,"config":5237},"Mario de la Ossa",{"headshot":7,"ctfId":5238},"mdelaossa",{"template":691},"content:en-us:blog:authors:mario-de-la-ossa.yml","Mario De La Ossa","en-us/blog/authors/mario-de-la-ossa.yml","en-us/blog/authors/mario-de-la-ossa",{"_path":5245,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5246,"config":5250,"_id":5251,"_type":29,"title":5247,"_source":31,"_file":5252,"_stem":5253,"_extension":34},"/en-us/blog/authors/mark-art",{"name":5247,"config":5248},"Mark Art",{"headshot":722,"ctfId":5249},"55KCfyNmgPaJRmBZhiN7k5",{"template":691},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5255,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5256,"config":5260,"_id":5261,"_type":29,"title":5257,"_source":31,"_file":5262,"_stem":5263,"_extension":34},"/en-us/blog/authors/mark-fletcher",{"name":5257,"config":5258},"Mark Fletcher",{"headshot":7,"ctfId":5259},"markglenfletcher",{"template":691},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5265,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5266,"config":5271,"_id":5272,"_type":29,"title":5267,"_source":31,"_file":5273,"_stem":5274,"_extension":34},"/en-us/blog/authors/mark-lapierre",{"name":5267,"config":5268},"Mark Lapierre",{"headshot":5269,"ctfId":5270},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":691},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5276,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5277,"config":5282,"_id":5283,"_type":29,"title":5278,"_source":31,"_file":5284,"_stem":5285,"_extension":34},"/en-us/blog/authors/mark-loveless",{"name":5278,"config":5279},"Mark Loveless",{"headshot":5280,"ctfId":5281},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":691},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5287,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5288,"config":5292,"_id":5293,"_type":29,"title":5289,"_source":31,"_file":5294,"_stem":5295,"_extension":34},"/en-us/blog/authors/mark-pundsack",{"name":5289,"config":5290},"Mark Pundsack",{"headshot":722,"ctfId":5291},"markpundsack",{"template":691},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5297,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5298,"config":5303,"_id":5304,"_type":29,"title":5305,"_source":31,"_file":5306,"_stem":5307,"_extension":34},"/en-us/blog/authors/martin-brmmer",{"name":5299,"config":5300},"Martin Brümmer",{"headshot":5301,"ctfId":5302},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":691},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5309,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5310,"config":5314,"_id":5315,"_type":29,"title":5311,"_source":31,"_file":5316,"_stem":5317,"_extension":34},"/en-us/blog/authors/martynas-krupskis",{"name":5311,"config":5312},"Martynas Krupskis",{"headshot":722,"ctfId":5313},"3tK5S0f4QshGFGRrdEl7rn",{"template":691},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5319,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5320,"config":5324,"_id":5325,"_type":29,"title":5321,"_source":31,"_file":5326,"_stem":5327,"_extension":34},"/en-us/blog/authors/matej-latin",{"name":5321,"config":5322},"Matej Latin",{"headshot":7,"ctfId":5323},"matejlatin",{"template":691},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5329,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5330,"config":5335,"_id":5336,"_type":29,"title":5331,"_source":31,"_file":5337,"_stem":5338,"_extension":34},"/en-us/blog/authors/mathias-ewald",{"name":5331,"config":5332},"Mathias Ewald",{"headshot":5333,"ctfId":5334},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":691},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5340,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5341,"config":5345,"_id":5346,"_type":29,"title":5342,"_source":31,"_file":5347,"_stem":5348,"_extension":34},"/en-us/blog/authors/matt-baldwin",{"name":5342,"config":5343},"Matt Baldwin",{"headshot":722,"ctfId":5344},"Matt-Baldwin",{"template":691},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5350,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5351,"config":5356,"_id":5357,"_type":29,"title":5352,"_source":31,"_file":5358,"_stem":5359,"_extension":34},"/en-us/blog/authors/matt-coons",{"name":5352,"config":5353},"Matt Coons",{"headshot":5354,"ctfId":5355},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":691},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5361,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5362,"config":5367,"_id":5368,"_type":29,"title":5369,"_source":31,"_file":5370,"_stem":5371,"_extension":34},"/en-us/blog/authors/matt-delaney",{"name":5363,"config":5364},"Matt DeLaney",{"headshot":5365,"ctfId":5366},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":691},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5373,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5374,"config":5379,"_id":5380,"_type":29,"title":5375,"_source":31,"_file":5381,"_stem":5382,"_extension":34},"/en-us/blog/authors/matt-genelin",{"name":5375,"config":5376},"Matt Genelin",{"headshot":5377,"ctfId":5378},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":691},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5384,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5385,"config":5389,"_id":5390,"_type":29,"title":5386,"_source":31,"_file":5391,"_stem":5392,"_extension":34},"/en-us/blog/authors/matt-nguyen",{"name":5386,"config":5387},"Matt Nguyen",{"headshot":722,"ctfId":5388},"Matt-Nguyen",{"template":691},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5394,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5395,"config":5400,"_id":5401,"_type":29,"title":5396,"_source":31,"_file":5402,"_stem":5403,"_extension":34},"/en-us/blog/authors/matt-nohr",{"name":5396,"config":5397},"Matt Nohr",{"headshot":5398,"ctfId":5399},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":691},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5405,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5406,"config":5411,"_id":5412,"_type":29,"title":5407,"_source":31,"_file":5413,"_stem":5414,"_extension":34},"/en-us/blog/authors/matt-smiley",{"name":5407,"config":5408},"Matt Smiley",{"headshot":5409,"ctfId":5410},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":691},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5416,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5417,"config":5421,"_id":5422,"_type":29,"title":5418,"_source":31,"_file":5423,"_stem":5424,"_extension":34},"/en-us/blog/authors/matt-wilson",{"name":5418,"config":5419},"Matt Wilson",{"headshot":722,"ctfId":5420},"mattwilson",{"template":691},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5426,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5427,"config":5432,"_id":5433,"_type":29,"title":5428,"_source":31,"_file":5434,"_stem":5435,"_extension":34},"/en-us/blog/authors/matthew-macfarlane",{"name":5428,"config":5429},"Matthew Macfarlane",{"headshot":5430,"ctfId":5431},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":691},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5437,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5438,"config":5443,"_id":5444,"_type":29,"title":5439,"_source":31,"_file":5445,"_stem":5446,"_extension":34},"/en-us/blog/authors/matthew-nearents",{"name":5439,"config":5440},"Matthew Nearents",{"headshot":5441,"ctfId":5442},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":691},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5448,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5449,"config":5454,"_id":5455,"_type":29,"title":5456,"_source":31,"_file":5457,"_stem":5458,"_extension":34},"/en-us/blog/authors/matthias-kppler",{"name":5450,"config":5451},"Matthias Käppler",{"headshot":5452,"ctfId":5453},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":691},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5460,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5461,"config":5465,"_id":5466,"_type":29,"title":5462,"_source":31,"_file":5467,"_stem":5468,"_extension":34},"/en-us/blog/authors/matthieu-fronton",{"name":5462,"config":5463},"Matthieu Fronton",{"headshot":7,"ctfId":5464},"frntn",{"template":691},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5470,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5471,"config":5475,"_id":5476,"_type":29,"title":5472,"_source":31,"_file":5477,"_stem":5478,"_extension":34},"/en-us/blog/authors/max-woolf",{"name":5472,"config":5473},"Max Woolf",{"headshot":722,"ctfId":5474},"Max-Woolf",{"template":691},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5480,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5481,"config":5486,"_id":5487,"_type":29,"title":5482,"_source":31,"_file":5488,"_stem":5489,"_extension":34},"/en-us/blog/authors/maximilien-belinga",{"name":5482,"config":5483},"Maximilien Belinga",{"headshot":5484,"ctfId":5485},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":691},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5491,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5492,"config":5496,"_id":5497,"_type":29,"title":5493,"_source":31,"_file":5498,"_stem":5499,"_extension":34},"/en-us/blog/authors/mayank-tahilramani",{"name":5493,"config":5494},"Mayank Tahilramani",{"headshot":7,"ctfId":5495},"mayanktahil",{"template":691},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5501,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5502,"config":5507,"_id":5508,"_type":29,"title":5503,"_source":31,"_file":5509,"_stem":5510,"_extension":34},"/en-us/blog/authors/mayra-cabrera",{"name":5503,"config":5504},"Mayra Cabrera",{"headshot":5505,"ctfId":5506},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":691},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5512,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5513,"config":5517,"_id":5518,"_type":29,"title":5514,"_source":31,"_file":5519,"_stem":5520,"_extension":34},"/en-us/blog/authors/meghan-maneval",{"name":5514,"config":5515},"Meghan Maneval",{"headshot":7,"ctfId":5516},"mmaneval20",{"template":691},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5522,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5523,"config":5528,"_id":5529,"_type":29,"title":5524,"_source":31,"_file":5530,"_stem":5531,"_extension":34},"/en-us/blog/authors/mek-stittri",{"name":5524,"config":5525},"Mek Stittri",{"headshot":5526,"ctfId":5527},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":691},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5533,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5534,"config":5538,"_id":5539,"_type":29,"title":5535,"_source":31,"_file":5540,"_stem":5541,"_extension":34},"/en-us/blog/authors/melissa-farber",{"name":5535,"config":5536},"Melissa Farber",{"headshot":7,"ctfId":5537},"mfarber",{"template":691},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5543,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5544,"config":5548,"_id":5549,"_type":29,"title":5545,"_source":31,"_file":5550,"_stem":5551,"_extension":34},"/en-us/blog/authors/melissa-smolensky",{"name":5545,"config":5546},"Melissa Smolensky",{"headshot":7,"ctfId":5547},"melsmo",{"template":691},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5553,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5554,"config":5559,"_id":5560,"_type":29,"title":5555,"_source":31,"_file":5561,"_stem":5562,"_extension":34},"/en-us/blog/authors/melissa-ushakov",{"name":5555,"config":5556},"Melissa Ushakov",{"headshot":5557,"ctfId":5558},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":691},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5564,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5565,"config":5569,"_id":5570,"_type":29,"title":5566,"_source":31,"_file":5571,"_stem":5572,"_extension":34},"/en-us/blog/authors/michael-fahey",{"name":5566,"config":5567},"Michael Fahey",{"headshot":7,"ctfId":5568},"mfahey",{"template":691},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5574,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5575,"config":5580,"_id":5581,"_type":29,"title":5576,"_source":31,"_file":5582,"_stem":5583,"_extension":34},"/en-us/blog/authors/michael-friedrich",{"name":5576,"config":5577},"Michael Friedrich",{"headshot":5578,"ctfId":5579},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":691},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5585,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5586,"config":5590,"_id":5591,"_type":29,"title":5587,"_source":31,"_file":5592,"_stem":5593,"_extension":34},"/en-us/blog/authors/michael-henriksen",{"name":5587,"config":5588},"Michael Henriksen",{"headshot":722,"ctfId":5589},"3DmojnawcJFqAgoNMCpFTX",{"template":691},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5595,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5596,"config":5600,"_id":5601,"_type":29,"title":5597,"_source":31,"_file":5602,"_stem":5603,"_extension":34},"/en-us/blog/authors/michael-karampalas",{"name":5597,"config":5598},"Michael Karampalas",{"headshot":7,"ctfId":5599},"mkarampalas",{"template":691},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5605,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5606,"config":5611,"_id":5612,"_type":29,"title":5607,"_source":31,"_file":5613,"_stem":5614,"_extension":34},"/en-us/blog/authors/michael-kozono",{"name":5607,"config":5608},"Michael Kozono",{"headshot":5609,"ctfId":5610},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":691},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5616,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5617,"config":5621,"_id":5622,"_type":29,"title":5618,"_source":31,"_file":5623,"_stem":5624,"_extension":34},"/en-us/blog/authors/michael-miranda",{"name":5618,"config":5619},"Michael Miranda",{"headshot":7,"ctfId":5620},"mikemiranda",{"template":691},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5626,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5627,"config":5632,"_id":5633,"_type":29,"title":5628,"_source":31,"_file":5634,"_stem":5635,"_extension":34},"/en-us/blog/authors/michelle-gill",{"name":5628,"config":5629},"Michelle Gill",{"headshot":5630,"ctfId":5631},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":691},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5637,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5638,"config":5643,"_id":5644,"_type":29,"title":5639,"_source":31,"_file":5645,"_stem":5646,"_extension":34},"/en-us/blog/authors/miguel-rincon",{"name":5639,"config":5640},"Miguel Rincon",{"headshot":5641,"ctfId":5642},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":691},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5648,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5649,"config":5653,"_id":5654,"_type":29,"title":5650,"_source":31,"_file":5655,"_stem":5656,"_extension":34},"/en-us/blog/authors/mike-bartlett",{"name":5650,"config":5651},"Mike Bartlett",{"headshot":7,"ctfId":5652},"mydigitalself",{"template":691},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5658,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5659,"config":5663,"_id":5664,"_type":29,"title":5660,"_source":31,"_file":5665,"_stem":5666,"_extension":34},"/en-us/blog/authors/mike-eddington",{"name":5660,"config":5661},"Mike Eddington",{"headshot":722,"ctfId":5662},"q5tK0TgB1ZovSwShKSvOJ",{"template":691},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5668,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5669,"config":5674,"_id":5675,"_type":29,"title":5670,"_source":31,"_file":5676,"_stem":5677,"_extension":34},"/en-us/blog/authors/mike-flouton",{"name":5670,"config":5671},"Mike Flouton",{"headshot":5672,"ctfId":5673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":691},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5679,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5680,"config":5684,"_id":5685,"_type":29,"title":5681,"_source":31,"_file":5686,"_stem":5687,"_extension":34},"/en-us/blog/authors/mike-gerwitz",{"name":5681,"config":5682},"Mike Gerwitz",{"headshot":722,"ctfId":5683},"Mike-Gerwitz",{"template":691},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5689,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5690,"config":5694,"_id":5695,"_type":29,"title":5691,"_source":31,"_file":5696,"_stem":5697,"_extension":34},"/en-us/blog/authors/mike-greiling",{"name":5691,"config":5692},"Mike Greiling",{"headshot":7,"ctfId":5693},"mikegreiling",{"template":691},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5699,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5700,"config":5704,"_id":5705,"_type":29,"title":5701,"_source":31,"_file":5706,"_stem":5707,"_extension":34},"/en-us/blog/authors/mike-vanbuskirk",{"name":5701,"config":5702},"Mike Vanbuskirk",{"headshot":722,"ctfId":5703},"Mike-Vanbuskirk",{"template":691},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5709,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5710,"config":5714,"_id":5715,"_type":29,"title":5711,"_source":31,"_file":5716,"_stem":5717,"_extension":34},"/en-us/blog/authors/miranda-carter",{"name":5711,"config":5712},"Miranda Carter",{"headshot":722,"ctfId":5713},"4xT4dbRh6N9i7jW5xuPhVp",{"template":691},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5719,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5720,"config":5725,"_id":5726,"_type":29,"title":5721,"_source":31,"_file":5727,"_stem":5728,"_extension":34},"/en-us/blog/authors/mitra-jozenazemian",{"name":5721,"config":5722},"Mitra Jozenazemian",{"headshot":5723,"ctfId":5724},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662373/Blog/Author%20Headshots/Screenshot_2024-10-25_at_8.23.56_AM.png","4suqsutT8w5ZmkIvSVrmWQ",{"template":691},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5730,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5731,"config":5736,"_id":5737,"_type":29,"title":5732,"_source":31,"_file":5738,"_stem":5739,"_extension":34},"/en-us/blog/authors/monmayuri-ray",{"name":5732,"config":5733},"Monmayuri Ray",{"headshot":5734,"ctfId":5735},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":691},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5741,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5742,"config":5747,"_id":5749,"_type":29,"title":5743,"_source":31,"_file":5750,"_stem":5751,"_extension":34},"/en-us/blog/authors/naoharu-sasaki",{"name":5743,"config":5744,"role":5746},"Naoharu Sasaki",{"headshot":5745},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":691,"gitlabHandle":5748},"https://gitlab.com/naosasaki","content:en-us:blog:authors:naoharu-sasaki.yml","en-us/blog/authors/naoharu-sasaki.yml","en-us/blog/authors/naoharu-sasaki",{"_path":5753,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5754,"config":5759,"_id":5760,"_type":29,"title":5755,"_source":31,"_file":5761,"_stem":5762,"_extension":34},"/en-us/blog/authors/nate-rosandich",{"name":5755,"config":5756},"Nate Rosandich",{"headshot":5757,"ctfId":5758},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":691},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5764,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5765,"config":5770,"_id":5771,"_type":29,"title":5766,"_source":31,"_file":5772,"_stem":5773,"_extension":34},"/en-us/blog/authors/neha-khalwadekar",{"name":5766,"config":5767},"Neha Khalwadekar",{"headshot":5768,"ctfId":5769},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":691},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5775,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5776,"config":5781,"_id":5782,"_type":29,"title":5783,"_source":31,"_file":5784,"_stem":5785,"_extension":34},"/en-us/blog/authors/neil-mccorrison",{"name":5777,"config":5778},"Neil McCorrison",{"headshot":5779,"ctfId":5780},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":691},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5787,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5788,"config":5793,"_id":5794,"_type":29,"title":5795,"_source":31,"_file":5796,"_stem":5797,"_extension":34},"/en-us/blog/authors/neil-mcdonald",{"name":5789,"config":5790},"Neil McDonald",{"headshot":5791,"ctfId":5792},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":691},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5799,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5800,"config":5804,"_id":5806,"_type":29,"title":5801,"_source":31,"_file":5807,"_stem":5808,"_extension":34},"/en-us/blog/authors/nick-cayou",{"name":5801,"config":5802,"role":7},"Nick Cayou",{"headshot":5803},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":691,"gitlabHandle":5805},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5810,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5811,"config":5816,"_id":5817,"_type":29,"title":5812,"_source":31,"_file":5818,"_stem":5819,"_extension":34},"/en-us/blog/authors/nick-malcolm",{"name":5812,"config":5813},"Nick Malcolm",{"headshot":5814,"ctfId":5815},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":691},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5821,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5822,"config":5826,"_id":5827,"_type":29,"title":5823,"_source":31,"_file":5828,"_stem":5829,"_extension":34},"/en-us/blog/authors/nick-thomas",{"name":5823,"config":5824},"Nick Thomas",{"headshot":7,"ctfId":5825},"nickthomas",{"template":691},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5831,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5832,"config":5837,"_id":5838,"_type":29,"title":5833,"_source":31,"_file":5839,"_stem":5840,"_extension":34},"/en-us/blog/authors/nick-veenhof",{"name":5833,"config":5834},"Nick Veenhof",{"headshot":5835,"ctfId":5836},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":691},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5842,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5843,"config":5847,"_id":5848,"_type":29,"title":5844,"_source":31,"_file":5849,"_stem":5850,"_extension":34},"/en-us/blog/authors/nico-meisenzahl",{"name":5844,"config":5845},"Nico Meisenzahl",{"headshot":7,"ctfId":5846},"nicomeisenzahl",{"template":691},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5852,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5853,"config":5857,"_id":5858,"_type":29,"title":5854,"_source":31,"_file":5859,"_stem":5860,"_extension":34},"/en-us/blog/authors/nicole-schwartz",{"name":5854,"config":5855},"Nicole Schwartz",{"headshot":7,"ctfId":5856},"nicoleschwartz",{"template":691},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5862,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5863,"config":5868,"_id":5869,"_type":29,"title":5864,"_source":31,"_file":5870,"_stem":5871,"_extension":34},"/en-us/blog/authors/nikhil-george",{"name":5864,"config":5865},"Nikhil George",{"headshot":5866,"ctfId":5867},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":691},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5873,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5874,"config":5879,"_id":5880,"_type":29,"title":5875,"_source":31,"_file":5881,"_stem":5882,"_extension":34},"/en-us/blog/authors/nima-badiey",{"name":5875,"config":5876},"Nima Badiey",{"headshot":5877,"ctfId":5878},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":691},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5884,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5885,"config":5890,"_id":5891,"_type":29,"title":5886,"_source":31,"_file":5892,"_stem":5893,"_extension":34},"/en-us/blog/authors/noah-ing",{"name":5886,"config":5887},"Noah Ing",{"headshot":5888,"ctfId":5889},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":691},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5895,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5896,"config":5900,"_id":5901,"_type":29,"title":5897,"_source":31,"_file":5902,"_stem":5903,"_extension":34},"/en-us/blog/authors/noah-manger",{"name":5897,"config":5898},"Noah Manger",{"headshot":722,"ctfId":5899},"Noah-Manger",{"template":691},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5905,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5906,"config":5910,"_id":5911,"_type":29,"title":5907,"_source":31,"_file":5912,"_stem":5913,"_extension":34},"/en-us/blog/authors/noah-zoschke",{"name":5907,"config":5908},"Noah Zoschke",{"headshot":722,"ctfId":5909},"Noah-Zoschke",{"template":691},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5915,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5916,"config":5920,"_id":5921,"_type":29,"title":5917,"_source":31,"_file":5922,"_stem":5923,"_extension":34},"/en-us/blog/authors/nolan-myers",{"name":5917,"config":5918},"Nolan Myers",{"headshot":722,"ctfId":5919},"Nolan-Myers",{"template":691},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5925,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5926,"config":5930,"_id":5931,"_type":29,"title":5927,"_source":31,"_file":5932,"_stem":5933,"_extension":34},"/en-us/blog/authors/nupur-sharma",{"name":5927,"config":5928},"Nupur Sharma",{"headshot":722,"ctfId":5929},"6p7RQDl0cDWnAxU8yu2vVK",{"template":691},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5935,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5936,"config":5940,"_id":5941,"_type":29,"title":5937,"_source":31,"_file":5942,"_stem":5943,"_extension":34},"/en-us/blog/authors/nuritzi-sanchez",{"name":5937,"config":5938},"Nuritzi Sanchez",{"headshot":7,"ctfId":5939},"nuritzi",{"template":691},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5945,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5946,"config":5951,"_id":5952,"_type":29,"title":5947,"_source":31,"_file":5953,"_stem":5954,"_extension":34},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5947,"config":5948},"Oleksandr Pysaryuk",{"headshot":5949,"ctfId":5950},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":691},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":5956,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5957,"config":5962,"_id":5963,"_type":29,"title":5964,"_source":31,"_file":5965,"_stem":5966,"_extension":34},"/en-us/blog/authors/olena-horal-koretska",{"name":5958,"config":5959},"Olena Horal-Koretska",{"headshot":5960,"ctfId":5961},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":691},"content:en-us:blog:authors:olena-horal-koretska.yml","Olena Horal Koretska","en-us/blog/authors/olena-horal-koretska.yml","en-us/blog/authors/olena-horal-koretska",{"_path":5968,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5969,"config":5973,"_id":5975,"_type":29,"title":5970,"_source":31,"_file":5976,"_stem":5977,"_extension":34},"/en-us/blog/authors/olivier-campeau",{"name":5970,"config":5971},"Olivier Campeau",{"headshot":5972},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":691,"gitlabHandle":5974},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5979,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5980,"config":5985,"_id":5986,"_type":29,"title":5987,"_source":31,"_file":5988,"_stem":5989,"_extension":34},"/en-us/blog/authors/olivier-dupr",{"name":5981,"config":5982},"Olivier Dupré",{"headshot":5983,"ctfId":5984},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":691},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":5991,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":5992,"config":5997,"_id":5998,"_type":29,"title":5993,"_source":31,"_file":5999,"_stem":6000,"_extension":34},"/en-us/blog/authors/omar-fernandez",{"name":5993,"config":5994},"Omar Fernandez",{"headshot":5995,"ctfId":5996},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":691},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":6002,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6003,"config":6007,"_id":6008,"_type":29,"title":6004,"_source":31,"_file":6009,"_stem":6010,"_extension":34},"/en-us/blog/authors/opher-vishnia",{"name":6004,"config":6005},"Opher Vishnia",{"headshot":722,"ctfId":6006},"O0F3sw3av9pRAxeP9iR7N",{"template":691},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":6012,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6013,"config":6017,"_id":6018,"_type":29,"title":6014,"_source":31,"_file":6019,"_stem":6020,"_extension":34},"/en-us/blog/authors/orit-golowinski",{"name":6014,"config":6015},"Orit Golowinski",{"headshot":7,"ctfId":6016},"ogolowinski",{"template":691},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6022,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6023,"config":6028,"_id":6029,"_type":29,"title":6024,"_source":31,"_file":6030,"_stem":6031,"_extension":34},"/en-us/blog/authors/ottilia-westerlund",{"name":6024,"config":6025},"Ottilia Westerlund",{"headshot":6026,"ctfId":6027},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":691},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6033,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6034,"config":6038,"_id":6039,"_type":29,"title":6035,"_source":31,"_file":6040,"_stem":6041,"_extension":34},"/en-us/blog/authors/owen-williams",{"name":6035,"config":6036},"Owen Williams",{"headshot":722,"ctfId":6037},"Owen-Williams",{"template":691},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6043,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6044,"config":6048,"_id":6049,"_type":29,"title":6045,"_source":31,"_file":6050,"_stem":6051,"_extension":34},"/en-us/blog/authors/pablo-carranza",{"name":6045,"config":6046},"Pablo Carranza",{"headshot":722,"ctfId":6047},"Pablo-Carranza",{"template":691},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6053,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6054,"config":6058,"_id":6059,"_type":29,"title":6055,"_source":31,"_file":6060,"_stem":6061,"_extension":34},"/en-us/blog/authors/parker-ennis",{"name":6055,"config":6056},"Parker Ennis",{"headshot":7,"ctfId":6057},"parkerennis",{"template":691},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6063,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6064,"config":6068,"_id":6069,"_type":29,"title":6065,"_source":31,"_file":6070,"_stem":6071,"_extension":34},"/en-us/blog/authors/patricio-cano",{"name":6065,"config":6066},"Patricio Cano",{"headshot":722,"ctfId":6067},"Patricio-Cano",{"template":691},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6073,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6074,"config":6078,"_id":6079,"_type":29,"title":6075,"_source":31,"_file":6080,"_stem":6081,"_extension":34},"/en-us/blog/authors/patrick-deuley",{"name":6075,"config":6076},"Patrick Deuley",{"headshot":722,"ctfId":6077},"4YYemtKKpxKC4yukyFavai",{"template":691},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6083,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6084,"config":6088,"_id":6089,"_type":29,"title":6085,"_source":31,"_file":6090,"_stem":6091,"_extension":34},"/en-us/blog/authors/patrick-foster",{"name":6085,"config":6086},"Patrick Foster",{"headshot":722,"ctfId":6087},"Patrick-Foster",{"template":691},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6093,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6094,"config":6099,"_id":6100,"_type":29,"title":6095,"_source":31,"_file":6101,"_stem":6102,"_extension":34},"/en-us/blog/authors/patrick-steinhardt",{"name":6095,"config":6096},"Patrick Steinhardt",{"headshot":6097,"ctfId":6098},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":691},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6104,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6105,"config":6109,"_id":6110,"_type":29,"title":6106,"_source":31,"_file":6111,"_stem":6112,"_extension":34},"/en-us/blog/authors/patty-cheung",{"name":6106,"config":6107},"Patty Cheung",{"headshot":722,"ctfId":6108},"pattycheung",{"template":691},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6114,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6115,"config":6119,"_id":6120,"_type":29,"title":6116,"_source":31,"_file":6121,"_stem":6122,"_extension":34},"/en-us/blog/authors/paul-badcock",{"name":6116,"config":6117},"Paul Badcock",{"headshot":722,"ctfId":6118},"TbNQIdiD4vlFB7XYXeArb",{"template":691},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6124,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6125,"config":6129,"_id":6130,"_type":29,"title":6131,"_source":31,"_file":6132,"_stem":6133,"_extension":34},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6126,"config":6127},"Paul Gascou-Vaillancourt",{"headshot":722,"ctfId":6128},"6Yg7HWPoy2E5vwudH0EZja",{"template":691},"content:en-us:blog:authors:paul-gascou-vaillancourt.yml","Paul Gascou Vaillancourt","en-us/blog/authors/paul-gascou-vaillancourt.yml","en-us/blog/authors/paul-gascou-vaillancourt",{"_path":6135,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6136,"config":6140,"_id":6141,"_type":29,"title":6137,"_source":31,"_file":6142,"_stem":6143,"_extension":34},"/en-us/blog/authors/paul-hibbitts",{"name":6137,"config":6138},"Paul Hibbitts",{"headshot":722,"ctfId":6139},"Paul-Hibbitts",{"template":691},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6145,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6146,"config":6150,"_id":6151,"_type":29,"title":6147,"_source":31,"_file":6152,"_stem":6153,"_extension":34},"/en-us/blog/authors/paul-machle",{"name":6147,"config":6148},"Paul Machle",{"headshot":722,"ctfId":6149},"Paul-Machle",{"template":691},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6155,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6156,"config":6160,"_id":6162,"_type":29,"title":6157,"_source":31,"_file":6163,"_stem":6164,"_extension":34},"/en-us/blog/authors/paul-meresanu",{"name":6157,"role":7,"config":6158},"Paul Meresanu",{"headshot":6159},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":691,"gitlabHandle":6161},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6166,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6167,"config":6172,"_id":6173,"_type":29,"title":6168,"_source":31,"_file":6174,"_stem":6175,"_extension":34},"/en-us/blog/authors/payton-burdette",{"name":6168,"config":6169},"Payton Burdette",{"headshot":6170,"ctfId":6171},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":691},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6177,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6178,"config":6182,"_id":6183,"_type":29,"title":6179,"_source":31,"_file":6184,"_stem":6185,"_extension":34},"/en-us/blog/authors/pedro-fortuna",{"name":6179,"config":6180},"Pedro Fortuna",{"headshot":722,"ctfId":6181},"7JwB4WZYF19OKwOo4yk5n4",{"template":691},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6187,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6188,"config":6193,"_id":6194,"_type":29,"title":6195,"_source":31,"_file":6196,"_stem":6197,"_extension":34},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6189,"config":6190},"Pedro Moreira da Silva",{"headshot":6191,"ctfId":6192},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":691},"content:en-us:blog:authors:pedro-moreira-da-silva.yml","Pedro Moreira Da Silva","en-us/blog/authors/pedro-moreira-da-silva.yml","en-us/blog/authors/pedro-moreira-da-silva",{"_path":6199,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6200,"config":6205,"_id":6206,"_type":29,"title":6201,"_source":31,"_file":6207,"_stem":6208,"_extension":34},"/en-us/blog/authors/phil-hughes",{"name":6201,"config":6202},"Phil Hughes",{"headshot":6203,"ctfId":6204},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":691},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6210,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6211,"config":6215,"_id":6216,"_type":29,"title":6212,"_source":31,"_file":6217,"_stem":6218,"_extension":34},"/en-us/blog/authors/philip-welz",{"name":6212,"config":6213},"Philip Welz",{"headshot":7,"ctfId":6214},"philxx",{"template":691},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6220,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6221,"config":6226,"_id":6227,"_type":29,"title":6228,"_source":31,"_file":6229,"_stem":6230,"_extension":34},"/en-us/blog/authors/philippe-lafoucrire",{"name":6222,"config":6223},"Philippe Lafoucrière",{"headshot":6224,"ctfId":6225},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":691},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6232,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6233,"config":6237,"_id":6238,"_type":29,"title":6239,"_source":31,"_file":6240,"_stem":6241,"_extension":34},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6234,"config":6235},"Pierre de La Morinerie",{"headshot":722,"ctfId":6236},"Pierre-de-La-Morinerie",{"template":691},"content:en-us:blog:authors:pierre-de-la-morinerie.yml","Pierre De La Morinerie","en-us/blog/authors/pierre-de-la-morinerie.yml","en-us/blog/authors/pierre-de-la-morinerie",{"_path":6243,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6244,"config":6248,"_id":6249,"_type":29,"title":6245,"_source":31,"_file":6250,"_stem":6251,"_extension":34},"/en-us/blog/authors/pierre-smeyers",{"name":6245,"config":6246},"Pierre Smeyers",{"headshot":7,"ctfId":6247},"pismy",{"template":691},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6253,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6254,"config":6259,"_id":6260,"_type":29,"title":6255,"_source":31,"_file":6261,"_stem":6262,"_extension":34},"/en-us/blog/authors/pini-wietchner",{"name":6255,"config":6256},"Pini Wietchner",{"headshot":6257,"ctfId":6258},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":691},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6264,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6265,"config":6269,"_id":6270,"_type":29,"title":6271,"_source":31,"_file":6272,"_stem":6273,"_extension":34},"/en-us/blog/authors/pj-metz",{"name":6266,"config":6267},"PJ Metz",{"headshot":722,"ctfId":6268},"PjMetz",{"template":691},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6275,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6276,"config":6279,"_id":6280,"_type":29,"title":6281,"_source":31,"_file":6282,"_stem":6283,"_extension":34},"/en-us/blog/authors/plapadoo",{"name":6277,"config":6278},"plapadoo",{"headshot":722,"ctfId":6277},{"template":691},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6285,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6286,"config":6290,"_id":6291,"_type":29,"title":6287,"_source":31,"_file":6292,"_stem":6293,"_extension":34},"/en-us/blog/authors/pranay-bakre",{"name":6287,"config":6288},"Pranay Bakre",{"headshot":7,"ctfId":6289},"Darren-Eastman",{"template":691},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6295,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6296,"config":6300,"_id":6301,"_type":29,"title":6297,"_source":31,"_file":6302,"_stem":6303,"_extension":34},"/en-us/blog/authors/priyanka-sharma",{"name":6297,"config":6298},"Priyanka Sharma",{"headshot":7,"ctfId":6299},"pritianka",{"template":691},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6305,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6306,"config":6311,"_id":6312,"_type":29,"title":6313,"_source":31,"_file":6314,"_stem":6315,"_extension":34},"/en-us/blog/authors/pter-bozs",{"name":6307,"config":6308},"Péter Bozsó",{"headshot":6309,"ctfId":6310},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":691},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6317,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6318,"config":6322,"_id":6323,"_type":29,"title":6319,"_source":31,"_file":6324,"_stem":6325,"_extension":34},"/en-us/blog/authors/quan-to",{"name":6319,"config":6320},"Quan To",{"headshot":722,"ctfId":6321},"5dswLnpCobgICjM0RpHMU2",{"template":691},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6327,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6328,"config":6333,"_id":6334,"_type":29,"title":6329,"_source":31,"_file":6335,"_stem":6336,"_extension":34},"/en-us/blog/authors/rachel-nienaber",{"name":6329,"config":6330},"Rachel Nienaber",{"headshot":6331,"ctfId":6332},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":691},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6338,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6339,"config":6343,"_id":6345,"_type":29,"title":6340,"_source":31,"_file":6346,"_stem":6347,"_extension":34},"/en-us/blog/authors/radovan-bacovic",{"name":6340,"config":6341},"Radovan Bacovic",{"headshot":6342},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":691,"gitlabHandle":6344},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6349,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6350,"config":6354,"_id":6355,"_type":29,"title":6356,"_source":31,"_file":6357,"_stem":6358,"_extension":34},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6351,"config":6352},"Rahul Bhargava, CTO, Evolphin",{"headshot":722,"ctfId":6353},"Rahul-Bhargava-CTO-Evolphin",{"template":691},"content:en-us:blog:authors:rahul-bhargava-cto-evolphin.yml","Rahul Bhargava Cto Evolphin","en-us/blog/authors/rahul-bhargava-cto-evolphin.yml","en-us/blog/authors/rahul-bhargava-cto-evolphin",{"_path":6360,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6361,"config":6366,"_id":6367,"_type":29,"title":6362,"_source":31,"_file":6368,"_stem":6369,"_extension":34},"/en-us/blog/authors/raimund-hook",{"name":6362,"config":6363},"Raimund Hook",{"headshot":6364,"ctfId":6365},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":691},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6371,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6372,"config":6376,"_id":6377,"_type":29,"title":6373,"_source":31,"_file":6378,"_stem":6379,"_extension":34},"/en-us/blog/authors/raquel-campuzano",{"name":6373,"config":6374},"Raquel Campuzano",{"headshot":722,"ctfId":6375},"Raquel-Campuzano",{"template":691},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6381,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6382,"config":6386,"_id":6387,"_type":29,"title":6383,"_source":31,"_file":6388,"_stem":6389,"_extension":34},"/en-us/blog/authors/ray-paik",{"name":6383,"config":6384},"Ray Paik",{"headshot":7,"ctfId":6385},"rpaik",{"template":691},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6391,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6392,"config":6397,"_id":6398,"_type":29,"title":6393,"_source":31,"_file":6399,"_stem":6400,"_extension":34},"/en-us/blog/authors/rayana-verissimo",{"name":6393,"config":6394},"Rayana Verissimo",{"headshot":6395,"ctfId":6396},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":691},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6402,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6403,"config":6407,"_id":6409,"_type":29,"title":6410,"_source":31,"_file":6411,"_stem":6412,"_extension":34},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6404,"config":6405},"Rebeca Fenoy-Anthony",{"headshot":6406},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":691,"gitlabHandle":6408},"rfenoyanthony","content:en-us:blog:authors:rebeca-fenoy-anthony.yml","Rebeca Fenoy Anthony","en-us/blog/authors/rebeca-fenoy-anthony.yml","en-us/blog/authors/rebeca-fenoy-anthony",{"_path":6414,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6415,"config":6419,"_id":6420,"_type":29,"title":6416,"_source":31,"_file":6421,"_stem":6422,"_extension":34},"/en-us/blog/authors/rebecca-dodd",{"name":6416,"config":6417},"Rebecca Dodd",{"headshot":722,"ctfId":6418},"Rebecca-Dodd",{"template":691},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6424,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6425,"config":6429,"_id":6430,"_type":29,"title":6426,"_source":31,"_file":6431,"_stem":6432,"_extension":34},"/en-us/blog/authors/regis-freyd",{"name":6426,"config":6427},"Regis Freyd",{"headshot":722,"ctfId":6428},"Regis-Freyd",{"template":691},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6434,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6435,"config":6440,"_id":6441,"_type":29,"title":6436,"_source":31,"_file":6442,"_stem":6443,"_extension":34},"/en-us/blog/authors/regnard-raquedan",{"name":6436,"config":6437},"Regnard Raquedan",{"headshot":6438,"ctfId":6439},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":691},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6445,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6446,"config":6450,"_id":6451,"_type":29,"title":6447,"_source":31,"_file":6452,"_stem":6453,"_extension":34},"/en-us/blog/authors/renato-stanic",{"name":6447,"config":6448},"Renato Stanic",{"headshot":7,"ctfId":6449},"rstanic12",{"template":691},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6455,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6456,"config":6461,"_id":6462,"_type":29,"title":6457,"_source":31,"_file":6463,"_stem":6464,"_extension":34},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6457,"config":6458},"Ricardo Amarilla Villalba",{"headshot":6459,"ctfId":6460},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":691},"content:en-us:blog:authors:ricardo-amarilla-villalba.yml","en-us/blog/authors/ricardo-amarilla-villalba.yml","en-us/blog/authors/ricardo-amarilla-villalba",{"_path":6466,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6467,"config":6471,"_id":6472,"_type":29,"title":6468,"_source":31,"_file":6473,"_stem":6474,"_extension":34},"/en-us/blog/authors/riccardo-padovani",{"name":6468,"config":6469},"Riccardo Padovani",{"headshot":722,"ctfId":6470},"Riccardo-Padovani",{"template":691},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6476,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6477,"config":6482,"_id":6483,"_type":29,"title":6484,"_source":31,"_file":6485,"_stem":6486,"_extension":34},"/en-us/blog/authors/rmy-coutable",{"name":6478,"config":6479},"Rémy Coutable",{"headshot":6480,"ctfId":6481},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":691},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6488,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6489,"config":6494,"_id":6495,"_type":29,"title":6490,"_source":31,"_file":6496,"_stem":6497,"_extension":34},"/en-us/blog/authors/rob-jackson",{"name":6490,"config":6491},"Rob Jackson",{"headshot":6492,"ctfId":6493},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":691},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6499,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6500,"config":6504,"_id":6505,"_type":29,"title":6501,"_source":31,"_file":6506,"_stem":6507,"_extension":34},"/en-us/blog/authors/rob-ribeiro",{"name":6501,"config":6502},"Rob Ribeiro",{"headshot":722,"ctfId":6503},"Rob-Ribeiro",{"template":691},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6509,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6510,"config":6514,"_id":6515,"_type":29,"title":6511,"_source":31,"_file":6516,"_stem":6517,"_extension":34},"/en-us/blog/authors/robert-speicher",{"name":6511,"config":6512},"Robert Speicher",{"headshot":7,"ctfId":6513},"rspeicher",{"template":691},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6519,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6520,"config":6525,"_id":6526,"_type":29,"title":6521,"_source":31,"_file":6527,"_stem":6528,"_extension":34},"/en-us/blog/authors/robert-williams",{"name":6521,"config":6522},"Robert Williams",{"headshot":6523,"ctfId":6524},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":691},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6530,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6531,"config":6537,"_id":6538,"_type":29,"title":6532,"_source":31,"_file":6539,"_stem":6540,"_extension":34},"/en-us/blog/authors/robin-schulman",{"name":6532,"config":6533,"role":6536},"Robin Schulman",{"headshot":6534,"ctfId":6535},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665748/Blog/Author%20Headshots/robin-headshot.png","robin","Chief Legal Officer and Head of Corporate Affairs",{"template":691},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6542,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6543,"config":6547,"_id":6548,"_type":29,"title":6544,"_source":31,"_file":6549,"_stem":6550,"_extension":34},"/en-us/blog/authors/roger-woo",{"name":6544,"config":6545},"Roger Woo",{"headshot":722,"ctfId":6546},"rogerwoo",{"template":691},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6552,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6553,"config":6559,"_id":6560,"_type":29,"title":6561,"_source":31,"_file":6562,"_stem":6563,"_extension":34},"/en-us/blog/authors/rohit-shambhuni",{"role":6554,"name":6555,"config":6556},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6557,"ctfId":6558},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":691},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6565,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6566,"config":6570,"_id":6571,"_type":29,"title":6567,"_source":31,"_file":6572,"_stem":6573,"_extension":34},"/en-us/blog/authors/roman-kuba",{"name":6567,"config":6568},"Roman Kuba",{"headshot":7,"ctfId":6569},"rkuba",{"template":691},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6575,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6576,"config":6581,"_id":6582,"_type":29,"title":6583,"_source":31,"_file":6584,"_stem":6585,"_extension":34},"/en-us/blog/authors/romuald-atchad",{"name":6577,"config":6578},"Romuald Atchadé",{"headshot":6579,"ctfId":6580},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":691},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6587,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6588,"config":6592,"_id":6593,"_type":29,"title":6594,"_source":31,"_file":6595,"_stem":6596,"_extension":34},"/en-us/blog/authors/ronald-van-zon",{"name":6589,"config":6590},"Ronald van Zon",{"headshot":7,"ctfId":6591},"Eagllus",{"template":691},"content:en-us:blog:authors:ronald-van-zon.yml","Ronald Van Zon","en-us/blog/authors/ronald-van-zon.yml","en-us/blog/authors/ronald-van-zon",{"_path":6598,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6599,"config":6603,"_id":6604,"_type":29,"title":6600,"_source":31,"_file":6605,"_stem":6606,"_extension":34},"/en-us/blog/authors/ross-fuhrman",{"name":6600,"config":6601},"Ross Fuhrman",{"headshot":722,"ctfId":6602},"7dkuWBvIc0AQanUclt3pOk",{"template":691},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6608,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6609,"config":6613,"_id":6614,"_type":29,"title":6610,"_source":31,"_file":6615,"_stem":6616,"_extension":34},"/en-us/blog/authors/roy-taragan",{"name":6610,"config":6611},"Roy Taragan",{"headshot":722,"ctfId":6612},"3pnwP9gqELfda3DCOQJQCL",{"template":691},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6618,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6619,"config":6624,"_id":6625,"_type":29,"title":6620,"_source":31,"_file":6626,"_stem":6627,"_extension":34},"/en-us/blog/authors/ruby-nealon",{"name":6620,"config":6621},"Ruby Nealon",{"headshot":6622,"ctfId":6623},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":691},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6629,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6630,"config":6634,"_id":6635,"_type":29,"title":6631,"_source":31,"_file":6636,"_stem":6637,"_extension":34},"/en-us/blog/authors/rupert-douglas",{"name":6631,"config":6632},"Rupert Douglas",{"headshot":7,"ctfId":6633},"rdouglasgitlab",{"template":691},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6639,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6640,"config":6644,"_id":6645,"_type":29,"title":6646,"_source":31,"_file":6647,"_stem":6648,"_extension":34},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6641,"config":6642},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6643},"3PShSyZ6DJXnkDa5xrQs7V",{"template":691},"content:en-us:blog:authors:rusty-weston-guest-contributor.yml","Rusty Weston Guest Contributor","en-us/blog/authors/rusty-weston-guest-contributor.yml","en-us/blog/authors/rusty-weston-guest-contributor",{"_path":6650,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6651,"config":6656,"_id":6657,"_type":29,"title":6652,"_source":31,"_file":6658,"_stem":6659,"_extension":34},"/en-us/blog/authors/rutvik-shah",{"name":6652,"config":6653},"Rutvik Shah",{"headshot":6654,"ctfId":6655},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":691},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6661,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6662,"config":6667,"_id":6668,"_type":29,"title":6663,"_source":31,"_file":6669,"_stem":6670,"_extension":34},"/en-us/blog/authors/sacha-guyon",{"name":6663,"config":6664},"Sacha Guyon",{"headshot":6665,"ctfId":6666},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":691},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6672,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6673,"config":6678,"_id":6679,"_type":29,"title":6674,"_source":31,"_file":6680,"_stem":6681,"_extension":34},"/en-us/blog/authors/safwan-ahmed",{"name":6674,"config":6675},"Safwan Ahmed",{"headshot":6676,"ctfId":6677},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":691},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6683,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6684,"config":6688,"_id":6690,"_type":29,"title":6685,"_source":31,"_file":6691,"_stem":6692,"_extension":34},"/en-us/blog/authors/salahddine-aberkan",{"name":6685,"config":6686},"Salahddine Aberkan",{"headshot":6687},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":691,"gitlabHandle":6689},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6694,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6695,"config":6699,"_id":6700,"_type":29,"title":15,"_source":31,"_file":6701,"_stem":6702,"_extension":34},"/en-us/blog/authors/salman-ladha",{"name":15,"config":6696},{"headshot":6697,"ctfId":6698},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":691},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6704,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6705,"config":6710,"_id":6711,"_type":29,"title":6706,"_source":31,"_file":6712,"_stem":6713,"_extension":34},"/en-us/blog/authors/sam-beckham",{"name":6706,"config":6707},"Sam Beckham",{"headshot":6708,"ctfId":6709},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":691},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6715,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6716,"config":6721,"_id":6722,"_type":29,"title":6717,"_source":31,"_file":6723,"_stem":6724,"_extension":34},"/en-us/blog/authors/sam-kerr",{"name":6717,"config":6718},"Sam Kerr",{"headshot":6719,"ctfId":6720},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":691},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6726,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6727,"config":6732,"_id":6733,"_type":29,"title":6728,"_source":31,"_file":6734,"_stem":6735,"_extension":34},"/en-us/blog/authors/sam-morris",{"name":6728,"config":6729},"Sam Morris",{"headshot":6730,"ctfId":6731},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":691},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6737,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6738,"config":6743,"_id":6744,"_type":29,"title":6739,"_source":31,"_file":6745,"_stem":6746,"_extension":34},"/en-us/blog/authors/sam-white",{"name":6739,"config":6740},"Sam White",{"headshot":6741,"ctfId":6742},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":691},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6748,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6749,"config":6754,"_id":6755,"_type":29,"title":6750,"_source":31,"_file":6756,"_stem":6757,"_extension":34},"/en-us/blog/authors/sam-wiskow",{"name":6750,"config":6751},"Sam Wiskow",{"headshot":6752,"ctfId":6753},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":691},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6759,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6760,"config":6765,"_id":6766,"_type":29,"title":6761,"_source":31,"_file":6767,"_stem":6768,"_extension":34},"/en-us/blog/authors/samantha-lee",{"name":6761,"config":6762},"Samantha Lee",{"headshot":6763,"ctfId":6764},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":691},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6770,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6771,"config":6775,"_id":6776,"_type":29,"title":6777,"_source":31,"_file":6778,"_stem":6779,"_extension":34},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6772,"config":6773},"Sameer Farooqui, OctoML",{"headshot":722,"ctfId":6774},"Sameer-Farooqui-OctoML",{"template":691},"content:en-us:blog:authors:sameer-farooqui-octoml.yml","Sameer Farooqui Octoml","en-us/blog/authors/sameer-farooqui-octoml.yml","en-us/blog/authors/sameer-farooqui-octoml",{"_path":6781,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6782,"config":6787,"_id":6788,"_type":29,"title":6783,"_source":31,"_file":6789,"_stem":6790,"_extension":34},"/en-us/blog/authors/sameer-kamani",{"name":6783,"config":6784},"Sameer Kamani",{"headshot":6785,"ctfId":6786},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":691},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6792,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6793,"config":6798,"_id":6799,"_type":29,"title":6794,"_source":31,"_file":6800,"_stem":6801,"_extension":34},"/en-us/blog/authors/samer-akkoub",{"name":6794,"config":6795},"Samer Akkoub",{"headshot":6796,"ctfId":6797},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":691},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6803,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6804,"config":6808,"_id":6809,"_type":29,"title":6805,"_source":31,"_file":6810,"_stem":6811,"_extension":34},"/en-us/blog/authors/samuel-alfageme",{"name":6805,"config":6806},"Samuel Alfageme",{"headshot":722,"ctfId":6807},"Samuel-Alfageme",{"template":691},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6813,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6814,"config":6821,"_id":6822,"_type":29,"title":6816,"_source":31,"_file":6823,"_stem":6824,"_extension":34},"/en-us/blog/authors/sandra-gittlen",{"role":6815,"name":6816,"config":6817},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6818,"linkedin":6819,"ctfId":6820},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659648/Blog/Author%20Headshots/Sgittlen-headshot.jpg","https://www.linkedin.com/in/sandra-gittlen-48557a294/","sgittlen",{"template":691},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6826,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6827,"config":6831,"_id":6832,"_type":29,"title":6828,"_source":31,"_file":6833,"_stem":6834,"_extension":34},"/en-us/blog/authors/sandra-salerno",{"name":6828,"config":6829},"Sandra Salerno",{"headshot":722,"ctfId":6830},"Sandra-Salerno",{"template":691},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6836,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6837,"config":6841,"_id":6842,"_type":29,"title":6843,"_source":31,"_file":6844,"_stem":6845,"_extension":34},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6838,"config":6839},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6840},"topodelapradera",{"template":691},"content:en-us:blog:authors:santiago-ruano-rincn.yml","Santiago Ruano Rincn","en-us/blog/authors/santiago-ruano-rincn.yml","en-us/blog/authors/santiago-ruano-rincn",{"_path":6847,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6848,"config":6852,"_id":6853,"_type":29,"title":6849,"_source":31,"_file":6854,"_stem":6855,"_extension":34},"/en-us/blog/authors/sara-kassabian",{"name":6849,"config":6850},"Sara Kassabian",{"headshot":7,"ctfId":6851},"skassabian",{"template":691},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6857,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6858,"config":6863,"_id":6864,"_type":29,"title":6859,"_source":31,"_file":6865,"_stem":6866,"_extension":34},"/en-us/blog/authors/sara-meadzinger",{"name":6859,"config":6860},"Sara Meadzinger",{"headshot":6861,"ctfId":6862},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":691},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6868,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6869,"config":6873,"_id":6874,"_type":29,"title":6870,"_source":31,"_file":6875,"_stem":6876,"_extension":34},"/en-us/blog/authors/sarah-daily",{"name":6870,"config":6871},"Sarah Daily",{"headshot":722,"ctfId":6872},"2YhqRPG08HF0FCF1l7oeZL",{"template":691},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6878,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6879,"config":6883,"_id":6884,"_type":29,"title":6880,"_source":31,"_file":6885,"_stem":6886,"_extension":34},"/en-us/blog/authors/sarah-german",{"name":6880,"config":6881},"Sarah German",{"headshot":6882,"ctfId":4540},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":691},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6888,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6889,"config":6894,"_id":6895,"_type":29,"title":6890,"_source":31,"_file":6896,"_stem":6897,"_extension":34},"/en-us/blog/authors/sarah-matthies",{"name":6890,"config":6891},"Sarah Matthies",{"headshot":6892,"ctfId":6893},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664405/Blog/Author%20Headshots/Screenshot_2024-11-19_at_9.50.14_AM.png","2Giv8NnS4VVAq9RsHYqHkg",{"template":691},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6899,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6900,"config":6904,"_id":6905,"_type":29,"title":6906,"_source":31,"_file":6907,"_stem":6908,"_extension":34},"/en-us/blog/authors/sarah-odonnell",{"name":6901,"config":6902},"Sarah O’Donnell",{"headshot":7,"ctfId":6903},"sarahod",{"template":691},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6910,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6911,"config":6916,"_id":6917,"_type":29,"title":6912,"_source":31,"_file":6918,"_stem":6919,"_extension":34},"/en-us/blog/authors/sarah-waldner",{"name":6912,"config":6913},"Sarah Waldner",{"headshot":6914,"ctfId":6915},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":691},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6921,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6922,"config":6926,"_id":6927,"_type":29,"title":6923,"_source":31,"_file":6928,"_stem":6929,"_extension":34},"/en-us/blog/authors/sarrah-vesselov",{"name":6923,"config":6924},"Sarrah Vesselov",{"headshot":7,"ctfId":6925},"sarrahvesselov",{"template":691},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6931,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6932,"config":6936,"_id":6937,"_type":29,"title":6933,"_source":31,"_file":6938,"_stem":6939,"_extension":34},"/en-us/blog/authors/sarup-banskota",{"name":6933,"config":6934},"Sarup Banskota",{"headshot":722,"ctfId":6935},"3sY2Ef0sXxaJKCmArdSLsA",{"template":691},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6941,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6942,"config":6947,"_id":6948,"_type":29,"title":6943,"_source":31,"_file":6949,"_stem":6950,"_extension":34},"/en-us/blog/authors/sascha-eggenberger",{"name":6943,"config":6944},"Sascha Eggenberger",{"headshot":6945,"ctfId":6946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":691},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":6952,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6953,"config":6957,"_id":6958,"_type":29,"title":6954,"_source":31,"_file":6959,"_stem":6960,"_extension":34},"/en-us/blog/authors/sasha-bannister",{"name":6954,"config":6955},"Sasha Bannister",{"headshot":722,"ctfId":6956},"Sasha-Bannister",{"template":691},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":6962,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6963,"config":6968,"_id":6969,"_type":29,"title":6964,"_source":31,"_file":6970,"_stem":6971,"_extension":34},"/en-us/blog/authors/sasha-gazlay",{"name":6964,"config":6965},"Sasha Gazlay",{"headshot":6966,"ctfId":6967},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":691},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":6973,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6974,"config":6979,"_id":6980,"_type":29,"title":6975,"_source":31,"_file":6981,"_stem":6982,"_extension":34},"/en-us/blog/authors/saumya-upadhyaya",{"name":6975,"config":6976},"Saumya Upadhyaya",{"headshot":6977,"ctfId":6978},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":691},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":6984,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6985,"config":6990,"_id":6991,"_type":29,"title":6992,"_source":31,"_file":6993,"_stem":6994,"_extension":34},"/en-us/blog/authors/scott-de-jonge",{"name":6986,"config":6987},"Scott de Jonge",{"headshot":6988,"ctfId":6989},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":691},"content:en-us:blog:authors:scott-de-jonge.yml","Scott De Jonge","en-us/blog/authors/scott-de-jonge.yml","en-us/blog/authors/scott-de-jonge",{"_path":6996,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":6997,"config":7002,"_id":7003,"_type":29,"title":6998,"_source":31,"_file":7004,"_stem":7005,"_extension":34},"/en-us/blog/authors/scott-hampton",{"name":6998,"config":6999},"Scott Hampton",{"headshot":7000,"ctfId":7001},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":691},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":7007,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7008,"config":7012,"_id":7013,"_type":29,"title":7009,"_source":31,"_file":7014,"_stem":7015,"_extension":34},"/en-us/blog/authors/scott-williamson",{"name":7009,"config":7010},"Scott Williamson",{"headshot":7,"ctfId":7011},"sfwgitlab",{"template":691},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":7017,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7018,"config":7023,"_id":7024,"_type":29,"title":7019,"_source":31,"_file":7025,"_stem":7026,"_extension":34},"/en-us/blog/authors/sean-arnold",{"name":7019,"config":7020},"Sean Arnold",{"headshot":7021,"ctfId":7022},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":691},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7028,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7029,"config":7033,"_id":7034,"_type":29,"title":7035,"_source":31,"_file":7036,"_stem":7037,"_extension":34},"/en-us/blog/authors/sean-mcgivern",{"name":7030,"config":7031},"Sean McGivern",{"headshot":722,"ctfId":7032},"Sean-McGivern",{"template":691},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7039,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7040,"config":7044,"_id":7045,"_type":29,"title":7041,"_source":31,"_file":7046,"_stem":7047,"_extension":34},"/en-us/blog/authors/sean-packham",{"name":7041,"config":7042},"Sean Packham",{"headshot":722,"ctfId":7043},"Sean-Packham",{"template":691},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7049,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7050,"config":7054,"_id":7055,"_type":29,"title":7051,"_source":31,"_file":7056,"_stem":7057,"_extension":34},"/en-us/blog/authors/sebastian-latacz",{"name":7051,"config":7052},"Sebastian Latacz",{"headshot":722,"ctfId":7053},"4DoWSQV719HEWt2rbDIoQR",{"template":691},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7059,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7060,"config":7064,"_id":7065,"_type":29,"title":7061,"_source":31,"_file":7066,"_stem":7067,"_extension":34},"/en-us/blog/authors/sergey-nuzhdin",{"name":7061,"config":7062},"Sergey Nuzhdin",{"headshot":722,"ctfId":7063},"Sergey-Nuzhdin",{"template":691},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7069,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7070,"config":7074,"_id":7075,"_type":29,"title":7071,"_source":31,"_file":7076,"_stem":7077,"_extension":34},"/en-us/blog/authors/seth-berger",{"name":7071,"config":7072},"Seth Berger",{"headshot":7,"ctfId":7073},"sethgitlab",{"template":691},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7079,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7080,"config":7084,"_id":7085,"_type":29,"title":7081,"_source":31,"_file":7086,"_stem":7087,"_extension":34},"/en-us/blog/authors/shane-rice",{"name":7081,"config":7082},"Shane Rice",{"headshot":722,"ctfId":7083},"3uVL7xMsEf13JzpbXYTCbM",{"template":691},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7089,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7090,"config":7095,"_id":7096,"_type":29,"title":7091,"_source":31,"_file":7097,"_stem":7098,"_extension":34},"/en-us/blog/authors/sharon-gaudin",{"name":7091,"config":7092},"Sharon Gaudin",{"headshot":7093,"ctfId":7094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":691},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7100,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7101,"config":7105,"_id":7106,"_type":29,"title":7102,"_source":31,"_file":7107,"_stem":7108,"_extension":34},"/en-us/blog/authors/shawn-winters",{"name":7102,"config":7103},"Shawn Winters",{"headshot":7,"ctfId":7104},"ShawnWinters",{"template":691},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7110,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7111,"config":7115,"_id":7116,"_type":29,"title":7117,"_source":31,"_file":7118,"_stem":7119,"_extension":34},"/en-us/blog/authors/sherida-mcmullan",{"name":7112,"config":7113},"Sherida McMullan",{"headshot":722,"ctfId":7114},"BpqiUFXm6aUxjXJdAeKuL",{"template":691},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7121,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7122,"config":7126,"_id":7127,"_type":29,"title":7123,"_source":31,"_file":7128,"_stem":7129,"_extension":34},"/en-us/blog/authors/shinya-maeda",{"name":7123,"config":7124},"Shinya Maeda",{"headshot":7,"ctfId":7125},"dosuken123",{"template":691},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7131,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7132,"config":7137,"_id":7138,"_type":29,"title":7133,"_source":31,"_file":7139,"_stem":7140,"_extension":34},"/en-us/blog/authors/shrishti-choudhary",{"name":7133,"config":7134},"Shrishti Choudhary",{"headshot":7135,"ctfId":7136},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":691},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7142,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7143,"config":7152,"_id":7153,"_type":29,"title":7145,"_source":31,"_file":7154,"_stem":7155,"_extension":34},"/en-us/blog/authors/sid-sijbrandij",{"role":7144,"name":7145,"bio":7146,"config":7147},"Co-founder, Chief Executive Officer and Board Chair of GitLab Inc.","Sid Sijbrandij","Sid Sijbrandij (pronounced see-brandy) is the Co-founder, Chief Executive Officer and Board Chair of GitLab Inc., the most comprehensive AI-powered DevSecOps platform. GitLab's single application helps organizations deliver software faster and more efficiently while strengthening their security and compliance.\n\nSid's career path has been anything but traditional. He spent four years building recreational submarines for U-Boat Worx and while at Ministerie van Justitie en Veiligheid he worked on the Legis project, which developed several innovative web applications to aid lawmaking. He first saw Ruby code in 2007 and loved it so much that he taught himself how to program. In 2012, as a Ruby programmer, he encountered GitLab and discovered his passion for open source. Soon after, Sid commercialized GitLab, and by 2015 he led the company through Y Combinator's Winter 2015 batch. Under his leadership, the company has grown with an estimated 30 million+ registered users from startups to global enterprises.\n\nSid studied at the University of Twente in the Netherlands where he received an M.S. in Management Science. Sid was named one of the greatest minds of the pandemic by Forbes for spreading the gospel of remote work.",{"headshot":7148,"twitter":7149,"linkedin":7150,"ctfId":7151},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665383/Blog/Author%20Headshots/sytses-headshot.png","https://twitter.com/sytses","https://www.linkedin.com/in/sijbrandij","sytses",{"template":691},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7157,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7158,"config":7163,"_id":7164,"_type":29,"title":7159,"_source":31,"_file":7165,"_stem":7166,"_extension":34},"/en-us/blog/authors/siddharth-mathur",{"name":7159,"config":7160},"Siddharth Mathur",{"headshot":7161,"ctfId":7162},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":691},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7168,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7169,"config":7173,"_id":7174,"_type":29,"title":7170,"_source":31,"_file":7175,"_stem":7176,"_extension":34},"/en-us/blog/authors/simon-tarchichi",{"name":7170,"config":7171},"Simon Tarchichi",{"headshot":7,"ctfId":7172},"kartsims",{"template":691},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7178,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7179,"config":7184,"_id":7185,"_type":29,"title":7180,"_source":31,"_file":7186,"_stem":7187,"_extension":34},"/en-us/blog/authors/sophia-manicor",{"name":7180,"config":7181},"Sophia Manicor",{"headshot":7182,"ctfId":7183},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":691},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7189,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7190,"config":7195,"_id":7196,"_type":29,"title":7191,"_source":31,"_file":7197,"_stem":7198,"_extension":34},"/en-us/blog/authors/sri-rangan",{"name":7191,"config":7192},"Sri Rangan",{"headshot":7193,"ctfId":7194},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":691},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7200,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7201,"config":7206,"_id":7207,"_type":29,"title":7202,"_source":31,"_file":7208,"_stem":7209,"_extension":34},"/en-us/blog/authors/stacy-cline",{"name":7202,"config":7203},"Stacy Cline",{"headshot":7204,"ctfId":7205},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":691},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7211,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7212,"config":7217,"_id":7218,"_type":29,"title":7213,"_source":31,"_file":7219,"_stem":7220,"_extension":34},"/en-us/blog/authors/stan-hu",{"name":7213,"config":7214},"Stan Hu",{"headshot":7215,"ctfId":7216},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":691},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7222,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7223,"config":7227,"_id":7228,"_type":29,"title":7229,"_source":31,"_file":7230,"_stem":7231,"_extension":34},"/en-us/blog/authors/stephan-hochdrfer",{"name":7224,"config":7225},"Stephan Hochdörfer",{"headshot":722,"ctfId":7226},"Stephan-Hochdrfer",{"template":691},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7233,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7234,"config":7238,"_id":7239,"_type":29,"title":7235,"_source":31,"_file":7240,"_stem":7241,"_extension":34},"/en-us/blog/authors/stephanie-garza",{"name":7235,"config":7236},"Stephanie Garza",{"headshot":7,"ctfId":7237},"StephanieGarza",{"template":691},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7243,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7244,"config":7248,"_id":7249,"_type":29,"title":7250,"_source":31,"_file":7251,"_stem":7252,"_extension":34},"/en-us/blog/authors/stephen-mcguinness",{"name":7245,"config":7246},"Stephen McGuinness",{"headshot":7,"ctfId":7247},"smcguinness1",{"template":691},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7254,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7255,"config":7260,"_id":7261,"_type":29,"title":7256,"_source":31,"_file":7262,"_stem":7263,"_extension":34},"/en-us/blog/authors/stephen-walters",{"name":7256,"config":7257},"Stephen Walters",{"headshot":7258,"ctfId":7259},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":691},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7265,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7266,"config":7271,"_id":7272,"_type":29,"title":7267,"_source":31,"_file":7273,"_stem":7274,"_extension":34},"/en-us/blog/authors/steve-abrams",{"name":7267,"config":7268},"Steve Abrams",{"headshot":7269,"ctfId":7270},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":691},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7276,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7277,"config":7281,"_id":7282,"_type":29,"title":7278,"_source":31,"_file":7283,"_stem":7284,"_extension":34},"/en-us/blog/authors/steve-azzopardi",{"name":7278,"config":7279},"Steve Azzopardi",{"headshot":7,"ctfId":7280},"steveazz",{"template":691},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7286,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7287,"config":7292,"_id":7293,"_type":29,"title":7288,"_source":31,"_file":7294,"_stem":7295,"_extension":34},"/en-us/blog/authors/steve-grossman",{"name":7288,"config":7289},"Steve Grossman",{"headshot":7290,"ctfId":7291},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":691},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7297,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7298,"config":7302,"_id":7303,"_type":29,"title":7299,"_source":31,"_file":7304,"_stem":7305,"_extension":34},"/en-us/blog/authors/steve-ropa",{"name":7299,"config":7300},"Steve Ropa",{"headshot":722,"ctfId":7301},"Steve-Ropa",{"template":691},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7307,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7308,"config":7312,"_id":7313,"_type":29,"title":7309,"_source":31,"_file":7314,"_stem":7315,"_extension":34},"/en-us/blog/authors/steve-truong",{"name":7309,"config":7310},"Steve Truong",{"headshot":7,"ctfId":7311},"sttruong",{"template":691},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7317,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7318,"config":7322,"_id":7323,"_type":29,"title":7319,"_source":31,"_file":7324,"_stem":7325,"_extension":34},"/en-us/blog/authors/steven-zinck",{"name":7319,"config":7320},"Steven Zinck",{"headshot":722,"ctfId":7321},"49JllsB7PFUrjj2Wi4Wa2O",{"template":691},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7327,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7328,"config":7332,"_id":7333,"_type":29,"title":7329,"_source":31,"_file":7334,"_stem":7335,"_extension":34},"/en-us/blog/authors/sunil-kowlgi",{"name":7329,"config":7330},"Sunil Kowlgi",{"headshot":722,"ctfId":7331},"Sunil-Kowlgi",{"template":691},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7337,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7338,"config":7342,"_id":7343,"_type":29,"title":7339,"_source":31,"_file":7344,"_stem":7345,"_extension":34},"/en-us/blog/authors/suri-patel",{"name":7339,"config":7340},"Suri Patel",{"headshot":722,"ctfId":7341},"suripatel",{"template":691},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7347,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7348,"config":7353,"_id":7354,"_type":29,"title":7349,"_source":31,"_file":7355,"_stem":7356,"_extension":34},"/en-us/blog/authors/susan-tacker",{"name":7349,"config":7350},"Susan Tacker",{"headshot":7351,"ctfId":7352},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":691},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7358,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7359,"config":7365,"_id":7366,"_type":29,"title":7360,"_source":31,"_file":7367,"_stem":7368,"_extension":34},"/en-us/blog/authors/susie-bitters",{"name":7360,"config":7361},"Susie Bitters",{"headshot":7362,"linkedin":7363,"ctfId":7364},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664195/Blog/Author%20Headshots/susiebittersheadshot.png","https://www.linkedin.com/in/susie-bitters-33268410/","7yiomgeGp9k4a4srjDU1QK",{"template":691},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7370,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7371,"config":7375,"_id":7376,"_type":29,"title":7372,"_source":31,"_file":7377,"_stem":7378,"_extension":34},"/en-us/blog/authors/suzanne-selhorn",{"name":7372,"config":7373},"Suzanne Selhorn",{"headshot":7374,"ctfId":4540},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":691},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7380,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7381,"config":7386,"_id":7387,"_type":29,"title":7382,"_source":31,"_file":7388,"_stem":7389,"_extension":34},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7382,"config":7383},"Tanuja Jayarama Raju",{"headshot":7384,"ctfId":7385},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":691},"content:en-us:blog:authors:tanuja-jayarama-raju.yml","en-us/blog/authors/tanuja-jayarama-raju.yml","en-us/blog/authors/tanuja-jayarama-raju",{"_path":7391,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7392,"config":7397,"_id":7398,"_type":29,"title":7393,"_source":31,"_file":7399,"_stem":7400,"_extension":34},"/en-us/blog/authors/taurie-davis",{"name":7393,"config":7394},"Taurie Davis",{"headshot":7395,"ctfId":7396},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":691},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7402,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7403,"config":7408,"_id":7409,"_type":29,"title":7410,"_source":31,"_file":7411,"_stem":7412,"_extension":34},"/en-us/blog/authors/taylor-mccaslin",{"name":7404,"config":7405},"Taylor McCaslin",{"headshot":7406,"ctfId":7407},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":691},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7414,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7415,"config":7419,"_id":7420,"_type":29,"title":7416,"_source":31,"_file":7421,"_stem":7422,"_extension":34},"/en-us/blog/authors/taylor-murphy",{"name":7416,"config":7417},"Taylor Murphy",{"headshot":7,"ctfId":7418},"tayloramurphy",{"template":691},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7424,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7425,"config":7430,"_id":7431,"_type":29,"title":7426,"_source":31,"_file":7432,"_stem":7433,"_extension":34},"/en-us/blog/authors/ted-gieschen",{"name":7426,"config":7427},"Ted Gieschen",{"headshot":7428,"ctfId":7429},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669010/Blog/Author%20Headshots/Screenshot_2024-06-10_at_10.16.50_AM.png","7xh91XqI5wf8CKmOr0PurA",{"template":691},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7435,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7436,"config":7440,"_id":7441,"_type":29,"title":7437,"_source":31,"_file":7442,"_stem":7443,"_extension":34},"/en-us/blog/authors/thao-yeager",{"name":7437,"config":7438},"Thao Yeager",{"headshot":7,"ctfId":7439},"thaoyeager",{"template":691},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7445,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7446,"config":7451,"_id":7452,"_type":29,"title":7453,"_source":31,"_file":7454,"_stem":7455,"_extension":34},"/en-us/blog/authors/thiago-figueir",{"name":7447,"config":7448},"Thiago Figueiró",{"headshot":7449,"ctfId":7450},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":691},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7457,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7458,"config":7463,"_id":7464,"_type":29,"title":7459,"_source":31,"_file":7465,"_stem":7466,"_extension":34},"/en-us/blog/authors/thong-kuah",{"name":7459,"config":7460},"Thong Kuah",{"headshot":7461,"ctfId":7462},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":691},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7468,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7469,"config":7473,"_id":7474,"_type":29,"title":7470,"_source":31,"_file":7475,"_stem":7476,"_extension":34},"/en-us/blog/authors/tim-davis",{"name":7470,"config":7471},"Tim Davis",{"headshot":722,"ctfId":7472},"6PksqjEtq1Y8goFUvAUcIn",{"template":691},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7478,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7479,"config":7483,"_id":7484,"_type":29,"title":7480,"_source":31,"_file":7485,"_stem":7486,"_extension":34},"/en-us/blog/authors/tim-lehnen",{"name":7480,"config":7481},"Tim Lehnen",{"headshot":7,"ctfId":7482},"hestenet",{"template":691},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7488,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7489,"config":7494,"_id":7495,"_type":29,"title":7490,"_source":31,"_file":7496,"_stem":7497,"_extension":34},"/en-us/blog/authors/tim-rizzi",{"name":7490,"config":7491},"Tim Rizzi",{"headshot":7492,"ctfId":7493},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":691},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7499,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7500,"config":7504,"_id":7506,"_type":29,"title":7501,"_source":31,"_file":7507,"_stem":7508,"_extension":34},"/en-us/blog/authors/tim-zallmann",{"name":7501,"config":7502},"Tim Zallmann",{"headshot":7503},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":691,"gitlabHandle":7505},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7510,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7511,"config":7515,"_id":7516,"_type":29,"title":7512,"_source":31,"_file":7517,"_stem":7518,"_extension":34},"/en-us/blog/authors/tina-sturgis",{"name":7512,"config":7513},"Tina Sturgis",{"headshot":7,"ctfId":7514},"TinaS",{"template":691},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7520,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7521,"config":7525,"_id":7526,"_type":29,"title":7527,"_source":31,"_file":7528,"_stem":7529,"_extension":34},"/en-us/blog/authors/tobias-gnther",{"name":7522,"config":7523},"Tobias Günther",{"headshot":722,"ctfId":7524},"Tobias-Gnther",{"template":691},"content:en-us:blog:authors:tobias-gnther.yml","Tobias Gnther","en-us/blog/authors/tobias-gnther.yml","en-us/blog/authors/tobias-gnther",{"_path":7531,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7532,"config":7536,"_id":7537,"_type":29,"title":7533,"_source":31,"_file":7538,"_stem":7539,"_extension":34},"/en-us/blog/authors/todd-barr",{"name":7533,"config":7534},"Todd Barr",{"headshot":7,"ctfId":7535},"twbarr",{"template":691},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7541,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7542,"config":7546,"_id":7547,"_type":29,"title":7543,"_source":31,"_file":7548,"_stem":7549,"_extension":34},"/en-us/blog/authors/tom-cooney",{"name":7543,"config":7544},"Tom Cooney",{"headshot":7,"ctfId":7545},"tomcooney",{"template":691},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7551,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7552,"config":7557,"_id":7558,"_type":29,"title":7553,"_source":31,"_file":7559,"_stem":7560,"_extension":34},"/en-us/blog/authors/tomas-vik",{"name":7553,"config":7554},"Tomas Vik",{"headshot":7555,"ctfId":7556},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681785/Blog/Author%20Headshots/viktomas-headshot.jpg","viktomas",{"template":691},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7562,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7563,"config":7568,"_id":7569,"_type":29,"title":7564,"_source":31,"_file":7570,"_stem":7571,"_extension":34},"/en-us/blog/authors/tomasz-maczukin",{"name":7564,"config":7565},"Tomasz Maczukin",{"headshot":7566,"ctfId":7567},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682116/Blog/Author%20Headshots/tmaczukin-headshot.jpg","tmaczukin",{"template":691},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7573,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7574,"config":7579,"_id":7580,"_type":29,"title":7575,"_source":31,"_file":7581,"_stem":7582,"_extension":34},"/en-us/blog/authors/toon-claes",{"name":7575,"config":7576},"Toon Claes",{"headshot":7577,"ctfId":7578},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663082/Blog/Author%20Headshots/toon_claes_headshot.png","toon",{"template":691},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7584,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7585,"config":7590,"_id":7591,"_type":29,"title":7586,"_source":31,"_file":7592,"_stem":7593,"_extension":34},"/en-us/blog/authors/torsten-linz",{"name":7586,"config":7587},"Torsten Linz",{"headshot":7588,"ctfId":7589},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658907/Blog/Author%20Headshots/tlinz-headshot.jpg","tlinz",{"template":691},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7595,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7596,"config":7600,"_id":7601,"_type":29,"title":7597,"_source":31,"_file":7602,"_stem":7603,"_extension":34},"/en-us/blog/authors/trevor-knudsen",{"name":7597,"config":7598},"Trevor Knudsen",{"headshot":7,"ctfId":7599},"Tknudsen",{"template":691},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7605,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7606,"config":7611,"_id":7612,"_type":29,"title":7607,"_source":31,"_file":7613,"_stem":7614,"_extension":34},"/en-us/blog/authors/tristan-read",{"name":7607,"config":7608},"Tristan Read",{"headshot":7609,"ctfId":7610},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679131/Blog/Author%20Headshots/tristan.png","tristanread",{"template":691},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7616,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7617,"config":7622,"_id":7623,"_type":29,"title":7618,"_source":31,"_file":7624,"_stem":7625,"_extension":34},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7618,"config":7619},"Tsukasa Komatsubara",{"headshot":7620,"ctfId":7621},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659784/Blog/Author%20Headshots/gitlab_tsukasa.jpg","31YQLiBRrJPn35BBhY69ly",{"template":691},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7627,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7628,"config":7632,"_id":7633,"_type":29,"title":7629,"_source":31,"_file":7634,"_stem":7635,"_extension":34},"/en-us/blog/authors/tsvi-zandany",{"name":7629,"config":7630},"Tsvi Zandany",{"headshot":722,"ctfId":7631},"Tsvi-Zandany",{"template":691},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7637,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7638,"config":7642,"_id":7643,"_type":29,"title":7639,"_source":31,"_file":7644,"_stem":7645,"_extension":34},"/en-us/blog/authors/tye-davis",{"name":7639,"config":7640},"Tye Davis",{"headshot":7,"ctfId":7641},"davistye",{"template":691},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7647,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7648,"config":7652,"_id":7653,"_type":29,"title":7649,"_source":31,"_file":7654,"_stem":7655,"_extension":34},"/en-us/blog/authors/tyler-williams",{"name":7649,"config":7650},"Tyler Williams",{"headshot":7,"ctfId":7651},"tywilliams",{"template":691},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7657,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7658,"config":7662,"_id":7663,"_type":29,"title":7664,"_source":31,"_file":7665,"_stem":7666,"_extension":34},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7659,"config":7660},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7661},"ulrica1",{"template":691},"content:en-us:blog:authors:ulrica-de-fort-menares.yml","Ulrica De Fort Menares","en-us/blog/authors/ulrica-de-fort-menares.yml","en-us/blog/authors/ulrica-de-fort-menares",{"_path":7668,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7669,"config":7674,"_id":7675,"_type":29,"title":7670,"_source":31,"_file":7676,"_stem":7677,"_extension":34},"/en-us/blog/authors/valentine-mairet",{"name":7670,"config":7671},"Valentine Mairet",{"headshot":7672,"ctfId":7673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665455/Blog/Author%20Headshots/valentine_mairet_headshot.png","1AQjHTpq6sBauRMdCibxQX",{"template":691},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7679,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7680,"config":7684,"_id":7685,"_type":29,"title":7681,"_source":31,"_file":7686,"_stem":7687,"_extension":34},"/en-us/blog/authors/valerie-silverthorne",{"name":7681,"config":7682},"Valerie Silverthorne",{"headshot":722,"ctfId":7683},"vsilverthorne",{"template":691},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7689,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7690,"config":7694,"_id":7695,"_type":29,"title":7691,"_source":31,"_file":7696,"_stem":7697,"_extension":34},"/en-us/blog/authors/vanessa-wegner",{"name":7691,"config":7692},"Vanessa Wegner",{"headshot":7,"ctfId":7693},"vwegner",{"template":691},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7699,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7700,"config":7705,"_id":7706,"_type":29,"title":7701,"_source":31,"_file":7707,"_stem":7708,"_extension":34},"/en-us/blog/authors/veethika-mishra",{"name":7701,"config":7702},"Veethika Mishra",{"headshot":7703,"ctfId":7704},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664676/Blog/Author%20Headshots/veethika-headshot.jpg","veethika",{"template":691},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7710,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7711,"config":7716,"_id":7717,"_type":29,"title":7712,"_source":31,"_file":7718,"_stem":7719,"_extension":34},"/en-us/blog/authors/vick-kelkar",{"name":7712,"config":7713},"Vick Kelkar",{"headshot":7714,"ctfId":7715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668508/Blog/Author%20Headshots/vkelkar-headshot.jpg","vkelkar",{"template":691},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7721,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7722,"config":7726,"_id":7727,"_type":29,"title":7723,"_source":31,"_file":7728,"_stem":7729,"_extension":34},"/en-us/blog/authors/vicky-steeves",{"name":7723,"config":7724},"Vicky Steeves",{"headshot":7,"ctfId":7725},"vickysteeves",{"template":691},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7731,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7732,"config":7736,"_id":7737,"_type":29,"title":7733,"_source":31,"_file":7738,"_stem":7739,"_extension":34},"/en-us/blog/authors/victor-hernandez",{"name":7733,"config":7734},"Victor Hernandez",{"headshot":722,"ctfId":7735},"KVTkvySIqkAu34p2jsXZz",{"template":691},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7741,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7742,"config":7746,"_id":7747,"_type":29,"title":7743,"_source":31,"_file":7748,"_stem":7749,"_extension":34},"/en-us/blog/authors/victor-wu",{"name":7743,"config":7744},"Victor Wu",{"headshot":722,"ctfId":7745},"victorwu",{"template":691},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7751,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7752,"config":7757,"_id":7758,"_type":29,"title":7753,"_source":31,"_file":7759,"_stem":7760,"_extension":34},"/en-us/blog/authors/viktor-nagy",{"name":7753,"config":7754},"Viktor Nagy",{"headshot":7755,"ctfId":7756},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662918/Blog/Author%20Headshots/nagy-headshot.jpg","nagyvgitlab",{"template":691},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7762,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7763,"config":7767,"_id":7768,"_type":29,"title":7764,"_source":31,"_file":7769,"_stem":7770,"_extension":34},"/en-us/blog/authors/vincent-jong",{"name":7764,"config":7765},"Vincent Jong",{"headshot":722,"ctfId":7766},"Vincent-Jong",{"template":691},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7772,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7773,"config":7778,"_id":7779,"_type":29,"title":7774,"_source":31,"_file":7780,"_stem":7781,"_extension":34},"/en-us/blog/authors/vincy-wilson",{"name":7774,"config":7775},"Vincy Wilson",{"headshot":7776,"ctfId":7777},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669069/Blog/Author%20Headshots/vincy.jpg","1iyKndVlbE3dQnxOJoSY0q",{"template":691},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7783,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7784,"config":7789,"_id":7790,"_type":29,"title":7785,"_source":31,"_file":7791,"_stem":7792,"_extension":34},"/en-us/blog/authors/vishal-tak",{"name":7785,"config":7786},"Vishal Tak",{"headshot":7787,"ctfId":7788},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663854/Blog/Author%20Headshots/vishal_tak_headshot.png","6BalO1YQUIuDdhUP80bFra",{"template":691},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7794,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7795,"config":7800,"_id":7801,"_type":29,"title":7796,"_source":31,"_file":7802,"_stem":7803,"_extension":34},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7796,"config":7797},"Vitor Meireles De Sousa",{"headshot":7798,"ctfId":7799},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682001/Blog/Author%20Headshots/vdesousa-headshot.png","vdesousa",{"template":691},"content:en-us:blog:authors:vitor-meireles-de-sousa.yml","en-us/blog/authors/vitor-meireles-de-sousa.yml","en-us/blog/authors/vitor-meireles-de-sousa",{"_path":7805,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7806,"config":7810,"_id":7811,"_type":29,"title":7807,"_source":31,"_file":7812,"_stem":7813,"_extension":34},"/en-us/blog/authors/vlad-budica",{"name":7807,"config":7808},"Vlad Budica",{"headshot":722,"ctfId":7809},"Vlad-Budica",{"template":691},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7815,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7816,"config":7820,"_id":7821,"_type":29,"title":7817,"_source":31,"_file":7822,"_stem":7823,"_extension":34},"/en-us/blog/authors/vlad-stoianovici",{"name":7817,"config":7818},"Vlad Stoianovici",{"headshot":7,"ctfId":7819},"vstoianovici",{"template":691},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7825,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7826,"config":7830,"_id":7831,"_type":29,"title":7827,"_source":31,"_file":7832,"_stem":7833,"_extension":34},"/en-us/blog/authors/wayne-haber",{"name":7827,"config":7828},"Wayne Haber",{"headshot":7,"ctfId":7829},"whaber",{"template":691},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7835,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7836,"config":7840,"_id":7841,"_type":29,"title":7837,"_source":31,"_file":7842,"_stem":7843,"_extension":34},"/en-us/blog/authors/will-chandler",{"name":7837,"config":7838},"Will Chandler",{"headshot":722,"ctfId":7839},"DKiIGSSRIyO6QdTQkRkjs",{"template":691},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7845,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7846,"config":7851,"_id":7852,"_type":29,"title":7847,"_source":31,"_file":7853,"_stem":7854,"_extension":34},"/en-us/blog/authors/will-leidheiser",{"name":7847,"config":7848},"Will Leidheiser",{"headshot":7849,"ctfId":7850},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679335/Blog/Author%20Headshots/wleidheiser-headshot.jpg","wleidheiser",{"template":691},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7856,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7857,"config":7862,"_id":7863,"_type":29,"title":7858,"_source":31,"_file":7864,"_stem":7865,"_extension":34},"/en-us/blog/authors/william-arias",{"name":7858,"config":7859},"William Arias",{"headshot":7860,"ctfId":7861},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667549/Blog/Author%20Headshots/warias-headshot.jpg","warias",{"template":691},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7867,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7868,"config":7872,"_id":7873,"_type":29,"title":7869,"_source":31,"_file":7874,"_stem":7875,"_extension":34},"/en-us/blog/authors/william-chia",{"name":7869,"config":7870},"William Chia",{"headshot":7,"ctfId":7871},"williamchia",{"template":691},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7877,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7878,"config":7882,"_id":7883,"_type":29,"title":7879,"_source":31,"_file":7884,"_stem":7885,"_extension":34},"/en-us/blog/authors/yannis-roussos",{"name":7879,"config":7880},"Yannis Roussos",{"headshot":7,"ctfId":7881},"iroussos",{"template":691},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7887,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7888,"config":7892,"_id":7893,"_type":29,"title":7889,"_source":31,"_file":7894,"_stem":7895,"_extension":34},"/en-us/blog/authors/yevgeny-pats",{"name":7889,"config":7890},"Yevgeny Pats",{"headshot":7,"ctfId":7891},"ypats",{"template":691},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7897,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7898,"config":7902,"_id":7903,"_type":29,"title":7899,"_source":31,"_file":7904,"_stem":7905,"_extension":34},"/en-us/blog/authors/yorick-peterse",{"name":7899,"config":7900},"Yorick Peterse",{"headshot":722,"ctfId":7901},"Yorick-Peterse",{"template":691},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7907,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7908,"config":7912,"_id":7913,"_type":29,"title":7914,"_source":31,"_file":7915,"_stem":7916,"_extension":34},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7909,"config":7910},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7911},"zjgitlab",{"template":691},"content:en-us:blog:authors:zeger-jan-van-de-weg.yml","Zeger Jan Van De Weg","en-us/blog/authors/zeger-jan-van-de-weg.yml","en-us/blog/authors/zeger-jan-van-de-weg",{"_path":7918,"_dir":684,"_draft":6,"_partial":6,"_locale":7,"content":7919,"config":7924,"_id":7925,"_type":29,"title":7920,"_source":31,"_file":7926,"_stem":7927,"_extension":34},"/en-us/blog/authors/zhaochen-li",{"name":7920,"config":7921},"Zhaochen Li",{"headshot":7922,"ctfId":7923},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664331/Blog/Author%20Headshots/Zhaochen_Li_headshot.png","D67XqgLJdlpOsrG3ivCGT",{"template":691},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7929,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"header":7930,"eyebrow":7931,"blurb":7932,"button":7933,"secondaryButton":7937,"_id":7939,"_type":29,"title":7940,"_source":31,"_file":7941,"_stem":7942,"_extension":34},"/shared/de-de/next-steps","Stelle jetzt bessere Software schneller bereit","Mehr als 50 % der Fortune-100-Unternehmen vertrauen GitLab","Erlebe, was dein Team mit der intelligenten\n\n\nDevSecOps-Plattform erreichen kann.\n",{"text":45,"config":7934},{"href":7935,"dataGaName":48,"dataGaLocation":7936},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":50,"config":7938},{"href":52,"dataGaName":53,"dataGaLocation":7936},"content:shared:de-de:next-steps.yml","Next Steps","shared/de-de/next-steps.yml","shared/de-de/next-steps",1762754775828]