[{"data":1,"prerenderedAt":7937},["ShallowReactive",2],{"/de-de/blog/automating-container-image-migration-from-amazon-ecr-to-gitlab":3,"navigation-de-de":41,"banner-de-de":458,"footer-de-de":471,"footer-source-/de-de/blog/automating-container-image-migration-from-amazon-ecr-to-gitlab/":680,"blogAuthors-de-de":686,"next-steps-de-de":7922},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":30,"_id":34,"_type":35,"title":36,"_source":37,"_file":38,"_stem":39,"_extension":40},"/de-de/blog/automating-container-image-migration-from-amazon-ecr-to-gitlab","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"Automatisierung der Migration von Container-Images von Amazon ECR zu GitLab","Wenn Plattformteams ihre CI/CD zu GitLab verschieben, sollte die Migration von Container-Images kein Engpass sein. Befolge diese Schritt-für-Schritt-Anleitung, um den Pipeline-Migrationsprozess zu automatisieren.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663129/Blog/Hero%20Images/blog-image-template-1800x945__28_.png","https://about.gitlab.com/blog/automating-container-image-migration-from-amazon-ecr-to-gitlab","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"Automatisierung der Migration von Container-Images von Amazon ECR zu GitLab\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Tim Rizzi\"}],\n        \"datePublished\": \"2025-02-13\",\n      }\n                  ",{"title":9,"description":10,"authors":17,"heroImage":11,"date":19,"body":20,"category":21,"tags":22,"updatedDate":29},[18],"Tim Rizzi","2025-02-13","„Wir müssen Hunderte von Container-Images von Amazon Elastic Container Registry (ECR) zu GitLab migrieren. Könnt ihr uns helfen?“ Diese Frage taucht immer wieder in Gesprächen mit Platform Engineers auf. Sie modernisierten also ihre DevSecOps-Toolchain mit GitLab, kamen aber beim Verschieben ihrer Container-Images nicht weiter. Während ein einzelner Image-Transfer einfach ist, erscheint das schiere Volumen überwältigend.\n\nEin Platform Engineer brachte es auf den Punkt: „Ich weiß genau, was zu tun ist – pullen, neu kennzeichnen, pushen. Aber ich habe 200 Microservices mit jeweils mehreren Tags. Ich kann es nicht rechtfertigen, Wochen für diese Migration aufzuwenden, während wichtige Infrastrukturarbeiten anstehen.“\n\n## Die Herausforderung\n\nDieses Gespräch führte zu einer Idee. Was wäre, wenn wir den gesamten Prozess automatisieren könnten? Wenn Plattformteams ihre [CI/CD](https://about.gitlab.com/de-de/topics/ci-cd/) zu GitLab verschieben, sollte die Migration von Container-Images kein Engpass sein. Der manuelle Prozess ist einfach, aber repetitiv: Jedes Image pullen, neu kennzeichnen und in die Container-Registry von GitLab pushen. Angesichts dutzender Repositories und mehrerer Tags pro Image, bedeutet dies Tage oder Wochen langwieriger Arbeit.\n\n## Die Lösung\n\nWir haben uns daran gemacht, eine GitLab-Pipeline zu erstellen, die all diese schwierigen Aufgaben automatisch erledigt. Das Ziel war einfach: Wir wollten Platform Engineers ein Tool zur Verfügung stellen, das sie in wenigen Minuten einrichten und über Nacht ausführen können, sodass am nächsten Morgen alle ihre Images erfolgreich migriert wurden.\n\n### Einrichten des Zugriffs\n\nDas Wichtigste zuerst: die Sicherheit. Teams sollen diese Migration mit minimalen AWS-Berechtigungen durchführen können. Hier ist die schreibgeschützte Identitäts- und Zugriffsmanagement (IAM)-Richtlinie dafür:\n\n```json\n{\n    \"Version\": \"2012-10-17\",\n    \"Statement\": [\n        {\n            \"Effect\": \"Allow\",\n            \"Action\": [\n                \"ecr:GetAuthorizationToken\",\n                \"ecr:BatchCheckLayerAvailability\",\n                \"ecr:GetDownloadUrlForLayer\",\n                \"ecr:DescribeRepositories\",\n                \"ecr:ListImages\",\n                \"ecr:DescribeImages\",\n                \"ecr:BatchGetImage\"\n            ],\n            \"Resource\": \"*\"\n        }\n    ]\n}\n```\n\n### GitLab-Konfiguration\n\nNachdem die Sicherheit gewährleistet ist, ist der nächste Schritt die Einrichtung von GitLab. Wir haben uns auf das Wesentliche beschränkt. Du musst diese Variablen in deinen CI/CD-Einstellungen konfigurieren:\n\n```\nAWS_ACCOUNT_ID: Your AWS account number\nAWS_DEFAULT_REGION: Your ECR region\nAWS_ACCESS_KEY_ID: [Masked]\nAWS_SECRET_ACCESS_KEY: [Masked]\nBULK_MIGRATE: true\n```\n\n### Die Migrationspipeline\n\nJetzt wird es interessant. Wir haben die Pipeline mit Docker-in-Docker erstellt, um alle Image-Vorgänge zuverlässig zu verarbeiten:\n\n```yaml\nimage: docker:20.10\nservices:\n  - docker:20.10-dind\n\nbefore_script:\n  - apk add --no-cache aws-cli jq\n  - aws sts get-caller-identity\n  - aws ecr get-login-password | docker login --username AWS --password-stdin\n  - docker login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY}\n```\n\nDie Pipeline hat drei Phasen, die jeweils auf der letzten aufbauen:\n\n1. Entdeckung\n\nZuerst findet sie alle deine Repositories:\n\n```bash\nREPOS=$(aws ecr describe-repositories --query 'repositories[*].repositoryName' --output text)\n```\n\n2. Tag-Auflistung\n\nDann ruft sie für jedes Repository alle Tags ab:\n\n```bash\nTAGS=$(aws ecr describe-images --repository-name $repo --query 'imageDetails[*].imageTags[]' --output text)\n```\n\n3. Übertragung\n\nSchließlich übernimmt sie die eigentliche Migration:\n\n```bash\ndocker pull ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/${repo}:${tag}\ndocker tag ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/${repo}:${tag} ${CI_REGISTRY_IMAGE}/${repo}:${tag}\ndocker push ${CI_REGISTRY_IMAGE}/${repo}:${tag}\n```\n\n## Das Ergebnis\n\nErinnerst du dich an den Platform Engineer, der nicht wochenlang mit der Migration verbringen wollte? Diese Lösung bietet Folgendes:\n\n- automatisierte Erkennung und Migration aller Repositories und Tags\n- konsistente Image-Benennung zwischen ECR und GitLab\n- Fehlerbehandlung für fehlgeschlagene Übertragungen\n- klare Protokollierung zur Verfolgung des Fortschritts\n\nAnstatt Skripte zu schreiben und die Migration zu überwachen, konnte sich der Plattform Engineer auf wertvollere Arbeit konzentrieren.\n\n## Verwendung\n\nDie ersten Schritte sind einfach:\n\n1. Kopiere die Datei `.gitlab-ci.yml` in dein Repository.\n2. Konfiguriere die AWS- und GitLab-Variablen.\n3. Setze `BULK_MIGRATE` auf „true“, um die Migration zu starten.\n\n## Best Practices\n\nBei der Unterstützung von Teams bei ihren Migrationen haben wir einige Dinge gelernt:\n\n- Der Prozess sollte außerhalb der Stoßzeiten durchgeführt werden, um die Auswirkungen auf dein Team zu minimieren.\n- Die Pipeline-Protokolle sind wichtig – darin findest du Informationen, wenn es ein Problem gibt.\n- Die Elastic Container Registry (ECR) sollte erst deaktiviert werden, wenn du überprüft hast, dass alle Images erfolgreich übertragen wurden.\n- Bei sehr großen Migrationen solltest du eine Ratenbegrenzung in Betracht ziehen, um eine Überlastung deines Netzwerks zu vermeiden.\n\nWir haben diese Pipeline in unserem öffentlichen GitLab-Repository quelloffen verfügbar gemacht, weil wir der Meinung sind, dass Plattform Engineers Zeit damit verbringen sollten, wertvolle Infrastrukturen aufzubauen, anstatt Container-Images zu kopieren. Passe sie an deine Bedürfnisse an und stelle Fragen zur Implementierung, wenn etwas unklar ist.\n\n> #### Informationen dazu und zu anderen Paketkomponenten findest du in unserer [CI/CD-Katalog-Dokumentation](https://gitlab.com/explore/catalog/components/package).","engineering",[23,24,25,26,27,28],"CI/CD","AWS","tutorial","DevSecOps platform","product","solutions architecture","2025-04-10",{"slug":31,"featured":32,"template":33},"automating-container-image-migration-from-amazon-ecr-to-gitlab",true,"BlogPost","content:de-de:blog:automating-container-image-migration-from-amazon-ecr-to-gitlab.yml","yaml","Automating Container Image Migration From Amazon Ecr To Gitlab","content","de-de/blog/automating-container-image-migration-from-amazon-ecr-to-gitlab.yml","de-de/blog/automating-container-image-migration-from-amazon-ecr-to-gitlab","yml",{"_path":42,"_dir":43,"_draft":6,"_partial":6,"_locale":7,"data":44,"_id":454,"_type":35,"title":455,"_source":37,"_file":456,"_stem":457,"_extension":40},"/shared/de-de/main-navigation","de-de",{"logo":45,"freeTrial":50,"sales":55,"login":60,"items":65,"search":395,"minimal":431,"duo":445},{"config":46},{"href":47,"dataGaName":48,"dataGaLocation":49},"/de-de/","gitlab logo","header",{"text":51,"config":52},"Kostenlose Testversion anfordern",{"href":53,"dataGaName":54,"dataGaLocation":49},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":56,"config":57},"Vertrieb kontaktieren",{"href":58,"dataGaName":59,"dataGaLocation":49},"/de-de/sales/","sales",{"text":61,"config":62},"Anmelden",{"href":63,"dataGaName":64,"dataGaLocation":49},"https://gitlab.com/users/sign_in/","sign in",[66,110,206,211,316,376],{"text":67,"config":68,"cards":70,"footer":93},"Plattform",{"dataNavLevelOne":69},"platform",[71,77,85],{"title":67,"description":72,"link":73},"Die umfassendste KI-basierte DevSecOps-Plattform",{"text":74,"config":75},"Erkunde unsere Plattform",{"href":76,"dataGaName":69,"dataGaLocation":49},"/de-de/platform/",{"title":78,"description":79,"link":80},"GitLab Duo (KI)","Entwickle Software schneller mit KI in jeder Phase der Entwicklung",{"text":81,"config":82},"Lerne GitLab Duo kennen",{"href":83,"dataGaName":84,"dataGaLocation":49},"/de-de/gitlab-duo/","gitlab duo ai",{"title":86,"description":87,"link":88},"Gründe, die für GitLab sprechen","10 Gründe, warum Unternehmen sich für GitLab entscheiden",{"text":89,"config":90},"Mehr erfahren",{"href":91,"dataGaName":92,"dataGaLocation":49},"/de-de/why-gitlab/","why gitlab",{"title":94,"items":95},"Erste Schritte mit",[96,101,106],{"text":97,"config":98},"Platform Engineering",{"href":99,"dataGaName":100,"dataGaLocation":49},"/de-de/solutions/platform-engineering/","platform engineering",{"text":102,"config":103},"Entwicklererfahrung",{"href":104,"dataGaName":105,"dataGaLocation":49},"/de-de/developer-experience/","Developer experience",{"text":107,"config":108},"MLOps",{"href":109,"dataGaName":107,"dataGaLocation":49},"/de-de/topics/devops/the-role-of-ai-in-devops/",{"text":111,"left":32,"config":112,"link":114,"lists":118,"footer":188},"Produkt",{"dataNavLevelOne":113},"solutions",{"text":115,"config":116},"Alle Lösungen anzeigen",{"href":117,"dataGaName":113,"dataGaLocation":49},"/de-de/solutions/",[119,144,166],{"title":120,"description":121,"link":122,"items":127},"Automatisierung","CI/CD und Automatisierung zur Beschleunigung der Bereitstellung",{"config":123},{"icon":124,"href":125,"dataGaName":126,"dataGaLocation":49},"AutomatedCodeAlt","/de-de/solutions/delivery-automation/","automated software delivery",[128,131,135,140],{"text":23,"config":129},{"href":130,"dataGaLocation":49,"dataGaName":23},"/de-de/solutions/continuous-integration/",{"text":132,"config":133},"KI-unterstützte Entwicklung",{"href":83,"dataGaLocation":49,"dataGaName":134},"AI assisted development",{"text":136,"config":137},"Quellcodeverwaltung",{"href":138,"dataGaLocation":49,"dataGaName":139},"/de-de/solutions/source-code-management/","Source Code Management",{"text":141,"config":142},"Automatisierte Softwarebereitstellung",{"href":125,"dataGaLocation":49,"dataGaName":143},"Automated software delivery",{"title":145,"description":146,"link":147,"items":152},"Sicherheit","Entwickle schneller, ohne die Sicherheit zu gefährden",{"config":148},{"href":149,"dataGaName":150,"dataGaLocation":49,"icon":151},"/de-de/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[153,157,162],{"text":154,"config":155},"Application Security Testing",{"href":149,"dataGaName":156,"dataGaLocation":49},"Application security testing",{"text":158,"config":159},"Schutz der Software-Lieferkette",{"href":160,"dataGaLocation":49,"dataGaName":161},"/de-de/solutions/supply-chain/","Software supply chain security",{"text":163,"config":164},"Software Compliance",{"href":165,"dataGaName":163,"dataGaLocation":49},"/de-de/solutions/software-compliance/",{"title":167,"link":168,"items":173},"Bewertung",{"config":169},{"icon":170,"href":171,"dataGaName":172,"dataGaLocation":49},"DigitalTransformation","/de-de/solutions/visibility-measurement/","visibility and measurement",[174,178,183],{"text":175,"config":176},"Sichtbarkeit und Bewertung",{"href":171,"dataGaLocation":49,"dataGaName":177},"Visibility and Measurement",{"text":179,"config":180},"Wertstrommanagement",{"href":181,"dataGaLocation":49,"dataGaName":182},"/de-de/solutions/value-stream-management/","Value Stream Management",{"text":184,"config":185},"Analysen und Einblicke",{"href":186,"dataGaLocation":49,"dataGaName":187},"/de-de/solutions/analytics-and-insights/","Analytics and insights",{"title":189,"items":190},"GitLab für",[191,196,201],{"text":192,"config":193},"Enterprise",{"href":194,"dataGaLocation":49,"dataGaName":195},"/de-de/enterprise/","enterprise",{"text":197,"config":198},"Kleinunternehmen",{"href":199,"dataGaLocation":49,"dataGaName":200},"/de-de/small-business/","small business",{"text":202,"config":203},"den öffentlichen Sektor",{"href":204,"dataGaLocation":49,"dataGaName":205},"/de-de/solutions/public-sector/","public sector",{"text":207,"config":208},"Preise",{"href":209,"dataGaName":210,"dataGaLocation":49,"dataNavLevelOne":210},"/de-de/pricing/","pricing",{"text":212,"config":213,"link":215,"lists":219,"feature":303},"Ressourcen",{"dataNavLevelOne":214},"resources",{"text":216,"config":217},"Alle Ressourcen anzeigen",{"href":218,"dataGaName":214,"dataGaLocation":49},"/de-de/resources/",[220,253,275],{"title":221,"items":222},"Erste Schritte",[223,228,233,238,243,248],{"text":224,"config":225},"Installieren",{"href":226,"dataGaName":227,"dataGaLocation":49},"/de-de/install/","install",{"text":229,"config":230},"Kurzanleitungen",{"href":231,"dataGaName":232,"dataGaLocation":49},"/de-de/get-started/","quick setup checklists",{"text":234,"config":235},"Lernen",{"href":236,"dataGaLocation":49,"dataGaName":237},"https://university.gitlab.com/","learn",{"text":239,"config":240},"Produktdokumentation",{"href":241,"dataGaName":242,"dataGaLocation":49},"https://docs.gitlab.com/","product documentation",{"text":244,"config":245},"Best-Practice-Videos",{"href":246,"dataGaName":247,"dataGaLocation":49},"/de-de/getting-started-videos/","best practice videos",{"text":249,"config":250},"Integrationen",{"href":251,"dataGaName":252,"dataGaLocation":49},"/de-de/integrations/","integrations",{"title":254,"items":255},"Entdecken",[256,261,265,270],{"text":257,"config":258},"Kundenerfolge",{"href":259,"dataGaName":260,"dataGaLocation":49},"/de-de/customers/","customer success stories",{"text":262,"config":263},"Blog",{"href":264,"dataGaName":5,"dataGaLocation":49},"/de-de/blog/",{"text":266,"config":267},"Remote",{"href":268,"dataGaName":269,"dataGaLocation":49},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":271,"config":272},"TeamOps",{"href":273,"dataGaName":274,"dataGaLocation":49},"/de-de/teamops/","teamops",{"title":276,"items":277},"Vernetzen",[278,283,288,293,298],{"text":279,"config":280},"GitLab-Services",{"href":281,"dataGaName":282,"dataGaLocation":49},"/de-de/services/","services",{"text":284,"config":285},"Community",{"href":286,"dataGaName":287,"dataGaLocation":49},"/community/","community",{"text":289,"config":290},"Forum",{"href":291,"dataGaName":292,"dataGaLocation":49},"https://forum.gitlab.com/","forum",{"text":294,"config":295},"Veranstaltungen",{"href":296,"dataGaName":297,"dataGaLocation":49},"/events/","events",{"text":299,"config":300},"Partner",{"href":301,"dataGaName":302,"dataGaLocation":49},"/de-de/partners/","partners",{"backgroundColor":304,"textColor":305,"text":306,"image":307,"link":311},"#2f2a6b","#fff","Perspektiven für die Softwareentwicklung der Zukunft",{"altText":308,"config":309},"the source promo card",{"src":310},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":312,"config":313},"Lies die News",{"href":314,"dataGaName":315,"dataGaLocation":49},"/de-de/the-source/","the source",{"text":317,"config":318,"lists":320},"Unternehmen",{"dataNavLevelOne":319},"company",[321],{"items":322},[323,328,334,336,341,346,351,356,361,366,371],{"text":324,"config":325},"Über",{"href":326,"dataGaName":327,"dataGaLocation":49},"/de-de/company/","about",{"text":329,"config":330,"footerGa":333},"Karriere",{"href":331,"dataGaName":332,"dataGaLocation":49},"/jobs/","jobs",{"dataGaName":332},{"text":294,"config":335},{"href":296,"dataGaName":297,"dataGaLocation":49},{"text":337,"config":338},"Geschäftsführung",{"href":339,"dataGaName":340,"dataGaLocation":49},"/company/team/e-group/","leadership",{"text":342,"config":343},"Team",{"href":344,"dataGaName":345,"dataGaLocation":49},"/company/team/","team",{"text":347,"config":348},"Handbuch",{"href":349,"dataGaName":350,"dataGaLocation":49},"https://handbook.gitlab.com/","handbook",{"text":352,"config":353},"Investor Relations",{"href":354,"dataGaName":355,"dataGaLocation":49},"https://ir.gitlab.com/","investor relations",{"text":357,"config":358},"Trust Center",{"href":359,"dataGaName":360,"dataGaLocation":49},"/de-de/security/","trust center",{"text":362,"config":363},"AI Transparency Center",{"href":364,"dataGaName":365,"dataGaLocation":49},"/de-de/ai-transparency-center/","ai transparency center",{"text":367,"config":368},"Newsletter",{"href":369,"dataGaName":370,"dataGaLocation":49},"/company/contact/","newsletter",{"text":372,"config":373},"Presse",{"href":374,"dataGaName":375,"dataGaLocation":49},"/press/","press",{"text":377,"config":378,"lists":379},"Kontakt",{"dataNavLevelOne":319},[380],{"items":381},[382,385,390],{"text":56,"config":383},{"href":58,"dataGaName":384,"dataGaLocation":49},"talk to sales",{"text":386,"config":387},"Support",{"href":388,"dataGaName":389,"dataGaLocation":49},"/support/","get help",{"text":391,"config":392},"Kundenportal",{"href":393,"dataGaName":394,"dataGaLocation":49},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":396,"login":397,"suggestions":404},"Schließen",{"text":398,"link":399},"Um Repositories und Projekte zu durchsuchen, melde dich an bei",{"text":400,"config":401},"gitlab.com",{"href":63,"dataGaName":402,"dataGaLocation":403},"search login","search",{"text":405,"default":406},"Vorschläge",[407,410,415,417,422,427],{"text":78,"config":408},{"href":83,"dataGaName":409,"dataGaLocation":403},"GitLab Duo (AI)",{"text":411,"config":412},"Code Suggestions (KI)",{"href":413,"dataGaName":414,"dataGaLocation":403},"/de-de/solutions/code-suggestions/","Code Suggestions (AI)",{"text":23,"config":416},{"href":130,"dataGaName":23,"dataGaLocation":403},{"text":418,"config":419},"GitLab auf AWS",{"href":420,"dataGaName":421,"dataGaLocation":403},"/de-de/partners/technology-partners/aws/","GitLab on AWS",{"text":423,"config":424},"GitLab auf Google Cloud",{"href":425,"dataGaName":426,"dataGaLocation":403},"/de-de/partners/technology-partners/google-cloud-platform/","GitLab on Google Cloud",{"text":428,"config":429},"Warum GitLab?",{"href":91,"dataGaName":430,"dataGaLocation":403},"Why GitLab?",{"freeTrial":432,"mobileIcon":437,"desktopIcon":442},{"text":433,"config":434},"Kostenlos testen",{"href":435,"dataGaName":54,"dataGaLocation":436},"https://gitlab.com/-/trials/new/","nav",{"altText":438,"config":439},"GitLab-Symbol",{"src":440,"dataGaName":441,"dataGaLocation":436},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":438,"config":443},{"src":444,"dataGaName":441,"dataGaLocation":436},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":446,"mobileIcon":450,"desktopIcon":452},{"text":447,"config":448},"Erfahre mehr über GitLab Duo",{"href":83,"dataGaName":449,"dataGaLocation":436},"gitlab duo",{"altText":438,"config":451},{"src":440,"dataGaName":441,"dataGaLocation":436},{"altText":438,"config":453},{"src":444,"dataGaName":441,"dataGaLocation":436},"content:shared:de-de:main-navigation.yml","Main Navigation","shared/de-de/main-navigation.yml","shared/de-de/main-navigation",{"_path":459,"_dir":43,"_draft":6,"_partial":6,"_locale":7,"title":460,"button":461,"config":466,"_id":468,"_type":35,"_source":37,"_file":469,"_stem":470,"_extension":40},"/shared/de-de/banner","GitLab Duo Agent Platform ist jetzt in öffentlicher Beta!",{"text":462,"config":463},"Beta testen",{"href":464,"dataGaName":465,"dataGaLocation":49},"/de-de/gitlab-duo/agent-platform/","duo banner",{"layout":467},"release","content:shared:de-de:banner.yml","shared/de-de/banner.yml","shared/de-de/banner",{"_path":472,"_dir":43,"_draft":6,"_partial":6,"_locale":7,"data":473,"_id":676,"_type":35,"title":677,"_source":37,"_file":678,"_stem":679,"_extension":40},"/shared/de-de/main-footer",{"text":474,"source":475,"edit":481,"contribute":486,"config":491,"items":496,"minimal":668},"Git ist eine Marke von Software Freedom Conservancy und unsere Verwendung von „GitLab“ erfolgt unter Lizenz.",{"text":476,"config":477},"Quelltext der Seite anzeigen",{"href":478,"dataGaName":479,"dataGaLocation":480},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":482,"config":483},"Diese Seite bearbeiten",{"href":484,"dataGaName":485,"dataGaLocation":480},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":487,"config":488},"Beteilige dich",{"href":489,"dataGaName":490,"dataGaLocation":480},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":492,"facebook":493,"youtube":494,"linkedin":495},"https://x.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[497,520,575,604,638],{"title":67,"links":498,"subMenu":503},[499],{"text":500,"config":501},"DevSecOps-Plattform",{"href":76,"dataGaName":502,"dataGaLocation":480},"devsecops platform",[504],{"title":207,"links":505},[506,510,515],{"text":507,"config":508},"Tarife anzeigen",{"href":209,"dataGaName":509,"dataGaLocation":480},"view plans",{"text":511,"config":512},"Vorteile von Premium",{"href":513,"dataGaName":514,"dataGaLocation":480},"/de-de/pricing/premium/","why premium",{"text":516,"config":517},"Vorteile von Ultimate",{"href":518,"dataGaName":519,"dataGaLocation":480},"/de-de/pricing/ultimate/","why ultimate",{"title":521,"links":522},"Lösungen",[523,528,531,533,538,543,547,550,553,558,560,562,565,570],{"text":524,"config":525},"Digitale Transformation",{"href":526,"dataGaName":527,"dataGaLocation":480},"/de-de/topics/digital-transformation/","digital transformation",{"text":529,"config":530},"Sicherheit und Compliance",{"href":149,"dataGaName":156,"dataGaLocation":480},{"text":141,"config":532},{"href":125,"dataGaName":126,"dataGaLocation":480},{"text":534,"config":535},"Agile Entwicklung",{"href":536,"dataGaName":537,"dataGaLocation":480},"/de-de/solutions/agile-delivery/","agile delivery",{"text":539,"config":540},"Cloud-Transformation",{"href":541,"dataGaName":542,"dataGaLocation":480},"/de-de/topics/cloud-native/","cloud transformation",{"text":544,"config":545},"SCM",{"href":138,"dataGaName":546,"dataGaLocation":480},"source code management",{"text":23,"config":548},{"href":130,"dataGaName":549,"dataGaLocation":480},"continuous integration & delivery",{"text":179,"config":551},{"href":181,"dataGaName":552,"dataGaLocation":480},"value stream management",{"text":554,"config":555},"GitOps",{"href":556,"dataGaName":557,"dataGaLocation":480},"/de-de/solutions/gitops/","gitops",{"text":192,"config":559},{"href":194,"dataGaName":195,"dataGaLocation":480},{"text":197,"config":561},{"href":199,"dataGaName":200,"dataGaLocation":480},{"text":563,"config":564},"Öffentlicher Sektor",{"href":204,"dataGaName":205,"dataGaLocation":480},{"text":566,"config":567},"Bildungswesen",{"href":568,"dataGaName":569,"dataGaLocation":480},"/de-de/solutions/education/","education",{"text":571,"config":572},"Finanzdienstleistungen",{"href":573,"dataGaName":574,"dataGaLocation":480},"/de-de/solutions/finance/","financial services",{"title":212,"links":576},[577,579,581,583,586,588,590,592,594,596,598,600,602],{"text":224,"config":578},{"href":226,"dataGaName":227,"dataGaLocation":480},{"text":229,"config":580},{"href":231,"dataGaName":232,"dataGaLocation":480},{"text":234,"config":582},{"href":236,"dataGaName":237,"dataGaLocation":480},{"text":239,"config":584},{"href":241,"dataGaName":585,"dataGaLocation":480},"docs",{"text":262,"config":587},{"href":264,"dataGaName":5,"dataGaLocation":480},{"text":257,"config":589},{"href":259,"dataGaName":260,"dataGaLocation":480},{"text":266,"config":591},{"href":268,"dataGaName":269,"dataGaLocation":480},{"text":279,"config":593},{"href":281,"dataGaName":282,"dataGaLocation":480},{"text":271,"config":595},{"href":273,"dataGaName":274,"dataGaLocation":480},{"text":284,"config":597},{"href":286,"dataGaName":287,"dataGaLocation":480},{"text":289,"config":599},{"href":291,"dataGaName":292,"dataGaLocation":480},{"text":294,"config":601},{"href":296,"dataGaName":297,"dataGaLocation":480},{"text":299,"config":603},{"href":301,"dataGaName":302,"dataGaLocation":480},{"title":317,"links":605},[606,608,610,612,614,616,618,622,627,629,631,633],{"text":324,"config":607},{"href":326,"dataGaName":319,"dataGaLocation":480},{"text":329,"config":609},{"href":331,"dataGaName":332,"dataGaLocation":480},{"text":337,"config":611},{"href":339,"dataGaName":340,"dataGaLocation":480},{"text":342,"config":613},{"href":344,"dataGaName":345,"dataGaLocation":480},{"text":347,"config":615},{"href":349,"dataGaName":350,"dataGaLocation":480},{"text":352,"config":617},{"href":354,"dataGaName":355,"dataGaLocation":480},{"text":619,"config":620},"Sustainability",{"href":621,"dataGaName":619,"dataGaLocation":480},"/sustainability/",{"text":623,"config":624},"Vielfalt, Inklusion und Zugehörigkeit",{"href":625,"dataGaName":626,"dataGaLocation":480},"/de-de/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":357,"config":628},{"href":359,"dataGaName":360,"dataGaLocation":480},{"text":367,"config":630},{"href":369,"dataGaName":370,"dataGaLocation":480},{"text":372,"config":632},{"href":374,"dataGaName":375,"dataGaLocation":480},{"text":634,"config":635},"Transparenzerklärung zu moderner Sklaverei",{"href":636,"dataGaName":637,"dataGaLocation":480},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":639,"links":640},"Nimm Kontakt auf",[641,644,646,648,653,658,663],{"text":642,"config":643},"Sprich mit einem Experten/einer Expertin",{"href":58,"dataGaName":59,"dataGaLocation":480},{"text":386,"config":645},{"href":388,"dataGaName":389,"dataGaLocation":480},{"text":391,"config":647},{"href":393,"dataGaName":394,"dataGaLocation":480},{"text":649,"config":650},"Status",{"href":651,"dataGaName":652,"dataGaLocation":480},"https://status.gitlab.com/","status",{"text":654,"config":655},"Nutzungsbedingungen",{"href":656,"dataGaName":657,"dataGaLocation":480},"/terms/","terms of use",{"text":659,"config":660},"Datenschutzerklärung",{"href":661,"dataGaName":662,"dataGaLocation":480},"/de-de/privacy/","privacy statement",{"text":664,"config":665},"Cookie-Einstellungen",{"dataGaName":666,"dataGaLocation":480,"id":667,"isOneTrustButton":32},"cookie preferences","ot-sdk-btn",{"items":669},[670,672,674],{"text":654,"config":671},{"href":656,"dataGaName":657,"dataGaLocation":480},{"text":659,"config":673},{"href":661,"dataGaName":662,"dataGaLocation":480},{"text":664,"config":675},{"dataGaName":666,"dataGaLocation":480,"id":667,"isOneTrustButton":32},"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":681,"content":682,"config":685,"_id":34,"_type":35,"title":36,"_source":37,"_file":38,"_stem":39,"_extension":40},{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},{"title":9,"description":10,"authors":683,"heroImage":11,"date":19,"body":20,"category":21,"tags":684,"updatedDate":29},[18],[23,24,25,26,27,28],{"slug":31,"featured":32,"template":33},[687,700,711,722,733,744,755,766,776,786,797,808,818,829,840,850,860,870,880,891,901,911,921,932,943,953,964,975,985,996,1006,1017,1028,1039,1050,1060,1071,1082,1092,1103,1113,1124,1135,1145,1155,1166,1176,1186,1196,1207,1218,1229,1240,1250,1261,1272,1283,1294,1304,1315,1327,1338,1349,1359,1371,1382,1392,1403,1413,1424,1434,1445,1456,1466,1476,1486,1497,1507,1517,1527,1537,1548,1558,1569,1579,1590,1600,1610,1620,1631,1642,1653,1664,1675,1687,1697,1708,1718,1729,1740,1751,1762,1772,1783,1794,1805,1816,1826,1837,1848,1859,1869,1882,1892,1903,1914,1925,1935,1946,1957,1968,1978,1988,1998,2008,2019,2029,2039,2050,2060,2071,2081,2092,2103,2113,2124,2134,2144,2154,2165,2175,2185,2196,2207,2217,2228,2239,2250,2260,2273,2284,2294,2306,2318,2328,2338,2349,2359,2370,2382,2393,2404,2415,2427,2438,2448,2458,2469,2479,2489,2500,2511,2521,2532,2543,2553,2563,2574,2585,2595,2606,2616,2627,2638,2649,2659,2669,2680,2691,2701,2711,2722,2734,2744,2754,2764,2775,2786,2796,2806,2816,2826,2836,2847,2858,2868,2879,2889,2899,2909,2919,2929,2940,2950,2960,2971,2981,2991,3002,3013,3023,3035,3045,3055,3067,3078,3089,3099,3110,3121,3132,3142,3154,3165,3175,3186,3197,3208,3219,3230,3241,3252,3262,3273,3284,3295,3305,3315,3326,3336,3346,3357,3368,3381,3392,3403,3413,3424,3436,3447,3458,3469,3479,3489,3500,3510,3521,3532,3543,3553,3563,3573,3583,3594,3605,3616,3627,3639,3650,3662,3673,3683,3693,3705,3715,3726,3736,3747,3757,3767,3778,3790,3800,3810,3820,3831,3841,3852,3862,3872,3883,3894,3905,3917,3928,3938,3949,3960,3970,3980,3991,4002,4013,4024,4034,4045,4056,4067,4077,4088,4099,4109,4120,4131,4142,4152,4162,4173,4184,4194,4205,4216,4227,4237,4247,4258,4269,4280,4291,4302,4312,4323,4334,4344,4354,4364,4376,4388,4398,4410,4420,4431,4442,4453,4464,4477,4487,4498,4509,4519,4529,4539,4550,4560,4571,4582,4592,4603,4613,4624,4635,4646,4657,4668,4678,4688,4699,4710,4720,4730,4740,4751,4762,4772,4782,4792,4802,4813,4823,4833,4844,4854,4865,4875,4886,4897,4907,4917,4928,4938,4948,4959,4970,4981,4992,5002,5014,5025,5036,5046,5056,5066,5077,5088,5099,5110,5120,5131,5142,5152,5163,5175,5185,5195,5205,5216,5227,5238,5248,5258,5269,5280,5290,5302,5312,5322,5333,5343,5354,5366,5377,5387,5398,5409,5419,5430,5441,5453,5463,5473,5484,5494,5505,5515,5526,5536,5546,5557,5567,5578,5588,5598,5609,5619,5630,5641,5651,5661,5672,5682,5692,5702,5712,5723,5734,5746,5757,5768,5780,5792,5803,5814,5824,5835,5845,5855,5866,5877,5888,5898,5908,5918,5928,5938,5949,5961,5972,5984,5995,6005,6015,6026,6036,6046,6056,6066,6076,6086,6097,6107,6117,6128,6138,6148,6159,6170,6180,6192,6203,6213,6225,6236,6246,6257,6268,6278,6288,6298,6310,6320,6331,6342,6353,6364,6374,6384,6395,6407,6417,6427,6438,6448,6459,6469,6481,6492,6502,6512,6523,6535,6545,6558,6568,6580,6591,6601,6611,6622,6632,6643,6654,6665,6676,6687,6698,6709,6720,6731,6742,6753,6764,6775,6786,6797,6807,6820,6830,6841,6851,6862,6872,6882,6893,6904,6915,6925,6935,6946,6956,6967,6978,6990,7001,7011,7022,7033,7043,7053,7063,7073,7083,7094,7104,7115,7125,7136,7151,7162,7172,7183,7194,7205,7216,7227,7237,7248,7259,7270,7280,7291,7301,7311,7321,7331,7341,7352,7364,7374,7385,7396,7408,7418,7429,7439,7451,7462,7472,7482,7492,7503,7513,7524,7534,7544,7555,7566,7577,7588,7598,7609,7620,7630,7640,7650,7661,7672,7682,7692,7703,7714,7724,7734,7744,7755,7765,7776,7787,7798,7808,7818,7828,7838,7849,7860,7870,7880,7890,7900,7911],{"_path":688,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":690,"config":695,"_id":697,"_type":35,"title":691,"_source":37,"_file":698,"_stem":699,"_extension":40},"/en-us/blog/authors/aakriti-gupta","authors",{"name":691,"config":692},"Aakriti Gupta",{"headshot":693,"ctfId":694},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":696},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":701,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":702,"config":706,"_id":707,"_type":35,"title":708,"_source":37,"_file":709,"_stem":710,"_extension":40},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":703,"config":704},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":705},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":696},"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":712,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":713,"config":718,"_id":719,"_type":35,"title":714,"_source":37,"_file":720,"_stem":721,"_extension":40},"/en-us/blog/authors/aathira-nair",{"name":714,"config":715},"Aathira Nair",{"headshot":716,"ctfId":717},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":696},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":723,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":724,"config":729,"_id":730,"_type":35,"title":725,"_source":37,"_file":731,"_stem":732,"_extension":40},"/en-us/blog/authors/abdulkader-benchi",{"name":725,"config":726},"Abdulkader Benchi",{"headshot":727,"ctfId":728},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":696},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":734,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":735,"config":740,"_id":741,"_type":35,"title":736,"_source":37,"_file":742,"_stem":743,"_extension":40},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":736,"config":737},"Abubakar Siddiq Ango",{"headshot":738,"ctfId":739},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":696},"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":745,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":746,"config":751,"_id":752,"_type":35,"title":747,"_source":37,"_file":753,"_stem":754,"_extension":40},"/en-us/blog/authors/achilleas-pipinellis",{"name":747,"config":748},"Achilleas Pipinellis",{"headshot":749,"ctfId":750},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":696},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":756,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":757,"config":761,"_id":762,"_type":35,"title":763,"_source":37,"_file":764,"_stem":765,"_extension":40},"/en-us/blog/authors/adfinis-sygroup",{"name":758,"config":759},"Adfinis SyGroup",{"headshot":727,"ctfId":760},"Adfinis-SyGroup",{"template":696},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":767,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":768,"config":772,"_id":773,"_type":35,"title":769,"_source":37,"_file":774,"_stem":775,"_extension":40},"/en-us/blog/authors/ahmet-kizilay",{"name":769,"config":770},"Ahmet Kizilay",{"headshot":727,"ctfId":771},"Ahmet-Kizilay",{"template":696},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":777,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":778,"config":782,"_id":783,"_type":35,"title":779,"_source":37,"_file":784,"_stem":785,"_extension":40},"/en-us/blog/authors/akashdeep-dhar",{"name":779,"config":780},"Akashdeep Dhar",{"headshot":7,"ctfId":781},"t0xic0der",{"template":696},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":787,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":788,"config":793,"_id":794,"_type":35,"title":789,"_source":37,"_file":795,"_stem":796,"_extension":40},"/en-us/blog/authors/alana-bellucci",{"name":789,"config":790},"Alana Bellucci",{"headshot":791,"ctfId":792},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":696},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":798,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":799,"config":804,"_id":805,"_type":35,"title":800,"_source":37,"_file":806,"_stem":807,"_extension":40},"/en-us/blog/authors/alex-fracazo",{"name":800,"config":801},"Alex Fracazo",{"headshot":802,"ctfId":803},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":696},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":809,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":810,"config":814,"_id":815,"_type":35,"title":811,"_source":37,"_file":816,"_stem":817,"_extension":40},"/en-us/blog/authors/alex-groleau",{"name":811,"config":812},"Alex Groleau",{"headshot":727,"ctfId":813},"3VVHytQSHu9ehZgsUEJ3qq",{"template":696},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":819,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":820,"config":825,"_id":826,"_type":35,"title":821,"_source":37,"_file":827,"_stem":828,"_extension":40},"/en-us/blog/authors/alex-mark",{"name":821,"config":822},"Alex Mark",{"headshot":823,"ctfId":824},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":696},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":830,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":831,"config":836,"_id":837,"_type":35,"title":832,"_source":37,"_file":838,"_stem":839,"_extension":40},"/en-us/blog/authors/alex-martin",{"name":832,"config":833},"Alex Martin",{"headshot":834,"ctfId":835},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":696},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":841,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":842,"config":846,"_id":847,"_type":35,"title":843,"_source":37,"_file":848,"_stem":849,"_extension":40},"/en-us/blog/authors/alexander-dietrich",{"name":843,"config":844},"Alexander Dietrich",{"headshot":727,"ctfId":845},"2CzeEOPVjjGKpdblIm0JfO",{"template":696},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":851,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":852,"config":856,"_id":857,"_type":35,"title":853,"_source":37,"_file":858,"_stem":859,"_extension":40},"/en-us/blog/authors/alexander-malaev",{"name":853,"config":854},"Alexander Malaev",{"headshot":727,"ctfId":855},"Alexander-Malaev",{"template":696},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":861,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":862,"config":866,"_id":867,"_type":35,"title":863,"_source":37,"_file":868,"_stem":869,"_extension":40},"/en-us/blog/authors/alexander-pereverzevs",{"name":863,"config":864},"Alexander Pereverzevs",{"headshot":7,"ctfId":865},"lokalise",{"template":696},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":871,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":872,"config":876,"_id":877,"_type":35,"title":873,"_source":37,"_file":878,"_stem":879,"_extension":40},"/en-us/blog/authors/alexis-ginsberg",{"name":873,"config":874},"Alexis Ginsberg",{"headshot":727,"ctfId":875},"lmDIchpcDx48jKuke2B4l",{"template":696},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":881,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":882,"config":887,"_id":888,"_type":35,"title":883,"_source":37,"_file":889,"_stem":890,"_extension":40},"/en-us/blog/authors/allie-holland",{"name":883,"config":884},"Allie Holland",{"headshot":885,"ctfId":886},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":696},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":892,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":893,"config":897,"_id":898,"_type":35,"title":894,"_source":37,"_file":899,"_stem":900,"_extension":40},"/en-us/blog/authors/allison-whilden",{"name":894,"config":895},"Allison Whilden",{"headshot":727,"ctfId":896},"Allison-Whilden",{"template":696},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":902,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":903,"config":907,"_id":908,"_type":35,"title":904,"_source":37,"_file":909,"_stem":910,"_extension":40},"/en-us/blog/authors/alyssa-rock",{"name":904,"config":905},"Alyssa Rock",{"headshot":727,"ctfId":906},"4T2hddEfeK0Kp1zF8Ncvej",{"template":696},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":912,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":913,"config":917,"_id":918,"_type":35,"title":914,"_source":37,"_file":919,"_stem":920,"_extension":40},"/en-us/blog/authors/amanda-folson",{"name":914,"config":915},"Amanda Folson",{"headshot":727,"ctfId":916},"Amanda-Folson",{"template":696},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":922,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":923,"config":928,"_id":929,"_type":35,"title":924,"_source":37,"_file":930,"_stem":931,"_extension":40},"/en-us/blog/authors/amanda-rueda",{"name":924,"config":925},"Amanda Rueda",{"headshot":926,"ctfId":927},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":696},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":933,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":934,"config":939,"_id":940,"_type":35,"title":935,"_source":37,"_file":941,"_stem":942,"_extension":40},"/en-us/blog/authors/amar-patel",{"name":935,"config":936},"Amar Patel",{"headshot":937,"ctfId":938},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":696},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":944,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":945,"config":949,"_id":950,"_type":35,"title":946,"_source":37,"_file":951,"_stem":952,"_extension":40},"/en-us/blog/authors/amara-nwaigwe",{"name":946,"config":947},"Amara Nwaigwe",{"headshot":727,"ctfId":948},"Amara-Nwaigwe",{"template":696},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":954,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":955,"config":960,"_id":961,"_type":35,"title":956,"_source":37,"_file":962,"_stem":963,"_extension":40},"/en-us/blog/authors/amelia-bauerly",{"name":956,"config":957},"Amelia Bauerly",{"headshot":958,"ctfId":959},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":696},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":965,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":966,"config":971,"_id":972,"_type":35,"title":967,"_source":37,"_file":973,"_stem":974,"_extension":40},"/en-us/blog/authors/ameya-darshan",{"name":967,"config":968},"Ameya Darshan",{"headshot":969,"ctfId":970},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":696},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":976,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":977,"config":981,"_id":982,"_type":35,"title":978,"_source":37,"_file":983,"_stem":984,"_extension":40},"/en-us/blog/authors/andrea-borga",{"name":978,"config":979},"Andrea Borga",{"headshot":727,"ctfId":980},"6dPpfov6kpNcMdmyHyhKcN",{"template":696},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":986,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":987,"config":992,"_id":993,"_type":35,"title":988,"_source":37,"_file":994,"_stem":995,"_extension":40},"/en-us/blog/authors/andreas-brandl",{"name":988,"config":989},"Andreas Brandl",{"headshot":990,"ctfId":991},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":696},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":997,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":998,"config":1002,"_id":1003,"_type":35,"title":999,"_source":37,"_file":1004,"_stem":1005,"_extension":40},"/en-us/blog/authors/andrew-chilton",{"name":999,"config":1000},"Andrew Chilton",{"headshot":7,"ctfId":1001},"chilts",{"template":696},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":1007,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1008,"config":1013,"_id":1014,"_type":35,"title":1009,"_source":37,"_file":1015,"_stem":1016,"_extension":40},"/en-us/blog/authors/andrew-fontaine",{"name":1009,"config":1010},"Andrew Fontaine",{"headshot":1011,"ctfId":1012},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":696},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1018,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1019,"config":1024,"_id":1025,"_type":35,"title":1020,"_source":37,"_file":1026,"_stem":1027,"_extension":40},"/en-us/blog/authors/andrew-kelly",{"name":1020,"config":1021},"Andrew Kelly",{"headshot":1022,"ctfId":1023},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":696},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1029,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1030,"config":1035,"_id":1036,"_type":35,"title":1031,"_source":37,"_file":1037,"_stem":1038,"_extension":40},"/en-us/blog/authors/andrew-newdigate",{"name":1031,"config":1032},"Andrew Newdigate",{"headshot":1033,"ctfId":1034},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":696},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1040,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1041,"config":1046,"_id":1047,"_type":35,"title":1042,"_source":37,"_file":1048,"_stem":1049,"_extension":40},"/en-us/blog/authors/andrew-patterson",{"name":1042,"config":1043},"Andrew Patterson",{"headshot":1044,"ctfId":1045},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":696},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1051,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1052,"config":1056,"_id":1057,"_type":35,"title":1053,"_source":37,"_file":1058,"_stem":1059,"_extension":40},"/en-us/blog/authors/andrew-taylor",{"name":1053,"config":1054},"Andrew Taylor",{"headshot":727,"ctfId":1055},"Andrew-Taylor",{"template":696},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1061,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1062,"config":1067,"_id":1068,"_type":35,"title":1063,"_source":37,"_file":1069,"_stem":1070,"_extension":40},"/en-us/blog/authors/andrew-thomas",{"name":1063,"config":1064},"Andrew Thomas",{"headshot":1065,"ctfId":1066},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":696},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1072,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1073,"config":1078,"_id":1079,"_type":35,"title":1074,"_source":37,"_file":1080,"_stem":1081,"_extension":40},"/en-us/blog/authors/andy-bradfield",{"name":1074,"role":1075,"config":1076},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1077},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":696},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1083,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1084,"config":1088,"_id":1089,"_type":35,"title":1085,"_source":37,"_file":1090,"_stem":1091,"_extension":40},"/en-us/blog/authors/andy-rogers",{"name":1085,"config":1086},"Andy Rogers",{"headshot":727,"ctfId":1087},"Andy-Rogers",{"template":696},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1093,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1094,"config":1099,"_id":1100,"_type":35,"title":1095,"_source":37,"_file":1101,"_stem":1102,"_extension":40},"/en-us/blog/authors/andy-volpe",{"name":1095,"config":1096},"Andy Volpe",{"headshot":1097,"ctfId":1098},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":696},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1104,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1105,"config":1109,"_id":1110,"_type":35,"title":1106,"_source":37,"_file":1111,"_stem":1112,"_extension":40},"/en-us/blog/authors/angelo-stavrow",{"name":1106,"config":1107},"Angelo Stavrow",{"headshot":727,"ctfId":1108},"Angelo-Stavrow",{"template":696},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1114,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1115,"config":1120,"_id":1121,"_type":35,"title":1116,"_source":37,"_file":1122,"_stem":1123,"_extension":40},"/en-us/blog/authors/anna-vovchenko",{"name":1116,"config":1117},"Anna Vovchenko",{"headshot":1118,"ctfId":1119},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":696},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1125,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1126,"config":1131,"_id":1132,"_type":35,"title":1127,"_source":37,"_file":1133,"_stem":1134,"_extension":40},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1127,"config":1128},"Annabel Dunstone Gray",{"headshot":1129,"ctfId":1130},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":696},"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":1136,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1137,"config":1141,"_id":1142,"_type":35,"title":1138,"_source":37,"_file":1143,"_stem":1144,"_extension":40},"/en-us/blog/authors/anshuman-singh",{"name":1138,"config":1139},"Anshuman Singh",{"headshot":727,"ctfId":1140},"4xzrY67JSkxp4j7hlK1DWA",{"template":696},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1146,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1147,"config":1151,"_id":1152,"_type":35,"title":1148,"_source":37,"_file":1153,"_stem":1154,"_extension":40},"/en-us/blog/authors/anthony-davanzo",{"name":1148,"config":1149},"Anthony Davanzo",{"headshot":727,"ctfId":1150},"4KccrB6k5jq46xQRDOdWSb",{"template":696},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1156,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1157,"config":1162,"_id":1163,"_type":35,"title":1158,"_source":37,"_file":1164,"_stem":1165,"_extension":40},"/en-us/blog/authors/anton-smith",{"name":1158,"config":1159},"Anton Smith",{"headshot":1160,"ctfId":1161},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":696},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1167,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1168,"config":1172,"_id":1173,"_type":35,"title":1169,"_source":37,"_file":1174,"_stem":1175,"_extension":40},"/en-us/blog/authors/aricka-flowers",{"name":1169,"config":1170},"Aricka Flowers",{"headshot":7,"ctfId":1171},"atflowers",{"template":696},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1177,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1178,"config":1182,"_id":1183,"_type":35,"title":1179,"_source":37,"_file":1184,"_stem":1185,"_extension":40},"/en-us/blog/authors/ariel-camus",{"name":1179,"config":1180},"Ariel Camus",{"headshot":7,"ctfId":1181},"arielcamus",{"template":696},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1187,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1188,"config":1192,"_id":1193,"_type":35,"title":1189,"_source":37,"_file":1194,"_stem":1195,"_extension":40},"/en-us/blog/authors/arunoda-susiripala",{"name":1189,"config":1190},"Arunoda Susiripala",{"headshot":727,"ctfId":1191},"7kQaq0xFWPi2zRW6NZIDHp",{"template":696},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1197,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1198,"config":1202,"_id":1204,"_type":35,"title":1199,"_source":37,"_file":1205,"_stem":1206,"_extension":40},"/en-us/blog/authors/ashher-syed",{"name":1199,"config":1200},"Ashher Syed",{"headshot":1201},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":696,"gitlabHandle":1203},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1208,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1209,"config":1214,"_id":1215,"_type":35,"title":1210,"_source":37,"_file":1216,"_stem":1217,"_extension":40},"/en-us/blog/authors/ashley-knobloch",{"name":1210,"config":1211},"Ashley Knobloch",{"headshot":1212,"ctfId":1213},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":696},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1219,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1220,"config":1225,"_id":1226,"_type":35,"title":1221,"_source":37,"_file":1227,"_stem":1228,"_extension":40},"/en-us/blog/authors/ashley-kramer",{"name":1221,"config":1222},"Ashley Kramer",{"headshot":1223,"ctfId":1224},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":696},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1230,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1231,"config":1235,"_id":1236,"_type":35,"title":1237,"_source":37,"_file":1238,"_stem":1239,"_extension":40},"/en-us/blog/authors/ashley-mcalpin",{"name":1232,"config":1233},"Ashley McAlpin",{"headshot":727,"ctfId":1234},"Ashley-McAlpin",{"template":696},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1241,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1242,"config":1246,"_id":1247,"_type":35,"title":1243,"_source":37,"_file":1248,"_stem":1249,"_extension":40},"/en-us/blog/authors/ashley-smith",{"name":1243,"config":1244},"Ashley Smith",{"headshot":727,"ctfId":1245},"Ashley-Smith",{"template":696},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1251,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1252,"config":1256,"_id":1257,"_type":35,"title":1258,"_source":37,"_file":1259,"_stem":1260,"_extension":40},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1253,"config":1254},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":727,"ctfId":1255},"Atlassian-Bitbucket-GitHub-GitLab",{"template":696},"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":1262,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1263,"config":1268,"_id":1269,"_type":35,"title":1264,"_source":37,"_file":1270,"_stem":1271,"_extension":40},"/en-us/blog/authors/austin-regnery",{"name":1264,"config":1265},"Austin Regnery",{"headshot":1266,"ctfId":1267},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":696},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1273,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1274,"config":1279,"_id":1280,"_type":35,"title":1275,"_source":37,"_file":1281,"_stem":1282,"_extension":40},"/en-us/blog/authors/ayoub-fandi",{"name":1275,"config":1276},"Ayoub Fandi",{"headshot":1277,"ctfId":1278},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":696},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1284,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1285,"config":1289,"_id":1290,"_type":35,"title":1291,"_source":37,"_file":1292,"_stem":1293,"_extension":40},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1286,"config":1287},"Bahubali (Bill) Shetti",{"headshot":727,"ctfId":1288},"4rFnUJeUt0JNGQwwCZSLMj",{"template":696},"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":1295,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1296,"config":1300,"_id":1301,"_type":35,"title":1297,"_source":37,"_file":1302,"_stem":1303,"_extension":40},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1297,"config":1298},"Baksheesh Singh Ghuman",{"headshot":727,"ctfId":1299},"Baksheesh-Singh-Ghuman",{"template":696},"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":1305,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1306,"config":1311,"_id":1312,"_type":35,"title":1307,"_source":37,"_file":1313,"_stem":1314,"_extension":40},"/en-us/blog/authors/bala-allam",{"name":1307,"config":1308},"Bala Allam",{"headshot":1309,"ctfId":1310},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":696},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1316,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1317,"config":1322,"_id":1323,"_type":35,"title":1324,"_source":37,"_file":1325,"_stem":1326,"_extension":40},"/en-us/blog/authors/balasankar-balu-c",{"name":1318,"config":1319},"Balasankar 'Balu' C",{"headshot":1320,"ctfId":1321},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":696},"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":1328,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1329,"config":1334,"_id":1335,"_type":35,"title":1330,"_source":37,"_file":1336,"_stem":1337,"_extension":40},"/en-us/blog/authors/bart-zhang",{"name":1330,"config":1331},"Bart Zhang",{"headshot":1332,"ctfId":1333},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":696},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1339,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1340,"config":1345,"_id":1346,"_type":35,"title":1341,"_source":37,"_file":1347,"_stem":1348,"_extension":40},"/en-us/blog/authors/beatriz-barbosa",{"name":1341,"config":1342},"Beatriz Barbosa",{"headshot":1343,"ctfId":1344},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":696},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1350,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1351,"config":1355,"_id":1356,"_type":35,"title":1352,"_source":37,"_file":1357,"_stem":1358,"_extension":40},"/en-us/blog/authors/becka-lippert",{"name":1352,"config":1353},"Becka Lippert",{"headshot":727,"ctfId":1354},"7wX6Hbvb3AbKwa6NnClvBX",{"template":696},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1360,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1361,"config":1366,"_id":1367,"_type":35,"title":1368,"_source":37,"_file":1369,"_stem":1370,"_extension":40},"/en-us/blog/authors/ben-leduc-mills",{"name":1362,"config":1363},"Ben Leduc-Mills",{"headshot":1364,"ctfId":1365},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":696},"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":1372,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1373,"config":1378,"_id":1379,"_type":35,"title":1374,"_source":37,"_file":1380,"_stem":1381,"_extension":40},"/en-us/blog/authors/ben-ridley",{"name":1374,"config":1375},"Ben Ridley",{"headshot":1376,"ctfId":1377},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":696},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1383,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1384,"config":1388,"_id":1389,"_type":35,"title":1385,"_source":37,"_file":1390,"_stem":1391,"_extension":40},"/en-us/blog/authors/benedikt-rollik",{"name":1385,"config":1386},"Benedikt Rollik",{"headshot":727,"ctfId":1387},"Benedikt-Rollik",{"template":696},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1393,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1394,"config":1399,"_id":1400,"_type":35,"title":1395,"_source":37,"_file":1401,"_stem":1402,"_extension":40},"/en-us/blog/authors/benjamin-skierlak",{"name":1395,"config":1396},"Benjamin Skierlak",{"headshot":1397,"ctfId":1398},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":696},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1404,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1405,"config":1409,"_id":1410,"_type":35,"title":1406,"_source":37,"_file":1411,"_stem":1412,"_extension":40},"/en-us/blog/authors/bert-van-eyck",{"name":1406,"config":1407},"Bert Van Eyck",{"headshot":7,"ctfId":1408},"bertveproximus",{"template":696},"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":1414,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1415,"config":1420,"_id":1421,"_type":35,"title":1416,"_source":37,"_file":1422,"_stem":1423,"_extension":40},"/en-us/blog/authors/betsy-bula",{"name":1416,"config":1417},"Betsy Bula",{"headshot":1418,"ctfId":1419},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":696},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1425,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1426,"config":1430,"_id":1431,"_type":35,"title":1427,"_source":37,"_file":1432,"_stem":1433,"_extension":40},"/en-us/blog/authors/betsy-church",{"name":1427,"config":1428},"Betsy Church",{"headshot":7,"ctfId":1429},"bchurch",{"template":696},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1435,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1436,"config":1441,"_id":1442,"_type":35,"title":1437,"_source":37,"_file":1443,"_stem":1444,"_extension":40},"/en-us/blog/authors/bill-staples",{"name":1437,"config":1438,"role":1440},"Bill Staples",{"headshot":1439},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":696},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1446,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1447,"config":1452,"_id":1453,"_type":35,"title":1448,"_source":37,"_file":1454,"_stem":1455,"_extension":40},"/en-us/blog/authors/bob-van-landuyt",{"name":1448,"config":1449},"Bob Van Landuyt",{"headshot":1450,"ctfId":1451},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":696},"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":1457,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1458,"config":1462,"_id":1463,"_type":35,"title":1459,"_source":37,"_file":1464,"_stem":1465,"_extension":40},"/en-us/blog/authors/boris-baldassari",{"name":1459,"config":1460},"Boris Baldassari",{"headshot":7,"ctfId":1461},"bbaldassari",{"template":696},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1467,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1468,"config":1472,"_id":1473,"_type":35,"title":1469,"_source":37,"_file":1474,"_stem":1475,"_extension":40},"/en-us/blog/authors/borivoje-tasovac",{"name":1469,"config":1470},"Borivoje Tasovac",{"headshot":7,"ctfId":1471},"borivoje",{"template":696},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1477,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1478,"config":1482,"_id":1483,"_type":35,"title":1479,"_source":37,"_file":1484,"_stem":1485,"_extension":40},"/en-us/blog/authors/brad-downey",{"name":1479,"config":1480},"Brad Downey",{"headshot":727,"ctfId":1481},"6b6RTu6832NFEju2zKJhbE",{"template":696},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1487,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1488,"config":1493,"_id":1494,"_type":35,"title":1489,"_source":37,"_file":1495,"_stem":1496,"_extension":40},"/en-us/blog/authors/bradley-lee",{"name":1489,"config":1490},"Bradley Lee",{"headshot":1491,"ctfId":1492},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":696},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1498,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1499,"config":1503,"_id":1504,"_type":35,"title":1500,"_source":37,"_file":1505,"_stem":1506,"_extension":40},"/en-us/blog/authors/brandon-foo",{"name":1500,"config":1501},"Brandon Foo",{"headshot":727,"ctfId":1502},"Brandon-Foo",{"template":696},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1508,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1509,"config":1513,"_id":1514,"_type":35,"title":1510,"_source":37,"_file":1515,"_stem":1516,"_extension":40},"/en-us/blog/authors/brandon-jung",{"name":1510,"config":1511},"Brandon Jung",{"headshot":727,"ctfId":1512},"Brandon-Jung",{"template":696},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1518,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1519,"config":1523,"_id":1524,"_type":35,"title":1520,"_source":37,"_file":1525,"_stem":1526,"_extension":40},"/en-us/blog/authors/brandon-lyon",{"name":1520,"config":1521},"Brandon Lyon",{"headshot":7,"ctfId":1522},"brandonlyon",{"template":696},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1528,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1529,"config":1533,"_id":1534,"_type":35,"title":1530,"_source":37,"_file":1535,"_stem":1536,"_extension":40},"/en-us/blog/authors/brein-matturro",{"name":1530,"config":1531},"Brein Matturro",{"headshot":7,"ctfId":1532},"bmatturro",{"template":696},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1538,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1539,"config":1543,"_id":1544,"_type":35,"title":1545,"_source":37,"_file":1546,"_stem":1547,"_extension":40},"/en-us/blog/authors/brendan-oleary",{"name":1540,"config":1541},"Brendan O'Leary",{"headshot":7,"ctfId":1542},"brendan",{"template":696},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1549,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1550,"config":1554,"_id":1555,"_type":35,"title":1551,"_source":37,"_file":1556,"_stem":1557,"_extension":40},"/en-us/blog/authors/brendan-regan",{"name":1551,"config":1552},"Brendan Regan",{"headshot":7,"ctfId":1553},"brendanregan11",{"template":696},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1559,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1560,"config":1565,"_id":1566,"_type":35,"title":1561,"_source":37,"_file":1567,"_stem":1568,"_extension":40},"/en-us/blog/authors/brett-walker",{"name":1561,"config":1562},"Brett Walker",{"headshot":1563,"ctfId":1564},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":696},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1570,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1571,"config":1575,"_id":1576,"_type":35,"title":1572,"_source":37,"_file":1577,"_stem":1578,"_extension":40},"/en-us/blog/authors/brian-glanz",{"name":1572,"config":1573},"Brian Glanz",{"headshot":7,"ctfId":1574},"brianglanz",{"template":696},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1580,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1581,"config":1585,"_id":1586,"_type":35,"title":1587,"_source":37,"_file":1588,"_stem":1589,"_extension":40},"/en-us/blog/authors/brian-oconnell",{"name":1582,"config":1583},"Brian O'Connell",{"headshot":727,"ctfId":1584},"Brian-OConnell",{"template":696},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1591,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1592,"config":1596,"_id":1597,"_type":35,"title":1593,"_source":37,"_file":1598,"_stem":1599,"_extension":40},"/en-us/blog/authors/brian-rhea",{"name":1593,"config":1594},"Brian Rhea",{"headshot":7,"ctfId":1595},"brhea",{"template":696},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1601,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1602,"config":1606,"_id":1607,"_type":35,"title":1603,"_source":37,"_file":1608,"_stem":1609,"_extension":40},"/en-us/blog/authors/brian-wald",{"name":1603,"config":1604},"Brian Wald",{"headshot":727,"ctfId":1605},"78qOxgHKlgDY2IxMrBrgCu",{"template":696},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1611,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1612,"config":1616,"_id":1617,"_type":35,"title":1613,"_source":37,"_file":1618,"_stem":1619,"_extension":40},"/en-us/blog/authors/brittany-rohde",{"name":1613,"config":1614},"Brittany Rohde",{"headshot":7,"ctfId":1615},"brittanyr",{"template":696},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1621,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1622,"config":1627,"_id":1628,"_type":35,"title":1623,"_source":37,"_file":1629,"_stem":1630,"_extension":40},"/en-us/blog/authors/bryan-behrenshausen",{"name":1623,"config":1624},"Bryan Behrenshausen",{"headshot":1625,"ctfId":1626},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":696},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1632,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1633,"config":1638,"_id":1639,"_type":35,"title":1634,"_source":37,"_file":1640,"_stem":1641,"_extension":40},"/en-us/blog/authors/bryan-may",{"name":1634,"config":1635},"Bryan May",{"headshot":1636,"ctfId":1637},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":696},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1643,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1644,"config":1649,"_id":1650,"_type":35,"title":1645,"_source":37,"_file":1651,"_stem":1652,"_extension":40},"/en-us/blog/authors/byron-boots",{"name":1645,"config":1646},"Byron Boots",{"headshot":1647,"ctfId":1648},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":696},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1654,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1655,"config":1660,"_id":1661,"_type":35,"title":1656,"_source":37,"_file":1662,"_stem":1663,"_extension":40},"/en-us/blog/authors/camellia-yang",{"name":1656,"config":1657},"Camellia Yang",{"headshot":1658,"ctfId":1659},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":696},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1665,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1666,"config":1671,"_id":1672,"_type":35,"title":1667,"_source":37,"_file":1673,"_stem":1674,"_extension":40},"/en-us/blog/authors/cameron-swords",{"name":1667,"config":1668},"Cameron Swords",{"headshot":1669,"ctfId":1670},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":696},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1676,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1677,"config":1683,"_id":1684,"_type":35,"title":1679,"_source":37,"_file":1685,"_stem":1686,"_extension":40},"/en-us/blog/authors/carl-myers",{"role":1678,"name":1679,"config":1680},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1681,"ctfId":1682},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":696},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1688,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1689,"config":1693,"_id":1694,"_type":35,"title":1690,"_source":37,"_file":1695,"_stem":1696,"_extension":40},"/en-us/blog/authors/carol-teskey",{"name":1690,"config":1691},"Carol Teskey",{"headshot":7,"ctfId":1692},"cteskey",{"template":696},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1698,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1699,"config":1704,"_id":1705,"_type":35,"title":1700,"_source":37,"_file":1706,"_stem":1707,"_extension":40},"/en-us/blog/authors/cesar-saavedra",{"name":1700,"config":1701},"Cesar Saavedra",{"headshot":1702,"ctfId":1703},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":696},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1709,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1710,"config":1714,"_id":1715,"_type":35,"title":1711,"_source":37,"_file":1716,"_stem":1717,"_extension":40},"/en-us/blog/authors/chad-malchow",{"name":1711,"config":1712},"Chad Malchow",{"headshot":727,"ctfId":1713},"Chad-Malchow",{"template":696},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1719,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1720,"config":1725,"_id":1726,"_type":35,"title":1721,"_source":37,"_file":1727,"_stem":1728,"_extension":40},"/en-us/blog/authors/chance-feick",{"name":1721,"config":1722},"Chance Feick",{"headshot":1723,"ctfId":1724},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666442/Blog/Author%20Headshots/chance_feick_headshot.png","18dtRbXV47xqf5iDrOIduM",{"template":696},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1730,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1731,"config":1736,"_id":1737,"_type":35,"title":1732,"_source":37,"_file":1738,"_stem":1739,"_extension":40},"/en-us/blog/authors/chandler-gibbons",{"name":1732,"config":1733},"Chandler Gibbons",{"headshot":1734,"ctfId":1735},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663276/Blog/Author%20Headshots/chandlergibb-headshot.jpg","chandlergibb",{"template":696},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1741,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1742,"config":1746,"_id":1747,"_type":35,"title":1748,"_source":37,"_file":1749,"_stem":1750,"_extension":40},"/en-us/blog/authors/charl-de-wit",{"name":1743,"config":1744},"Charl de Wit",{"headshot":727,"ctfId":1745},"45mQeypQVLNvvTWMzserbR",{"template":696},"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":1752,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1753,"config":1758,"_id":1759,"_type":35,"title":1754,"_source":37,"_file":1760,"_stem":1761,"_extension":40},"/en-us/blog/authors/charlie-ablett",{"name":1754,"config":1755},"Charlie Ablett",{"headshot":1756,"ctfId":1757},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670131/Blog/Author%20Headshots/cablett-headshot.png","cablett",{"template":696},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1763,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1764,"config":1768,"_id":1769,"_type":35,"title":1765,"_source":37,"_file":1770,"_stem":1771,"_extension":40},"/en-us/blog/authors/charvi-mendiratta",{"name":1765,"config":1766},"Charvi Mendiratta",{"headshot":727,"ctfId":1767},"YV7WvnjPWFS3JhXmSYJLk",{"template":696},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1773,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1774,"config":1779,"_id":1780,"_type":35,"title":1775,"_source":37,"_file":1781,"_stem":1782,"_extension":40},"/en-us/blog/authors/cherry-han",{"name":1775,"config":1776},"Cherry Han",{"headshot":1777,"ctfId":1778},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ehktvdbix2o1t0mmcvll.png","6gkuhRkgzCNP1Ee6J14yLu",{"template":696},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1784,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1785,"config":1789,"_id":1791,"_type":35,"title":1786,"_source":37,"_file":1792,"_stem":1793,"_extension":40},"/en-us/blog/authors/chloe-cartron",{"name":1786,"config":1787},"Chloe Cartron",{"headshot":1788},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":696,"gitlabHandle":1790},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1795,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1796,"config":1801,"_id":1802,"_type":35,"title":1797,"_source":37,"_file":1803,"_stem":1804,"_extension":40},"/en-us/blog/authors/chloe-whitestone",{"name":1797,"config":1798},"Chloe Whitestone",{"headshot":1799,"ctfId":1800},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678693/Blog/Author%20Headshots/chloe-headshot.jpg","chloe",{"template":696},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1806,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1807,"config":1812,"_id":1813,"_type":35,"title":1808,"_source":37,"_file":1814,"_stem":1815,"_extension":40},"/en-us/blog/authors/chris-balane",{"name":1808,"config":1809},"Chris Balane",{"headshot":1810,"ctfId":1811},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667630/Blog/Author%20Headshots/chris_balane_headshot.png","40SOCfTl3frynjL3dbg63o",{"template":696},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1817,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1818,"config":1822,"_id":1823,"_type":35,"title":1819,"_source":37,"_file":1824,"_stem":1825,"_extension":40},"/en-us/blog/authors/chris-baus",{"name":1819,"config":1820},"Chris Baus",{"headshot":7,"ctfId":1821},"chrisbaus",{"template":696},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1827,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1828,"config":1833,"_id":1834,"_type":35,"title":1829,"_source":37,"_file":1835,"_stem":1836,"_extension":40},"/en-us/blog/authors/chris-micek",{"name":1829,"config":1830},"Chris Micek",{"headshot":1831,"ctfId":1832},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666144/Blog/Author%20Headshots/chris_micek_headshot.png","62ZsvfXlttQEQ1tnikgoq9",{"template":696},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1838,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1839,"config":1844,"_id":1845,"_type":35,"title":1840,"_source":37,"_file":1846,"_stem":1847,"_extension":40},"/en-us/blog/authors/chris-moberly",{"name":1840,"config":1841},"Chris Moberly",{"headshot":1842,"ctfId":1843},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664235/Blog/Author%20Headshots/cmoberly-headshot.jpg","cmoberly",{"template":696},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1849,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1850,"config":1854,"_id":1855,"_type":35,"title":1856,"_source":37,"_file":1857,"_stem":1858,"_extension":40},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1851,"config":1852},"Chris Sterry, Dotscience",{"headshot":727,"ctfId":1853},"Chris-Sterry-Dotscience",{"template":696},"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":1860,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1861,"config":1865,"_id":1866,"_type":35,"title":1862,"_source":37,"_file":1867,"_stem":1868,"_extension":40},"/en-us/blog/authors/chris-ward",{"name":1862,"config":1863},"Chris Ward",{"headshot":7,"ctfId":1864},"chrischinchilla",{"template":696},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1870,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1871,"config":1878,"_id":1879,"_type":35,"title":1873,"_source":37,"_file":1880,"_stem":1881,"_extension":40},"/en-us/blog/authors/chris-weber",{"role":1872,"name":1873,"config":1874},"CRO ","Chris Weber",{"headshot":1875,"linkedin":1876,"ctfId":1877},"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":696},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1883,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1884,"config":1888,"_id":1889,"_type":35,"title":1885,"_source":37,"_file":1890,"_stem":1891,"_extension":40},"/en-us/blog/authors/chrissie-buchanan",{"name":1885,"config":1886},"Chrissie Buchanan",{"headshot":727,"ctfId":1887},"cbuchanan",{"template":696},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1893,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1894,"config":1899,"_id":1900,"_type":35,"title":1895,"_source":37,"_file":1901,"_stem":1902,"_extension":40},"/en-us/blog/authors/christen-dybenko",{"name":1895,"config":1896},"Christen Dybenko",{"headshot":1897,"ctfId":1898},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668811/Blog/Author%20Headshots/cdybenko-headshot.jpg","cdybenko",{"template":696},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1904,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1905,"config":1910,"_id":1911,"_type":35,"title":1906,"_source":37,"_file":1912,"_stem":1913,"_extension":40},"/en-us/blog/authors/christian-couder",{"name":1906,"config":1907},"Christian Couder",{"headshot":1908,"ctfId":1909},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool",{"template":696},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1915,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1916,"config":1921,"_id":1922,"_type":35,"title":1917,"_source":37,"_file":1923,"_stem":1924,"_extension":40},"/en-us/blog/authors/christian-nnachi",{"name":1917,"config":1918},"Christian Nnachi",{"headshot":1919,"ctfId":1920},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665343/Blog/Author%20Headshots/christian_nnachi_headshot.png","6pE7HjtzzpRhBFVdwTFjEX",{"template":696},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1926,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1927,"config":1931,"_id":1932,"_type":35,"title":1928,"_source":37,"_file":1933,"_stem":1934,"_extension":40},"/en-us/blog/authors/christian-simko",{"name":1928,"config":1929},"Christian Simko",{"headshot":7,"ctfId":1930},"csimko",{"template":696},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1936,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1937,"config":1942,"_id":1943,"_type":35,"title":1938,"_source":37,"_file":1944,"_stem":1945,"_extension":40},"/en-us/blog/authors/christie-lenneville",{"name":1938,"config":1939},"Christie Lenneville",{"headshot":1940,"ctfId":1941},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670047/Blog/Author%20Headshots/clenneville-headshot.jpg","clenneville",{"template":696},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1947,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1948,"config":1952,"_id":1953,"_type":35,"title":1954,"_source":37,"_file":1955,"_stem":1956,"_extension":40},"/en-us/blog/authors/christina-hupy-phd",{"name":1949,"config":1950},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1951},"chupy",{"template":696},"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":1958,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1959,"config":1964,"_id":1965,"_type":35,"title":1960,"_source":37,"_file":1966,"_stem":1967,"_extension":40},"/en-us/blog/authors/christina-lohr",{"name":1960,"config":1961},"Christina Lohr",{"headshot":1962,"ctfId":1963},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662499/Blog/Author%20Headshots/lohrc-headshot.jpg","lohrc",{"template":696},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":1969,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1970,"config":1974,"_id":1975,"_type":35,"title":1971,"_source":37,"_file":1976,"_stem":1977,"_extension":40},"/en-us/blog/authors/christine-yoshida",{"name":1971,"config":1972},"Christine Yoshida",{"headshot":7,"ctfId":1973},"cyoshida",{"template":696},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":1979,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1980,"config":1984,"_id":1985,"_type":35,"title":1981,"_source":37,"_file":1986,"_stem":1987,"_extension":40},"/en-us/blog/authors/christopher-watson",{"name":1981,"config":1982},"Christopher Watson",{"headshot":727,"ctfId":1983},"Christopher-Watson",{"template":696},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":1989,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":1990,"config":1994,"_id":1995,"_type":35,"title":1991,"_source":37,"_file":1996,"_stem":1997,"_extension":40},"/en-us/blog/authors/christos-bacharakis",{"name":1991,"config":1992},"Christos Bacharakis",{"headshot":727,"ctfId":1993},"Christos-Bacharakis",{"template":696},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":1999,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2000,"config":2004,"_id":2005,"_type":35,"title":2001,"_source":37,"_file":2006,"_stem":2007,"_extension":40},"/en-us/blog/authors/cindy-blake",{"name":2001,"config":2002},"Cindy Blake",{"headshot":727,"ctfId":2003},"cblake",{"template":696},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":2009,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2010,"config":2015,"_id":2016,"_type":35,"title":2011,"_source":37,"_file":2017,"_stem":2018,"_extension":40},"/en-us/blog/authors/claire-champernowne",{"name":2011,"config":2012},"Claire Champernowne",{"headshot":2013,"ctfId":2014},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ",{"template":696},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2020,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2021,"config":2025,"_id":2026,"_type":35,"title":2022,"_source":37,"_file":2027,"_stem":2028,"_extension":40},"/en-us/blog/authors/clement-ho",{"name":2022,"config":2023},"Clement Ho",{"headshot":7,"ctfId":2024},"ClemMakesApps",{"template":696},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2030,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2031,"config":2035,"_id":2036,"_type":35,"title":2032,"_source":37,"_file":2037,"_stem":2038,"_extension":40},"/en-us/blog/authors/colin-fletcher",{"name":2032,"config":2033},"Colin Fletcher",{"headshot":7,"ctfId":2034},"cfletcher1",{"template":696},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2040,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2041,"config":2046,"_id":2047,"_type":35,"title":2042,"_source":37,"_file":2048,"_stem":2049,"_extension":40},"/en-us/blog/authors/connor-gilbert",{"name":2042,"config":2043},"Connor Gilbert",{"headshot":2044,"ctfId":2045},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665913/Blog/Author%20Headshots/connorgilbert-headshot.jpg","connorgilbert",{"template":696},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2051,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2052,"config":2056,"_id":2057,"_type":35,"title":2053,"_source":37,"_file":2058,"_stem":2059,"_extension":40},"/en-us/blog/authors/connor-shea",{"name":2053,"config":2054},"Connor Shea",{"headshot":727,"ctfId":2055},"Connor-Shea",{"template":696},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2061,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2062,"config":2067,"_id":2068,"_type":35,"title":2063,"_source":37,"_file":2069,"_stem":2070,"_extension":40},"/en-us/blog/authors/corey-oas",{"name":2063,"config":2064},"Corey Oas",{"headshot":2065,"ctfId":2066},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667633/Blog/Author%20Headshots/corey_oas_headshot.png","1Dd1lJ4aKCv36YWdlUhlPf",{"template":696},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2072,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2073,"config":2077,"_id":2078,"_type":35,"title":2074,"_source":37,"_file":2079,"_stem":2080,"_extension":40},"/en-us/blog/authors/cormac-foster",{"name":2074,"config":2075},"Cormac Foster",{"headshot":7,"ctfId":2076},"cfoster3",{"template":696},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2082,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2083,"config":2088,"_id":2089,"_type":35,"title":2084,"_source":37,"_file":2090,"_stem":2091,"_extension":40},"/en-us/blog/authors/costel-maxim",{"name":2084,"config":2085},"Costel Maxim",{"headshot":2086,"ctfId":2087},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663173/Blog/Author%20Headshots/costel_maxim_headshot.png","3QzzrMksaRD9ZPytt0SPPL",{"template":696},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2093,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2094,"config":2099,"_id":2100,"_type":35,"title":2095,"_source":37,"_file":2101,"_stem":2102,"_extension":40},"/en-us/blog/authors/courtney-meddaugh",{"name":2095,"config":2096},"Courtney Meddaugh",{"headshot":2097,"ctfId":2098},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665168/Blog/Author%20Headshots/courtney_meddaugh_headshot.png","5avtK3YS9MrDBkaOnB9ZmG",{"template":696},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2104,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2105,"config":2109,"_id":2110,"_type":35,"title":2106,"_source":37,"_file":2111,"_stem":2112,"_extension":40},"/en-us/blog/authors/craig-gomes",{"name":2106,"config":2107},"Craig Gomes",{"headshot":7,"ctfId":2108},"craiggomes",{"template":696},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2114,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2115,"config":2120,"_id":2121,"_type":35,"title":2116,"_source":37,"_file":2122,"_stem":2123,"_extension":40},"/en-us/blog/authors/craig-miskell",{"name":2116,"config":2117},"Craig Miskell",{"headshot":2118,"ctfId":2119},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667372/Blog/Author%20Headshots/cmiskell-headshot.jpg","cmiskell",{"template":696},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2125,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2126,"config":2130,"_id":2131,"_type":35,"title":2127,"_source":37,"_file":2132,"_stem":2133,"_extension":40},"/en-us/blog/authors/creighton-swank",{"name":2127,"config":2128},"Creighton Swank",{"headshot":727,"ctfId":2129},"5uf3k9lutpbelxJQ373eWu",{"template":696},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2135,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2136,"config":2140,"_id":2141,"_type":35,"title":2137,"_source":37,"_file":2142,"_stem":2143,"_extension":40},"/en-us/blog/authors/daisy-miclat",{"name":2137,"config":2138},"Daisy Miclat",{"headshot":727,"ctfId":2139},"IU4zOKoPhWS7hok7qsy7w",{"template":696},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2145,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2146,"config":2150,"_id":2151,"_type":35,"title":2147,"_source":37,"_file":2152,"_stem":2153,"_extension":40},"/en-us/blog/authors/dan-luhring",{"name":2147,"config":2148},"Dan Luhring",{"headshot":7,"ctfId":2149},"danluhring",{"template":696},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2155,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2156,"config":2161,"_id":2162,"_type":35,"title":2157,"_source":37,"_file":2163,"_stem":2164,"_extension":40},"/en-us/blog/authors/dan-rabinovitz",{"name":2157,"config":2158},"Dan Rabinovitz",{"headshot":2159,"ctfId":2160},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664796/Blog/Author%20Headshots/dan_rabinovitz_headshot.png","31AXb267jy94budCWQZQyr",{"template":696},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2166,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2167,"config":2171,"_id":2172,"_type":35,"title":2168,"_source":37,"_file":2173,"_stem":2174,"_extension":40},"/en-us/blog/authors/daniel-berman",{"name":2168,"config":2169},"Daniel Berman",{"headshot":727,"ctfId":2170},"Daniel-Berman",{"template":696},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2176,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2177,"config":2181,"_id":2182,"_type":35,"title":2178,"_source":37,"_file":2183,"_stem":2184,"_extension":40},"/en-us/blog/authors/daniel-gruesso",{"name":2178,"config":2179},"Daniel Gruesso",{"headshot":7,"ctfId":2180},"danielgruesso",{"template":696},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2186,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2187,"config":2192,"_id":2193,"_type":35,"title":2188,"_source":37,"_file":2194,"_stem":2195,"_extension":40},"/en-us/blog/authors/daniel-hauenstein",{"name":2188,"config":2189},"Daniel Hauenstein",{"headshot":2190,"ctfId":2191},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662434/Blog/Author%20Headshots/daniel_hauenstein_headshot.png","2gXGuSmuvZSxv0iCn4sinV",{"template":696},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2197,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2198,"config":2203,"_id":2204,"_type":35,"title":2199,"_source":37,"_file":2205,"_stem":2206,"_extension":40},"/en-us/blog/authors/daniel-helfand",{"name":2199,"config":2200},"Daniel Helfand",{"headshot":2201,"ctfId":2202},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662418/Blog/Author%20Headshots/dhelfand.png","b9sRP0HJhdPsOEruWUfih",{"template":696},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2208,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2209,"config":2213,"_id":2214,"_type":35,"title":2210,"_source":37,"_file":2215,"_stem":2216,"_extension":40},"/en-us/blog/authors/daniel-mora",{"name":2210,"config":2211},"Daniel Mora",{"headshot":7,"ctfId":2212},"dmoraberlin",{"template":696},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2218,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2219,"config":2223,"_id":2225,"_type":35,"title":2220,"_source":37,"_file":2226,"_stem":2227,"_extension":40},"/en-us/blog/authors/daniel-murphy",{"name":2220,"config":2221},"Daniel Murphy",{"headshot":2222},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":696,"gitlabHandle":2224},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2229,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2230,"config":2235,"_id":2236,"_type":35,"title":2231,"_source":37,"_file":2237,"_stem":2238,"_extension":40},"/en-us/blog/authors/darby-frey",{"name":2231,"config":2232},"Darby Frey",{"headshot":2233,"ctfId":2234},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey",{"template":696},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2240,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2241,"config":2246,"_id":2247,"_type":35,"title":2242,"_source":37,"_file":2248,"_stem":2249,"_extension":40},"/en-us/blog/authors/darren-eastman",{"name":2242,"config":2243},"Darren Eastman",{"headshot":2244,"ctfId":2245},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman",{"template":696},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2251,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2252,"config":2256,"_id":2257,"_type":35,"title":2253,"_source":37,"_file":2258,"_stem":2259,"_extension":40},"/en-us/blog/authors/darren-murph",{"name":2253,"config":2254},"Darren Murph",{"headshot":7,"ctfId":2255},"dmurph",{"template":696},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2261,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2262,"config":2269,"_id":2270,"_type":35,"title":2264,"_source":37,"_file":2271,"_stem":2272,"_extension":40},"/en-us/blog/authors/darwin-sanoy",{"role":2263,"name":2264,"config":2265},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2266,"linkedin":2267,"ctfId":2268},"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":696},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2274,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2275,"config":2280,"_id":2281,"_type":35,"title":2276,"_source":37,"_file":2282,"_stem":2283,"_extension":40},"/en-us/blog/authors/dave-steer",{"name":2276,"config":2277},"Dave Steer",{"headshot":2278,"ctfId":2279},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658895/Blog/Author%20Headshots/dsteer-headshot.jpg","dsteer",{"template":696},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2285,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2286,"config":2290,"_id":2291,"_type":35,"title":2287,"_source":37,"_file":2292,"_stem":2293,"_extension":40},"/en-us/blog/authors/dave-wentzel",{"name":2287,"config":2288},"Dave Wentzel",{"headshot":727,"ctfId":2289},"Dave-Wentzel",{"template":696},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2295,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2296,"config":2301,"_id":2302,"_type":35,"title":2303,"_source":37,"_file":2304,"_stem":2305,"_extension":40},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2297,"config":2298},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2299,"ctfId":2300},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660185/Blog/Author%20Headshots/david-headshot.jpg","david",{"template":696},"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":2307,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2308,"config":2313,"_id":2314,"_type":35,"title":2315,"_source":37,"_file":2316,"_stem":2317,"_extension":40},"/en-us/blog/authors/david-oregan",{"name":2309,"config":2310},"David O'Regan",{"headshot":2311,"ctfId":2312},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659853/Blog/Author%20Headshots/oregand-headshot.png","oregand",{"template":696},"content:en-us:blog:authors:david-oregan.yml","David Oregan","en-us/blog/authors/david-oregan.yml","en-us/blog/authors/david-oregan",{"_path":2319,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2320,"config":2324,"_id":2325,"_type":35,"title":2321,"_source":37,"_file":2326,"_stem":2327,"_extension":40},"/en-us/blog/authors/david-planella",{"name":2321,"config":2322},"David Planella",{"headshot":727,"ctfId":2323},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":696},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2329,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2330,"config":2334,"_id":2335,"_type":35,"title":2331,"_source":37,"_file":2336,"_stem":2337,"_extension":40},"/en-us/blog/authors/david-russell",{"name":2331,"config":2332},"David Russell",{"headshot":727,"ctfId":2333},"David-Russell",{"template":696},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2339,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2340,"config":2345,"_id":2346,"_type":35,"title":2341,"_source":37,"_file":2347,"_stem":2348,"_extension":40},"/en-us/blog/authors/david-smith",{"name":2341,"config":2342},"David Smith",{"headshot":2343,"ctfId":2344},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671135/Blog/Author%20Headshots/dawsmith-headshot.jpg","dawsmith",{"template":696},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2350,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2351,"config":2355,"_id":2356,"_type":35,"title":2352,"_source":37,"_file":2357,"_stem":2358,"_extension":40},"/en-us/blog/authors/davis-townsend",{"name":2352,"config":2353},"Davis Townsend",{"headshot":7,"ctfId":2354},"davistownsend",{"template":696},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2360,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2361,"config":2365,"_id":2367,"_type":35,"title":2362,"_source":37,"_file":2368,"_stem":2369,"_extension":40},"/en-us/blog/authors/davoud-tu",{"name":2362,"config":2363},"Davoud Tu",{"headshot":2364},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":696,"gitlabHandle":2366},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2371,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2372,"config":2377,"_id":2378,"_type":35,"title":2379,"_source":37,"_file":2380,"_stem":2381,"_extension":40},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2373,"config":2374},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2375,"ctfId":2376},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671963/Blog/Author%20Headshots/Dean_Photo__1_.jpg","6wQ0QwFZdbzAtYGZgnALkw",{"template":696},"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":2383,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2384,"config":2389,"_id":2390,"_type":35,"title":2385,"_source":37,"_file":2391,"_stem":2392,"_extension":40},"/en-us/blog/authors/deepa-mahalingam",{"name":2385,"config":2386},"Deepa Mahalingam",{"headshot":2387,"ctfId":2388},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662019/Blog/Author%20Headshots/deepa-headshot.jpg","M54z9AWDuU7L9nBR9gRF4",{"template":696},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2394,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2395,"config":2400,"_id":2401,"_type":35,"title":2396,"_source":37,"_file":2402,"_stem":2403,"_extension":40},"/en-us/blog/authors/dennis-appelt",{"name":2396,"config":2397},"Dennis Appelt",{"headshot":2398,"ctfId":2399},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt",{"template":696},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2405,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2406,"config":2411,"_id":2412,"_type":35,"title":2407,"_source":37,"_file":2413,"_stem":2414,"_extension":40},"/en-us/blog/authors/dennis-tang",{"name":2407,"config":2408},"Dennis Tang",{"headshot":2409,"ctfId":2410},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672189/Blog/Author%20Headshots/dennis-headshot.jpg","dennis",{"template":696},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2416,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2417,"config":2421,"_id":2423,"_type":35,"title":2424,"_source":37,"_file":2425,"_stem":2426,"_extension":40},"/en-us/blog/authors/dennis-van-rooijen",{"name":2418,"config":2419},"Dennis van Rooijen",{"headshot":2420},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":696,"gitlabHandle":2422},"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":2428,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2429,"config":2434,"_id":2435,"_type":35,"title":2430,"_source":37,"_file":2436,"_stem":2437,"_extension":40},"/en-us/blog/authors/devin-sylva",{"name":2430,"config":2431},"Devin Sylva",{"headshot":2432,"ctfId":2433},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679087/Blog/Author%20Headshots/devin-headshot.jpg","devin",{"template":696},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2439,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2440,"config":2444,"_id":2445,"_type":35,"title":2441,"_source":37,"_file":2446,"_stem":2447,"_extension":40},"/en-us/blog/authors/dhruv-jain",{"name":2441,"config":2442},"Dhruv Jain",{"headshot":727,"ctfId":2443},"2wyibk9HBKn6PjgaEuzXuZ",{"template":696},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2449,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2450,"config":2454,"_id":2455,"_type":35,"title":2451,"_source":37,"_file":2456,"_stem":2457,"_extension":40},"/en-us/blog/authors/diana-logan",{"name":2451,"config":2452},"Diana Logan",{"headshot":727,"ctfId":2453},"6poIwhQe6W9ysm5rBuSPXX",{"template":696},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2459,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2460,"config":2465,"_id":2466,"_type":35,"title":2461,"_source":37,"_file":2467,"_stem":2468,"_extension":40},"/en-us/blog/authors/dilan-orrino",{"name":2461,"config":2462},"Dilan Orrino",{"headshot":2463,"ctfId":2464},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666180/Blog/Author%20Headshots/dorrino-headshot.png","dorrino",{"template":696},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2470,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2471,"config":2475,"_id":2476,"_type":35,"title":2472,"_source":37,"_file":2477,"_stem":2478,"_extension":40},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2472,"config":2473},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2474},"dimitrieh",{"template":696},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2480,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2481,"config":2485,"_id":2486,"_type":35,"title":2482,"_source":37,"_file":2487,"_stem":2488,"_extension":40},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2482,"config":2483},"Dinesh Bolkensteyn",{"headshot":727,"ctfId":2484},"EpylYWgjPmFOL5NX3Zxmk",{"template":696},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2490,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2491,"config":2495,"_id":2496,"_type":35,"title":2497,"_source":37,"_file":2498,"_stem":2499,"_extension":40},"/en-us/blog/authors/dj-mountney",{"name":2492,"config":2493},"DJ Mountney",{"headshot":727,"ctfId":2494},"DJ-Mountney",{"template":696},"content:en-us:blog:authors:dj-mountney.yml","Dj Mountney","en-us/blog/authors/dj-mountney.yml","en-us/blog/authors/dj-mountney",{"_path":2501,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2502,"config":2506,"_id":2507,"_type":35,"title":2508,"_source":37,"_file":2509,"_stem":2510,"_extension":40},"/en-us/blog/authors/dmitriy-job",{"name":2503,"config":2504},"Dmitriy, Job",{"headshot":727,"ctfId":2505},"Dmitriy-Job",{"template":696},"content:en-us:blog:authors:dmitriy-job.yml","Dmitriy Job","en-us/blog/authors/dmitriy-job.yml","en-us/blog/authors/dmitriy-job",{"_path":2512,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2513,"config":2517,"_id":2518,"_type":35,"title":2514,"_source":37,"_file":2519,"_stem":2520,"_extension":40},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2514,"config":2515},"Dmitriy Zaporozhets",{"headshot":727,"ctfId":2516},"Dmitriy-Zaporozhets",{"template":696},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2522,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2523,"config":2528,"_id":2529,"_type":35,"title":2524,"_source":37,"_file":2530,"_stem":2531,"_extension":40},"/en-us/blog/authors/dmitry-gruzd",{"name":2524,"config":2525},"Dmitry Gruzd",{"headshot":2526,"ctfId":2527},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682014/Blog/Author%20Headshots/dgruzd-headshot.jpg","dgruzd",{"template":696},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2533,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2534,"config":2539,"_id":2540,"_type":35,"title":2535,"_source":37,"_file":2541,"_stem":2542,"_extension":40},"/en-us/blog/authors/dominic-couture",{"name":2535,"config":2536},"Dominic Couture",{"headshot":2537,"ctfId":2538},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683783/Blog/Author%20Headshots/dominic.png","3K2DmuMWV5isBeVtKsplia",{"template":696},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2544,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2545,"config":2549,"_id":2550,"_type":35,"title":2546,"_source":37,"_file":2551,"_stem":2552,"_extension":40},"/en-us/blog/authors/douglas-alexandre",{"name":2546,"config":2547},"Douglas Alexandre",{"headshot":727,"ctfId":2548},"Douglas-Alexandre",{"template":696},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2554,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2555,"config":2559,"_id":2560,"_type":35,"title":2556,"_source":37,"_file":2561,"_stem":2562,"_extension":40},"/en-us/blog/authors/douwe-maan",{"name":2556,"config":2557},"Douwe Maan",{"headshot":7,"ctfId":2558},"DouweM",{"template":696},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2564,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2565,"config":2570,"_id":2571,"_type":35,"title":2566,"_source":37,"_file":2572,"_stem":2573,"_extension":40},"/en-us/blog/authors/dov-hershkovitch",{"name":2566,"config":2567},"Dov Hershkovitch",{"headshot":2568,"ctfId":2569},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665628/Blog/Author%20Headshots/dhershkovitch-headshot.png","dhershkovitch",{"template":696},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2575,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2576,"config":2580,"_id":2581,"_type":35,"title":2582,"_source":37,"_file":2583,"_stem":2584,"_extension":40},"/en-us/blog/authors/dr-elle-obrien",{"name":2577,"config":2578},"Dr. Elle O'Brien",{"headshot":727,"ctfId":2579},"Dr-Elle-OBrien",{"template":696},"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":2586,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2587,"config":2591,"_id":2592,"_type":35,"title":2588,"_source":37,"_file":2593,"_stem":2594,"_extension":40},"/en-us/blog/authors/drew-blessing",{"name":2588,"config":2589},"Drew Blessing",{"headshot":727,"ctfId":2590},"Drew-Blessing",{"template":696},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2596,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2597,"config":2602,"_id":2603,"_type":35,"title":2598,"_source":37,"_file":2604,"_stem":2605,"_extension":40},"/en-us/blog/authors/dylan-griffith",{"name":2598,"config":2599},"Dylan Griffith",{"headshot":2600,"ctfId":2601},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672822/Blog/Author%20Headshots/DylanGriffith-headshot.jpg","DylanGriffith",{"template":696},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2607,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2608,"config":2612,"_id":2613,"_type":35,"title":2609,"_source":37,"_file":2614,"_stem":2615,"_extension":40},"/en-us/blog/authors/eddie-glenn",{"name":2609,"config":2610},"Eddie Glenn",{"headshot":7,"ctfId":2611},"eglenn",{"template":696},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2617,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2618,"config":2623,"_id":2624,"_type":35,"title":2619,"_source":37,"_file":2625,"_stem":2626,"_extension":40},"/en-us/blog/authors/eduardo-bonet",{"name":2619,"config":2620},"Eduardo Bonet",{"headshot":2621,"ctfId":2622},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682722/Blog/Author%20Headshots/eduardobonet-headshot.jpg","eduardobonet",{"template":696},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2628,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2629,"config":2634,"_id":2635,"_type":35,"title":2630,"_source":37,"_file":2636,"_stem":2637,"_extension":40},"/en-us/blog/authors/eliran-mesika",{"name":2630,"config":2631},"Eliran Mesika",{"headshot":2632,"ctfId":2633},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670111/Blog/Author%20Headshots/eliran.jpg","eliranmesika",{"template":696},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2639,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2640,"config":2645,"_id":2646,"_type":35,"title":2641,"_source":37,"_file":2647,"_stem":2648,"_extension":40},"/en-us/blog/authors/elisabeth-burrows",{"name":2641,"config":2642},"Elisabeth Burrows",{"headshot":2643,"ctfId":2644},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659535/Blog/Author%20Headshots/liz_burrows_headshot.png","6Nj2Lio5W7HdeNYoysVgCf",{"template":696},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2650,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2651,"config":2655,"_id":2656,"_type":35,"title":2652,"_source":37,"_file":2657,"_stem":2658,"_extension":40},"/en-us/blog/authors/elliot-rushton",{"name":2652,"config":2653},"Elliot Rushton",{"headshot":7,"ctfId":2654},"erushton",{"template":696},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2660,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2661,"config":2665,"_id":2666,"_type":35,"title":2662,"_source":37,"_file":2667,"_stem":2668,"_extension":40},"/en-us/blog/authors/emilie-schario",{"name":2662,"config":2663},"Emilie Schario",{"headshot":7,"ctfId":2664},"emilie",{"template":696},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2670,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2671,"config":2676,"_id":2677,"_type":35,"title":2672,"_source":37,"_file":2678,"_stem":2679,"_extension":40},"/en-us/blog/authors/emilio-salvador",{"name":2672,"config":2673},"Emilio Salvador",{"headshot":2674,"ctfId":2675},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660161/Blog/Author%20Headshots/esalvadorp-headshot.png","esalvadorp",{"template":696},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2681,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2682,"config":2687,"_id":2688,"_type":35,"title":2683,"_source":37,"_file":2689,"_stem":2690,"_extension":40},"/en-us/blog/authors/emily-bauman",{"name":2683,"config":2684},"Emily Bauman",{"headshot":2685,"ctfId":2686},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664145/Blog/Author%20Headshots/emilybauman-headshot.jpg","emilybauman",{"template":696},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2692,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2693,"config":2697,"_id":2698,"_type":35,"title":2694,"_source":37,"_file":2699,"_stem":2700,"_extension":40},"/en-us/blog/authors/emily-chin",{"name":2694,"config":2695},"Emily Chin",{"headshot":7,"ctfId":2696},"echin",{"template":696},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2702,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2703,"config":2707,"_id":2708,"_type":35,"title":2704,"_source":37,"_file":2709,"_stem":2710,"_extension":40},"/en-us/blog/authors/emily-kyle",{"name":2704,"config":2705},"Emily Kyle",{"headshot":727,"ctfId":2706},"Emily-Kyle",{"template":696},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2712,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2713,"config":2717,"_id":2718,"_type":35,"title":2719,"_source":37,"_file":2720,"_stem":2721,"_extension":40},"/en-us/blog/authors/emily-von-hoffmann",{"name":2714,"config":2715},"Emily von Hoffmann",{"headshot":727,"ctfId":2716},"evhoffmann",{"template":696},"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":2723,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2724,"config":2729,"_id":2730,"_type":35,"title":2731,"_source":37,"_file":2732,"_stem":2733,"_extension":40},"/en-us/blog/authors/enrique-alcntara",{"name":2725,"config":2726},"Enrique Alcántara",{"headshot":2727,"ctfId":2728},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669746/Blog/Author%20Headshots/ealcantara-headshot.jpg","3E3c30ZWRUTq6rlFiYrjtq",{"template":696},"content:en-us:blog:authors:enrique-alcntara.yml","Enrique Alcntara","en-us/blog/authors/enrique-alcntara.yml","en-us/blog/authors/enrique-alcntara",{"_path":2735,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2736,"config":2740,"_id":2741,"_type":35,"title":2737,"_source":37,"_file":2742,"_stem":2743,"_extension":40},"/en-us/blog/authors/eric-brinkman",{"name":2737,"config":2738},"Eric Brinkman",{"headshot":7,"ctfId":2739},"ebrinkman",{"template":696},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2745,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2746,"config":2750,"_id":2751,"_type":35,"title":2747,"_source":37,"_file":2752,"_stem":2753,"_extension":40},"/en-us/blog/authors/eric-eastwood",{"name":2747,"config":2748},"Eric Eastwood",{"headshot":7,"ctfId":2749},"MadLittleMods",{"template":696},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2755,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2756,"config":2760,"_id":2761,"_type":35,"title":2757,"_source":37,"_file":2762,"_stem":2763,"_extension":40},"/en-us/blog/authors/eric-rosenberg",{"name":2757,"config":2758},"Eric Rosenberg",{"headshot":7,"ctfId":2759},"ericrosenberg88",{"template":696},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2765,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2766,"config":2771,"_id":2772,"_type":35,"title":2767,"_source":37,"_file":2773,"_stem":2774,"_extension":40},"/en-us/blog/authors/eric-rubin",{"name":2767,"config":2768},"Eric Rubin",{"headshot":2769,"ctfId":2770},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682494/Blog/Author%20Headshots/ericrubin-headshot.png","ericrubin",{"template":696},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2776,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2777,"config":2782,"_id":2783,"_type":35,"title":2778,"_source":37,"_file":2784,"_stem":2785,"_extension":40},"/en-us/blog/authors/eric-schurter",{"name":2778,"config":2779},"Eric Schurter",{"headshot":2780,"ctfId":2781},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679281/Blog/Author%20Headshots/ericschurter-headshot.jpg","ericschurter",{"template":696},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2787,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2788,"config":2792,"_id":2793,"_type":35,"title":2789,"_source":37,"_file":2794,"_stem":2795,"_extension":40},"/en-us/blog/authors/erica-huang",{"name":2789,"config":2790},"Erica Huang",{"headshot":7,"ctfId":2791},"exhuang",{"template":696},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2797,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2798,"config":2802,"_id":2803,"_type":35,"title":2799,"_source":37,"_file":2804,"_stem":2805,"_extension":40},"/en-us/blog/authors/erica-lindberg",{"name":2799,"config":2800},"Erica Lindberg",{"headshot":727,"ctfId":2801},"Erica-Lindberg",{"template":696},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2807,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2808,"config":2812,"_id":2813,"_type":35,"title":2809,"_source":37,"_file":2814,"_stem":2815,"_extension":40},"/en-us/blog/authors/erich-wegscheider",{"name":2809,"config":2810},"Erich Wegscheider",{"headshot":7,"ctfId":2811},"ewegscheider",{"template":696},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2817,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2818,"config":2822,"_id":2823,"_type":35,"title":2819,"_source":37,"_file":2824,"_stem":2825,"_extension":40},"/en-us/blog/authors/erick-banks",{"name":2819,"config":2820},"Erick Banks",{"headshot":727,"ctfId":2821},"4CGXhAxudTq69aZOtPnLfu",{"template":696},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2827,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2828,"config":2832,"_id":2833,"_type":35,"title":2829,"_source":37,"_file":2834,"_stem":2835,"_extension":40},"/en-us/blog/authors/erika-feldman",{"name":2829,"config":2830},"Erika Feldman",{"headshot":727,"ctfId":2831},"78oCat8vvbl6mzXsLawd9d",{"template":696},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2837,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2838,"config":2842,"_id":2843,"_type":35,"title":2844,"_source":37,"_file":2845,"_stem":2846,"_extension":40},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2839,"config":2840},"Erin Krengel, Pulumi",{"headshot":727,"ctfId":2841},"Erin-Krengel-Pulumi",{"template":696},"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":2848,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2849,"config":2853,"_id":2854,"_type":35,"title":2855,"_source":37,"_file":2856,"_stem":2857,"_extension":40},"/en-us/blog/authors/ernst-van-nierop",{"name":2850,"config":2851},"Ernst van Nierop",{"headshot":7,"ctfId":2852},"ernstvn",{"template":696},"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":2859,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2860,"config":2864,"_id":2865,"_type":35,"title":2861,"_source":37,"_file":2866,"_stem":2867,"_extension":40},"/en-us/blog/authors/esther-shein",{"name":2861,"config":2862},"Esther Shein",{"headshot":727,"ctfId":2863},"Esther-Shein",{"template":696},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2869,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2870,"config":2875,"_id":2876,"_type":35,"title":2871,"_source":37,"_file":2877,"_stem":2878,"_extension":40},"/en-us/blog/authors/ethan-strike",{"name":2871,"config":2872},"Ethan Strike",{"headshot":2873,"ctfId":2874},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679067/Blog/Author%20Headshots/estrike-headshot.png","estrike",{"template":696},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2880,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2881,"config":2885,"_id":2886,"_type":35,"title":2882,"_source":37,"_file":2887,"_stem":2888,"_extension":40},"/en-us/blog/authors/ethan-urie",{"name":2882,"config":2883},"Ethan Urie",{"headshot":727,"ctfId":2884},"mJhtQw4TY9ZRNF7dfitIF",{"template":696},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2890,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2891,"config":2895,"_id":2896,"_type":35,"title":2892,"_source":37,"_file":2897,"_stem":2898,"_extension":40},"/en-us/blog/authors/eugene-lim",{"name":2892,"config":2893},"Eugene Lim",{"headshot":727,"ctfId":2894},"6KHdIdghkUfSTzV2MzxNcj",{"template":696},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2900,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2901,"config":2905,"_id":2906,"_type":35,"title":2902,"_source":37,"_file":2907,"_stem":2908,"_extension":40},"/en-us/blog/authors/eugenia-hannon",{"name":2902,"config":2903},"Eugenia Hannon",{"headshot":7,"ctfId":2904},"eugeniah",{"template":696},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2910,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2911,"config":2915,"_id":2916,"_type":35,"title":2912,"_source":37,"_file":2917,"_stem":2918,"_extension":40},"/en-us/blog/authors/ev-kontsevoy",{"name":2912,"config":2913},"Ev Kontsevoy",{"headshot":7,"ctfId":2914},"ekontsevoy",{"template":696},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2920,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2921,"config":2925,"_id":2926,"_type":35,"title":2922,"_source":37,"_file":2927,"_stem":2928,"_extension":40},"/en-us/blog/authors/eva-sasson",{"name":2922,"config":2923},"Eva Sasson",{"headshot":727,"ctfId":2924},"Eva-Sasson",{"template":696},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2930,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2931,"config":2936,"_id":2937,"_type":35,"title":2932,"_source":37,"_file":2938,"_stem":2939,"_extension":40},"/en-us/blog/authors/fabian-zimmer",{"name":2932,"config":2933},"Fabian Zimmer",{"headshot":2934,"ctfId":2935},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/q6awwqbxtg0a4x9gtmhs.png","3TK88UogcX5lx83kWMVuvI",{"template":696},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2941,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2942,"config":2946,"_id":2947,"_type":35,"title":2943,"_source":37,"_file":2948,"_stem":2949,"_extension":40},"/en-us/blog/authors/fabio-akita",{"name":2943,"config":2944},"Fabio Akita",{"headshot":727,"ctfId":2945},"Fabio-Akita",{"template":696},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2951,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2952,"config":2956,"_id":2957,"_type":35,"title":2953,"_source":37,"_file":2958,"_stem":2959,"_extension":40},"/en-us/blog/authors/fabio-busatto",{"name":2953,"config":2954},"Fabio Busatto",{"headshot":7,"ctfId":2955},"bikebilly",{"template":696},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":2961,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2962,"config":2967,"_id":2968,"_type":35,"title":2963,"_source":37,"_file":2969,"_stem":2970,"_extension":40},"/en-us/blog/authors/fabio-pitino",{"name":2963,"config":2964},"Fabio Pitino",{"headshot":2965,"ctfId":2966},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659958/Blog/Author%20Headshots/fabiopitino-headshot.jpg","fabiopitino",{"template":696},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":2972,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2973,"config":2977,"_id":2978,"_type":35,"title":2974,"_source":37,"_file":2979,"_stem":2980,"_extension":40},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2974,"config":2975},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2976},"fseifoddini",{"template":696},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":2982,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2983,"config":2987,"_id":2988,"_type":35,"title":2984,"_source":37,"_file":2989,"_stem":2990,"_extension":40},"/en-us/blog/authors/fatih-acet",{"name":2984,"config":2985},"Fatih Acet",{"headshot":7,"ctfId":2986},"fatihacet",{"template":696},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":2992,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":2993,"config":2998,"_id":2999,"_type":35,"title":2994,"_source":37,"_file":3000,"_stem":3001,"_extension":40},"/en-us/blog/authors/fatima-sarah-khalid",{"name":2994,"config":2995},"Fatima Sarah Khalid",{"headshot":2996,"ctfId":2997},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663337/Blog/Author%20Headshots/sugaroverflow-headshot.jpg","sugaroverflow",{"template":696},"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":3003,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3004,"config":3009,"_id":3010,"_type":35,"title":3005,"_source":37,"_file":3011,"_stem":3012,"_extension":40},"/en-us/blog/authors/fernando-diaz",{"name":3005,"config":3006},"Fernando Diaz",{"headshot":3007,"ctfId":3008},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659556/Blog/Author%20Headshots/fern_diaz.png","fjdiaz",{"template":696},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3014,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3015,"config":3019,"_id":3020,"_type":35,"title":3016,"_source":37,"_file":3021,"_stem":3022,"_extension":40},"/en-us/blog/authors/filipa-lacerda",{"name":3016,"config":3017},"Filipa Lacerda",{"headshot":7,"ctfId":3018},"filipa",{"template":696},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3024,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3025,"config":3030,"_id":3031,"_type":35,"title":3032,"_source":37,"_file":3033,"_stem":3034,"_extension":40},"/en-us/blog/authors/flix-veillette-potvin",{"name":3026,"config":3027}," Félix Veillette-Potvin",{"headshot":3028,"ctfId":3029},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662606/Blog/Author%20Headshots/_F%C3%A9lix_Veillette-Potvin_headshot.png","3nkwcdE5K3Uw9nrovEngxW",{"template":696},"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":3036,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3037,"config":3041,"_id":3042,"_type":35,"title":3038,"_source":37,"_file":3043,"_stem":3044,"_extension":40},"/en-us/blog/authors/forrest-brazeal",{"name":3038,"config":3039},"Forrest Brazeal",{"headshot":7,"ctfId":3040},"fbrazeal",{"template":696},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3046,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3047,"config":3051,"_id":3052,"_type":35,"title":3048,"_source":37,"_file":3053,"_stem":3054,"_extension":40},"/en-us/blog/authors/francis-ofungwu",{"name":3048,"config":3049},"Francis Ofungwu",{"headshot":727,"ctfId":3050},"fofungwu",{"template":696},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3056,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3057,"config":3062,"_id":3063,"_type":35,"title":3064,"_source":37,"_file":3065,"_stem":3066,"_extension":40},"/en-us/blog/authors/frdric-caplette",{"name":3058,"config":3059},"Frédéric Caplette",{"headshot":3060,"ctfId":3061},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661878/Blog/Author%20Headshots/frederic_caplette_headshot.png","6nMRwNMwciKSX03zmbBbPF",{"template":696},"content:en-us:blog:authors:frdric-caplette.yml","Frdric Caplette","en-us/blog/authors/frdric-caplette.yml","en-us/blog/authors/frdric-caplette",{"_path":3068,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3069,"config":3074,"_id":3075,"_type":35,"title":3070,"_source":37,"_file":3076,"_stem":3077,"_extension":40},"/en-us/blog/authors/gabe-weaver",{"name":3070,"config":3071},"Gabe Weaver",{"headshot":3072,"ctfId":3073},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667605/Blog/Author%20Headshots/gweaver-headshot.jpg","gweaver",{"template":696},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3079,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3080,"config":3085,"_id":3086,"_type":35,"title":3081,"_source":37,"_file":3087,"_stem":3088,"_extension":40},"/en-us/blog/authors/gabriel-engel",{"name":3081,"config":3082},"Gabriel Engel",{"headshot":3083,"ctfId":3084},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664747/Blog/Author%20Headshots/gabrielengel_gl-headshot.jpg","gabrielengelgl",{"template":696},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3090,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3091,"config":3095,"_id":3096,"_type":35,"title":3092,"_source":37,"_file":3097,"_stem":3098,"_extension":40},"/en-us/blog/authors/gabriel-le-breton",{"name":3092,"config":3093},"Gabriel Le Breton",{"headshot":727,"ctfId":3094},"Gabriel-Le-Breton",{"template":696},"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":3100,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3101,"config":3106,"_id":3107,"_type":35,"title":3102,"_source":37,"_file":3108,"_stem":3109,"_extension":40},"/en-us/blog/authors/gabriel-mazetto",{"name":3102,"config":3103},"Gabriel Mazetto",{"headshot":3104,"ctfId":3105},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678982/Blog/Author%20Headshots/brodock-headshot.jpg","brodock",{"template":696},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3111,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3112,"config":3117,"_id":3118,"_type":35,"title":3113,"_source":37,"_file":3119,"_stem":3120,"_extension":40},"/en-us/blog/authors/gavin-peltz",{"name":3113,"config":3114},"Gavin Peltz",{"headshot":3115,"ctfId":3116},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662831/Blog/Author%20Headshots/gavin_peltz.png","27UwgXDMqa0oBWV93rXTgN",{"template":696},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3122,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3123,"config":3128,"_id":3129,"_type":35,"title":3124,"_source":37,"_file":3130,"_stem":3131,"_extension":40},"/en-us/blog/authors/george-kichukov",{"name":3124,"config":3125},"George Kichukov",{"headshot":3126,"ctfId":3127},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664866/Blog/Author%20Headshots/george_kichukov.png","7e8bn05u4pXwYjkRrqdprE",{"template":696},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3133,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3134,"config":3138,"_id":3139,"_type":35,"title":3135,"_source":37,"_file":3140,"_stem":3141,"_extension":40},"/en-us/blog/authors/gerard-hickey",{"name":3135,"config":3136},"Gerard Hickey",{"headshot":7,"ctfId":3137},"ghickey",{"template":696},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3143,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3144,"config":3149,"_id":3150,"_type":35,"title":3151,"_source":37,"_file":3152,"_stem":3153,"_extension":40},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3145,"config":3146},"Gerardo Lopez-Fernandez",{"headshot":3147,"ctfId":3148},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679925/Blog/Author%20Headshots/glopezfernandez-headshot.jpg","glopezfernandez",{"template":696},"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":3155,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3156,"config":3161,"_id":3162,"_type":35,"title":3157,"_source":37,"_file":3163,"_stem":3164,"_extension":40},"/en-us/blog/authors/gina-doyle",{"name":3157,"config":3158},"Gina Doyle",{"headshot":3159,"ctfId":3160},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679201/Blog/Author%20Headshots/gdoyle-headshot.png","gdoyle",{"template":696},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3166,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3167,"config":3170,"_id":3171,"_type":35,"title":3172,"_source":37,"_file":3173,"_stem":3174,"_extension":40},"/en-us/blog/authors/gitlab",{"name":3168,"config":3169},"GitLab",{"headshot":727,"ctfId":3168},{"template":696},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3176,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3177,"config":3181,"_id":3182,"_type":35,"title":3183,"_source":37,"_file":3184,"_stem":3185,"_extension":40},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3178,"config":3179},"GitLab AI Assisted Group",{"headshot":727,"ctfId":3180},"GitLab-AI-Assisted-Group",{"template":696},"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":3187,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3188,"config":3192,"_id":3193,"_type":35,"title":3194,"_source":37,"_file":3195,"_stem":3196,"_extension":40},"/en-us/blog/authors/gitlab-france-team",{"name":3189,"config":3190},"GitLab France Team",{"headshot":727,"ctfId":3191},"1gfblqN0ibYIuWGk7MOTny",{"template":696},"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":3198,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3199,"config":3203,"_id":3204,"_type":35,"title":3205,"_source":37,"_file":3206,"_stem":3207,"_extension":40},"/en-us/blog/authors/gitlab-germany-team",{"name":3200,"config":3201},"GitLab Germany Team",{"headshot":727,"ctfId":3202},"6tNquF8jQeRRRi8k3ZXpvS",{"template":696},"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":3209,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3210,"config":3214,"_id":3215,"_type":35,"title":3216,"_source":37,"_file":3217,"_stem":3218,"_extension":40},"/en-us/blog/authors/gitlab-japan-team",{"name":3211,"config":3212},"GitLab Japan Team",{"headshot":727,"ctfId":3213},"5YWHF8vG80rluQ41QjgP7V",{"template":696},"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":3220,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3221,"config":3225,"_id":3226,"_type":35,"title":3227,"_source":37,"_file":3228,"_stem":3229,"_extension":40},"/en-us/blog/authors/gitlab-security-team",{"name":3222,"config":3223},"GitLab Security Team",{"headshot":727,"ctfId":3224},"GitLab-Security-Team",{"template":696},"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":3231,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3232,"config":3236,"_id":3237,"_type":35,"title":3238,"_source":37,"_file":3239,"_stem":3240,"_extension":40},"/en-us/blog/authors/gitlab-team",{"name":3233,"config":3234},"GitLab Team",{"headshot":727,"ctfId":3235},"GitLab-Team",{"template":696},"content:en-us:blog:authors:gitlab-team.yml","Gitlab Team","en-us/blog/authors/gitlab-team.yml","en-us/blog/authors/gitlab-team",{"_path":3242,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3243,"config":3247,"_id":3248,"_type":35,"title":3249,"_source":37,"_file":3250,"_stem":3251,"_extension":40},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3244,"config":3245},"GitLab Vulnerability Research Team",{"headshot":727,"ctfId":3246},"GitLab-Vulnerability-Research-Team",{"template":696},"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":3253,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3254,"config":3258,"_id":3259,"_type":35,"title":3255,"_source":37,"_file":3260,"_stem":3261,"_extension":40},"/en-us/blog/authors/goetz-buerkle",{"name":3255,"config":3256},"Goetz Buerkle",{"headshot":727,"ctfId":3257},"Goetz-Buerkle",{"template":696},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3263,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3264,"config":3269,"_id":3270,"_type":35,"title":3265,"_source":37,"_file":3271,"_stem":3272,"_extension":40},"/en-us/blog/authors/gosia-ksionek",{"name":3265,"config":3266},"Gosia Ksionek",{"headshot":3267,"ctfId":3268},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680521/Blog/Author%20Headshots/mksionek-headshot.jpg","mksionek",{"template":696},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3274,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3275,"config":3280,"_id":3281,"_type":35,"title":3276,"_source":37,"_file":3282,"_stem":3283,"_extension":40},"/en-us/blog/authors/grant-hickman",{"name":3276,"config":3277},"Grant Hickman",{"headshot":3278,"ctfId":3279},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682570/Blog/Author%20Headshots/g.png","ghickman",{"template":696},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3285,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3286,"config":3291,"_id":3292,"_type":35,"title":3287,"_source":37,"_file":3293,"_stem":3294,"_extension":40},"/en-us/blog/authors/grant-young",{"name":3287,"config":3288},"Grant Young",{"headshot":3289,"ctfId":3290},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666346/Blog/Author%20Headshots/grantyoung-headshot.jpg","grantyoung",{"template":696},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3296,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3297,"config":3301,"_id":3302,"_type":35,"title":3298,"_source":37,"_file":3303,"_stem":3304,"_extension":40},"/en-us/blog/authors/greg-alfaro",{"name":3298,"config":3299},"Greg Alfaro",{"headshot":7,"ctfId":3300},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":696},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3306,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3307,"config":3311,"_id":3312,"_type":35,"title":3308,"_source":37,"_file":3313,"_stem":3314,"_extension":40},"/en-us/blog/authors/greg-johnson",{"name":3308,"config":3309},"Greg Johnson",{"headshot":7,"ctfId":3310},"codeEmitter",{"template":696},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3316,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3317,"config":3322,"_id":3323,"_type":35,"title":3318,"_source":37,"_file":3324,"_stem":3325,"_extension":40},"/en-us/blog/authors/greg-myers",{"name":3318,"config":3319},"Greg Myers",{"headshot":3320,"ctfId":3321},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665570/Blog/Author%20Headshots/greg_myers_headshot.png","2uUYKgdtszyGfoOHbakiQX",{"template":696},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3327,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3328,"config":3332,"_id":3333,"_type":35,"title":3329,"_source":37,"_file":3334,"_stem":3335,"_extension":40},"/en-us/blog/authors/grzegorz-bizon",{"name":3329,"config":3330},"Grzegorz Bizon",{"headshot":727,"ctfId":3331},"Grzegorz-Bizon",{"template":696},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3337,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3338,"config":3342,"_id":3343,"_type":35,"title":3339,"_source":37,"_file":3344,"_stem":3345,"_extension":40},"/en-us/blog/authors/guenjun-yoo",{"name":3339,"config":3340},"Guenjun Yoo",{"headshot":7,"ctfId":3341},"gyoo",{"template":696},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3347,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3348,"config":3352,"_id":3353,"_type":35,"title":3354,"_source":37,"_file":3355,"_stem":3356,"_extension":40},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3349,"config":3350},"Guest author André Arko of Ruby Together",{"headshot":727,"ctfId":3351},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":696},"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":3358,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3359,"config":3363,"_id":3364,"_type":35,"title":3365,"_source":37,"_file":3366,"_stem":3367,"_extension":40},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3360,"config":3361},"Guest author André Miranda",{"headshot":727,"ctfId":3362},"Guest-author-Andr-Miranda",{"template":696},"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":3369,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3370,"config":3376,"_id":3377,"_type":35,"title":3378,"_source":37,"_file":3379,"_stem":3380,"_extension":40},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3371,"config":3372},"Gufran Yeşilyurt, OBSS",{"headshot":3373,"linkedin":3374,"ctfId":3375},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666380/Blog/Author%20Headshots/1643972670650.jpg","https://www.linkedin.com/in/gufran-yesilyurt/","2ydYMU86my71BUASual2EI",{"template":696},"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":3382,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3383,"config":3387,"_id":3388,"_type":35,"title":3389,"_source":37,"_file":3390,"_stem":3391,"_extension":40},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3384,"config":3385},"Gustaw Fit of Zoopla",{"headshot":727,"ctfId":3386},"Gustaw-Fit-of-Zoopla",{"template":696},"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":3393,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3394,"config":3398,"_id":3399,"_type":35,"title":3400,"_source":37,"_file":3401,"_stem":3402,"_extension":40},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3395,"config":3396},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":727,"ctfId":3397},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":696},"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":3404,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3405,"config":3409,"_id":3410,"_type":35,"title":3406,"_source":37,"_file":3411,"_stem":3412,"_extension":40},"/en-us/blog/authors/gyan-chawdhary",{"name":3406,"config":3407},"Gyan Chawdhary",{"headshot":727,"ctfId":3408},"Gyan-Chawdhary",{"template":696},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3414,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3415,"config":3420,"_id":3421,"_type":35,"title":3416,"_source":37,"_file":3422,"_stem":3423,"_extension":40},"/en-us/blog/authors/haim-snir",{"name":3416,"config":3417},"Haim Snir",{"headshot":3418,"ctfId":3419},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664386/Blog/Author%20Headshots/hsnir1-headshot.jpg","hsnir1",{"template":696},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3425,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3426,"config":3431,"_id":3432,"_type":35,"title":3433,"_source":37,"_file":3434,"_stem":3435,"_extension":40},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3427,"config":3428},"Hakeem Abdul-Razak",{"headshot":3429,"ctfId":3430},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662077/Blog/Author%20Headshots/Hakeem_Abdul-Razak_headshot.png","7H6nuZfVCK5mqJBK4fuaDH",{"template":696},"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":3437,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3438,"config":3442,"_id":3444,"_type":35,"title":3439,"_source":37,"_file":3445,"_stem":3446,"_extension":40},"/en-us/blog/authors/halil-coban",{"name":3439,"config":3440},"Halil Coban",{"headshot":3441},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":696,"gitlabHandle":3443},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3448,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3449,"config":3454,"_id":3455,"_type":35,"title":3450,"_source":37,"_file":3456,"_stem":3457,"_extension":40},"/en-us/blog/authors/hannah-sutor",{"name":3450,"config":3451},"Hannah Sutor",{"headshot":3452,"ctfId":3453},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665588/Blog/Author%20Headshots/hsutor-headshot.png","hsutor",{"template":696},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3459,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3460,"config":3465,"_id":3466,"_type":35,"title":3461,"_source":37,"_file":3467,"_stem":3468,"_extension":40},"/en-us/blog/authors/harjeet-sharma",{"name":3461,"config":3462},"Harjeet Sharma",{"headshot":3463,"ctfId":3464},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665497/Blog/Author%20Headshots/harjeet_sharma_headshot.png","723O6GGQQEu75MCuhw6lqh",{"template":696},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3470,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3471,"config":3475,"_id":3476,"_type":35,"title":3472,"_source":37,"_file":3477,"_stem":3478,"_extension":40},"/en-us/blog/authors/haydn-mackay",{"name":3472,"config":3473},"Haydn Mackay",{"headshot":727,"ctfId":3474},"Haydn-Mackay",{"template":696},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3480,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3481,"config":3485,"_id":3486,"_type":35,"title":3482,"_source":37,"_file":3487,"_stem":3488,"_extension":40},"/en-us/blog/authors/hazel-yang",{"name":3482,"config":3483},"Hazel Yang",{"headshot":7,"ctfId":3484},"hazelyang",{"template":696},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3490,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3491,"config":3495,"_id":3496,"_type":35,"title":3497,"_source":37,"_file":3498,"_stem":3499,"_extension":40},"/en-us/blog/authors/heather-mcnamee",{"name":3492,"config":3493},"Heather McNamee",{"headshot":727,"ctfId":3494},"Heather-McNamee",{"template":696},"content:en-us:blog:authors:heather-mcnamee.yml","Heather Mcnamee","en-us/blog/authors/heather-mcnamee.yml","en-us/blog/authors/heather-mcnamee",{"_path":3501,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3502,"config":3506,"_id":3507,"_type":35,"title":3503,"_source":37,"_file":3508,"_stem":3509,"_extension":40},"/en-us/blog/authors/heather-simpson",{"name":3503,"config":3504},"Heather Simpson",{"headshot":727,"ctfId":3505},"hsimpson",{"template":696},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3511,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3512,"config":3517,"_id":3518,"_type":35,"title":3513,"_source":37,"_file":3519,"_stem":3520,"_extension":40},"/en-us/blog/authors/hillary-benson",{"name":3513,"config":3514},"Hillary Benson",{"headshot":3515,"ctfId":3516},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683387/Blog/Author%20Headshots/hillarybensonheadshot.png","45VEFoISCoOhRXzyPyAf1x",{"template":696},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3522,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3523,"config":3527,"_id":3529,"_type":35,"title":3524,"_source":37,"_file":3530,"_stem":3531,"_extension":40},"/en-us/blog/authors/himanshu-kapoor",{"name":3524,"config":3525},"Himanshu Kapoor",{"headshot":3526},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":696,"gitlabHandle":3528},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3533,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3534,"config":3539,"_id":3540,"_type":35,"title":3535,"_source":37,"_file":3541,"_stem":3542,"_extension":40},"/en-us/blog/authors/hiroki-suezawa",{"name":3535,"config":3536},"Hiroki Suezawa",{"headshot":3537,"ctfId":3538},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662370/Blog/Author%20Headshots/hiroki_suezawa.png","cw6ZIj0yjr1uw2LAFr23h",{"template":696},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3544,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3545,"config":3549,"_id":3550,"_type":35,"title":3546,"_source":37,"_file":3551,"_stem":3552,"_extension":40},"/en-us/blog/authors/holly-reynolds",{"name":3546,"config":3547},"Holly Reynolds",{"headshot":7,"ctfId":3548},"hollyreynolds",{"template":696},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3554,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3555,"config":3559,"_id":3560,"_type":35,"title":3556,"_source":37,"_file":3561,"_stem":3562,"_extension":40},"/en-us/blog/authors/huldra",{"name":3556,"config":3557},"Huldra",{"headshot":7,"ctfId":3558},"huldra",{"template":696},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3564,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3565,"config":3569,"_id":3570,"_type":35,"title":3566,"_source":37,"_file":3571,"_stem":3572,"_extension":40},"/en-us/blog/authors/iain-camacho",{"name":3566,"config":3567},"Iain Camacho",{"headshot":7,"ctfId":3568},"icamacho",{"template":696},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3574,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3575,"config":3579,"_id":3580,"_type":35,"title":3576,"_source":37,"_file":3581,"_stem":3582,"_extension":40},"/en-us/blog/authors/ian-bartholomew",{"name":3576,"config":3577},"Ian Bartholomew",{"headshot":727,"ctfId":3578},"7D4PE43CXfi8pgOSCmipH0",{"template":696},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3584,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3585,"config":3590,"_id":3591,"_type":35,"title":3586,"_source":37,"_file":3592,"_stem":3593,"_extension":40},"/en-us/blog/authors/ian-khor",{"name":3586,"config":3587},"Ian Khor",{"headshot":3588,"ctfId":3589},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662933/Blog/Author%20Headshots/ian_khor_headshot.png","nSk8fzDwtG3LVFWwg8HrF",{"template":696},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3595,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3596,"config":3601,"_id":3602,"_type":35,"title":3597,"_source":37,"_file":3603,"_stem":3604,"_extension":40},"/en-us/blog/authors/ian-pedowitz",{"name":3597,"config":3598},"Ian Pedowitz",{"headshot":3599,"ctfId":3600},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683040/Blog/Author%20Headshots/ipedowitz-headshot.jpg","ipedowitz",{"template":696},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3606,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3607,"config":3612,"_id":3613,"_type":35,"title":3608,"_source":37,"_file":3614,"_stem":3615,"_extension":40},"/en-us/blog/authors/igor-drozdov",{"name":3608,"config":3609},"Igor Drozdov",{"headshot":3610,"ctfId":3611},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672455/Blog/Author%20Headshots/igor.png","igordrozdov",{"template":696},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3617,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3618,"config":3623,"_id":3624,"_type":35,"title":3619,"_source":37,"_file":3625,"_stem":3626,"_extension":40},"/en-us/blog/authors/igor-wiedler",{"name":3619,"config":3620},"Igor Wiedler",{"headshot":3621,"ctfId":3622},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681841/Blog/Author%20Headshots/igorwwwwwwwwwwwwwwwwwwww-headshot.png","igorwwwwwwwwwwwwwwwwwwww",{"template":696},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3628,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3629,"config":3634,"_id":3635,"_type":35,"title":3636,"_source":37,"_file":3637,"_stem":3638,"_extension":40},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3630,"config":3631},"Inchul Yoo, Sunjung Park",{"headshot":3632,"ctfId":3633},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669731/Blog/Author%20Headshots/sunjungp-headshot.png","sunjungp",{"template":696},"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":3640,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3641,"config":3646,"_id":3647,"_type":35,"title":3642,"_source":37,"_file":3648,"_stem":3649,"_extension":40},"/en-us/blog/authors/isaac-dawson",{"name":3642,"config":3643},"Isaac Dawson",{"headshot":3644,"ctfId":3645},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669814/Blog/Author%20Headshots/idawson-headshot.jpg","idawson",{"template":696},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3651,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3652,"config":3656,"_id":3658,"_type":35,"title":3659,"_source":37,"_file":3660,"_stem":3661,"_extension":40},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3653,"name":3655},{"headshot":3654},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":696,"gitlabHandle":3657},"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":3663,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3664,"config":3669,"_id":3670,"_type":35,"title":3665,"_source":37,"_file":3671,"_stem":3672,"_extension":40},"/en-us/blog/authors/itzik-gan-baruch",{"name":3665,"config":3666},"Itzik Gan Baruch",{"headshot":3667,"ctfId":3668},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch",{"template":696},"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":3674,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3675,"config":3679,"_id":3680,"_type":35,"title":3676,"_source":37,"_file":3681,"_stem":3682,"_extension":40},"/en-us/blog/authors/ivan-lychev",{"name":3676,"config":3677},"Ivan Lychev",{"headshot":7,"ctfId":3678},"iLychevAD",{"template":696},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3684,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3685,"config":3689,"_id":3690,"_type":35,"title":3686,"_source":37,"_file":3691,"_stem":3692,"_extension":40},"/en-us/blog/authors/ivan-nemytchenko",{"name":3686,"config":3687},"Ivan Nemytchenko",{"headshot":727,"ctfId":3688},"Ivan-Nemytchenko",{"template":696},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3694,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3695,"config":3701,"_id":3702,"_type":35,"title":3697,"_source":37,"_file":3703,"_stem":3704,"_extension":40},"/en-us/blog/authors/ivanha-paz",{"role":3696,"name":3697,"config":3698},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3699,"ctfId":3700},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":696},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3706,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3707,"config":3711,"_id":3712,"_type":35,"title":3708,"_source":37,"_file":3713,"_stem":3714,"_extension":40},"/en-us/blog/authors/jacie-bandur",{"name":3708,"config":3709},"Jacie Bandur",{"headshot":7,"ctfId":3710},"jbandur",{"template":696},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3716,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3717,"config":3722,"_id":3723,"_type":35,"title":3718,"_source":37,"_file":3724,"_stem":3725,"_extension":40},"/en-us/blog/authors/jacki-bauer",{"name":3718,"config":3719},"Jacki Bauer",{"headshot":3720,"ctfId":3721},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":696},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3727,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3728,"config":3732,"_id":3733,"_type":35,"title":3729,"_source":37,"_file":3734,"_stem":3735,"_extension":40},"/en-us/blog/authors/jackie-meshell",{"name":3729,"config":3730},"Jackie Meshell",{"headshot":7,"ctfId":3731},"jmeshell",{"template":696},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3737,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3738,"config":3743,"_id":3744,"_type":35,"title":3739,"_source":37,"_file":3745,"_stem":3746,"_extension":40},"/en-us/blog/authors/jackie-porter",{"name":3739,"config":3740},"Jackie Porter",{"headshot":3741,"ctfId":3742},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":696},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3748,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3749,"config":3753,"_id":3754,"_type":35,"title":3750,"_source":37,"_file":3755,"_stem":3756,"_extension":40},"/en-us/blog/authors/jacob-schatz",{"name":3750,"config":3751},"Jacob Schatz",{"headshot":7,"ctfId":3752},"jschatz1",{"template":696},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3758,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3759,"config":3763,"_id":3764,"_type":35,"title":3760,"_source":37,"_file":3765,"_stem":3766,"_extension":40},"/en-us/blog/authors/jacob-vosmaer",{"name":3760,"config":3761},"Jacob Vosmaer",{"headshot":727,"ctfId":3762},"Jacob-Vosmaer",{"template":696},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3768,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3769,"config":3774,"_id":3775,"_type":35,"title":3770,"_source":37,"_file":3776,"_stem":3777,"_extension":40},"/en-us/blog/authors/jacques-erasmus",{"name":3770,"config":3771},"Jacques Erasmus",{"headshot":3772,"ctfId":3773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":696},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3779,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3780,"config":3785,"_id":3786,"_type":35,"title":3787,"_source":37,"_file":3788,"_stem":3789,"_extension":40},"/en-us/blog/authors/jaime-martnez",{"name":3781,"config":3782},"Jaime Martínez",{"headshot":3783,"ctfId":3784},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":696},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3791,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3792,"config":3796,"_id":3797,"_type":35,"title":3793,"_source":37,"_file":3798,"_stem":3799,"_extension":40},"/en-us/blog/authors/jake-foster",{"name":3793,"config":3794},"Jake Foster",{"headshot":727,"ctfId":3795},"jakefoster1",{"template":696},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3801,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3802,"config":3806,"_id":3807,"_type":35,"title":3803,"_source":37,"_file":3808,"_stem":3809,"_extension":40},"/en-us/blog/authors/jake-stein",{"name":3803,"config":3804},"Jake Stein",{"headshot":727,"ctfId":3805},"Jake-Stein",{"template":696},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3811,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3812,"config":3816,"_id":3817,"_type":35,"title":3813,"_source":37,"_file":3818,"_stem":3819,"_extension":40},"/en-us/blog/authors/james-dang",{"name":3813,"config":3814},"James Dang",{"headshot":727,"ctfId":3815},"James-Dang",{"template":696},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3821,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3822,"config":3827,"_id":3828,"_type":35,"title":3823,"_source":37,"_file":3829,"_stem":3830,"_extension":40},"/en-us/blog/authors/james-heimbuck",{"name":3823,"config":3824},"James Heimbuck",{"headshot":3825,"ctfId":3826},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":696},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3832,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3833,"config":3837,"_id":3838,"_type":35,"title":3834,"_source":37,"_file":3839,"_stem":3840,"_extension":40},"/en-us/blog/authors/james-ramsay",{"name":3834,"config":3835},"James Ramsay",{"headshot":7,"ctfId":3836},"jramsay",{"template":696},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3842,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3843,"config":3848,"_id":3849,"_type":35,"title":3844,"_source":37,"_file":3850,"_stem":3851,"_extension":40},"/en-us/blog/authors/james-wormwell",{"name":3844,"config":3845},"James Wormwell",{"headshot":3846,"ctfId":3847},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":696},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3853,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3854,"config":3858,"_id":3859,"_type":35,"title":3855,"_source":37,"_file":3860,"_stem":3861,"_extension":40},"/en-us/blog/authors/jamie-hurewitz",{"name":3855,"config":3856},"Jamie Hurewitz",{"headshot":727,"ctfId":3857},"Jamie-Hurewitz",{"template":696},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3863,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3864,"config":3868,"_id":3869,"_type":35,"title":3865,"_source":37,"_file":3870,"_stem":3871,"_extension":40},"/en-us/blog/authors/jamie-rachel",{"name":3865,"config":3866},"Jamie Rachel",{"headshot":7,"ctfId":3867},"jrachel1",{"template":696},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3873,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3874,"config":3879,"_id":3880,"_type":35,"title":3875,"_source":37,"_file":3881,"_stem":3882,"_extension":40},"/en-us/blog/authors/jan-provaznik",{"name":3875,"config":3876},"Jan Provaznik",{"headshot":3877,"ctfId":3878},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":696},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3884,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3885,"config":3890,"_id":3891,"_type":35,"title":3886,"_source":37,"_file":3892,"_stem":3893,"_extension":40},"/en-us/blog/authors/janis-altherr",{"name":3886,"config":3887},"Janis Altherr",{"headshot":3888,"ctfId":3889},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":696},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3895,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3896,"config":3901,"_id":3902,"_type":35,"title":3897,"_source":37,"_file":3903,"_stem":3904,"_extension":40},"/en-us/blog/authors/jannik-lehmann",{"name":3897,"config":3898},"Jannik Lehmann",{"headshot":3899,"ctfId":3900},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":696},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3906,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3907,"config":3912,"_id":3913,"_type":35,"title":3914,"_source":37,"_file":3915,"_stem":3916,"_extension":40},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3908,"config":3909},"Jarka Košanová et al",{"headshot":3910,"ctfId":3911},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":696},"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":3918,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3919,"config":3923,"_id":3924,"_type":35,"title":3925,"_source":37,"_file":3926,"_stem":3927,"_extension":40},"/en-us/blog/authors/jason-blais-mattermost",{"name":3920,"config":3921},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3922},"jasonblais",{"template":696},"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":3929,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3930,"config":3934,"_id":3935,"_type":35,"title":3931,"_source":37,"_file":3936,"_stem":3937,"_extension":40},"/en-us/blog/authors/jason-chen",{"name":3931,"config":3932},"Jason Chen",{"headshot":727,"ctfId":3933},"Jason-Chen",{"template":696},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3939,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3940,"config":3945,"_id":3946,"_type":35,"title":3941,"_source":37,"_file":3947,"_stem":3948,"_extension":40},"/en-us/blog/authors/jason-colyer",{"name":3941,"config":3942},"Jason Colyer",{"headshot":3943,"ctfId":3944},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":696},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3950,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3951,"config":3956,"_id":3957,"_type":35,"title":3952,"_source":37,"_file":3958,"_stem":3959,"_extension":40},"/en-us/blog/authors/jason-plum",{"name":3952,"config":3953},"Jason Plum",{"headshot":3954,"ctfId":3955},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":696},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":3961,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3962,"config":3966,"_id":3967,"_type":35,"title":3963,"_source":37,"_file":3968,"_stem":3969,"_extension":40},"/en-us/blog/authors/jason-yavorska",{"name":3963,"config":3964},"Jason Yavorska",{"headshot":7,"ctfId":3965},"jyavorska",{"template":696},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":3971,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3972,"config":3976,"_id":3977,"_type":35,"title":3973,"_source":37,"_file":3978,"_stem":3979,"_extension":40},"/en-us/blog/authors/jay-newman",{"name":3973,"config":3974},"Jay Newman",{"headshot":727,"ctfId":3975},"Jay-Newman",{"template":696},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":3981,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3982,"config":3987,"_id":3988,"_type":35,"title":3983,"_source":37,"_file":3989,"_stem":3990,"_extension":40},"/en-us/blog/authors/jayson-salazar",{"name":3983,"config":3984},"Jayson Salazar",{"headshot":3985,"ctfId":3986},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":696},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":3992,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":3993,"config":3997,"_id":3998,"_type":35,"title":3999,"_source":37,"_file":4000,"_stem":4001,"_extension":40},"/en-us/blog/authors/jd-alex",{"name":3994,"config":3995},"JD Alex",{"headshot":7,"ctfId":3996},"jalex1",{"template":696},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":4003,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4004,"config":4008,"_id":4009,"_type":35,"title":4010,"_source":37,"_file":4011,"_stem":4012,"_extension":40},"/en-us/blog/authors/jean-philippe-baconnais",{"name":4005,"config":4006},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":4007},"jeanphibaconnais",{"template":696},"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":4014,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4015,"config":4020,"_id":4021,"_type":35,"title":4016,"_source":37,"_file":4022,"_stem":4023,"_extension":40},"/en-us/blog/authors/jeff-burrows",{"name":4016,"config":4017},"Jeff Burrows",{"headshot":4018,"ctfId":4019},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":696},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4025,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4026,"config":4030,"_id":4031,"_type":35,"title":4027,"_source":37,"_file":4032,"_stem":4033,"_extension":40},"/en-us/blog/authors/jeff-kelsey",{"name":4027,"config":4028},"Jeff Kelsey",{"headshot":727,"ctfId":4029},"Jeff-Kelsey",{"template":696},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4035,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4036,"config":4041,"_id":4042,"_type":35,"title":4037,"_source":37,"_file":4043,"_stem":4044,"_extension":40},"/en-us/blog/authors/jeff-park",{"name":4037,"config":4038},"Jeff Park",{"headshot":4039,"ctfId":4040},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":696},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4046,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4047,"config":4052,"_id":4053,"_type":35,"title":4048,"_source":37,"_file":4054,"_stem":4055,"_extension":40},"/en-us/blog/authors/jeff-tucker",{"name":4048,"config":4049},"Jeff Tucker",{"headshot":4050,"ctfId":4051},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":696},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4057,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4058,"config":4063,"_id":4064,"_type":35,"title":4059,"_source":37,"_file":4065,"_stem":4066,"_extension":40},"/en-us/blog/authors/jensen-stava",{"name":4059,"config":4060},"Jensen Stava",{"headshot":4061,"ctfId":4062},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":696},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4068,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4069,"config":4073,"_id":4074,"_type":35,"title":4070,"_source":37,"_file":4075,"_stem":4076,"_extension":40},"/en-us/blog/authors/jeremy-cooper",{"name":4070,"config":4071},"Jeremy Cooper",{"headshot":727,"ctfId":4072},"6sXs62l8jODDcUlS9OPgTu",{"template":696},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4078,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4079,"config":4084,"_id":4085,"_type":35,"title":4080,"_source":37,"_file":4086,"_stem":4087,"_extension":40},"/en-us/blog/authors/jeremy-elder",{"name":4080,"config":4081},"Jeremy Elder",{"headshot":4082,"ctfId":4083},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":696},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4089,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4090,"config":4095,"_id":4096,"_type":35,"title":4091,"_source":37,"_file":4097,"_stem":4098,"_extension":40},"/en-us/blog/authors/jeremy-wagner",{"name":4091,"config":4092},"Jeremy Wagner",{"headshot":4093,"ctfId":4094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":696},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4100,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4101,"config":4105,"_id":4106,"_type":35,"title":4102,"_source":37,"_file":4107,"_stem":4108,"_extension":40},"/en-us/blog/authors/jeremy-watson",{"name":4102,"config":4103},"Jeremy Watson",{"headshot":7,"ctfId":4104},"jeremy",{"template":696},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4110,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4111,"config":4116,"_id":4117,"_type":35,"title":4112,"_source":37,"_file":4118,"_stem":4119,"_extension":40},"/en-us/blog/authors/jerez-solis",{"name":4112,"config":4113},"Jerez Solis",{"headshot":4114,"ctfId":4115},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":696},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4121,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4122,"config":4126,"_id":4127,"_type":35,"title":4128,"_source":37,"_file":4129,"_stem":4130,"_extension":40},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4123,"config":4124},"Jeroen van Baarsen",{"headshot":727,"ctfId":4125},"Jeroen-van-Baarsen",{"template":696},"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":4132,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4133,"config":4138,"_id":4139,"_type":35,"title":4134,"_source":37,"_file":4140,"_stem":4141,"_extension":40},"/en-us/blog/authors/jessica-hurwitz",{"name":4134,"config":4135},"Jessica Hurwitz",{"headshot":4136,"ctfId":4137},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":696},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4143,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4144,"config":4148,"_id":4149,"_type":35,"title":4145,"_source":37,"_file":4150,"_stem":4151,"_extension":40},"/en-us/blog/authors/jim-riley",{"name":4145,"config":4146},"Jim Riley",{"headshot":7,"ctfId":4147},"GitLabcom-username-jrileyinva",{"template":696},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4153,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4154,"config":4158,"_id":4159,"_type":35,"title":4155,"_source":37,"_file":4160,"_stem":4161,"_extension":40},"/en-us/blog/authors/jim-thavisouk",{"name":4155,"config":4156},"Jim Thavisouk",{"headshot":727,"ctfId":4157},"jimthavisouk",{"template":696},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4163,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4164,"config":4168,"_id":4169,"_type":35,"title":4170,"_source":37,"_file":4171,"_stem":4172,"_extension":40},"/en-us/blog/authors/job-van-der-voort",{"name":4165,"config":4166},"Job van der Voort",{"headshot":727,"ctfId":4167},"Job-van-der-Voort",{"template":696},"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":4174,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4175,"config":4180,"_id":4181,"_type":35,"title":4176,"_source":37,"_file":4182,"_stem":4183,"_extension":40},"/en-us/blog/authors/jocelyn-eillis",{"name":4176,"config":4177},"Jocelyn Eillis",{"headshot":4178,"ctfId":4179},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":696},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4185,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4186,"config":4190,"_id":4191,"_type":35,"title":4187,"_source":37,"_file":4192,"_stem":4193,"_extension":40},"/en-us/blog/authors/jochen-roth",{"name":4187,"config":4188},"Jochen Roth",{"headshot":7,"ctfId":4189},"ochorocho",{"template":696},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4195,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4196,"config":4201,"_id":4202,"_type":35,"title":4197,"_source":37,"_file":4203,"_stem":4204,"_extension":40},"/en-us/blog/authors/joe-randazzo",{"name":4197,"config":4198},"Joe Randazzo",{"headshot":4199,"ctfId":4200},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":696},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4206,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4207,"config":4212,"_id":4213,"_type":35,"title":4208,"_source":37,"_file":4214,"_stem":4215,"_extension":40},"/en-us/blog/authors/joel-krooswyk",{"name":4208,"config":4209},"Joel Krooswyk",{"headshot":4210,"ctfId":4211},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":696},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4217,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4218,"config":4223,"_id":4224,"_type":35,"title":4219,"_source":37,"_file":4225,"_stem":4226,"_extension":40},"/en-us/blog/authors/joern-schneeweisz",{"name":4219,"config":4220},"Joern Schneeweisz",{"headshot":4221,"ctfId":4222},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":696},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4228,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4229,"config":4233,"_id":4234,"_type":35,"title":4230,"_source":37,"_file":4235,"_stem":4236,"_extension":40},"/en-us/blog/authors/joey-salazar",{"name":4230,"config":4231},"Joey Salazar",{"headshot":727,"ctfId":4232},"4LgUP4bzQV6kuhoZNFID9r",{"template":696},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4238,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4239,"config":4243,"_id":4244,"_type":35,"title":4240,"_source":37,"_file":4245,"_stem":4246,"_extension":40},"/en-us/blog/authors/johanna-ambrosio",{"name":4240,"config":4241},"Johanna Ambrosio",{"headshot":727,"ctfId":4242},"Johanna-Ambrosio",{"template":696},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4248,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4249,"config":4254,"_id":4255,"_type":35,"title":4250,"_source":37,"_file":4256,"_stem":4257,"_extension":40},"/en-us/blog/authors/johannes-bauer",{"name":4250,"config":4251},"Johannes Bauer",{"headshot":4252,"ctfId":4253},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":696},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4259,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4260,"config":4265,"_id":4266,"_type":35,"title":4261,"_source":37,"_file":4267,"_stem":4268,"_extension":40},"/en-us/blog/authors/john-cai",{"name":4261,"config":4262},"John Cai",{"headshot":4263,"ctfId":4264},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":696},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4270,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4271,"config":4276,"_id":4277,"_type":35,"title":4272,"_source":37,"_file":4278,"_stem":4279,"_extension":40},"/en-us/blog/authors/john-coghlan",{"name":4272,"config":4273},"John Coghlan",{"headshot":4274,"ctfId":4275},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":696},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4281,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4282,"config":4287,"_id":4288,"_type":35,"title":4283,"_source":37,"_file":4289,"_stem":4290,"_extension":40},"/en-us/blog/authors/john-crowley",{"name":4283,"config":4284},"John Crowley",{"headshot":4285,"ctfId":4286},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":696},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4292,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4293,"config":4298,"_id":4299,"_type":35,"title":4294,"_source":37,"_file":4300,"_stem":4301,"_extension":40},"/en-us/blog/authors/john-jarvis",{"name":4294,"config":4295},"John Jarvis",{"headshot":4296,"ctfId":4297},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":696},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4303,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4304,"config":4308,"_id":4309,"_type":35,"title":4305,"_source":37,"_file":4310,"_stem":4311,"_extension":40},"/en-us/blog/authors/john-jeremiah",{"name":4305,"config":4306},"John Jeremiah",{"headshot":727,"ctfId":4307},"johnjeremiah",{"template":696},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4313,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4314,"config":4318,"_id":4319,"_type":35,"title":4320,"_source":37,"_file":4321,"_stem":4322,"_extension":40},"/en-us/blog/authors/john-mcguire",{"name":4315,"config":4316},"John McGuire",{"headshot":727,"ctfId":4317},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":696},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4324,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4325,"config":4329,"_id":4331,"_type":35,"title":4326,"_source":37,"_file":4332,"_stem":4333,"_extension":40},"/en-us/blog/authors/john-skarbek",{"name":4326,"config":4327},"John Skarbek",{"headshot":4328},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":696,"gitlabHandle":4330},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4335,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4336,"config":4340,"_id":4341,"_type":35,"title":4337,"_source":37,"_file":4342,"_stem":4343,"_extension":40},"/en-us/blog/authors/john-sparrow",{"name":4337,"config":4338},"John Sparrow",{"headshot":727,"ctfId":4339},"John-Sparrow",{"template":696},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4345,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4346,"config":4350,"_id":4351,"_type":35,"title":4347,"_source":37,"_file":4352,"_stem":4353,"_extension":40},"/en-us/blog/authors/johnathan-hunt",{"name":4347,"config":4348},"Johnathan Hunt",{"headshot":727,"ctfId":4349},"JohnathanHunt",{"template":696},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4355,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4356,"config":4360,"_id":4361,"_type":35,"title":4357,"_source":37,"_file":4362,"_stem":4363,"_extension":40},"/en-us/blog/authors/joni-klippert",{"name":4357,"config":4358},"Joni Klippert",{"headshot":727,"ctfId":4359},"Joni-Klippert",{"template":696},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4365,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4366,"config":4371,"_id":4372,"_type":35,"title":4373,"_source":37,"_file":4374,"_stem":4375,"_extension":40},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4367,"config":4368},"João Alexandre Prado Tavares Cunha",{"headshot":4369,"ctfId":4370},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":696},"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":4377,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4378,"config":4383,"_id":4384,"_type":35,"title":4385,"_source":37,"_file":4386,"_stem":4387,"_extension":40},"/en-us/blog/authors/joo-pereira",{"name":4379,"config":4380},"João Pereira",{"headshot":4381,"ctfId":4382},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":696},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4389,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4390,"config":4394,"_id":4395,"_type":35,"title":4391,"_source":37,"_file":4396,"_stem":4397,"_extension":40},"/en-us/blog/authors/jordi-mon",{"name":4391,"config":4392},"Jordi Mon",{"headshot":7,"ctfId":4393},"jordimon",{"template":696},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4399,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4400,"config":4405,"_id":4406,"_type":35,"title":4407,"_source":37,"_file":4408,"_stem":4409,"_extension":40},"/en-us/blog/authors/jos-ivn-vargas",{"name":4401,"config":4402},"José Iván Vargas",{"headshot":4403,"ctfId":4404},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":696},"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":4411,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4412,"config":4416,"_id":4417,"_type":35,"title":4413,"_source":37,"_file":4418,"_stem":4419,"_extension":40},"/en-us/blog/authors/jose-finotto",{"name":4413,"config":4414},"Jose Finotto",{"headshot":7,"ctfId":4415},"finotto",{"template":696},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4421,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4422,"config":4426,"_id":4428,"_type":35,"title":4425,"_source":37,"_file":4429,"_stem":4430,"_extension":40},"/en-us/blog/authors/joseph-burnett",{"config":4423,"name":4425},{"headshot":4424},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":696,"gitlabHandle":4427},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4432,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4433,"config":4438,"_id":4439,"_type":35,"title":4434,"_source":37,"_file":4440,"_stem":4441,"_extension":40},"/en-us/blog/authors/joseph-longo",{"name":4434,"config":4435},"Joseph Longo",{"headshot":4436,"ctfId":4437},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":696},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4443,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4444,"config":4448,"_id":4449,"_type":35,"title":4450,"_source":37,"_file":4451,"_stem":4452,"_extension":40},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4445,"config":4446},"Joseph Schorr from CoreOS",{"headshot":727,"ctfId":4447},"Joseph-Schorr-from-CoreOS",{"template":696},"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":4454,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4455,"config":4460,"_id":4461,"_type":35,"title":4456,"_source":37,"_file":4462,"_stem":4463,"_extension":40},"/en-us/blog/authors/josh-feehs",{"name":4456,"config":4457},"Josh Feehs",{"headshot":4458,"ctfId":4459},"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":696},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4465,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4466,"config":4472,"_id":4473,"_type":35,"title":4474,"_source":37,"_file":4475,"_stem":4476,"_extension":40},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4467,"name":4468,"config":4469},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4470,"ctfId":4471},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":696},"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":4478,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4479,"config":4483,"_id":4484,"_type":35,"title":4480,"_source":37,"_file":4485,"_stem":4486,"_extension":40},"/en-us/blog/authors/josh-zimmerman",{"name":4480,"config":4481},"Josh Zimmerman",{"headshot":7,"ctfId":4482},"JoshZimmerman",{"template":696},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4488,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4489,"config":4494,"_id":4495,"_type":35,"title":4490,"_source":37,"_file":4496,"_stem":4497,"_extension":40},"/en-us/blog/authors/joshua-carroll",{"name":4490,"config":4491},"Joshua Carroll",{"headshot":4492,"ctfId":4493},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":696},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4499,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4500,"config":4505,"_id":4506,"_type":35,"title":4501,"_source":37,"_file":4507,"_stem":4508,"_extension":40},"/en-us/blog/authors/joshua-lambert",{"name":4501,"config":4502},"Joshua Lambert",{"headshot":4503,"ctfId":4504},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":696},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4510,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4511,"config":4515,"_id":4516,"_type":35,"title":4512,"_source":37,"_file":4517,"_stem":4518,"_extension":40},"/en-us/blog/authors/joyce-tompsett",{"name":4512,"config":4513},"Joyce Tompsett",{"headshot":7,"ctfId":4514},"Tompsett",{"template":696},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4520,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4521,"config":4525,"_id":4526,"_type":35,"title":4522,"_source":37,"_file":4527,"_stem":4528,"_extension":40},"/en-us/blog/authors/juan-broullon",{"name":4522,"config":4523},"Juan Broullon",{"headshot":7,"ctfId":4524},"jbroullon",{"template":696},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4530,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4531,"config":4535,"_id":4536,"_type":35,"title":4532,"_source":37,"_file":4537,"_stem":4538,"_extension":40},"/en-us/blog/authors/julia-lake",{"name":4532,"config":4533},"Julia Lake",{"headshot":727,"ctfId":4534},"5i9IDwCDDg3lfkiu9T3edZ",{"template":696},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4540,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4541,"config":4546,"_id":4547,"_type":35,"title":4542,"_source":37,"_file":4548,"_stem":4549,"_extension":40},"/en-us/blog/authors/julia-miocene",{"name":4542,"config":4543},"Julia Miocene",{"headshot":4544,"ctfId":4545},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":696},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4551,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4552,"config":4556,"_id":4557,"_type":35,"title":4553,"_source":37,"_file":4558,"_stem":4559,"_extension":40},"/en-us/blog/authors/julian-thome",{"name":4553,"config":4554},"Julian Thome",{"headshot":7,"ctfId":4555},"jthome",{"template":696},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4561,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4562,"config":4567,"_id":4568,"_type":35,"title":4563,"_source":37,"_file":4569,"_stem":4570,"_extension":40},"/en-us/blog/authors/julie-byrne",{"name":4563,"config":4564},"Julie Byrne",{"headshot":4565,"ctfId":4566},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":696},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4572,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4573,"config":4578,"_id":4579,"_type":35,"title":4574,"_source":37,"_file":4580,"_stem":4581,"_extension":40},"/en-us/blog/authors/julie-griffin",{"name":4574,"config":4575},"Julie Griffin",{"headshot":4576,"ctfId":4577},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":696},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4583,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4584,"config":4588,"_id":4589,"_type":35,"title":4585,"_source":37,"_file":4590,"_stem":4591,"_extension":40},"/en-us/blog/authors/julien-andrieux",{"name":4585,"config":4586},"Julien Andrieux",{"headshot":727,"ctfId":4587},"Julien-Andrieux",{"template":696},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4593,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4594,"config":4599,"_id":4600,"_type":35,"title":4595,"_source":37,"_file":4601,"_stem":4602,"_extension":40},"/en-us/blog/authors/juliet-wanjohi",{"name":4595,"config":4596},"Juliet Wanjohi",{"headshot":4597,"ctfId":4598},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":696},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4604,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4605,"config":4609,"_id":4610,"_type":35,"title":4606,"_source":37,"_file":4611,"_stem":4612,"_extension":40},"/en-us/blog/authors/justin-farris",{"name":4606,"config":4607},"Justin Farris",{"headshot":727,"ctfId":4608},"5RHYudAlWLmSj5U7AOIcbG",{"template":696},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4614,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4615,"config":4620,"_id":4621,"_type":35,"title":4616,"_source":37,"_file":4622,"_stem":4623,"_extension":40},"/en-us/blog/authors/justin-tobler",{"name":4616,"config":4617},"Justin Tobler",{"headshot":4618,"ctfId":4619},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":696},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4625,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4626,"config":4631,"_id":4632,"_type":35,"title":4627,"_source":37,"_file":4633,"_stem":4634,"_extension":40},"/en-us/blog/authors/kai-armstrong",{"name":4627,"config":4628},"Kai Armstrong",{"headshot":4629,"ctfId":4630},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":696},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4636,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4637,"config":4641,"_id":4642,"_type":35,"title":4643,"_source":37,"_file":4644,"_stem":4645,"_extension":40},"/en-us/blog/authors/kamil-trzciski",{"name":4638,"config":4639},"Kamil Trzciński",{"headshot":727,"ctfId":4640},"Kamil-Trzciski",{"template":696},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4647,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4648,"config":4652,"_id":4653,"_type":35,"title":4654,"_source":37,"_file":4655,"_stem":4656,"_extension":40},"/en-us/blog/authors/karen-caras",{"name":4649,"config":4650},"Karen Carías",{"headshot":727,"ctfId":4651},"Karen-Caras",{"template":696},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4658,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4659,"config":4664,"_id":4665,"_type":35,"title":4660,"_source":37,"_file":4666,"_stem":4667,"_extension":40},"/en-us/blog/authors/karthik-nayak",{"name":4660,"config":4661},"Karthik Nayak",{"headshot":4662,"ctfId":4663},"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":696},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4669,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4670,"config":4674,"_id":4675,"_type":35,"title":4671,"_source":37,"_file":4676,"_stem":4677,"_extension":40},"/en-us/blog/authors/katherine-okpara",{"name":4671,"config":4672},"Katherine Okpara",{"headshot":7,"ctfId":4673},"katokpara",{"template":696},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4679,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4680,"config":4684,"_id":4685,"_type":35,"title":4681,"_source":37,"_file":4686,"_stem":4687,"_extension":40},"/en-us/blog/authors/kathy-wang",{"name":4681,"config":4682},"Kathy Wang",{"headshot":7,"ctfId":4683},"kathyw",{"template":696},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4689,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4690,"config":4694,"_id":4695,"_type":35,"title":4696,"_source":37,"_file":4697,"_stem":4698,"_extension":40},"/en-us/blog/authors/keanon-okeefe",{"name":4691,"config":4692},"Keanon O’Keefe",{"headshot":7,"ctfId":4693},"kokeefe",{"template":696},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4700,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4701,"config":4706,"_id":4707,"_type":35,"title":4702,"_source":37,"_file":4708,"_stem":4709,"_extension":40},"/en-us/blog/authors/kees-valkhof",{"name":4702,"role":4703,"config":4704},"Kees Valkhof","Configuration manager at Lely",{"headshot":4705},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":696},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4711,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4712,"config":4716,"_id":4717,"_type":35,"title":4713,"_source":37,"_file":4718,"_stem":4719,"_extension":40},"/en-us/blog/authors/kelly-hair",{"name":4713,"config":4714},"Kelly Hair",{"headshot":727,"ctfId":4715},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":696},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4721,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4722,"config":4726,"_id":4727,"_type":35,"title":4723,"_source":37,"_file":4728,"_stem":4729,"_extension":40},"/en-us/blog/authors/kendra-marquart",{"name":4723,"config":4724},"Kendra Marquart",{"headshot":7,"ctfId":4725},"kmarquart",{"template":696},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4731,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4732,"config":4736,"_id":4737,"_type":35,"title":4733,"_source":37,"_file":4738,"_stem":4739,"_extension":40},"/en-us/blog/authors/kenny-johnston",{"name":4733,"config":4734},"Kenny Johnston",{"headshot":7,"ctfId":4735},"kencjohnston",{"template":696},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4741,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4742,"config":4747,"_id":4748,"_type":35,"title":4743,"_source":37,"_file":4749,"_stem":4750,"_extension":40},"/en-us/blog/authors/kevin-chu",{"name":4743,"config":4744},"Kevin Chu",{"headshot":4745,"ctfId":4746},"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":696},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4752,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4753,"config":4758,"_id":4759,"_type":35,"title":4754,"_source":37,"_file":4760,"_stem":4761,"_extension":40},"/en-us/blog/authors/kevin-morrison",{"name":4754,"config":4755},"Kevin Morrison",{"headshot":4756,"ctfId":4757},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":696},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4763,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4764,"config":4768,"_id":4769,"_type":35,"title":4765,"_source":37,"_file":4770,"_stem":4771,"_extension":40},"/en-us/blog/authors/khrystyna-humenna",{"name":4765,"config":4766},"Khrystyna Humenna",{"headshot":727,"ctfId":4767},"Khrystyna-Humenna",{"template":696},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4773,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4774,"config":4778,"_id":4779,"_type":35,"title":4775,"_source":37,"_file":4780,"_stem":4781,"_extension":40},"/en-us/blog/authors/kim-lock",{"name":4775,"config":4776},"Kim Lock",{"headshot":7,"ctfId":4777},"KimLock",{"template":696},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4783,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4784,"config":4788,"_id":4789,"_type":35,"title":4785,"_source":37,"_file":4790,"_stem":4791,"_extension":40},"/en-us/blog/authors/kirsten-abma",{"name":4785,"config":4786},"Kirsten Abma",{"headshot":727,"ctfId":4787},"Kirsten-Abma",{"template":696},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4793,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4794,"config":4798,"_id":4799,"_type":35,"title":4795,"_source":37,"_file":4800,"_stem":4801,"_extension":40},"/en-us/blog/authors/kristian-larsson",{"name":4795,"config":4796},"Kristian Larsson",{"headshot":727,"ctfId":4797},"Kristian-Larsson",{"template":696},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4803,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4804,"config":4809,"_id":4810,"_type":35,"title":4805,"_source":37,"_file":4811,"_stem":4812,"_extension":40},"/en-us/blog/authors/kristina-weis",{"name":4805,"config":4806},"Kristina Weis",{"headshot":4807,"ctfId":4808},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":696},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4814,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4815,"config":4819,"_id":4820,"_type":35,"title":4816,"_source":37,"_file":4821,"_stem":4822,"_extension":40},"/en-us/blog/authors/kurt-dusek",{"name":4816,"config":4817},"Kurt Dusek",{"headshot":7,"ctfId":4818},"kdusek",{"template":696},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4824,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4825,"config":4829,"_id":4830,"_type":35,"title":4826,"_source":37,"_file":4831,"_stem":4832,"_extension":40},"/en-us/blog/authors/kushal-koolwal",{"name":4826,"config":4827},"Kushal Koolwal",{"headshot":727,"ctfId":4828},"Kushal-Koolwal",{"template":696},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4834,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4835,"config":4840,"_id":4841,"_type":35,"title":4836,"_source":37,"_file":4842,"_stem":4843,"_extension":40},"/en-us/blog/authors/kushal-pandya",{"name":4836,"config":4837},"Kushal Pandya",{"headshot":4838,"ctfId":4839},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":696},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4845,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4846,"config":4850,"_id":4851,"_type":35,"title":4847,"_source":37,"_file":4852,"_stem":4853,"_extension":40},"/en-us/blog/authors/kwan-lee",{"name":4847,"config":4848},"Kwan Lee",{"headshot":727,"ctfId":4849},"Kwan-Lee",{"template":696},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4855,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4856,"config":4861,"_id":4862,"_type":35,"title":4857,"_source":37,"_file":4863,"_stem":4864,"_extension":40},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4857,"config":4858},"Kyla Gradin Dahl",{"headshot":4859,"ctfId":4860},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":696},"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":4866,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4867,"config":4871,"_id":4872,"_type":35,"title":4868,"_source":37,"_file":4873,"_stem":4874,"_extension":40},"/en-us/blog/authors/kyle-mann",{"name":4868,"config":4869},"Kyle Mann",{"headshot":727,"ctfId":4870},"44YiW1r6sTpbC9wKBeHGgE",{"template":696},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4876,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4877,"config":4882,"_id":4883,"_type":35,"title":4878,"_source":37,"_file":4884,"_stem":4885,"_extension":40},"/en-us/blog/authors/kyle-smith",{"name":4878,"config":4879},"Kyle Smith",{"headshot":4880,"ctfId":4881},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":696},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4887,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4888,"config":4892,"_id":4894,"_type":35,"title":4889,"_source":37,"_file":4895,"_stem":4896,"_extension":40},"/en-us/blog/authors/kymberlee-price",{"name":4889,"config":4890},"Kymberlee Price",{"headshot":4891},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":696,"gitlabHandle":4893},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4898,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4899,"config":4903,"_id":4904,"_type":35,"title":4900,"_source":37,"_file":4905,"_stem":4906,"_extension":40},"/en-us/blog/authors/lasse-schuirmann",{"name":4900,"config":4901},"Lasse Schuirmann",{"headshot":727,"ctfId":4902},"5vpo2ZOrPIS8PBp3k47S6w",{"template":696},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4908,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4909,"config":4913,"_id":4914,"_type":35,"title":4910,"_source":37,"_file":4915,"_stem":4916,"_extension":40},"/en-us/blog/authors/laura-montemayor",{"name":4910,"config":4911},"Laura Montemayor",{"headshot":7,"ctfId":4912},"lauraMon",{"template":696},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4918,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4919,"config":4924,"_id":4925,"_type":35,"title":4920,"_source":37,"_file":4926,"_stem":4927,"_extension":40},"/en-us/blog/authors/lauren-barker",{"name":4920,"config":4921},"Lauren Barker",{"headshot":4922,"ctfId":4923},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":696},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4929,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4930,"config":4934,"_id":4935,"_type":35,"title":4931,"_source":37,"_file":4936,"_stem":4937,"_extension":40},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4931,"config":4932},"Lauren Gibbons Paul",{"headshot":727,"ctfId":4933},"Lauren-Gibbons-Paul",{"template":696},"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":4939,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4940,"config":4944,"_id":4945,"_type":35,"title":4941,"_source":37,"_file":4946,"_stem":4947,"_extension":40},"/en-us/blog/authors/lauren-minning",{"name":4941,"config":4942},"Lauren Minning",{"headshot":7,"ctfId":4943},"lminning",{"template":696},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":4949,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4950,"config":4955,"_id":4956,"_type":35,"title":4951,"_source":37,"_file":4957,"_stem":4958,"_extension":40},"/en-us/blog/authors/laurena-alves",{"name":4951,"config":4952},"Laurena Alves",{"headshot":4953,"ctfId":4954},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":696},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":4960,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4961,"config":4966,"_id":4967,"_type":35,"title":4962,"_source":37,"_file":4968,"_stem":4969,"_extension":40},"/en-us/blog/authors/lee-faus",{"name":4962,"config":4963},"Lee Faus",{"headshot":4964,"ctfId":4965},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":696},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":4971,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4972,"config":4977,"_id":4978,"_type":35,"title":4973,"_source":37,"_file":4979,"_stem":4980,"_extension":40},"/en-us/blog/authors/lee-matos",{"name":4973,"config":4974},"Lee Matos",{"headshot":4975,"ctfId":4976},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":696},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":4982,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4983,"config":4988,"_id":4989,"_type":35,"title":4984,"_source":37,"_file":4990,"_stem":4991,"_extension":40},"/en-us/blog/authors/lee-tickett",{"name":4984,"config":4985},"Lee Tickett",{"headshot":4986,"ctfId":4987},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":696},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":4993,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":4994,"config":4998,"_id":4999,"_type":35,"title":4995,"_source":37,"_file":5000,"_stem":5001,"_extension":40},"/en-us/blog/authors/levente-polyak",{"name":4995,"config":4996},"Levente Polyak",{"headshot":7,"ctfId":4997},"anthraxx",{"template":696},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":5003,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5004,"config":5009,"_id":5010,"_type":35,"title":5011,"_source":37,"_file":5012,"_stem":5013,"_extension":40},"/en-us/blog/authors/lin-jen-shin",{"name":5005,"config":5006},"Lin Jen-Shin",{"headshot":5007,"ctfId":5008},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":696},"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":5015,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5016,"config":5021,"_id":5022,"_type":35,"title":5017,"_source":37,"_file":5023,"_stem":5024,"_extension":40},"/en-us/blog/authors/liz-coleman",{"name":5017,"config":5018},"Liz Coleman",{"headshot":5019,"ctfId":5020},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":696},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5026,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5027,"config":5032,"_id":5033,"_type":35,"title":5028,"_source":37,"_file":5034,"_stem":5035,"_extension":40},"/en-us/blog/authors/loryn-bortins",{"name":5028,"config":5029},"Loryn Bortins",{"headshot":5030,"ctfId":5031},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":696},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5037,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5038,"config":5042,"_id":5043,"_type":35,"title":5039,"_source":37,"_file":5044,"_stem":5045,"_extension":40},"/en-us/blog/authors/lucas-charles",{"name":5039,"config":5040},"Lucas Charles",{"headshot":727,"ctfId":5041},"01OUkmRJImMowxMk3YHGNS",{"template":696},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5047,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5048,"config":5052,"_id":5053,"_type":35,"title":5049,"_source":37,"_file":5054,"_stem":5055,"_extension":40},"/en-us/blog/authors/luka-trbojevic",{"name":5049,"config":5050},"Luka Trbojevic",{"headshot":7,"ctfId":5051},"ltrbojevic",{"template":696},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5057,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5058,"config":5062,"_id":5063,"_type":35,"title":5059,"_source":37,"_file":5064,"_stem":5065,"_extension":40},"/en-us/blog/authors/lukas-eipert",{"name":5059,"config":5060},"Lukas Eipert",{"headshot":727,"ctfId":5061},"37PO8stm7JUQgglr4tWcmw",{"template":696},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5067,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5068,"config":5073,"_id":5074,"_type":35,"title":5069,"_source":37,"_file":5075,"_stem":5076,"_extension":40},"/en-us/blog/authors/lyle-kozloff",{"name":5069,"config":5070},"Lyle Kozloff",{"headshot":5071,"ctfId":5072},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":696},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5078,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5079,"config":5084,"_id":5085,"_type":35,"title":5080,"_source":37,"_file":5086,"_stem":5087,"_extension":40},"/en-us/blog/authors/madeline-lake",{"name":5080,"config":5081},"Madeline Lake",{"headshot":5082,"ctfId":5083},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":696},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5089,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5090,"config":5095,"_id":5096,"_type":35,"title":5091,"_source":37,"_file":5097,"_stem":5098,"_extension":40},"/en-us/blog/authors/madou-coulibaly",{"name":5091,"config":5092},"Madou Coulibaly",{"headshot":5093,"ctfId":5094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":696},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5100,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5101,"config":5106,"_id":5107,"_type":35,"title":5102,"_source":37,"_file":5108,"_stem":5109,"_extension":40},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5102,"config":5103},"Magdalena Frankiewicz",{"headshot":5104,"ctfId":5105},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":696},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5111,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5112,"config":5116,"_id":5117,"_type":35,"title":5113,"_source":37,"_file":5118,"_stem":5119,"_extension":40},"/en-us/blog/authors/mahesh-kumar",{"name":5113,"config":5114},"Mahesh Kumar",{"headshot":727,"ctfId":5115},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":696},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5121,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5122,"config":5127,"_id":5128,"_type":35,"title":5123,"_source":37,"_file":5129,"_stem":5130,"_extension":40},"/en-us/blog/authors/manav-khurana",{"name":5123,"config":5124,"role":5126},"Manav Khurana",{"headshot":5125},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":696,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5132,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5133,"config":5138,"_id":5139,"_type":35,"title":5134,"_source":37,"_file":5140,"_stem":5141,"_extension":40},"/en-us/blog/authors/manuel-kraft",{"name":5134,"config":5135},"Manuel Kraft",{"headshot":5136,"ctfId":5137},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":696},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5143,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5144,"config":5148,"_id":5149,"_type":35,"title":5145,"_source":37,"_file":5150,"_stem":5151,"_extension":40},"/en-us/blog/authors/marc-radulescu",{"name":5145,"config":5146},"Marc Radulescu",{"headshot":727,"ctfId":5147},"Marc-Radulescu",{"template":696},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5153,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5154,"config":5159,"_id":5160,"_type":35,"title":5155,"_source":37,"_file":5161,"_stem":5162,"_extension":40},"/en-us/blog/authors/marc-shaw",{"name":5155,"config":5156},"Marc Shaw",{"headshot":5157,"ctfId":5158},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":696},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5164,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5165,"config":5170,"_id":5171,"_type":35,"title":5172,"_source":37,"_file":5173,"_stem":5174,"_extension":40},"/en-us/blog/authors/marcel-van-remmerden",{"name":5166,"config":5167},"Marcel van Remmerden",{"headshot":5168,"ctfId":5169},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":696},"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":5176,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5177,"config":5181,"_id":5182,"_type":35,"title":5178,"_source":37,"_file":5183,"_stem":5184,"_extension":40},"/en-us/blog/authors/marcia-ramos",{"name":5178,"config":5179},"Marcia Ramos",{"headshot":727,"ctfId":5180},"Marcia-Ramos",{"template":696},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5186,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5187,"config":5191,"_id":5192,"_type":35,"title":5188,"_source":37,"_file":5193,"_stem":5194,"_extension":40},"/en-us/blog/authors/marco-lenzo",{"name":5188,"config":5189},"Marco Lenzo",{"headshot":727,"ctfId":5190},"Marco-Lenzo",{"template":696},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5196,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5197,"config":5201,"_id":5202,"_type":35,"title":5198,"_source":37,"_file":5203,"_stem":5204,"_extension":40},"/en-us/blog/authors/marie-hargitt",{"name":5198,"config":5199},"Marie Hargitt",{"headshot":727,"ctfId":5200},"Marie-Hargitt",{"template":696},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5206,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5207,"config":5212,"_id":5213,"_type":35,"title":5208,"_source":37,"_file":5214,"_stem":5215,"_extension":40},"/en-us/blog/authors/marin-jankovski",{"name":5208,"config":5209},"Marin Jankovski",{"headshot":5210,"ctfId":5211},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":696},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5217,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5218,"config":5222,"_id":5223,"_type":35,"title":5224,"_source":37,"_file":5225,"_stem":5226,"_extension":40},"/en-us/blog/authors/marin-job",{"name":5219,"config":5220},"Marin, Job",{"headshot":727,"ctfId":5221},"Marin-Job",{"template":696},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5228,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5229,"config":5233,"_id":5234,"_type":35,"title":5235,"_source":37,"_file":5236,"_stem":5237,"_extension":40},"/en-us/blog/authors/mario-de-la-ossa",{"name":5230,"config":5231},"Mario de la Ossa",{"headshot":7,"ctfId":5232},"mdelaossa",{"template":696},"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":5239,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5240,"config":5244,"_id":5245,"_type":35,"title":5241,"_source":37,"_file":5246,"_stem":5247,"_extension":40},"/en-us/blog/authors/mark-art",{"name":5241,"config":5242},"Mark Art",{"headshot":727,"ctfId":5243},"55KCfyNmgPaJRmBZhiN7k5",{"template":696},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5249,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5250,"config":5254,"_id":5255,"_type":35,"title":5251,"_source":37,"_file":5256,"_stem":5257,"_extension":40},"/en-us/blog/authors/mark-fletcher",{"name":5251,"config":5252},"Mark Fletcher",{"headshot":7,"ctfId":5253},"markglenfletcher",{"template":696},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5259,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5260,"config":5265,"_id":5266,"_type":35,"title":5261,"_source":37,"_file":5267,"_stem":5268,"_extension":40},"/en-us/blog/authors/mark-lapierre",{"name":5261,"config":5262},"Mark Lapierre",{"headshot":5263,"ctfId":5264},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":696},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5270,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5271,"config":5276,"_id":5277,"_type":35,"title":5272,"_source":37,"_file":5278,"_stem":5279,"_extension":40},"/en-us/blog/authors/mark-loveless",{"name":5272,"config":5273},"Mark Loveless",{"headshot":5274,"ctfId":5275},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":696},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5281,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5282,"config":5286,"_id":5287,"_type":35,"title":5283,"_source":37,"_file":5288,"_stem":5289,"_extension":40},"/en-us/blog/authors/mark-pundsack",{"name":5283,"config":5284},"Mark Pundsack",{"headshot":727,"ctfId":5285},"markpundsack",{"template":696},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5291,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5292,"config":5297,"_id":5298,"_type":35,"title":5299,"_source":37,"_file":5300,"_stem":5301,"_extension":40},"/en-us/blog/authors/martin-brmmer",{"name":5293,"config":5294},"Martin Brümmer",{"headshot":5295,"ctfId":5296},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":696},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5303,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5304,"config":5308,"_id":5309,"_type":35,"title":5305,"_source":37,"_file":5310,"_stem":5311,"_extension":40},"/en-us/blog/authors/martynas-krupskis",{"name":5305,"config":5306},"Martynas Krupskis",{"headshot":727,"ctfId":5307},"3tK5S0f4QshGFGRrdEl7rn",{"template":696},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5313,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5314,"config":5318,"_id":5319,"_type":35,"title":5315,"_source":37,"_file":5320,"_stem":5321,"_extension":40},"/en-us/blog/authors/matej-latin",{"name":5315,"config":5316},"Matej Latin",{"headshot":7,"ctfId":5317},"matejlatin",{"template":696},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5323,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5324,"config":5329,"_id":5330,"_type":35,"title":5325,"_source":37,"_file":5331,"_stem":5332,"_extension":40},"/en-us/blog/authors/mathias-ewald",{"name":5325,"config":5326},"Mathias Ewald",{"headshot":5327,"ctfId":5328},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":696},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5334,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5335,"config":5339,"_id":5340,"_type":35,"title":5336,"_source":37,"_file":5341,"_stem":5342,"_extension":40},"/en-us/blog/authors/matt-baldwin",{"name":5336,"config":5337},"Matt Baldwin",{"headshot":727,"ctfId":5338},"Matt-Baldwin",{"template":696},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5344,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5345,"config":5350,"_id":5351,"_type":35,"title":5346,"_source":37,"_file":5352,"_stem":5353,"_extension":40},"/en-us/blog/authors/matt-coons",{"name":5346,"config":5347},"Matt Coons",{"headshot":5348,"ctfId":5349},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":696},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5355,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5356,"config":5361,"_id":5362,"_type":35,"title":5363,"_source":37,"_file":5364,"_stem":5365,"_extension":40},"/en-us/blog/authors/matt-delaney",{"name":5357,"config":5358},"Matt DeLaney",{"headshot":5359,"ctfId":5360},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":696},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5367,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5368,"config":5373,"_id":5374,"_type":35,"title":5369,"_source":37,"_file":5375,"_stem":5376,"_extension":40},"/en-us/blog/authors/matt-genelin",{"name":5369,"config":5370},"Matt Genelin",{"headshot":5371,"ctfId":5372},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":696},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5378,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5379,"config":5383,"_id":5384,"_type":35,"title":5380,"_source":37,"_file":5385,"_stem":5386,"_extension":40},"/en-us/blog/authors/matt-nguyen",{"name":5380,"config":5381},"Matt Nguyen",{"headshot":727,"ctfId":5382},"Matt-Nguyen",{"template":696},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5388,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5389,"config":5394,"_id":5395,"_type":35,"title":5390,"_source":37,"_file":5396,"_stem":5397,"_extension":40},"/en-us/blog/authors/matt-nohr",{"name":5390,"config":5391},"Matt Nohr",{"headshot":5392,"ctfId":5393},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":696},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5399,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5400,"config":5405,"_id":5406,"_type":35,"title":5401,"_source":37,"_file":5407,"_stem":5408,"_extension":40},"/en-us/blog/authors/matt-smiley",{"name":5401,"config":5402},"Matt Smiley",{"headshot":5403,"ctfId":5404},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":696},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5410,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5411,"config":5415,"_id":5416,"_type":35,"title":5412,"_source":37,"_file":5417,"_stem":5418,"_extension":40},"/en-us/blog/authors/matt-wilson",{"name":5412,"config":5413},"Matt Wilson",{"headshot":727,"ctfId":5414},"mattwilson",{"template":696},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5420,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5421,"config":5426,"_id":5427,"_type":35,"title":5422,"_source":37,"_file":5428,"_stem":5429,"_extension":40},"/en-us/blog/authors/matthew-macfarlane",{"name":5422,"config":5423},"Matthew Macfarlane",{"headshot":5424,"ctfId":5425},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":696},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5431,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5432,"config":5437,"_id":5438,"_type":35,"title":5433,"_source":37,"_file":5439,"_stem":5440,"_extension":40},"/en-us/blog/authors/matthew-nearents",{"name":5433,"config":5434},"Matthew Nearents",{"headshot":5435,"ctfId":5436},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":696},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5442,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5443,"config":5448,"_id":5449,"_type":35,"title":5450,"_source":37,"_file":5451,"_stem":5452,"_extension":40},"/en-us/blog/authors/matthias-kppler",{"name":5444,"config":5445},"Matthias Käppler",{"headshot":5446,"ctfId":5447},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":696},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5454,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5455,"config":5459,"_id":5460,"_type":35,"title":5456,"_source":37,"_file":5461,"_stem":5462,"_extension":40},"/en-us/blog/authors/matthieu-fronton",{"name":5456,"config":5457},"Matthieu Fronton",{"headshot":7,"ctfId":5458},"frntn",{"template":696},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5464,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5465,"config":5469,"_id":5470,"_type":35,"title":5466,"_source":37,"_file":5471,"_stem":5472,"_extension":40},"/en-us/blog/authors/max-woolf",{"name":5466,"config":5467},"Max Woolf",{"headshot":727,"ctfId":5468},"Max-Woolf",{"template":696},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5474,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5475,"config":5480,"_id":5481,"_type":35,"title":5476,"_source":37,"_file":5482,"_stem":5483,"_extension":40},"/en-us/blog/authors/maximilien-belinga",{"name":5476,"config":5477},"Maximilien Belinga",{"headshot":5478,"ctfId":5479},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":696},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5485,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5486,"config":5490,"_id":5491,"_type":35,"title":5487,"_source":37,"_file":5492,"_stem":5493,"_extension":40},"/en-us/blog/authors/mayank-tahilramani",{"name":5487,"config":5488},"Mayank Tahilramani",{"headshot":7,"ctfId":5489},"mayanktahil",{"template":696},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5495,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5496,"config":5501,"_id":5502,"_type":35,"title":5497,"_source":37,"_file":5503,"_stem":5504,"_extension":40},"/en-us/blog/authors/mayra-cabrera",{"name":5497,"config":5498},"Mayra Cabrera",{"headshot":5499,"ctfId":5500},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":696},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5506,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5507,"config":5511,"_id":5512,"_type":35,"title":5508,"_source":37,"_file":5513,"_stem":5514,"_extension":40},"/en-us/blog/authors/meghan-maneval",{"name":5508,"config":5509},"Meghan Maneval",{"headshot":7,"ctfId":5510},"mmaneval20",{"template":696},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5516,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5517,"config":5522,"_id":5523,"_type":35,"title":5518,"_source":37,"_file":5524,"_stem":5525,"_extension":40},"/en-us/blog/authors/mek-stittri",{"name":5518,"config":5519},"Mek Stittri",{"headshot":5520,"ctfId":5521},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":696},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5527,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5528,"config":5532,"_id":5533,"_type":35,"title":5529,"_source":37,"_file":5534,"_stem":5535,"_extension":40},"/en-us/blog/authors/melissa-farber",{"name":5529,"config":5530},"Melissa Farber",{"headshot":7,"ctfId":5531},"mfarber",{"template":696},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5537,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5538,"config":5542,"_id":5543,"_type":35,"title":5539,"_source":37,"_file":5544,"_stem":5545,"_extension":40},"/en-us/blog/authors/melissa-smolensky",{"name":5539,"config":5540},"Melissa Smolensky",{"headshot":7,"ctfId":5541},"melsmo",{"template":696},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5547,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5548,"config":5553,"_id":5554,"_type":35,"title":5549,"_source":37,"_file":5555,"_stem":5556,"_extension":40},"/en-us/blog/authors/melissa-ushakov",{"name":5549,"config":5550},"Melissa Ushakov",{"headshot":5551,"ctfId":5552},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":696},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5558,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5559,"config":5563,"_id":5564,"_type":35,"title":5560,"_source":37,"_file":5565,"_stem":5566,"_extension":40},"/en-us/blog/authors/michael-fahey",{"name":5560,"config":5561},"Michael Fahey",{"headshot":7,"ctfId":5562},"mfahey",{"template":696},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5568,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5569,"config":5574,"_id":5575,"_type":35,"title":5570,"_source":37,"_file":5576,"_stem":5577,"_extension":40},"/en-us/blog/authors/michael-friedrich",{"name":5570,"config":5571},"Michael Friedrich",{"headshot":5572,"ctfId":5573},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":696},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5579,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5580,"config":5584,"_id":5585,"_type":35,"title":5581,"_source":37,"_file":5586,"_stem":5587,"_extension":40},"/en-us/blog/authors/michael-henriksen",{"name":5581,"config":5582},"Michael Henriksen",{"headshot":727,"ctfId":5583},"3DmojnawcJFqAgoNMCpFTX",{"template":696},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5589,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5590,"config":5594,"_id":5595,"_type":35,"title":5591,"_source":37,"_file":5596,"_stem":5597,"_extension":40},"/en-us/blog/authors/michael-karampalas",{"name":5591,"config":5592},"Michael Karampalas",{"headshot":7,"ctfId":5593},"mkarampalas",{"template":696},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5599,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5600,"config":5605,"_id":5606,"_type":35,"title":5601,"_source":37,"_file":5607,"_stem":5608,"_extension":40},"/en-us/blog/authors/michael-kozono",{"name":5601,"config":5602},"Michael Kozono",{"headshot":5603,"ctfId":5604},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":696},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5610,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5611,"config":5615,"_id":5616,"_type":35,"title":5612,"_source":37,"_file":5617,"_stem":5618,"_extension":40},"/en-us/blog/authors/michael-miranda",{"name":5612,"config":5613},"Michael Miranda",{"headshot":7,"ctfId":5614},"mikemiranda",{"template":696},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5620,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5621,"config":5626,"_id":5627,"_type":35,"title":5622,"_source":37,"_file":5628,"_stem":5629,"_extension":40},"/en-us/blog/authors/michelle-gill",{"name":5622,"config":5623},"Michelle Gill",{"headshot":5624,"ctfId":5625},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":696},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5631,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5632,"config":5637,"_id":5638,"_type":35,"title":5633,"_source":37,"_file":5639,"_stem":5640,"_extension":40},"/en-us/blog/authors/miguel-rincon",{"name":5633,"config":5634},"Miguel Rincon",{"headshot":5635,"ctfId":5636},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":696},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5642,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5643,"config":5647,"_id":5648,"_type":35,"title":5644,"_source":37,"_file":5649,"_stem":5650,"_extension":40},"/en-us/blog/authors/mike-bartlett",{"name":5644,"config":5645},"Mike Bartlett",{"headshot":7,"ctfId":5646},"mydigitalself",{"template":696},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5652,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5653,"config":5657,"_id":5658,"_type":35,"title":5654,"_source":37,"_file":5659,"_stem":5660,"_extension":40},"/en-us/blog/authors/mike-eddington",{"name":5654,"config":5655},"Mike Eddington",{"headshot":727,"ctfId":5656},"q5tK0TgB1ZovSwShKSvOJ",{"template":696},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5662,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5663,"config":5668,"_id":5669,"_type":35,"title":5664,"_source":37,"_file":5670,"_stem":5671,"_extension":40},"/en-us/blog/authors/mike-flouton",{"name":5664,"config":5665},"Mike Flouton",{"headshot":5666,"ctfId":5667},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":696},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5673,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5674,"config":5678,"_id":5679,"_type":35,"title":5675,"_source":37,"_file":5680,"_stem":5681,"_extension":40},"/en-us/blog/authors/mike-gerwitz",{"name":5675,"config":5676},"Mike Gerwitz",{"headshot":727,"ctfId":5677},"Mike-Gerwitz",{"template":696},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5683,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5684,"config":5688,"_id":5689,"_type":35,"title":5685,"_source":37,"_file":5690,"_stem":5691,"_extension":40},"/en-us/blog/authors/mike-greiling",{"name":5685,"config":5686},"Mike Greiling",{"headshot":7,"ctfId":5687},"mikegreiling",{"template":696},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5693,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5694,"config":5698,"_id":5699,"_type":35,"title":5695,"_source":37,"_file":5700,"_stem":5701,"_extension":40},"/en-us/blog/authors/mike-vanbuskirk",{"name":5695,"config":5696},"Mike Vanbuskirk",{"headshot":727,"ctfId":5697},"Mike-Vanbuskirk",{"template":696},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5703,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5704,"config":5708,"_id":5709,"_type":35,"title":5705,"_source":37,"_file":5710,"_stem":5711,"_extension":40},"/en-us/blog/authors/miranda-carter",{"name":5705,"config":5706},"Miranda Carter",{"headshot":727,"ctfId":5707},"4xT4dbRh6N9i7jW5xuPhVp",{"template":696},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5713,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5714,"config":5719,"_id":5720,"_type":35,"title":5715,"_source":37,"_file":5721,"_stem":5722,"_extension":40},"/en-us/blog/authors/mitra-jozenazemian",{"name":5715,"config":5716},"Mitra Jozenazemian",{"headshot":5717,"ctfId":5718},"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":696},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5724,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5725,"config":5730,"_id":5731,"_type":35,"title":5726,"_source":37,"_file":5732,"_stem":5733,"_extension":40},"/en-us/blog/authors/monmayuri-ray",{"name":5726,"config":5727},"Monmayuri Ray",{"headshot":5728,"ctfId":5729},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":696},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5735,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5736,"config":5741,"_id":5743,"_type":35,"title":5737,"_source":37,"_file":5744,"_stem":5745,"_extension":40},"/en-us/blog/authors/naoharu-sasaki",{"name":5737,"config":5738,"role":5740},"Naoharu Sasaki",{"headshot":5739},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":696,"gitlabHandle":5742},"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":5747,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5748,"config":5753,"_id":5754,"_type":35,"title":5749,"_source":37,"_file":5755,"_stem":5756,"_extension":40},"/en-us/blog/authors/nate-rosandich",{"name":5749,"config":5750},"Nate Rosandich",{"headshot":5751,"ctfId":5752},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":696},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5758,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5759,"config":5764,"_id":5765,"_type":35,"title":5760,"_source":37,"_file":5766,"_stem":5767,"_extension":40},"/en-us/blog/authors/neha-khalwadekar",{"name":5760,"config":5761},"Neha Khalwadekar",{"headshot":5762,"ctfId":5763},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":696},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5769,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5770,"config":5775,"_id":5776,"_type":35,"title":5777,"_source":37,"_file":5778,"_stem":5779,"_extension":40},"/en-us/blog/authors/neil-mccorrison",{"name":5771,"config":5772},"Neil McCorrison",{"headshot":5773,"ctfId":5774},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":696},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5781,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5782,"config":5787,"_id":5788,"_type":35,"title":5789,"_source":37,"_file":5790,"_stem":5791,"_extension":40},"/en-us/blog/authors/neil-mcdonald",{"name":5783,"config":5784},"Neil McDonald",{"headshot":5785,"ctfId":5786},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":696},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5793,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5794,"config":5798,"_id":5800,"_type":35,"title":5795,"_source":37,"_file":5801,"_stem":5802,"_extension":40},"/en-us/blog/authors/nick-cayou",{"name":5795,"config":5796,"role":7},"Nick Cayou",{"headshot":5797},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":696,"gitlabHandle":5799},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5804,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5805,"config":5810,"_id":5811,"_type":35,"title":5806,"_source":37,"_file":5812,"_stem":5813,"_extension":40},"/en-us/blog/authors/nick-malcolm",{"name":5806,"config":5807},"Nick Malcolm",{"headshot":5808,"ctfId":5809},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":696},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5815,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5816,"config":5820,"_id":5821,"_type":35,"title":5817,"_source":37,"_file":5822,"_stem":5823,"_extension":40},"/en-us/blog/authors/nick-thomas",{"name":5817,"config":5818},"Nick Thomas",{"headshot":7,"ctfId":5819},"nickthomas",{"template":696},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5825,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5826,"config":5831,"_id":5832,"_type":35,"title":5827,"_source":37,"_file":5833,"_stem":5834,"_extension":40},"/en-us/blog/authors/nick-veenhof",{"name":5827,"config":5828},"Nick Veenhof",{"headshot":5829,"ctfId":5830},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":696},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5836,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5837,"config":5841,"_id":5842,"_type":35,"title":5838,"_source":37,"_file":5843,"_stem":5844,"_extension":40},"/en-us/blog/authors/nico-meisenzahl",{"name":5838,"config":5839},"Nico Meisenzahl",{"headshot":7,"ctfId":5840},"nicomeisenzahl",{"template":696},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5846,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5847,"config":5851,"_id":5852,"_type":35,"title":5848,"_source":37,"_file":5853,"_stem":5854,"_extension":40},"/en-us/blog/authors/nicole-schwartz",{"name":5848,"config":5849},"Nicole Schwartz",{"headshot":7,"ctfId":5850},"nicoleschwartz",{"template":696},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5856,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5857,"config":5862,"_id":5863,"_type":35,"title":5858,"_source":37,"_file":5864,"_stem":5865,"_extension":40},"/en-us/blog/authors/nikhil-george",{"name":5858,"config":5859},"Nikhil George",{"headshot":5860,"ctfId":5861},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":696},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5867,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5868,"config":5873,"_id":5874,"_type":35,"title":5869,"_source":37,"_file":5875,"_stem":5876,"_extension":40},"/en-us/blog/authors/nima-badiey",{"name":5869,"config":5870},"Nima Badiey",{"headshot":5871,"ctfId":5872},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":696},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5878,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5879,"config":5884,"_id":5885,"_type":35,"title":5880,"_source":37,"_file":5886,"_stem":5887,"_extension":40},"/en-us/blog/authors/noah-ing",{"name":5880,"config":5881},"Noah Ing",{"headshot":5882,"ctfId":5883},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":696},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5889,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5890,"config":5894,"_id":5895,"_type":35,"title":5891,"_source":37,"_file":5896,"_stem":5897,"_extension":40},"/en-us/blog/authors/noah-manger",{"name":5891,"config":5892},"Noah Manger",{"headshot":727,"ctfId":5893},"Noah-Manger",{"template":696},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5899,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5900,"config":5904,"_id":5905,"_type":35,"title":5901,"_source":37,"_file":5906,"_stem":5907,"_extension":40},"/en-us/blog/authors/noah-zoschke",{"name":5901,"config":5902},"Noah Zoschke",{"headshot":727,"ctfId":5903},"Noah-Zoschke",{"template":696},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5909,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5910,"config":5914,"_id":5915,"_type":35,"title":5911,"_source":37,"_file":5916,"_stem":5917,"_extension":40},"/en-us/blog/authors/nolan-myers",{"name":5911,"config":5912},"Nolan Myers",{"headshot":727,"ctfId":5913},"Nolan-Myers",{"template":696},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5919,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5920,"config":5924,"_id":5925,"_type":35,"title":5921,"_source":37,"_file":5926,"_stem":5927,"_extension":40},"/en-us/blog/authors/nupur-sharma",{"name":5921,"config":5922},"Nupur Sharma",{"headshot":727,"ctfId":5923},"6p7RQDl0cDWnAxU8yu2vVK",{"template":696},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5929,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5930,"config":5934,"_id":5935,"_type":35,"title":5931,"_source":37,"_file":5936,"_stem":5937,"_extension":40},"/en-us/blog/authors/nuritzi-sanchez",{"name":5931,"config":5932},"Nuritzi Sanchez",{"headshot":7,"ctfId":5933},"nuritzi",{"template":696},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5939,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5940,"config":5945,"_id":5946,"_type":35,"title":5941,"_source":37,"_file":5947,"_stem":5948,"_extension":40},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5941,"config":5942},"Oleksandr Pysaryuk",{"headshot":5943,"ctfId":5944},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":696},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":5950,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5951,"config":5956,"_id":5957,"_type":35,"title":5958,"_source":37,"_file":5959,"_stem":5960,"_extension":40},"/en-us/blog/authors/olena-horal-koretska",{"name":5952,"config":5953},"Olena Horal-Koretska",{"headshot":5954,"ctfId":5955},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":696},"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":5962,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5963,"config":5967,"_id":5969,"_type":35,"title":5964,"_source":37,"_file":5970,"_stem":5971,"_extension":40},"/en-us/blog/authors/olivier-campeau",{"name":5964,"config":5965},"Olivier Campeau",{"headshot":5966},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":696,"gitlabHandle":5968},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5973,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5974,"config":5979,"_id":5980,"_type":35,"title":5981,"_source":37,"_file":5982,"_stem":5983,"_extension":40},"/en-us/blog/authors/olivier-dupr",{"name":5975,"config":5976},"Olivier Dupré",{"headshot":5977,"ctfId":5978},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":696},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":5985,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5986,"config":5991,"_id":5992,"_type":35,"title":5987,"_source":37,"_file":5993,"_stem":5994,"_extension":40},"/en-us/blog/authors/omar-fernandez",{"name":5987,"config":5988},"Omar Fernandez",{"headshot":5989,"ctfId":5990},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":696},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":5996,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":5997,"config":6001,"_id":6002,"_type":35,"title":5998,"_source":37,"_file":6003,"_stem":6004,"_extension":40},"/en-us/blog/authors/opher-vishnia",{"name":5998,"config":5999},"Opher Vishnia",{"headshot":727,"ctfId":6000},"O0F3sw3av9pRAxeP9iR7N",{"template":696},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":6006,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6007,"config":6011,"_id":6012,"_type":35,"title":6008,"_source":37,"_file":6013,"_stem":6014,"_extension":40},"/en-us/blog/authors/orit-golowinski",{"name":6008,"config":6009},"Orit Golowinski",{"headshot":7,"ctfId":6010},"ogolowinski",{"template":696},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6016,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6017,"config":6022,"_id":6023,"_type":35,"title":6018,"_source":37,"_file":6024,"_stem":6025,"_extension":40},"/en-us/blog/authors/ottilia-westerlund",{"name":6018,"config":6019},"Ottilia Westerlund",{"headshot":6020,"ctfId":6021},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":696},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6027,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6028,"config":6032,"_id":6033,"_type":35,"title":6029,"_source":37,"_file":6034,"_stem":6035,"_extension":40},"/en-us/blog/authors/owen-williams",{"name":6029,"config":6030},"Owen Williams",{"headshot":727,"ctfId":6031},"Owen-Williams",{"template":696},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6037,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6038,"config":6042,"_id":6043,"_type":35,"title":6039,"_source":37,"_file":6044,"_stem":6045,"_extension":40},"/en-us/blog/authors/pablo-carranza",{"name":6039,"config":6040},"Pablo Carranza",{"headshot":727,"ctfId":6041},"Pablo-Carranza",{"template":696},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6047,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6048,"config":6052,"_id":6053,"_type":35,"title":6049,"_source":37,"_file":6054,"_stem":6055,"_extension":40},"/en-us/blog/authors/parker-ennis",{"name":6049,"config":6050},"Parker Ennis",{"headshot":7,"ctfId":6051},"parkerennis",{"template":696},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6057,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6058,"config":6062,"_id":6063,"_type":35,"title":6059,"_source":37,"_file":6064,"_stem":6065,"_extension":40},"/en-us/blog/authors/patricio-cano",{"name":6059,"config":6060},"Patricio Cano",{"headshot":727,"ctfId":6061},"Patricio-Cano",{"template":696},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6067,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6068,"config":6072,"_id":6073,"_type":35,"title":6069,"_source":37,"_file":6074,"_stem":6075,"_extension":40},"/en-us/blog/authors/patrick-deuley",{"name":6069,"config":6070},"Patrick Deuley",{"headshot":727,"ctfId":6071},"4YYemtKKpxKC4yukyFavai",{"template":696},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6077,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6078,"config":6082,"_id":6083,"_type":35,"title":6079,"_source":37,"_file":6084,"_stem":6085,"_extension":40},"/en-us/blog/authors/patrick-foster",{"name":6079,"config":6080},"Patrick Foster",{"headshot":727,"ctfId":6081},"Patrick-Foster",{"template":696},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6087,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6088,"config":6093,"_id":6094,"_type":35,"title":6089,"_source":37,"_file":6095,"_stem":6096,"_extension":40},"/en-us/blog/authors/patrick-steinhardt",{"name":6089,"config":6090},"Patrick Steinhardt",{"headshot":6091,"ctfId":6092},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":696},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6098,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6099,"config":6103,"_id":6104,"_type":35,"title":6100,"_source":37,"_file":6105,"_stem":6106,"_extension":40},"/en-us/blog/authors/patty-cheung",{"name":6100,"config":6101},"Patty Cheung",{"headshot":727,"ctfId":6102},"pattycheung",{"template":696},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6108,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6109,"config":6113,"_id":6114,"_type":35,"title":6110,"_source":37,"_file":6115,"_stem":6116,"_extension":40},"/en-us/blog/authors/paul-badcock",{"name":6110,"config":6111},"Paul Badcock",{"headshot":727,"ctfId":6112},"TbNQIdiD4vlFB7XYXeArb",{"template":696},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6118,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6119,"config":6123,"_id":6124,"_type":35,"title":6125,"_source":37,"_file":6126,"_stem":6127,"_extension":40},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6120,"config":6121},"Paul Gascou-Vaillancourt",{"headshot":727,"ctfId":6122},"6Yg7HWPoy2E5vwudH0EZja",{"template":696},"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":6129,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6130,"config":6134,"_id":6135,"_type":35,"title":6131,"_source":37,"_file":6136,"_stem":6137,"_extension":40},"/en-us/blog/authors/paul-hibbitts",{"name":6131,"config":6132},"Paul Hibbitts",{"headshot":727,"ctfId":6133},"Paul-Hibbitts",{"template":696},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6139,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6140,"config":6144,"_id":6145,"_type":35,"title":6141,"_source":37,"_file":6146,"_stem":6147,"_extension":40},"/en-us/blog/authors/paul-machle",{"name":6141,"config":6142},"Paul Machle",{"headshot":727,"ctfId":6143},"Paul-Machle",{"template":696},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6149,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6150,"config":6154,"_id":6156,"_type":35,"title":6151,"_source":37,"_file":6157,"_stem":6158,"_extension":40},"/en-us/blog/authors/paul-meresanu",{"name":6151,"role":7,"config":6152},"Paul Meresanu",{"headshot":6153},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":696,"gitlabHandle":6155},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6160,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6161,"config":6166,"_id":6167,"_type":35,"title":6162,"_source":37,"_file":6168,"_stem":6169,"_extension":40},"/en-us/blog/authors/payton-burdette",{"name":6162,"config":6163},"Payton Burdette",{"headshot":6164,"ctfId":6165},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":696},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6171,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6172,"config":6176,"_id":6177,"_type":35,"title":6173,"_source":37,"_file":6178,"_stem":6179,"_extension":40},"/en-us/blog/authors/pedro-fortuna",{"name":6173,"config":6174},"Pedro Fortuna",{"headshot":727,"ctfId":6175},"7JwB4WZYF19OKwOo4yk5n4",{"template":696},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6181,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6182,"config":6187,"_id":6188,"_type":35,"title":6189,"_source":37,"_file":6190,"_stem":6191,"_extension":40},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6183,"config":6184},"Pedro Moreira da Silva",{"headshot":6185,"ctfId":6186},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":696},"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":6193,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6194,"config":6199,"_id":6200,"_type":35,"title":6195,"_source":37,"_file":6201,"_stem":6202,"_extension":40},"/en-us/blog/authors/phil-hughes",{"name":6195,"config":6196},"Phil Hughes",{"headshot":6197,"ctfId":6198},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":696},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6204,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6205,"config":6209,"_id":6210,"_type":35,"title":6206,"_source":37,"_file":6211,"_stem":6212,"_extension":40},"/en-us/blog/authors/philip-welz",{"name":6206,"config":6207},"Philip Welz",{"headshot":7,"ctfId":6208},"philxx",{"template":696},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6214,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6215,"config":6220,"_id":6221,"_type":35,"title":6222,"_source":37,"_file":6223,"_stem":6224,"_extension":40},"/en-us/blog/authors/philippe-lafoucrire",{"name":6216,"config":6217},"Philippe Lafoucrière",{"headshot":6218,"ctfId":6219},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":696},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6226,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6227,"config":6231,"_id":6232,"_type":35,"title":6233,"_source":37,"_file":6234,"_stem":6235,"_extension":40},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6228,"config":6229},"Pierre de La Morinerie",{"headshot":727,"ctfId":6230},"Pierre-de-La-Morinerie",{"template":696},"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":6237,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6238,"config":6242,"_id":6243,"_type":35,"title":6239,"_source":37,"_file":6244,"_stem":6245,"_extension":40},"/en-us/blog/authors/pierre-smeyers",{"name":6239,"config":6240},"Pierre Smeyers",{"headshot":7,"ctfId":6241},"pismy",{"template":696},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6247,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6248,"config":6253,"_id":6254,"_type":35,"title":6249,"_source":37,"_file":6255,"_stem":6256,"_extension":40},"/en-us/blog/authors/pini-wietchner",{"name":6249,"config":6250},"Pini Wietchner",{"headshot":6251,"ctfId":6252},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":696},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6258,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6259,"config":6263,"_id":6264,"_type":35,"title":6265,"_source":37,"_file":6266,"_stem":6267,"_extension":40},"/en-us/blog/authors/pj-metz",{"name":6260,"config":6261},"PJ Metz",{"headshot":727,"ctfId":6262},"PjMetz",{"template":696},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6269,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6270,"config":6273,"_id":6274,"_type":35,"title":6275,"_source":37,"_file":6276,"_stem":6277,"_extension":40},"/en-us/blog/authors/plapadoo",{"name":6271,"config":6272},"plapadoo",{"headshot":727,"ctfId":6271},{"template":696},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6279,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6280,"config":6284,"_id":6285,"_type":35,"title":6281,"_source":37,"_file":6286,"_stem":6287,"_extension":40},"/en-us/blog/authors/pranay-bakre",{"name":6281,"config":6282},"Pranay Bakre",{"headshot":7,"ctfId":6283},"Darren-Eastman",{"template":696},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6289,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6290,"config":6294,"_id":6295,"_type":35,"title":6291,"_source":37,"_file":6296,"_stem":6297,"_extension":40},"/en-us/blog/authors/priyanka-sharma",{"name":6291,"config":6292},"Priyanka Sharma",{"headshot":7,"ctfId":6293},"pritianka",{"template":696},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6299,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6300,"config":6305,"_id":6306,"_type":35,"title":6307,"_source":37,"_file":6308,"_stem":6309,"_extension":40},"/en-us/blog/authors/pter-bozs",{"name":6301,"config":6302},"Péter Bozsó",{"headshot":6303,"ctfId":6304},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":696},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6311,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6312,"config":6316,"_id":6317,"_type":35,"title":6313,"_source":37,"_file":6318,"_stem":6319,"_extension":40},"/en-us/blog/authors/quan-to",{"name":6313,"config":6314},"Quan To",{"headshot":727,"ctfId":6315},"5dswLnpCobgICjM0RpHMU2",{"template":696},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6321,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6322,"config":6327,"_id":6328,"_type":35,"title":6323,"_source":37,"_file":6329,"_stem":6330,"_extension":40},"/en-us/blog/authors/rachel-nienaber",{"name":6323,"config":6324},"Rachel Nienaber",{"headshot":6325,"ctfId":6326},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":696},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6332,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6333,"config":6337,"_id":6339,"_type":35,"title":6334,"_source":37,"_file":6340,"_stem":6341,"_extension":40},"/en-us/blog/authors/radovan-bacovic",{"name":6334,"config":6335},"Radovan Bacovic",{"headshot":6336},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":696,"gitlabHandle":6338},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6343,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6344,"config":6348,"_id":6349,"_type":35,"title":6350,"_source":37,"_file":6351,"_stem":6352,"_extension":40},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6345,"config":6346},"Rahul Bhargava, CTO, Evolphin",{"headshot":727,"ctfId":6347},"Rahul-Bhargava-CTO-Evolphin",{"template":696},"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":6354,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6355,"config":6360,"_id":6361,"_type":35,"title":6356,"_source":37,"_file":6362,"_stem":6363,"_extension":40},"/en-us/blog/authors/raimund-hook",{"name":6356,"config":6357},"Raimund Hook",{"headshot":6358,"ctfId":6359},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":696},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6365,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6366,"config":6370,"_id":6371,"_type":35,"title":6367,"_source":37,"_file":6372,"_stem":6373,"_extension":40},"/en-us/blog/authors/raquel-campuzano",{"name":6367,"config":6368},"Raquel Campuzano",{"headshot":727,"ctfId":6369},"Raquel-Campuzano",{"template":696},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6375,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6376,"config":6380,"_id":6381,"_type":35,"title":6377,"_source":37,"_file":6382,"_stem":6383,"_extension":40},"/en-us/blog/authors/ray-paik",{"name":6377,"config":6378},"Ray Paik",{"headshot":7,"ctfId":6379},"rpaik",{"template":696},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6385,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6386,"config":6391,"_id":6392,"_type":35,"title":6387,"_source":37,"_file":6393,"_stem":6394,"_extension":40},"/en-us/blog/authors/rayana-verissimo",{"name":6387,"config":6388},"Rayana Verissimo",{"headshot":6389,"ctfId":6390},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":696},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6396,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6397,"config":6401,"_id":6403,"_type":35,"title":6404,"_source":37,"_file":6405,"_stem":6406,"_extension":40},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6398,"config":6399},"Rebeca Fenoy-Anthony",{"headshot":6400},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":696,"gitlabHandle":6402},"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":6408,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6409,"config":6413,"_id":6414,"_type":35,"title":6410,"_source":37,"_file":6415,"_stem":6416,"_extension":40},"/en-us/blog/authors/rebecca-dodd",{"name":6410,"config":6411},"Rebecca Dodd",{"headshot":727,"ctfId":6412},"Rebecca-Dodd",{"template":696},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6418,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6419,"config":6423,"_id":6424,"_type":35,"title":6420,"_source":37,"_file":6425,"_stem":6426,"_extension":40},"/en-us/blog/authors/regis-freyd",{"name":6420,"config":6421},"Regis Freyd",{"headshot":727,"ctfId":6422},"Regis-Freyd",{"template":696},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6428,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6429,"config":6434,"_id":6435,"_type":35,"title":6430,"_source":37,"_file":6436,"_stem":6437,"_extension":40},"/en-us/blog/authors/regnard-raquedan",{"name":6430,"config":6431},"Regnard Raquedan",{"headshot":6432,"ctfId":6433},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":696},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6439,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6440,"config":6444,"_id":6445,"_type":35,"title":6441,"_source":37,"_file":6446,"_stem":6447,"_extension":40},"/en-us/blog/authors/renato-stanic",{"name":6441,"config":6442},"Renato Stanic",{"headshot":7,"ctfId":6443},"rstanic12",{"template":696},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6449,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6450,"config":6455,"_id":6456,"_type":35,"title":6451,"_source":37,"_file":6457,"_stem":6458,"_extension":40},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6451,"config":6452},"Ricardo Amarilla Villalba",{"headshot":6453,"ctfId":6454},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":696},"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":6460,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6461,"config":6465,"_id":6466,"_type":35,"title":6462,"_source":37,"_file":6467,"_stem":6468,"_extension":40},"/en-us/blog/authors/riccardo-padovani",{"name":6462,"config":6463},"Riccardo Padovani",{"headshot":727,"ctfId":6464},"Riccardo-Padovani",{"template":696},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6470,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6471,"config":6476,"_id":6477,"_type":35,"title":6478,"_source":37,"_file":6479,"_stem":6480,"_extension":40},"/en-us/blog/authors/rmy-coutable",{"name":6472,"config":6473},"Rémy Coutable",{"headshot":6474,"ctfId":6475},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":696},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6482,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6483,"config":6488,"_id":6489,"_type":35,"title":6484,"_source":37,"_file":6490,"_stem":6491,"_extension":40},"/en-us/blog/authors/rob-jackson",{"name":6484,"config":6485},"Rob Jackson",{"headshot":6486,"ctfId":6487},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":696},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6493,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6494,"config":6498,"_id":6499,"_type":35,"title":6495,"_source":37,"_file":6500,"_stem":6501,"_extension":40},"/en-us/blog/authors/rob-ribeiro",{"name":6495,"config":6496},"Rob Ribeiro",{"headshot":727,"ctfId":6497},"Rob-Ribeiro",{"template":696},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6503,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6504,"config":6508,"_id":6509,"_type":35,"title":6505,"_source":37,"_file":6510,"_stem":6511,"_extension":40},"/en-us/blog/authors/robert-speicher",{"name":6505,"config":6506},"Robert Speicher",{"headshot":7,"ctfId":6507},"rspeicher",{"template":696},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6513,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6514,"config":6519,"_id":6520,"_type":35,"title":6515,"_source":37,"_file":6521,"_stem":6522,"_extension":40},"/en-us/blog/authors/robert-williams",{"name":6515,"config":6516},"Robert Williams",{"headshot":6517,"ctfId":6518},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":696},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6524,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6525,"config":6531,"_id":6532,"_type":35,"title":6526,"_source":37,"_file":6533,"_stem":6534,"_extension":40},"/en-us/blog/authors/robin-schulman",{"name":6526,"config":6527,"role":6530},"Robin Schulman",{"headshot":6528,"ctfId":6529},"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":696},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6536,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6537,"config":6541,"_id":6542,"_type":35,"title":6538,"_source":37,"_file":6543,"_stem":6544,"_extension":40},"/en-us/blog/authors/roger-woo",{"name":6538,"config":6539},"Roger Woo",{"headshot":727,"ctfId":6540},"rogerwoo",{"template":696},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6546,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6547,"config":6553,"_id":6554,"_type":35,"title":6555,"_source":37,"_file":6556,"_stem":6557,"_extension":40},"/en-us/blog/authors/rohit-shambhuni",{"role":6548,"name":6549,"config":6550},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6551,"ctfId":6552},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":696},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6559,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6560,"config":6564,"_id":6565,"_type":35,"title":6561,"_source":37,"_file":6566,"_stem":6567,"_extension":40},"/en-us/blog/authors/roman-kuba",{"name":6561,"config":6562},"Roman Kuba",{"headshot":7,"ctfId":6563},"rkuba",{"template":696},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6569,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6570,"config":6575,"_id":6576,"_type":35,"title":6577,"_source":37,"_file":6578,"_stem":6579,"_extension":40},"/en-us/blog/authors/romuald-atchad",{"name":6571,"config":6572},"Romuald Atchadé",{"headshot":6573,"ctfId":6574},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":696},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6581,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6582,"config":6586,"_id":6587,"_type":35,"title":6588,"_source":37,"_file":6589,"_stem":6590,"_extension":40},"/en-us/blog/authors/ronald-van-zon",{"name":6583,"config":6584},"Ronald van Zon",{"headshot":7,"ctfId":6585},"Eagllus",{"template":696},"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":6592,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6593,"config":6597,"_id":6598,"_type":35,"title":6594,"_source":37,"_file":6599,"_stem":6600,"_extension":40},"/en-us/blog/authors/ross-fuhrman",{"name":6594,"config":6595},"Ross Fuhrman",{"headshot":727,"ctfId":6596},"7dkuWBvIc0AQanUclt3pOk",{"template":696},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6602,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6603,"config":6607,"_id":6608,"_type":35,"title":6604,"_source":37,"_file":6609,"_stem":6610,"_extension":40},"/en-us/blog/authors/roy-taragan",{"name":6604,"config":6605},"Roy Taragan",{"headshot":727,"ctfId":6606},"3pnwP9gqELfda3DCOQJQCL",{"template":696},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6612,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6613,"config":6618,"_id":6619,"_type":35,"title":6614,"_source":37,"_file":6620,"_stem":6621,"_extension":40},"/en-us/blog/authors/ruby-nealon",{"name":6614,"config":6615},"Ruby Nealon",{"headshot":6616,"ctfId":6617},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":696},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6623,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6624,"config":6628,"_id":6629,"_type":35,"title":6625,"_source":37,"_file":6630,"_stem":6631,"_extension":40},"/en-us/blog/authors/rupert-douglas",{"name":6625,"config":6626},"Rupert Douglas",{"headshot":7,"ctfId":6627},"rdouglasgitlab",{"template":696},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6633,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6634,"config":6638,"_id":6639,"_type":35,"title":6640,"_source":37,"_file":6641,"_stem":6642,"_extension":40},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6635,"config":6636},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6637},"3PShSyZ6DJXnkDa5xrQs7V",{"template":696},"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":6644,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6645,"config":6650,"_id":6651,"_type":35,"title":6646,"_source":37,"_file":6652,"_stem":6653,"_extension":40},"/en-us/blog/authors/rutvik-shah",{"name":6646,"config":6647},"Rutvik Shah",{"headshot":6648,"ctfId":6649},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":696},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6655,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6656,"config":6661,"_id":6662,"_type":35,"title":6657,"_source":37,"_file":6663,"_stem":6664,"_extension":40},"/en-us/blog/authors/sacha-guyon",{"name":6657,"config":6658},"Sacha Guyon",{"headshot":6659,"ctfId":6660},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":696},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6666,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6667,"config":6672,"_id":6673,"_type":35,"title":6668,"_source":37,"_file":6674,"_stem":6675,"_extension":40},"/en-us/blog/authors/safwan-ahmed",{"name":6668,"config":6669},"Safwan Ahmed",{"headshot":6670,"ctfId":6671},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":696},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6677,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6678,"config":6682,"_id":6684,"_type":35,"title":6679,"_source":37,"_file":6685,"_stem":6686,"_extension":40},"/en-us/blog/authors/salahddine-aberkan",{"name":6679,"config":6680},"Salahddine Aberkan",{"headshot":6681},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":696,"gitlabHandle":6683},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6688,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6689,"config":6694,"_id":6695,"_type":35,"title":6690,"_source":37,"_file":6696,"_stem":6697,"_extension":40},"/en-us/blog/authors/salman-ladha",{"name":6690,"config":6691},"Salman Ladha",{"headshot":6692,"ctfId":6693},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":696},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6699,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6700,"config":6705,"_id":6706,"_type":35,"title":6701,"_source":37,"_file":6707,"_stem":6708,"_extension":40},"/en-us/blog/authors/sam-beckham",{"name":6701,"config":6702},"Sam Beckham",{"headshot":6703,"ctfId":6704},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":696},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6710,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6711,"config":6716,"_id":6717,"_type":35,"title":6712,"_source":37,"_file":6718,"_stem":6719,"_extension":40},"/en-us/blog/authors/sam-kerr",{"name":6712,"config":6713},"Sam Kerr",{"headshot":6714,"ctfId":6715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":696},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6721,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6722,"config":6727,"_id":6728,"_type":35,"title":6723,"_source":37,"_file":6729,"_stem":6730,"_extension":40},"/en-us/blog/authors/sam-morris",{"name":6723,"config":6724},"Sam Morris",{"headshot":6725,"ctfId":6726},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":696},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6732,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6733,"config":6738,"_id":6739,"_type":35,"title":6734,"_source":37,"_file":6740,"_stem":6741,"_extension":40},"/en-us/blog/authors/sam-white",{"name":6734,"config":6735},"Sam White",{"headshot":6736,"ctfId":6737},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":696},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6743,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6744,"config":6749,"_id":6750,"_type":35,"title":6745,"_source":37,"_file":6751,"_stem":6752,"_extension":40},"/en-us/blog/authors/sam-wiskow",{"name":6745,"config":6746},"Sam Wiskow",{"headshot":6747,"ctfId":6748},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":696},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6754,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6755,"config":6760,"_id":6761,"_type":35,"title":6756,"_source":37,"_file":6762,"_stem":6763,"_extension":40},"/en-us/blog/authors/samantha-lee",{"name":6756,"config":6757},"Samantha Lee",{"headshot":6758,"ctfId":6759},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":696},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6765,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6766,"config":6770,"_id":6771,"_type":35,"title":6772,"_source":37,"_file":6773,"_stem":6774,"_extension":40},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6767,"config":6768},"Sameer Farooqui, OctoML",{"headshot":727,"ctfId":6769},"Sameer-Farooqui-OctoML",{"template":696},"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":6776,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6777,"config":6782,"_id":6783,"_type":35,"title":6778,"_source":37,"_file":6784,"_stem":6785,"_extension":40},"/en-us/blog/authors/sameer-kamani",{"name":6778,"config":6779},"Sameer Kamani",{"headshot":6780,"ctfId":6781},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":696},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6787,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6788,"config":6793,"_id":6794,"_type":35,"title":6789,"_source":37,"_file":6795,"_stem":6796,"_extension":40},"/en-us/blog/authors/samer-akkoub",{"name":6789,"config":6790},"Samer Akkoub",{"headshot":6791,"ctfId":6792},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":696},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6798,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6799,"config":6803,"_id":6804,"_type":35,"title":6800,"_source":37,"_file":6805,"_stem":6806,"_extension":40},"/en-us/blog/authors/samuel-alfageme",{"name":6800,"config":6801},"Samuel Alfageme",{"headshot":727,"ctfId":6802},"Samuel-Alfageme",{"template":696},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6808,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6809,"config":6816,"_id":6817,"_type":35,"title":6811,"_source":37,"_file":6818,"_stem":6819,"_extension":40},"/en-us/blog/authors/sandra-gittlen",{"role":6810,"name":6811,"config":6812},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6813,"linkedin":6814,"ctfId":6815},"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":696},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6821,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6822,"config":6826,"_id":6827,"_type":35,"title":6823,"_source":37,"_file":6828,"_stem":6829,"_extension":40},"/en-us/blog/authors/sandra-salerno",{"name":6823,"config":6824},"Sandra Salerno",{"headshot":727,"ctfId":6825},"Sandra-Salerno",{"template":696},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6831,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6832,"config":6836,"_id":6837,"_type":35,"title":6838,"_source":37,"_file":6839,"_stem":6840,"_extension":40},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6833,"config":6834},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6835},"topodelapradera",{"template":696},"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":6842,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6843,"config":6847,"_id":6848,"_type":35,"title":6844,"_source":37,"_file":6849,"_stem":6850,"_extension":40},"/en-us/blog/authors/sara-kassabian",{"name":6844,"config":6845},"Sara Kassabian",{"headshot":7,"ctfId":6846},"skassabian",{"template":696},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6852,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6853,"config":6858,"_id":6859,"_type":35,"title":6854,"_source":37,"_file":6860,"_stem":6861,"_extension":40},"/en-us/blog/authors/sara-meadzinger",{"name":6854,"config":6855},"Sara Meadzinger",{"headshot":6856,"ctfId":6857},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":696},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6863,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6864,"config":6868,"_id":6869,"_type":35,"title":6865,"_source":37,"_file":6870,"_stem":6871,"_extension":40},"/en-us/blog/authors/sarah-daily",{"name":6865,"config":6866},"Sarah Daily",{"headshot":727,"ctfId":6867},"2YhqRPG08HF0FCF1l7oeZL",{"template":696},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6873,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6874,"config":6878,"_id":6879,"_type":35,"title":6875,"_source":37,"_file":6880,"_stem":6881,"_extension":40},"/en-us/blog/authors/sarah-german",{"name":6875,"config":6876},"Sarah German",{"headshot":6877,"ctfId":4545},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":696},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6883,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6884,"config":6889,"_id":6890,"_type":35,"title":6885,"_source":37,"_file":6891,"_stem":6892,"_extension":40},"/en-us/blog/authors/sarah-matthies",{"name":6885,"config":6886},"Sarah Matthies",{"headshot":6887,"ctfId":6888},"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":696},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6894,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6895,"config":6899,"_id":6900,"_type":35,"title":6901,"_source":37,"_file":6902,"_stem":6903,"_extension":40},"/en-us/blog/authors/sarah-odonnell",{"name":6896,"config":6897},"Sarah O’Donnell",{"headshot":7,"ctfId":6898},"sarahod",{"template":696},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6905,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6906,"config":6911,"_id":6912,"_type":35,"title":6907,"_source":37,"_file":6913,"_stem":6914,"_extension":40},"/en-us/blog/authors/sarah-waldner",{"name":6907,"config":6908},"Sarah Waldner",{"headshot":6909,"ctfId":6910},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":696},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6916,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6917,"config":6921,"_id":6922,"_type":35,"title":6918,"_source":37,"_file":6923,"_stem":6924,"_extension":40},"/en-us/blog/authors/sarrah-vesselov",{"name":6918,"config":6919},"Sarrah Vesselov",{"headshot":7,"ctfId":6920},"sarrahvesselov",{"template":696},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6926,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6927,"config":6931,"_id":6932,"_type":35,"title":6928,"_source":37,"_file":6933,"_stem":6934,"_extension":40},"/en-us/blog/authors/sarup-banskota",{"name":6928,"config":6929},"Sarup Banskota",{"headshot":727,"ctfId":6930},"3sY2Ef0sXxaJKCmArdSLsA",{"template":696},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6936,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6937,"config":6942,"_id":6943,"_type":35,"title":6938,"_source":37,"_file":6944,"_stem":6945,"_extension":40},"/en-us/blog/authors/sascha-eggenberger",{"name":6938,"config":6939},"Sascha Eggenberger",{"headshot":6940,"ctfId":6941},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":696},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":6947,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6948,"config":6952,"_id":6953,"_type":35,"title":6949,"_source":37,"_file":6954,"_stem":6955,"_extension":40},"/en-us/blog/authors/sasha-bannister",{"name":6949,"config":6950},"Sasha Bannister",{"headshot":727,"ctfId":6951},"Sasha-Bannister",{"template":696},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":6957,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6958,"config":6963,"_id":6964,"_type":35,"title":6959,"_source":37,"_file":6965,"_stem":6966,"_extension":40},"/en-us/blog/authors/sasha-gazlay",{"name":6959,"config":6960},"Sasha Gazlay",{"headshot":6961,"ctfId":6962},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":696},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":6968,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6969,"config":6974,"_id":6975,"_type":35,"title":6970,"_source":37,"_file":6976,"_stem":6977,"_extension":40},"/en-us/blog/authors/saumya-upadhyaya",{"name":6970,"config":6971},"Saumya Upadhyaya",{"headshot":6972,"ctfId":6973},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":696},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":6979,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6980,"config":6985,"_id":6986,"_type":35,"title":6987,"_source":37,"_file":6988,"_stem":6989,"_extension":40},"/en-us/blog/authors/scott-de-jonge",{"name":6981,"config":6982},"Scott de Jonge",{"headshot":6983,"ctfId":6984},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":696},"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":6991,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":6992,"config":6997,"_id":6998,"_type":35,"title":6993,"_source":37,"_file":6999,"_stem":7000,"_extension":40},"/en-us/blog/authors/scott-hampton",{"name":6993,"config":6994},"Scott Hampton",{"headshot":6995,"ctfId":6996},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":696},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":7002,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7003,"config":7007,"_id":7008,"_type":35,"title":7004,"_source":37,"_file":7009,"_stem":7010,"_extension":40},"/en-us/blog/authors/scott-williamson",{"name":7004,"config":7005},"Scott Williamson",{"headshot":7,"ctfId":7006},"sfwgitlab",{"template":696},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":7012,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7013,"config":7018,"_id":7019,"_type":35,"title":7014,"_source":37,"_file":7020,"_stem":7021,"_extension":40},"/en-us/blog/authors/sean-arnold",{"name":7014,"config":7015},"Sean Arnold",{"headshot":7016,"ctfId":7017},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":696},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7023,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7024,"config":7028,"_id":7029,"_type":35,"title":7030,"_source":37,"_file":7031,"_stem":7032,"_extension":40},"/en-us/blog/authors/sean-mcgivern",{"name":7025,"config":7026},"Sean McGivern",{"headshot":727,"ctfId":7027},"Sean-McGivern",{"template":696},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7034,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7035,"config":7039,"_id":7040,"_type":35,"title":7036,"_source":37,"_file":7041,"_stem":7042,"_extension":40},"/en-us/blog/authors/sean-packham",{"name":7036,"config":7037},"Sean Packham",{"headshot":727,"ctfId":7038},"Sean-Packham",{"template":696},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7044,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7045,"config":7049,"_id":7050,"_type":35,"title":7046,"_source":37,"_file":7051,"_stem":7052,"_extension":40},"/en-us/blog/authors/sebastian-latacz",{"name":7046,"config":7047},"Sebastian Latacz",{"headshot":727,"ctfId":7048},"4DoWSQV719HEWt2rbDIoQR",{"template":696},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7054,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7055,"config":7059,"_id":7060,"_type":35,"title":7056,"_source":37,"_file":7061,"_stem":7062,"_extension":40},"/en-us/blog/authors/sergey-nuzhdin",{"name":7056,"config":7057},"Sergey Nuzhdin",{"headshot":727,"ctfId":7058},"Sergey-Nuzhdin",{"template":696},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7064,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7065,"config":7069,"_id":7070,"_type":35,"title":7066,"_source":37,"_file":7071,"_stem":7072,"_extension":40},"/en-us/blog/authors/seth-berger",{"name":7066,"config":7067},"Seth Berger",{"headshot":7,"ctfId":7068},"sethgitlab",{"template":696},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7074,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7075,"config":7079,"_id":7080,"_type":35,"title":7076,"_source":37,"_file":7081,"_stem":7082,"_extension":40},"/en-us/blog/authors/shane-rice",{"name":7076,"config":7077},"Shane Rice",{"headshot":727,"ctfId":7078},"3uVL7xMsEf13JzpbXYTCbM",{"template":696},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7084,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7085,"config":7090,"_id":7091,"_type":35,"title":7086,"_source":37,"_file":7092,"_stem":7093,"_extension":40},"/en-us/blog/authors/sharon-gaudin",{"name":7086,"config":7087},"Sharon Gaudin",{"headshot":7088,"ctfId":7089},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":696},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7095,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7096,"config":7100,"_id":7101,"_type":35,"title":7097,"_source":37,"_file":7102,"_stem":7103,"_extension":40},"/en-us/blog/authors/shawn-winters",{"name":7097,"config":7098},"Shawn Winters",{"headshot":7,"ctfId":7099},"ShawnWinters",{"template":696},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7105,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7106,"config":7110,"_id":7111,"_type":35,"title":7112,"_source":37,"_file":7113,"_stem":7114,"_extension":40},"/en-us/blog/authors/sherida-mcmullan",{"name":7107,"config":7108},"Sherida McMullan",{"headshot":727,"ctfId":7109},"BpqiUFXm6aUxjXJdAeKuL",{"template":696},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7116,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7117,"config":7121,"_id":7122,"_type":35,"title":7118,"_source":37,"_file":7123,"_stem":7124,"_extension":40},"/en-us/blog/authors/shinya-maeda",{"name":7118,"config":7119},"Shinya Maeda",{"headshot":7,"ctfId":7120},"dosuken123",{"template":696},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7126,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7127,"config":7132,"_id":7133,"_type":35,"title":7128,"_source":37,"_file":7134,"_stem":7135,"_extension":40},"/en-us/blog/authors/shrishti-choudhary",{"name":7128,"config":7129},"Shrishti Choudhary",{"headshot":7130,"ctfId":7131},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":696},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7137,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7138,"config":7147,"_id":7148,"_type":35,"title":7140,"_source":37,"_file":7149,"_stem":7150,"_extension":40},"/en-us/blog/authors/sid-sijbrandij",{"role":7139,"name":7140,"bio":7141,"config":7142},"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":7143,"twitter":7144,"linkedin":7145,"ctfId":7146},"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":696},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7152,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7153,"config":7158,"_id":7159,"_type":35,"title":7154,"_source":37,"_file":7160,"_stem":7161,"_extension":40},"/en-us/blog/authors/siddharth-mathur",{"name":7154,"config":7155},"Siddharth Mathur",{"headshot":7156,"ctfId":7157},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":696},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7163,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7164,"config":7168,"_id":7169,"_type":35,"title":7165,"_source":37,"_file":7170,"_stem":7171,"_extension":40},"/en-us/blog/authors/simon-tarchichi",{"name":7165,"config":7166},"Simon Tarchichi",{"headshot":7,"ctfId":7167},"kartsims",{"template":696},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7173,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7174,"config":7179,"_id":7180,"_type":35,"title":7175,"_source":37,"_file":7181,"_stem":7182,"_extension":40},"/en-us/blog/authors/sophia-manicor",{"name":7175,"config":7176},"Sophia Manicor",{"headshot":7177,"ctfId":7178},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":696},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7184,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7185,"config":7190,"_id":7191,"_type":35,"title":7186,"_source":37,"_file":7192,"_stem":7193,"_extension":40},"/en-us/blog/authors/sri-rangan",{"name":7186,"config":7187},"Sri Rangan",{"headshot":7188,"ctfId":7189},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":696},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7195,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7196,"config":7201,"_id":7202,"_type":35,"title":7197,"_source":37,"_file":7203,"_stem":7204,"_extension":40},"/en-us/blog/authors/stacy-cline",{"name":7197,"config":7198},"Stacy Cline",{"headshot":7199,"ctfId":7200},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":696},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7206,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7207,"config":7212,"_id":7213,"_type":35,"title":7208,"_source":37,"_file":7214,"_stem":7215,"_extension":40},"/en-us/blog/authors/stan-hu",{"name":7208,"config":7209},"Stan Hu",{"headshot":7210,"ctfId":7211},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":696},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7217,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7218,"config":7222,"_id":7223,"_type":35,"title":7224,"_source":37,"_file":7225,"_stem":7226,"_extension":40},"/en-us/blog/authors/stephan-hochdrfer",{"name":7219,"config":7220},"Stephan Hochdörfer",{"headshot":727,"ctfId":7221},"Stephan-Hochdrfer",{"template":696},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7228,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7229,"config":7233,"_id":7234,"_type":35,"title":7230,"_source":37,"_file":7235,"_stem":7236,"_extension":40},"/en-us/blog/authors/stephanie-garza",{"name":7230,"config":7231},"Stephanie Garza",{"headshot":7,"ctfId":7232},"StephanieGarza",{"template":696},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7238,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7239,"config":7243,"_id":7244,"_type":35,"title":7245,"_source":37,"_file":7246,"_stem":7247,"_extension":40},"/en-us/blog/authors/stephen-mcguinness",{"name":7240,"config":7241},"Stephen McGuinness",{"headshot":7,"ctfId":7242},"smcguinness1",{"template":696},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7249,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7250,"config":7255,"_id":7256,"_type":35,"title":7251,"_source":37,"_file":7257,"_stem":7258,"_extension":40},"/en-us/blog/authors/stephen-walters",{"name":7251,"config":7252},"Stephen Walters",{"headshot":7253,"ctfId":7254},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":696},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7260,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7261,"config":7266,"_id":7267,"_type":35,"title":7262,"_source":37,"_file":7268,"_stem":7269,"_extension":40},"/en-us/blog/authors/steve-abrams",{"name":7262,"config":7263},"Steve Abrams",{"headshot":7264,"ctfId":7265},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":696},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7271,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7272,"config":7276,"_id":7277,"_type":35,"title":7273,"_source":37,"_file":7278,"_stem":7279,"_extension":40},"/en-us/blog/authors/steve-azzopardi",{"name":7273,"config":7274},"Steve Azzopardi",{"headshot":7,"ctfId":7275},"steveazz",{"template":696},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7281,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7282,"config":7287,"_id":7288,"_type":35,"title":7283,"_source":37,"_file":7289,"_stem":7290,"_extension":40},"/en-us/blog/authors/steve-grossman",{"name":7283,"config":7284},"Steve Grossman",{"headshot":7285,"ctfId":7286},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":696},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7292,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7293,"config":7297,"_id":7298,"_type":35,"title":7294,"_source":37,"_file":7299,"_stem":7300,"_extension":40},"/en-us/blog/authors/steve-ropa",{"name":7294,"config":7295},"Steve Ropa",{"headshot":727,"ctfId":7296},"Steve-Ropa",{"template":696},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7302,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7303,"config":7307,"_id":7308,"_type":35,"title":7304,"_source":37,"_file":7309,"_stem":7310,"_extension":40},"/en-us/blog/authors/steve-truong",{"name":7304,"config":7305},"Steve Truong",{"headshot":7,"ctfId":7306},"sttruong",{"template":696},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7312,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7313,"config":7317,"_id":7318,"_type":35,"title":7314,"_source":37,"_file":7319,"_stem":7320,"_extension":40},"/en-us/blog/authors/steven-zinck",{"name":7314,"config":7315},"Steven Zinck",{"headshot":727,"ctfId":7316},"49JllsB7PFUrjj2Wi4Wa2O",{"template":696},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7322,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7323,"config":7327,"_id":7328,"_type":35,"title":7324,"_source":37,"_file":7329,"_stem":7330,"_extension":40},"/en-us/blog/authors/sunil-kowlgi",{"name":7324,"config":7325},"Sunil Kowlgi",{"headshot":727,"ctfId":7326},"Sunil-Kowlgi",{"template":696},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7332,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7333,"config":7337,"_id":7338,"_type":35,"title":7334,"_source":37,"_file":7339,"_stem":7340,"_extension":40},"/en-us/blog/authors/suri-patel",{"name":7334,"config":7335},"Suri Patel",{"headshot":727,"ctfId":7336},"suripatel",{"template":696},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7342,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7343,"config":7348,"_id":7349,"_type":35,"title":7344,"_source":37,"_file":7350,"_stem":7351,"_extension":40},"/en-us/blog/authors/susan-tacker",{"name":7344,"config":7345},"Susan Tacker",{"headshot":7346,"ctfId":7347},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":696},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7353,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7354,"config":7360,"_id":7361,"_type":35,"title":7355,"_source":37,"_file":7362,"_stem":7363,"_extension":40},"/en-us/blog/authors/susie-bitters",{"name":7355,"config":7356},"Susie Bitters",{"headshot":7357,"linkedin":7358,"ctfId":7359},"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":696},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7365,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7366,"config":7370,"_id":7371,"_type":35,"title":7367,"_source":37,"_file":7372,"_stem":7373,"_extension":40},"/en-us/blog/authors/suzanne-selhorn",{"name":7367,"config":7368},"Suzanne Selhorn",{"headshot":7369,"ctfId":4545},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":696},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7375,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7376,"config":7381,"_id":7382,"_type":35,"title":7377,"_source":37,"_file":7383,"_stem":7384,"_extension":40},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7377,"config":7378},"Tanuja Jayarama Raju",{"headshot":7379,"ctfId":7380},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":696},"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":7386,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7387,"config":7392,"_id":7393,"_type":35,"title":7388,"_source":37,"_file":7394,"_stem":7395,"_extension":40},"/en-us/blog/authors/taurie-davis",{"name":7388,"config":7389},"Taurie Davis",{"headshot":7390,"ctfId":7391},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":696},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7397,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7398,"config":7403,"_id":7404,"_type":35,"title":7405,"_source":37,"_file":7406,"_stem":7407,"_extension":40},"/en-us/blog/authors/taylor-mccaslin",{"name":7399,"config":7400},"Taylor McCaslin",{"headshot":7401,"ctfId":7402},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":696},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7409,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7410,"config":7414,"_id":7415,"_type":35,"title":7411,"_source":37,"_file":7416,"_stem":7417,"_extension":40},"/en-us/blog/authors/taylor-murphy",{"name":7411,"config":7412},"Taylor Murphy",{"headshot":7,"ctfId":7413},"tayloramurphy",{"template":696},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7419,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7420,"config":7425,"_id":7426,"_type":35,"title":7421,"_source":37,"_file":7427,"_stem":7428,"_extension":40},"/en-us/blog/authors/ted-gieschen",{"name":7421,"config":7422},"Ted Gieschen",{"headshot":7423,"ctfId":7424},"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":696},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7430,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7431,"config":7435,"_id":7436,"_type":35,"title":7432,"_source":37,"_file":7437,"_stem":7438,"_extension":40},"/en-us/blog/authors/thao-yeager",{"name":7432,"config":7433},"Thao Yeager",{"headshot":7,"ctfId":7434},"thaoyeager",{"template":696},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7440,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7441,"config":7446,"_id":7447,"_type":35,"title":7448,"_source":37,"_file":7449,"_stem":7450,"_extension":40},"/en-us/blog/authors/thiago-figueir",{"name":7442,"config":7443},"Thiago Figueiró",{"headshot":7444,"ctfId":7445},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":696},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7452,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7453,"config":7458,"_id":7459,"_type":35,"title":7454,"_source":37,"_file":7460,"_stem":7461,"_extension":40},"/en-us/blog/authors/thong-kuah",{"name":7454,"config":7455},"Thong Kuah",{"headshot":7456,"ctfId":7457},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":696},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7463,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7464,"config":7468,"_id":7469,"_type":35,"title":7465,"_source":37,"_file":7470,"_stem":7471,"_extension":40},"/en-us/blog/authors/tim-davis",{"name":7465,"config":7466},"Tim Davis",{"headshot":727,"ctfId":7467},"6PksqjEtq1Y8goFUvAUcIn",{"template":696},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7473,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7474,"config":7478,"_id":7479,"_type":35,"title":7475,"_source":37,"_file":7480,"_stem":7481,"_extension":40},"/en-us/blog/authors/tim-lehnen",{"name":7475,"config":7476},"Tim Lehnen",{"headshot":7,"ctfId":7477},"hestenet",{"template":696},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7483,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7484,"config":7488,"_id":7489,"_type":35,"title":18,"_source":37,"_file":7490,"_stem":7491,"_extension":40},"/en-us/blog/authors/tim-rizzi",{"name":18,"config":7485},{"headshot":7486,"ctfId":7487},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":696},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7493,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7494,"config":7498,"_id":7500,"_type":35,"title":7495,"_source":37,"_file":7501,"_stem":7502,"_extension":40},"/en-us/blog/authors/tim-zallmann",{"name":7495,"config":7496},"Tim Zallmann",{"headshot":7497},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":696,"gitlabHandle":7499},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7504,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7505,"config":7509,"_id":7510,"_type":35,"title":7506,"_source":37,"_file":7511,"_stem":7512,"_extension":40},"/en-us/blog/authors/tina-sturgis",{"name":7506,"config":7507},"Tina Sturgis",{"headshot":7,"ctfId":7508},"TinaS",{"template":696},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7514,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7515,"config":7519,"_id":7520,"_type":35,"title":7521,"_source":37,"_file":7522,"_stem":7523,"_extension":40},"/en-us/blog/authors/tobias-gnther",{"name":7516,"config":7517},"Tobias Günther",{"headshot":727,"ctfId":7518},"Tobias-Gnther",{"template":696},"content:en-us:blog:authors:tobias-gnther.yml","Tobias Gnther","en-us/blog/authors/tobias-gnther.yml","en-us/blog/authors/tobias-gnther",{"_path":7525,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7526,"config":7530,"_id":7531,"_type":35,"title":7527,"_source":37,"_file":7532,"_stem":7533,"_extension":40},"/en-us/blog/authors/todd-barr",{"name":7527,"config":7528},"Todd Barr",{"headshot":7,"ctfId":7529},"twbarr",{"template":696},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7535,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7536,"config":7540,"_id":7541,"_type":35,"title":7537,"_source":37,"_file":7542,"_stem":7543,"_extension":40},"/en-us/blog/authors/tom-cooney",{"name":7537,"config":7538},"Tom Cooney",{"headshot":7,"ctfId":7539},"tomcooney",{"template":696},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7545,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7546,"config":7551,"_id":7552,"_type":35,"title":7547,"_source":37,"_file":7553,"_stem":7554,"_extension":40},"/en-us/blog/authors/tomas-vik",{"name":7547,"config":7548},"Tomas Vik",{"headshot":7549,"ctfId":7550},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681785/Blog/Author%20Headshots/viktomas-headshot.jpg","viktomas",{"template":696},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7556,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7557,"config":7562,"_id":7563,"_type":35,"title":7558,"_source":37,"_file":7564,"_stem":7565,"_extension":40},"/en-us/blog/authors/tomasz-maczukin",{"name":7558,"config":7559},"Tomasz Maczukin",{"headshot":7560,"ctfId":7561},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682116/Blog/Author%20Headshots/tmaczukin-headshot.jpg","tmaczukin",{"template":696},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7567,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7568,"config":7573,"_id":7574,"_type":35,"title":7569,"_source":37,"_file":7575,"_stem":7576,"_extension":40},"/en-us/blog/authors/toon-claes",{"name":7569,"config":7570},"Toon Claes",{"headshot":7571,"ctfId":7572},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663082/Blog/Author%20Headshots/toon_claes_headshot.png","toon",{"template":696},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7578,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7579,"config":7584,"_id":7585,"_type":35,"title":7580,"_source":37,"_file":7586,"_stem":7587,"_extension":40},"/en-us/blog/authors/torsten-linz",{"name":7580,"config":7581},"Torsten Linz",{"headshot":7582,"ctfId":7583},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658907/Blog/Author%20Headshots/tlinz-headshot.jpg","tlinz",{"template":696},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7589,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7590,"config":7594,"_id":7595,"_type":35,"title":7591,"_source":37,"_file":7596,"_stem":7597,"_extension":40},"/en-us/blog/authors/trevor-knudsen",{"name":7591,"config":7592},"Trevor Knudsen",{"headshot":7,"ctfId":7593},"Tknudsen",{"template":696},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7599,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7600,"config":7605,"_id":7606,"_type":35,"title":7601,"_source":37,"_file":7607,"_stem":7608,"_extension":40},"/en-us/blog/authors/tristan-read",{"name":7601,"config":7602},"Tristan Read",{"headshot":7603,"ctfId":7604},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679131/Blog/Author%20Headshots/tristan.png","tristanread",{"template":696},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7610,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7611,"config":7616,"_id":7617,"_type":35,"title":7612,"_source":37,"_file":7618,"_stem":7619,"_extension":40},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7612,"config":7613},"Tsukasa Komatsubara",{"headshot":7614,"ctfId":7615},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659784/Blog/Author%20Headshots/gitlab_tsukasa.jpg","31YQLiBRrJPn35BBhY69ly",{"template":696},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7621,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7622,"config":7626,"_id":7627,"_type":35,"title":7623,"_source":37,"_file":7628,"_stem":7629,"_extension":40},"/en-us/blog/authors/tsvi-zandany",{"name":7623,"config":7624},"Tsvi Zandany",{"headshot":727,"ctfId":7625},"Tsvi-Zandany",{"template":696},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7631,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7632,"config":7636,"_id":7637,"_type":35,"title":7633,"_source":37,"_file":7638,"_stem":7639,"_extension":40},"/en-us/blog/authors/tye-davis",{"name":7633,"config":7634},"Tye Davis",{"headshot":7,"ctfId":7635},"davistye",{"template":696},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7641,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7642,"config":7646,"_id":7647,"_type":35,"title":7643,"_source":37,"_file":7648,"_stem":7649,"_extension":40},"/en-us/blog/authors/tyler-williams",{"name":7643,"config":7644},"Tyler Williams",{"headshot":7,"ctfId":7645},"tywilliams",{"template":696},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7651,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7652,"config":7656,"_id":7657,"_type":35,"title":7658,"_source":37,"_file":7659,"_stem":7660,"_extension":40},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7653,"config":7654},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7655},"ulrica1",{"template":696},"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":7662,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7663,"config":7668,"_id":7669,"_type":35,"title":7664,"_source":37,"_file":7670,"_stem":7671,"_extension":40},"/en-us/blog/authors/valentine-mairet",{"name":7664,"config":7665},"Valentine Mairet",{"headshot":7666,"ctfId":7667},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665455/Blog/Author%20Headshots/valentine_mairet_headshot.png","1AQjHTpq6sBauRMdCibxQX",{"template":696},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7673,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7674,"config":7678,"_id":7679,"_type":35,"title":7675,"_source":37,"_file":7680,"_stem":7681,"_extension":40},"/en-us/blog/authors/valerie-silverthorne",{"name":7675,"config":7676},"Valerie Silverthorne",{"headshot":727,"ctfId":7677},"vsilverthorne",{"template":696},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7683,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7684,"config":7688,"_id":7689,"_type":35,"title":7685,"_source":37,"_file":7690,"_stem":7691,"_extension":40},"/en-us/blog/authors/vanessa-wegner",{"name":7685,"config":7686},"Vanessa Wegner",{"headshot":7,"ctfId":7687},"vwegner",{"template":696},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7693,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7694,"config":7699,"_id":7700,"_type":35,"title":7695,"_source":37,"_file":7701,"_stem":7702,"_extension":40},"/en-us/blog/authors/veethika-mishra",{"name":7695,"config":7696},"Veethika Mishra",{"headshot":7697,"ctfId":7698},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664676/Blog/Author%20Headshots/veethika-headshot.jpg","veethika",{"template":696},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7704,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7705,"config":7710,"_id":7711,"_type":35,"title":7706,"_source":37,"_file":7712,"_stem":7713,"_extension":40},"/en-us/blog/authors/vick-kelkar",{"name":7706,"config":7707},"Vick Kelkar",{"headshot":7708,"ctfId":7709},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668508/Blog/Author%20Headshots/vkelkar-headshot.jpg","vkelkar",{"template":696},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7715,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7716,"config":7720,"_id":7721,"_type":35,"title":7717,"_source":37,"_file":7722,"_stem":7723,"_extension":40},"/en-us/blog/authors/vicky-steeves",{"name":7717,"config":7718},"Vicky Steeves",{"headshot":7,"ctfId":7719},"vickysteeves",{"template":696},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7725,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7726,"config":7730,"_id":7731,"_type":35,"title":7727,"_source":37,"_file":7732,"_stem":7733,"_extension":40},"/en-us/blog/authors/victor-hernandez",{"name":7727,"config":7728},"Victor Hernandez",{"headshot":727,"ctfId":7729},"KVTkvySIqkAu34p2jsXZz",{"template":696},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7735,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7736,"config":7740,"_id":7741,"_type":35,"title":7737,"_source":37,"_file":7742,"_stem":7743,"_extension":40},"/en-us/blog/authors/victor-wu",{"name":7737,"config":7738},"Victor Wu",{"headshot":727,"ctfId":7739},"victorwu",{"template":696},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7745,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7746,"config":7751,"_id":7752,"_type":35,"title":7747,"_source":37,"_file":7753,"_stem":7754,"_extension":40},"/en-us/blog/authors/viktor-nagy",{"name":7747,"config":7748},"Viktor Nagy",{"headshot":7749,"ctfId":7750},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662918/Blog/Author%20Headshots/nagy-headshot.jpg","nagyvgitlab",{"template":696},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7756,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7757,"config":7761,"_id":7762,"_type":35,"title":7758,"_source":37,"_file":7763,"_stem":7764,"_extension":40},"/en-us/blog/authors/vincent-jong",{"name":7758,"config":7759},"Vincent Jong",{"headshot":727,"ctfId":7760},"Vincent-Jong",{"template":696},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7766,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7767,"config":7772,"_id":7773,"_type":35,"title":7768,"_source":37,"_file":7774,"_stem":7775,"_extension":40},"/en-us/blog/authors/vincy-wilson",{"name":7768,"config":7769},"Vincy Wilson",{"headshot":7770,"ctfId":7771},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669069/Blog/Author%20Headshots/vincy.jpg","1iyKndVlbE3dQnxOJoSY0q",{"template":696},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7777,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7778,"config":7783,"_id":7784,"_type":35,"title":7779,"_source":37,"_file":7785,"_stem":7786,"_extension":40},"/en-us/blog/authors/vishal-tak",{"name":7779,"config":7780},"Vishal Tak",{"headshot":7781,"ctfId":7782},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663854/Blog/Author%20Headshots/vishal_tak_headshot.png","6BalO1YQUIuDdhUP80bFra",{"template":696},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7788,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7789,"config":7794,"_id":7795,"_type":35,"title":7790,"_source":37,"_file":7796,"_stem":7797,"_extension":40},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7790,"config":7791},"Vitor Meireles De Sousa",{"headshot":7792,"ctfId":7793},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682001/Blog/Author%20Headshots/vdesousa-headshot.png","vdesousa",{"template":696},"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":7799,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7800,"config":7804,"_id":7805,"_type":35,"title":7801,"_source":37,"_file":7806,"_stem":7807,"_extension":40},"/en-us/blog/authors/vlad-budica",{"name":7801,"config":7802},"Vlad Budica",{"headshot":727,"ctfId":7803},"Vlad-Budica",{"template":696},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7809,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7810,"config":7814,"_id":7815,"_type":35,"title":7811,"_source":37,"_file":7816,"_stem":7817,"_extension":40},"/en-us/blog/authors/vlad-stoianovici",{"name":7811,"config":7812},"Vlad Stoianovici",{"headshot":7,"ctfId":7813},"vstoianovici",{"template":696},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7819,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7820,"config":7824,"_id":7825,"_type":35,"title":7821,"_source":37,"_file":7826,"_stem":7827,"_extension":40},"/en-us/blog/authors/wayne-haber",{"name":7821,"config":7822},"Wayne Haber",{"headshot":7,"ctfId":7823},"whaber",{"template":696},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7829,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7830,"config":7834,"_id":7835,"_type":35,"title":7831,"_source":37,"_file":7836,"_stem":7837,"_extension":40},"/en-us/blog/authors/will-chandler",{"name":7831,"config":7832},"Will Chandler",{"headshot":727,"ctfId":7833},"DKiIGSSRIyO6QdTQkRkjs",{"template":696},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7839,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7840,"config":7845,"_id":7846,"_type":35,"title":7841,"_source":37,"_file":7847,"_stem":7848,"_extension":40},"/en-us/blog/authors/will-leidheiser",{"name":7841,"config":7842},"Will Leidheiser",{"headshot":7843,"ctfId":7844},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679335/Blog/Author%20Headshots/wleidheiser-headshot.jpg","wleidheiser",{"template":696},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7850,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7851,"config":7856,"_id":7857,"_type":35,"title":7852,"_source":37,"_file":7858,"_stem":7859,"_extension":40},"/en-us/blog/authors/william-arias",{"name":7852,"config":7853},"William Arias",{"headshot":7854,"ctfId":7855},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667549/Blog/Author%20Headshots/warias-headshot.jpg","warias",{"template":696},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7861,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7862,"config":7866,"_id":7867,"_type":35,"title":7863,"_source":37,"_file":7868,"_stem":7869,"_extension":40},"/en-us/blog/authors/william-chia",{"name":7863,"config":7864},"William Chia",{"headshot":7,"ctfId":7865},"williamchia",{"template":696},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7871,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7872,"config":7876,"_id":7877,"_type":35,"title":7873,"_source":37,"_file":7878,"_stem":7879,"_extension":40},"/en-us/blog/authors/yannis-roussos",{"name":7873,"config":7874},"Yannis Roussos",{"headshot":7,"ctfId":7875},"iroussos",{"template":696},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7881,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7882,"config":7886,"_id":7887,"_type":35,"title":7883,"_source":37,"_file":7888,"_stem":7889,"_extension":40},"/en-us/blog/authors/yevgeny-pats",{"name":7883,"config":7884},"Yevgeny Pats",{"headshot":7,"ctfId":7885},"ypats",{"template":696},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7891,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7892,"config":7896,"_id":7897,"_type":35,"title":7893,"_source":37,"_file":7898,"_stem":7899,"_extension":40},"/en-us/blog/authors/yorick-peterse",{"name":7893,"config":7894},"Yorick Peterse",{"headshot":727,"ctfId":7895},"Yorick-Peterse",{"template":696},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7901,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7902,"config":7906,"_id":7907,"_type":35,"title":7908,"_source":37,"_file":7909,"_stem":7910,"_extension":40},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7903,"config":7904},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7905},"zjgitlab",{"template":696},"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":7912,"_dir":689,"_draft":6,"_partial":6,"_locale":7,"content":7913,"config":7918,"_id":7919,"_type":35,"title":7914,"_source":37,"_file":7920,"_stem":7921,"_extension":40},"/en-us/blog/authors/zhaochen-li",{"name":7914,"config":7915},"Zhaochen Li",{"headshot":7916,"ctfId":7917},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664331/Blog/Author%20Headshots/Zhaochen_Li_headshot.png","D67XqgLJdlpOsrG3ivCGT",{"template":696},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7923,"_dir":43,"_draft":6,"_partial":6,"_locale":7,"header":7924,"eyebrow":7925,"blurb":7926,"button":7927,"secondaryButton":7931,"_id":7933,"_type":35,"title":7934,"_source":37,"_file":7935,"_stem":7936,"_extension":40},"/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":51,"config":7928},{"href":7929,"dataGaName":54,"dataGaLocation":7930},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":56,"config":7932},{"href":58,"dataGaName":59,"dataGaLocation":7930},"content:shared:de-de:next-steps.yml","Next Steps","shared/de-de/next-steps.yml","shared/de-de/next-steps",1761852364079]