[{"data":1,"prerenderedAt":7937},["ShallowReactive",2],{"/fr-fr/blog/ci-deployment-and-environments":3,"navigation-fr-fr":38,"banner-fr-fr":457,"footer-fr-fr":470,"footer-source-/fr-fr/blog/ci-deployment-and-environments/":681,"blogAuthors-fr-fr":687,"next-steps-fr-fr":7922},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":28,"_id":31,"_type":32,"title":33,"_source":34,"_file":35,"_stem":36,"_extension":37},"/fr-fr/blog/ci-deployment-and-environments","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"Comment déployer du code dans des environnements multiples avec GitLab CI","GitLab CI est à la fois puissant et polyvalent. Découvrez les capacités de cet outil à travers plusieurs scénarios d'utilisation.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662033/Blog/Hero%20Images/intro.jpg","https://about.gitlab.com/blog/ci-deployment-and-environments","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"Comment déployer du code dans des environnements multiples avec GitLab CI\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Ivan Nemytchenko\"},{\"@type\":\"Person\",\"name\":\"Cesar Saavedra\"}],\n        \"datePublished\": \"2021-02-05\",\n      }",{"title":9,"description":10,"authors":17,"heroImage":11,"date":20,"body":21,"category":22,"tags":23,"updatedDate":27},[18,19],"Ivan Nemytchenko","Cesar Saavedra","2021-02-05","Imaginez-vous gestionnaire d’un site d'information. Heureusement, le code de\nvotre projet est déjà hébergé sur GitLab.com et vous utilisez [GitLab\nCI/CD](https://docs.gitlab.com/ee/ci/testing/ \"Test avec GitLab CI/CD\") pour\nvos tests. Maintenant, vous souhaitez connaître toutes les possibilités de\n[déploiement](https://about.gitlab.com/fr-fr/blog/how-to-keep-up-with-ci-cd-best-practices/\n\"Meilleures pratiques CI/CD\").\n\n\nPar souci de pertinence, supposons que l'application se compose uniquement\nde fichiers HTML, sans code côté serveur ni compilation sophistiquée des\nactifs JS. La plateforme de destination sera également générique, nous\nutiliserons [Amazon S3](https://aws.amazon.com/fr/s3/ \"Amazon S3\").\n\n\nPlutôt que de fournir des extraits de code à copier-coller, nous allons vous\npartager les principes et les fonctionnalités de GitLab CI, afin que vous\npuissiez les appliquer dans votre propre pile technologique. \n\n\nDéroulons donc notre histoire depuis son commencement, où il n'est pas\nencore question d'intégration continue.\n\n\n## La ligne de départ\n\n\n__Déploiement__ : un ensemble de fichiers HTML devraient apparaître dans\nvotre bucket S3 (déjà configuré pour [héberger un site web\nstatique](https://docs.aws.amazon.com/fr_fr/AmazonS3/latest/userguide/HostingWebsiteOnS3Setup.html\n\"Héberger un site web statique avec Amazon S3\")). Il y a des millions de\nfaçons de procéder. Dans notre cas, nous utiliserons la bibliothèque [AWS\nCLI](https://aws.amazon.com/fr/cli/ \"AWS CLI\") fournie par Amazon. \n\n\nLa commande complète ressemble à ceci :\n\n\n```shell\n\naws s3 cp ./ s3://yourbucket/ --recursive --exclude \"*\" --include \"*.html\"\n\n```\n\n\nLe push du code vers le dépôt et le déploiement sont deux processus\ndistincts.\n\n\n![Déploiement\nmanuel](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674077/Blog/Content%20Images/19-updated.png){:\n.center}\n\n{: .note .text-center}\n\n\nDétail important : la commande nécessite de [fournir les variables\nd'environnement](https://docs.aws.amazon.com/fr_fr/cli/latest/userguide/cli-chap-getting-started.html)\n`AWS_ACCESS_KEY_ID` et `AWS_SECRET_ACCESS_KEY`. Il vous faudra peut-être\naussi spécifier `AWS_DEFAULT_REGION`. \n\n\nEssayons d'automatiser cette procédure avec [l'intégration continue de\nGitLab](https://about.gitlab.com/fr-fr/solutions/continuous-integration/\n\"Intégration continue de GitLab\").\n\n\n## Votre premier déploiement automatisé\n\n\nGitLab CI offre une grande flexibilité dans l'exécution des commandes. Sa\nconfiguration s'adapte à vos besoins, reproduisant l'environnement de votre\nterminal local. Ajoutez votre script dans le fichier .gitlab-ci.yml et\neffectuez un push de votre code : l’outil d'intégration continue de GitLab\ndéclenche un *job* et vos commandes sont exécutées.\n\n\nPrécisons maintenant le contexte d'utilisation de cet exemple : il s'agit\nd'un site de taille modeste, avec une trentaine de visiteurs journaliers, et\nune seule branche principale de dépôt de code. Commençons par spécifier un\n*job* avec la commande précédente dans le fichier `.gitlab-ci.yml` :\n\n\n```yaml\n\ndeploy:\n  script: aws s3 cp ./ s3://yourbucket/ --recursive --exclude \"*\" --include \"*.html\"\n```\n\n\nOups, la commande a échoué :\n\n\n![Message d'erreur lors de l'exécution d'un job\nGitLab.](https://about.gitlab.com/images/blogimages/ci-deployment-and-environments/13.jpg){:\n.shadow}\n\n\nIl fallait d'abord vérifier l'existence d'un exécutable `aws`. Pour\ninstaller `awscli`, nous avons besoin de `pip`, qui est un outil\nd'installation de paquets Python. Spécifions une image Docker avec Python\npréinstallé, qui devrait également contenir `pip` : \n\n\n```yaml\n\ndeploy:\n  image: python:latest\n  script:\n  - pip install awscli\n  - aws s3 cp ./ s3://yourbucket/ --recursive --exclude \"*\" --include \"*.html\"\n```\n\n\n![Déploiement\nautomatisé](https://about.gitlab.com/images/blogimages/ci-deployment-and-environments/fail1.png){:\n.center}\n\n{: .note .text-center}\n\n\nVous effectuez un push de votre code sur GitLab, et il est automatiquement\ndéployé par l’outil CI. \n\n\nL'installation d'`awscli` rallonge le temps d'exécution du job, mais pour\nl'instant ce n'est pas un souci. Pour accélérer le processus, [cherchez une\nimage Docker](https://hub.docker.com/ \"Chercher une image Docker\") avec\n`awscli` préinstallé, ou créez une image vous-même. \n\n\nN’oublions pas les variables d'environnement récupérées depuis la [console\nAWS](https://console.aws.amazon.com/) :\n\n\n```yaml\n\nvariables:\n  AWS_ACCESS_KEY_ID: \"AKIAIOSFODNN7EXAMPLE\"\n  AWS_SECRET_ACCESS_KEY: \"wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY\"\ndeploy:\n  image: python:latest\n  script:\n  - pip install awscli\n  - aws s3 cp ./ s3://yourbucket/ --recursive --exclude \"*\" --include \"*.html\"\n```\n\n\nCela devrait fonctionner, mais attention : ce n'est jamais une bonne idée de\ndévoiler des clés secrètes de votre code, même dans un dépôt privé.\nRemédions donc à cette situation.\n\n\n### Des secrets bien gardés\n\n\nGitLab dispose d’un endroit spécialement dédié aux variables secrètes :\n__Paramètres > CI/CD > Variables__.\n\n\n![Ajouter une variable secrète dans\nGitLab](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674076/Blog/Content%20Images/add-variable-updated.png)\n\n\nTout ce que vous y mettez se transforme en variables d'environnement. En\ncochant la case « Masquée », vous masquerez la variable dans les job logs.\nEn cochant la case « Protéger la variable », vous n’exporterez la variable\nuniquement vers les pipelines s'exécutant sur des branches et des étiquettes\nprotégées. \n\n\nSeuls les utilisateurs ayant le statut de propriétaire ou de chargé de\nmaintenance sur un projet auront accès à cette section. Nous pourrions\nsupprimer la section `variables` de notre configuration CI, mais nous allons\nl'utiliser à d'autres fins.\n\n\n### Savoir spécifier et utiliser des variables non-secrètes\n\n\nLorsque votre configuration s'agrandit, il devient pratique de conserver\ncertains paramètres sous formes de variables au début de votre\nconfiguration. Le cas présent ne le justifie pas, mais pour les besoins de\ncette démonstration, nous allons définir le nom du compartiment S3 comme\nvariable :\n\n\n```yaml\n\nvariables:\n  S3_BUCKET_NAME: \"yourbucket\"\ndeploy:\n  image: python:latest\n  script:\n  - pip install awscli\n  - aws s3 cp ./ s3://$S3_BUCKET_NAME/ --recursive --exclude \"*\" --include \"*.html\"\n```\n\n\nJusqu'ici, tout va bien :\n\n\n![Compilation GitLab CI sans\nerreur](https://about.gitlab.com/images/blogimages/ci-deployment-and-environments/14.jpg){:\n.shadow.medium.center}\n\n\nDans notre scénario, la fréquentation du site est en hausse, et vous avez\nembauché un développeur pour vous aider. Voyons comment le workflow GitLab\nCI s'adapte au travail en équipe.\n\n\n## Comment utiliser GitLab CI en équipe\n\n\nAvec deux utilisateurs travaillant dans le même dépôt, il n'est plus\npratique d'utiliser la branche principale pour le développement. Vous\ndécidez d'utiliser des branches séparées pour les nouvelles fonctionnalités\net les nouveaux articles, et de les fusionner dans la branche principale\nlorsqu'elles sont prêtes.\n\n\nCependant, votre configuration CI actuelle ne prend pas en charge les\nbranches. Chaque push effectué vers GitLab sera déployé sur S3. La solution\nest simple : il suffit d'ajouter `only: main` au job `deploy`.\n\n\nEn plus de ne pas vouloir déployer chaque branche sur l’environnement de\nproduction, vous souhaiteriez pouvoir prévisualiser vos modifications depuis\nles branches de fonctionnalités. \n\n\n![Déploiement de la branche principale de GitLab vers AWS\nS3](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674076/Blog/Content%20Images/15-updated.png){:\n.center}\n\n{: .note .text-center}  \n\n\n### Comment configurer un environnement de test ?\n\n\nMatteo, votre nouveau développeur, vous propose d'utiliser la fonctionnalité\n[GitLab Pages](https://docs.gitlab.com/ee/user/project/pages/ \"GitLab\nPages\"), idéale pour prévisualiser votre travail en cours. Afin d'[héberger\ndes sites web sur GitLab\nPages](https://docs.gitlab.com/ee/user/project/pages/getting_started/pages_ui.html\n\"Héberger des sites web sur GitLab Pages\"), votre fichier de configuration\nCI doit répondre à trois règles simples :\n\n\n- Le *job* doit être nommé `pages`\n\n- Il doit y avoir une section `artifacts` avec un dossier `public`\n\n- Tout ce que vous souhaitez héberger doit être placé dans le dossier\n`public`\n\n\nLe contenu du dossier public sera hébergé à l'adresse suivante :\n`http://\u003Cusername>.gitlab.io/\u003Cprojectname>/`\n\n\nVoici la configuration complète après avoir appliqué l’[exemple de\nconfiguration pour les sites web en\nHTML](https://gitlab.com/pages/plain-html/-/blob/main/.gitlab-ci.yml\n\"Exemple de configuration pour les sites web en HTML\") :\n\n\n```yaml\n\nvariables:\n  S3_BUCKET_NAME: \"yourbucket\"\n\ndeploy:\n  image: python:latest\n  script:\n  - pip install awscli\n  - aws s3 cp ./ s3://$S3_BUCKET_NAME/ --recursive --exclude \"*\" --include \"*.html\"\n  only:\n  - main\n\npages:\n  image: alpine:latest\n  script:\n  - mkdir -p ./public\n  - cp ./*.html ./public/\n  artifacts:\n    paths:\n    - public\n  except:\n  - main\n```\n\n\nNous avons spécifié deux jobs. L'un d'eux déploie le site web pour vos\nclients sur S3 (`deploy`). L'autre (`pages`) déploie le site web sur GitLab\nPages. Nommons-les « Environnement de production » et « Environnement de\npréproduction ». Toutes les branches seront déployées sur GitLab Pages, à\nl'exception de la branche principale. \n\n\n![Déploiement différencié des branches dans GitLab Pages et\nS3.](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674076/Blog/Content%20Images/16-updated.png){:\n.center}\n\n{: .note .text-center}\n\n\n## Introduction aux environnements\n\n\nGitLab offre la prise en charge de [nombreux\nenvironnements](https://docs.gitlab.com/ee/ci/environments/ \"Environnements\nGitLab\") (dynamiques ou statiques) ; vous devez simplement spécifier\nl'environnement correspondant pour chaque *job* de déploiement :\n\n\n```yaml\n\nvariables:\n  S3_BUCKET_NAME: \"yourbucket\"\n\ndeploy to production:\n  environment: production\n  image: python:latest\n  script:\n  - pip install awscli\n  - aws s3 cp ./ s3://$S3_BUCKET_NAME/ --recursive --exclude \"*\" --include \"*.html\"\n  only:\n  - main\n\npages:\n  image: alpine:latest\n  environment: staging\n  script:\n  - mkdir -p ./public\n  - cp ./*.html ./public/\n  artifacts:\n    paths:\n    - public\n  except:\n  - main\n```\n\n\nGitLab garde une trace de tous vos déploiements. Ainsi, vous savez toujours\nce qui est actuellement déployé sur vos serveurs :\n\n\n![Visualisation des environnements sur GitLab\nCI/CD.](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674076/Blog/Content%20Images/envs-updated.png){:\n.shadow.center}\n\n\nL'historique complet de vos déploiements sur chacun de vos environnements\nactuels vous est aussi fourni :\n\n\n![Historique des déploiements\nGitLab.](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674077/Blog/Content%20Images/staging-env-detail-updated.png){:\n.shadow.center}\n\n\nMaintenant que tout est automatisé et configuré, de nouveaux défis nous\nattendent.\n\n\n## Comment dépanner les déploiements ?\n\n\nOups ! La branche de fonctionnalités que vous avez poussé sur\nl'environnement de préproduction vient d'être remplacée par celle de Matteo,\nqui vient d'effectuer un push de sa propre branche. L'énervement vous gagne,\nc'est la troisième fois que cela arrive aujourd'hui ! \n\n\nEt si vous utilisiez Slack pour notifier vos déploiements, afin d'éviter ce\ngenre de désagrément ?\n\n\n> Recevez des notifications en utilisant l'[application GitLab pour\nSlack](https://docs.gitlab.com/ee/user/project/integrations/gitlab_slack_application.html).\n\n\n## Du travail d'équipe à grande échelle\n\n\nQuelque temps plus tard, et vous voilà à la tête d'un site web très\npopulaire, et d'une équipe de huit personnes. Mais, désormais, les membres\nde votre équipe perdent un temps précieux à attendre de pouvoir\nprévisualiser leur travail. Le déploiement de chaque branche en\npréproduction n'est plus optimal.\n\n\n![File d'attente de branches à examiner en\npréproduction](https://about.gitlab.com/images/blogimages/ci-deployment-and-environments/build.png){:\n.center}\n\n\nIl est temps de perfectionner le système. Vous convenez avec votre équipe de\nfusionner au préalable chaque changement sur la branche de préproduction. La\nmodification du fichier `.gitlab-ci.yml` est minime :\n\n\n```yaml\n\nexcept:\n\n- main\n\n```\n\n\nest remplacé par\n\n\n```yaml\n\nonly:\n\n- staging\n\n```\n\n\n![Dessin de développeurs qui fusionnent leurs changements dans une branche\nde préproduction avant de les déployer sur\nS3](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674077/Blog/Content%20Images/17-updated.png){:\n.center}\n\n{: .note .text-center}\n\n\nVos collaborateurs doivent fusionner leurs branches de fonctionnalités avant\nde prévisualiser leur travail en préproduction. Cela nécessite plus de temps\net d'efforts, mais tout le monde s'accorde à dire que c'est toujours mieux\nque d'attendre.\n\n\n## Comment gérer les urgences ?\n\n\nIl arrive parfois que les choses tournent mal. Quelqu'un a mal fusionné des\nbranches et a effectué un push du résultat directement en production, juste\nau moment où le hashtag de votre site devenait viral sur les réseaux\nsociaux. Des milliers de personnes voient des visuels cassés au lieu de\nvotre page d'accueil habituelle. Heureusement, la fonction __Restaurer\nl’environnement__ a permis de résoudre le problème en moins d'une minute.\n\n\n![Fonctionnalité de restauration sur la plateforme\nGitLab](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674077/Blog/Content%20Images/18-updated.png){:\n.shadow.center}\n\n{: .note .text-center}\n\n\nLa fonction de restauration de l'environnement relance le job précédent avec\nla validation précédente. Vous avez décidé de désactiver le déploiement\nautomatique en production et de passer au déploiement manuel. Pour ce faire,\nvous devez ajouter  `when : manual` à votre *job*. Il n'y aura effectivement\nplus de déploiement automatique en production. Le déploiement manuel\ns'effectue en allant dans __Compilation > Pipelines__, et en cliquant sur\n__« Exécuter des jobs manuels ou différés »__ :\n\n\n![Déploiement manuel sur\nGitLab.](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674077/Blog/Content%20Images/prod-env-rollback-arrow-updated.png){:\n.shadow.center}\n\n\nEffectuons maintenant un bond en avant dans le temps. Votre entreprise est\ndevenue une société de plusieurs centaines d'employés travaillant sur le\nsite web, et les compromis précédents ne fonctionnent plus.\n\n\n### Faire ses premiers pas avec les Review Apps\n\n\nLogiquement, la nouvelle étape consiste à lancer une instance temporaire de\nl'application par branche de fonctionnalités pour la revue. Pour cela, nous\navons configuré un autre bucket S3. Sa seule particularité est que le\ncontenu du site est placé dans un dossier portant le nom de la branche de\ndéveloppement, de sorte que l’URL ressemble à :\n\n\n`http://\u003CREVIEW_S3_BUCKET_NAME>.s3-website-us-east-1.amazonaws.com/\u003Cbranchname>/`\n\n\nVoici le remplacement du *job* `pages` utilisé auparavant :\n\n\n```yaml\n\nreview apps:\n  variables:\n    S3_BUCKET_NAME: \"reviewbucket\"\n  image: python:latest\n  environment: review\n  script:\n  - pip install awscli\n  - mkdir -p ./$CI_BUILD_REF_NAME\n  - cp ./*.html ./$CI_BUILD_REF_NAME/\n  - aws s3 cp ./ s3://$S3_BUCKET_NAME/ --recursive --exclude \"*\" --include \"*.html\"\n```\n\n\nIci, il est bon de connaître l'origine de cette variable\n`$CI_BUILD_REF_NAME`. GitLab prédéfinit de [nombreuses variables\nd'environnement](https://docs.gitlab.com/ee/ci/variables/predefined_variables.html\n\"Variables d'environnement dans GitLab\") à utiliser dans vos jobs. Notez que\nnous avons défini la variable `S3_BUCKET_NAME` à l'intérieur du *job*. Vous\npouvez ainsi réécrire les définitions de niveau supérieur. \n\n\nReprésentation visuelle de la configuration des Review Apps :\n\n\n![Dessin représentant la configuration Review Apps de\nGitLab.](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674076/Blog/Content%20Images/manual-pipeline-arrow-updated.png){:\n.illustration}\n\n\nLes détails de l'implémentation des Review Apps varient selon votre pile\ntechnologique et de votre processus de déploiement. Tout ne sera pas aussi\nsimple qu'avec un site HTML statique. Programmer des instances temporaires à\nla volée avec tous les logiciels et services requis n'est pas chose aisée.\nMais tout cela peut être accompli, notamment à l'aide des conteneurs Docker,\nChef ou Ansible.\n\n\nLe déploiement avec Docker mériterait d'ailleurs un article complet. Et si\nvous regrettez l'absence de scénarios plus complexes qu'un simple\ndéploiement en HTML statique, nous vous recommandons de lire [cet\narticle](https://about.gitlab.com/blog/building-an-elixir-release-into-docker-image-using-gitlab-ci-part-1/\n\"Construire une version d'Elixir dans une image Docker en utilisant GitLab\nCI - Partie 1\"). Abordons maintenant un dernier sujet.\n\n\n### Déployer sur différentes plateformes\n\n\nDans la pratique, nous ne sommes pas limités à S3 et à GitLab Pages. Nous\nhébergeons et déployons nos applications sur différents services. De plus,\nsi vous décidez un jour de passer à une nouvelle plateforme, vous devrez\nalors réécrire tous vos scripts de déploiement. Vous pourrez alors utiliser\nune petite merveille appelée `dpl` pour vous faciliter la tâche.\n\n\nJusqu'ici, nous avons utilisé `awscli` pour livrer du code à un service\ncomme Amazon S3. Quel que soit le système utilisé, le principe reste le même\n: vous exécutez une commande avec certains paramètres et transmettez une clé\nsecrète d'authentification. L'outil de déploiement `dpl` utilise ce principe\net fournit une interface unique pour cette [liste de\nfournisseurs](https://github.com/travis-ci/dpl#supported-providers \"Liste de\nfournisseurs\"). Voici à quoi ressemblerait le déploiement d’un *job* en\nproduction avec `dpl`:\n\n\n```yaml\n\nvariables:\n  S3_BUCKET_NAME: \"yourbucket\"\n\ndeploy to production:\n  environment: production\n  image: ruby:latest\n  script:\n  - gem install dpl\n  - dpl --provider=s3 --bucket=$S3_BUCKET_NAME\n  only:\n  - main\n```\n\n\nEn cas de déploiement sur plusieurs systèmes ou de changements fréquents de\nplateforme de destination, `dpl` vous aide à uniformiser vos scripts de\ndéploiement.\n\n\n## Cinq points clés à retenir\n\n\n1. Un déploiement est une commande (ou un ensemble de commandes)\nrégulièrement exécutée. Il peut donc être exécuté dans GitLab CI.\n\n\n2. La plupart des commandes à exécuter nécessitent de fournir une ou\nplusieurs clés secrètes, que vous stockez dans __Paramètres >\n[CI/CD](https://about.gitlab.com/fr-fr/topics/ci-cd/ \"Qu'est-ce que le CI/CD\n?\") > Variables__.\n\n\n3. Avec GitLab CI, vous pouvez spécifier de façon flexible les branches vers\nlesquelles vous déployez votre code.\n\n\n4. GitLab conserve l'historique des déploiements dans tous vos\nenvironnements, et vous permet de revenir à n'importe quelle version\nprécédente.\n\n\n5. Pour les éléments critiques de votre infrastructure, vous pouvez activer\nle déploiement manuel depuis l'interface de GitLab, au lieu du déploiement\nautomatisé.\n","engineering",[24,25,26],"CI","CD","tutorial","2024-11-21",{"slug":29,"featured":6,"template":30},"ci-deployment-and-environments","BlogPost","content:fr-fr:blog:ci-deployment-and-environments.yml","yaml","Ci Deployment And Environments","content","fr-fr/blog/ci-deployment-and-environments.yml","fr-fr/blog/ci-deployment-and-environments","yml",{"_path":39,"_dir":40,"_draft":6,"_partial":6,"_locale":7,"data":41,"_id":453,"_type":32,"title":454,"_source":34,"_file":455,"_stem":456,"_extension":37},"/shared/fr-fr/main-navigation","fr-fr",{"logo":42,"freeTrial":47,"sales":52,"login":57,"items":62,"search":394,"minimal":430,"duo":444},{"config":43},{"href":44,"dataGaName":45,"dataGaLocation":46},"/fr-fr/","gitlab logo","header",{"text":48,"config":49},"Commencer un essai gratuit",{"href":50,"dataGaName":51,"dataGaLocation":46},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":53,"config":54},"Contacter l'équipe commerciale",{"href":55,"dataGaName":56,"dataGaLocation":46},"/fr-fr/sales/","sales",{"text":58,"config":59},"Connexion",{"href":60,"dataGaName":61,"dataGaLocation":46},"https://gitlab.com/users/sign_in/","sign in",[63,107,205,210,315,375],{"text":64,"config":65,"cards":67,"footer":90},"Plateforme",{"dataNavLevelOne":66},"platform",[68,74,82],{"title":64,"description":69,"link":70},"La plateforme DevSecOps alimentée par l'IA la plus complète",{"text":71,"config":72},"Découvrir notre plateforme",{"href":73,"dataGaName":66,"dataGaLocation":46},"/fr-fr/platform/",{"title":75,"description":76,"link":77},"GitLab Duo (IA)","Créez des logiciels plus rapidement en tirant parti de l'IA à chaque étape du développement",{"text":78,"config":79},"Découvrez GitLab Duo",{"href":80,"dataGaName":81,"dataGaLocation":46},"/fr-fr/gitlab-duo/","gitlab duo ai",{"title":83,"description":84,"link":85},"Choisir GitLab","10 raisons pour lesquelles les entreprises choisissent GitLab",{"text":86,"config":87},"En savoir plus",{"href":88,"dataGaName":89,"dataGaLocation":46},"/fr-fr/why-gitlab/","why gitlab",{"title":91,"items":92},"Démarrer avec",[93,98,103],{"text":94,"config":95},"Ingénierie de plateforme",{"href":96,"dataGaName":97,"dataGaLocation":46},"/fr-fr/solutions/platform-engineering/","platform engineering",{"text":99,"config":100},"Expérience développeur",{"href":101,"dataGaName":102,"dataGaLocation":46},"/fr-fr/developer-experience/","Developer experience",{"text":104,"config":105},"MLOps",{"href":106,"dataGaName":104,"dataGaLocation":46},"/fr-fr/topics/devops/the-role-of-ai-in-devops/",{"text":108,"left":109,"config":110,"link":112,"lists":116,"footer":187},"Produit",true,{"dataNavLevelOne":111},"solutions",{"text":113,"config":114},"Voir toutes les solutions",{"href":115,"dataGaName":111,"dataGaLocation":46},"/fr-fr/solutions/",[117,143,165],{"title":118,"description":119,"link":120,"items":125},"Automatisation","CI/CD et automatisation pour accélérer le déploiement",{"config":121},{"icon":122,"href":123,"dataGaName":124,"dataGaLocation":46},"AutomatedCodeAlt","/fr-fr/solutions/delivery-automation/","automated software delivery",[126,130,134,139],{"text":127,"config":128},"CI/CD",{"href":129,"dataGaLocation":46,"dataGaName":127},"/fr-fr/solutions/continuous-integration/",{"text":131,"config":132},"Développement assisté par l'IA",{"href":80,"dataGaLocation":46,"dataGaName":133},"AI assisted development",{"text":135,"config":136},"Gestion du code source",{"href":137,"dataGaLocation":46,"dataGaName":138},"/fr-fr/solutions/source-code-management/","Source Code Management",{"text":140,"config":141},"Livraison de logiciels automatisée",{"href":123,"dataGaLocation":46,"dataGaName":142},"Automated software delivery",{"title":144,"description":145,"link":146,"items":151},"Securité","Livrez du code plus rapidement sans compromettre la sécurité",{"config":147},{"href":148,"dataGaName":149,"dataGaLocation":46,"icon":150},"/fr-fr/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[152,156,161],{"text":153,"config":154},"Application Security Testing",{"href":148,"dataGaName":155,"dataGaLocation":46},"Application security testing",{"text":157,"config":158},"Sécurité de la chaîne d'approvisionnement logicielle",{"href":159,"dataGaLocation":46,"dataGaName":160},"/fr-fr/solutions/supply-chain/","Software supply chain security",{"text":162,"config":163},"Software Compliance",{"href":164,"dataGaName":162,"dataGaLocation":46},"/fr-fr/solutions/software-compliance/",{"title":166,"link":167,"items":172},"Mesures",{"config":168},{"icon":169,"href":170,"dataGaName":171,"dataGaLocation":46},"DigitalTransformation","/fr-fr/solutions/visibility-measurement/","visibility and measurement",[173,177,182],{"text":174,"config":175},"Visibilité et mesures",{"href":170,"dataGaLocation":46,"dataGaName":176},"Visibility and Measurement",{"text":178,"config":179},"Gestion de la chaîne de valeur",{"href":180,"dataGaLocation":46,"dataGaName":181},"/fr-fr/solutions/value-stream-management/","Value Stream Management",{"text":183,"config":184},"Données d'analyse et informations clés",{"href":185,"dataGaLocation":46,"dataGaName":186},"/fr-fr/solutions/analytics-and-insights/","Analytics and insights",{"title":188,"items":189},"GitLab pour",[190,195,200],{"text":191,"config":192},"Entreprises",{"href":193,"dataGaLocation":46,"dataGaName":194},"/fr-fr/enterprise/","enterprise",{"text":196,"config":197},"PME",{"href":198,"dataGaLocation":46,"dataGaName":199},"/fr-fr/small-business/","small business",{"text":201,"config":202},"Secteur public",{"href":203,"dataGaLocation":46,"dataGaName":204},"/fr-fr/solutions/public-sector/","public sector",{"text":206,"config":207},"Tarifs",{"href":208,"dataGaName":209,"dataGaLocation":46,"dataNavLevelOne":209},"/fr-fr/pricing/","pricing",{"text":211,"config":212,"link":214,"lists":218,"feature":302},"Ressources",{"dataNavLevelOne":213},"resources",{"text":215,"config":216},"Afficher toutes les ressources",{"href":217,"dataGaName":213,"dataGaLocation":46},"/fr-fr/resources/",[219,252,274],{"title":220,"items":221},"Premiers pas",[222,227,232,237,242,247],{"text":223,"config":224},"Installation",{"href":225,"dataGaName":226,"dataGaLocation":46},"/fr-fr/install/","install",{"text":228,"config":229},"Guides de démarrage rapide",{"href":230,"dataGaName":231,"dataGaLocation":46},"/fr-fr/get-started/","quick setup checklists",{"text":233,"config":234},"Apprentissage",{"href":235,"dataGaLocation":46,"dataGaName":236},"https://university.gitlab.com/","learn",{"text":238,"config":239},"Documentation sur le produit",{"href":240,"dataGaName":241,"dataGaLocation":46},"https://docs.gitlab.com/","product documentation",{"text":243,"config":244},"Vidéos sur les bonnes pratiques",{"href":245,"dataGaName":246,"dataGaLocation":46},"/fr-fr/getting-started-videos/","best practice videos",{"text":248,"config":249},"Intégrations",{"href":250,"dataGaName":251,"dataGaLocation":46},"/fr-fr/integrations/","integrations",{"title":253,"items":254},"Découvrir",[255,260,264,269],{"text":256,"config":257},"Histoires de succès client",{"href":258,"dataGaName":259,"dataGaLocation":46},"/fr-fr/customers/","customer success stories",{"text":261,"config":262},"Blog",{"href":263,"dataGaName":5,"dataGaLocation":46},"/fr-fr/blog/",{"text":265,"config":266},"Travail à distance",{"href":267,"dataGaName":268,"dataGaLocation":46},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":270,"config":271},"TeamOps",{"href":272,"dataGaName":273,"dataGaLocation":46},"/fr-fr/teamops/","teamops",{"title":275,"items":276},"Connecter",[277,282,287,292,297],{"text":278,"config":279},"Services GitLab",{"href":280,"dataGaName":281,"dataGaLocation":46},"/fr-fr/services/","services",{"text":283,"config":284},"Communauté",{"href":285,"dataGaName":286,"dataGaLocation":46},"/community/","community",{"text":288,"config":289},"Forum",{"href":290,"dataGaName":291,"dataGaLocation":46},"https://forum.gitlab.com/","forum",{"text":293,"config":294},"Événements",{"href":295,"dataGaName":296,"dataGaLocation":46},"/events/","events",{"text":298,"config":299},"Partenaires",{"href":300,"dataGaName":301,"dataGaLocation":46},"/fr-fr/partners/","partners",{"backgroundColor":303,"textColor":304,"text":305,"image":306,"link":310},"#2f2a6b","#fff","L'avenir du développement logiciel. Tendances et perspectives.",{"altText":307,"config":308},"carte promo The Source",{"src":309},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":311,"config":312},"Lire les articles les plus récents",{"href":313,"dataGaName":314,"dataGaLocation":46},"/fr-fr/the-source/","the source",{"text":316,"config":317,"lists":319},"Société",{"dataNavLevelOne":318},"company",[320],{"items":321},[322,327,333,335,340,345,350,355,360,365,370],{"text":323,"config":324},"À propos",{"href":325,"dataGaName":326,"dataGaLocation":46},"/fr-fr/company/","about",{"text":328,"config":329,"footerGa":332},"Emplois",{"href":330,"dataGaName":331,"dataGaLocation":46},"/jobs/","jobs",{"dataGaName":331},{"text":293,"config":334},{"href":295,"dataGaName":296,"dataGaLocation":46},{"text":336,"config":337},"Leadership",{"href":338,"dataGaName":339,"dataGaLocation":46},"/company/team/e-group/","leadership",{"text":341,"config":342},"Équipe",{"href":343,"dataGaName":344,"dataGaLocation":46},"/company/team/","team",{"text":346,"config":347},"Manuel",{"href":348,"dataGaName":349,"dataGaLocation":46},"https://handbook.gitlab.com/","handbook",{"text":351,"config":352},"Relations avec les investisseurs",{"href":353,"dataGaName":354,"dataGaLocation":46},"https://ir.gitlab.com/","investor relations",{"text":356,"config":357},"Centre de confiance",{"href":358,"dataGaName":359,"dataGaLocation":46},"/fr-fr/security/","trust center",{"text":361,"config":362},"Centre pour la transparence de l'IA",{"href":363,"dataGaName":364,"dataGaLocation":46},"/fr-fr/ai-transparency-center/","ai transparency center",{"text":366,"config":367},"Newsletter",{"href":368,"dataGaName":369,"dataGaLocation":46},"/company/contact/","newsletter",{"text":371,"config":372},"Presse",{"href":373,"dataGaName":374,"dataGaLocation":46},"/press/","press",{"text":376,"config":377,"lists":378},"Nous contacter",{"dataNavLevelOne":318},[379],{"items":380},[381,384,389],{"text":53,"config":382},{"href":55,"dataGaName":383,"dataGaLocation":46},"talk to sales",{"text":385,"config":386},"Aide",{"href":387,"dataGaName":388,"dataGaLocation":46},"/support/","get help",{"text":390,"config":391},"Portail clients GitLab",{"href":392,"dataGaName":393,"dataGaLocation":46},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":395,"login":396,"suggestions":403},"Fermer",{"text":397,"link":398},"Pour rechercher des dépôts et des projets, connectez-vous à",{"text":399,"config":400},"gitlab.com",{"href":60,"dataGaName":401,"dataGaLocation":402},"search login","search",{"text":404,"default":405},"Suggestions",[406,409,414,416,421,426],{"text":75,"config":407},{"href":80,"dataGaName":408,"dataGaLocation":402},"GitLab Duo (AI)",{"text":410,"config":411},"Suggestions de code (IA)",{"href":412,"dataGaName":413,"dataGaLocation":402},"/fr-fr/solutions/code-suggestions/","Code Suggestions (AI)",{"text":127,"config":415},{"href":129,"dataGaName":127,"dataGaLocation":402},{"text":417,"config":418},"GitLab sur AWS",{"href":419,"dataGaName":420,"dataGaLocation":402},"/fr-fr/partners/technology-partners/aws/","GitLab on AWS",{"text":422,"config":423},"GitLab sur Google Cloud ",{"href":424,"dataGaName":425,"dataGaLocation":402},"/fr-fr/partners/technology-partners/google-cloud-platform/","GitLab on Google Cloud",{"text":427,"config":428},"Pourquoi utiliser GitLab ?",{"href":88,"dataGaName":429,"dataGaLocation":402},"Why GitLab?",{"freeTrial":431,"mobileIcon":436,"desktopIcon":441},{"text":432,"config":433},"Commencer votre essai gratuit",{"href":434,"dataGaName":51,"dataGaLocation":435},"https://gitlab.com/-/trials/new/","nav",{"altText":437,"config":438},"Icône GitLab",{"src":439,"dataGaName":440,"dataGaLocation":435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":437,"config":442},{"src":443,"dataGaName":440,"dataGaLocation":435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":445,"mobileIcon":449,"desktopIcon":451},{"text":446,"config":447},"En savoir plus sur GitLab Duo",{"href":80,"dataGaName":448,"dataGaLocation":435},"gitlab duo",{"altText":437,"config":450},{"src":439,"dataGaName":440,"dataGaLocation":435},{"altText":437,"config":452},{"src":443,"dataGaName":440,"dataGaLocation":435},"content:shared:fr-fr:main-navigation.yml","Main Navigation","shared/fr-fr/main-navigation.yml","shared/fr-fr/main-navigation",{"_path":458,"_dir":40,"_draft":6,"_partial":6,"_locale":7,"title":459,"titleMobile":459,"button":460,"config":465,"_id":467,"_type":32,"_source":34,"_file":468,"_stem":469,"_extension":37},"/shared/fr-fr/banner","GitLab Duo Agent Platform est maintenant disponible en version bêta publique !",{"text":461,"config":462},"Essayer la version bêta",{"href":463,"dataGaName":464,"dataGaLocation":46},"/fr-fr/gitlab-duo/agent-platform/","duo banner",{"layout":466},"release","content:shared:fr-fr:banner.yml","shared/fr-fr/banner.yml","shared/fr-fr/banner",{"_path":471,"_dir":40,"_draft":6,"_partial":6,"_locale":7,"data":472,"_id":677,"_type":32,"title":678,"_source":34,"_file":679,"_stem":680,"_extension":37},"/shared/fr-fr/main-footer",{"text":473,"source":474,"edit":480,"contribute":485,"config":490,"items":495,"minimal":668},"Git est une marque déposée de Software Freedom Conservancy et notre utilisation de « GitLab » est sous licence",{"text":475,"config":476},"Afficher le code source de la page",{"href":477,"dataGaName":478,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":481,"config":482},"Modifier cette page",{"href":483,"dataGaName":484,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":486,"config":487},"Veuillez contribuer",{"href":488,"dataGaName":489,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":491,"facebook":492,"youtube":493,"linkedin":494},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[496,519,573,605,639],{"title":64,"links":497,"subMenu":502},[498],{"text":499,"config":500},"Plateforme DevSecOps",{"href":73,"dataGaName":501,"dataGaLocation":479},"devsecops platform",[503],{"title":206,"links":504},[505,509,514],{"text":506,"config":507},"Voir les forfaits",{"href":208,"dataGaName":508,"dataGaLocation":479},"view plans",{"text":510,"config":511},"Pourquoi choisir GitLab Premium ?",{"href":512,"dataGaName":513,"dataGaLocation":479},"/fr-fr/pricing/premium/","why premium",{"text":515,"config":516},"Pourquoi choisir GitLab Ultimate ?",{"href":517,"dataGaName":518,"dataGaLocation":479},"/fr-fr/pricing/ultimate/","why ultimate",{"title":520,"links":521},"Solutions",[522,527,530,532,537,542,546,549,552,557,559,561,563,568],{"text":523,"config":524},"Transformation digitale",{"href":525,"dataGaName":526,"dataGaLocation":479},"/fr-fr/topics/digital-transformation/","digital transformation",{"text":528,"config":529},"Sécurité et conformité",{"href":148,"dataGaName":155,"dataGaLocation":479},{"text":140,"config":531},{"href":123,"dataGaName":124,"dataGaLocation":479},{"text":533,"config":534},"Développement agile",{"href":535,"dataGaName":536,"dataGaLocation":479},"/fr-fr/solutions/agile-delivery/","agile delivery",{"text":538,"config":539},"Transformation cloud",{"href":540,"dataGaName":541,"dataGaLocation":479},"/fr-fr/topics/cloud-native/","cloud transformation",{"text":543,"config":544},"SCM",{"href":137,"dataGaName":545,"dataGaLocation":479},"source code management",{"text":127,"config":547},{"href":129,"dataGaName":548,"dataGaLocation":479},"continuous integration & delivery",{"text":178,"config":550},{"href":180,"dataGaName":551,"dataGaLocation":479},"value stream management",{"text":553,"config":554},"GitOps",{"href":555,"dataGaName":556,"dataGaLocation":479},"/fr-fr/solutions/gitops/","gitops",{"text":191,"config":558},{"href":193,"dataGaName":194,"dataGaLocation":479},{"text":196,"config":560},{"href":198,"dataGaName":199,"dataGaLocation":479},{"text":201,"config":562},{"href":203,"dataGaName":204,"dataGaLocation":479},{"text":564,"config":565},"Formation",{"href":566,"dataGaName":567,"dataGaLocation":479},"/fr-fr/solutions/education/","education",{"text":569,"config":570},"Services financiers",{"href":571,"dataGaName":572,"dataGaLocation":479},"/fr-fr/solutions/finance/","financial services",{"title":211,"links":574},[575,577,579,581,584,586,589,591,593,595,597,599,601,603],{"text":223,"config":576},{"href":225,"dataGaName":226,"dataGaLocation":479},{"text":228,"config":578},{"href":230,"dataGaName":231,"dataGaLocation":479},{"text":233,"config":580},{"href":235,"dataGaName":236,"dataGaLocation":479},{"text":238,"config":582},{"href":240,"dataGaName":583,"dataGaLocation":479},"docs",{"text":261,"config":585},{"href":263,"dataGaName":5},{"text":587,"config":588},"Histoires de réussite client",{"href":258,"dataGaLocation":479},{"text":256,"config":590},{"href":258,"dataGaName":259,"dataGaLocation":479},{"text":265,"config":592},{"href":267,"dataGaName":268,"dataGaLocation":479},{"text":278,"config":594},{"href":280,"dataGaName":281,"dataGaLocation":479},{"text":270,"config":596},{"href":272,"dataGaName":273,"dataGaLocation":479},{"text":283,"config":598},{"href":285,"dataGaName":286,"dataGaLocation":479},{"text":288,"config":600},{"href":290,"dataGaName":291,"dataGaLocation":479},{"text":293,"config":602},{"href":295,"dataGaName":296,"dataGaLocation":479},{"text":298,"config":604},{"href":300,"dataGaName":301,"dataGaLocation":479},{"title":316,"links":606},[607,609,611,613,615,617,619,623,628,630,632,634],{"text":323,"config":608},{"href":325,"dataGaName":318,"dataGaLocation":479},{"text":328,"config":610},{"href":330,"dataGaName":331,"dataGaLocation":479},{"text":336,"config":612},{"href":338,"dataGaName":339,"dataGaLocation":479},{"text":341,"config":614},{"href":343,"dataGaName":344,"dataGaLocation":479},{"text":346,"config":616},{"href":348,"dataGaName":349,"dataGaLocation":479},{"text":351,"config":618},{"href":353,"dataGaName":354,"dataGaLocation":479},{"text":620,"config":621},"Sustainability",{"href":622,"dataGaName":620,"dataGaLocation":479},"/sustainability/",{"text":624,"config":625},"Diversité, inclusion et appartenance (DIB)",{"href":626,"dataGaName":627,"dataGaLocation":479},"/fr-fr/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":356,"config":629},{"href":358,"dataGaName":359,"dataGaLocation":479},{"text":366,"config":631},{"href":368,"dataGaName":369,"dataGaLocation":479},{"text":371,"config":633},{"href":373,"dataGaName":374,"dataGaLocation":479},{"text":635,"config":636},"Déclaration de transparence sur l'esclavage moderne",{"href":637,"dataGaName":638,"dataGaLocation":479},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":376,"links":640},[641,644,646,648,653,658,663],{"text":642,"config":643},"Échanger avec un expert",{"href":55,"dataGaName":56,"dataGaLocation":479},{"text":385,"config":645},{"href":387,"dataGaName":388,"dataGaLocation":479},{"text":390,"config":647},{"href":392,"dataGaName":393,"dataGaLocation":479},{"text":649,"config":650},"Statut",{"href":651,"dataGaName":652,"dataGaLocation":479},"https://status.gitlab.com/","status",{"text":654,"config":655},"Conditions d'utilisation",{"href":656,"dataGaName":657},"/terms/","terms of use",{"text":659,"config":660},"Déclaration de confidentialité",{"href":661,"dataGaName":662,"dataGaLocation":479},"/fr-fr/privacy/","privacy statement",{"text":664,"config":665},"Préférences en matière de cookies",{"dataGaName":666,"dataGaLocation":479,"id":667,"isOneTrustButton":109},"cookie preferences","ot-sdk-btn",{"items":669},[670,672,675],{"text":654,"config":671},{"href":656,"dataGaName":657,"dataGaLocation":479},{"text":673,"config":674},"Politique de confidentialité",{"href":661,"dataGaName":662,"dataGaLocation":479},{"text":664,"config":676},{"dataGaName":666,"dataGaLocation":479,"id":667,"isOneTrustButton":109},"content:shared:fr-fr:main-footer.yml","Main Footer","shared/fr-fr/main-footer.yml","shared/fr-fr/main-footer",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":682,"content":683,"config":686,"_id":31,"_type":32,"title":33,"_source":34,"_file":35,"_stem":36,"_extension":37},{"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":684,"heroImage":11,"date":20,"body":21,"category":22,"tags":685,"updatedDate":27},[18,19],[24,25,26],{"slug":29,"featured":6,"template":30},[688,701,712,723,734,745,756,767,777,787,798,809,819,830,841,851,861,871,881,892,902,912,922,933,944,954,965,976,986,997,1007,1018,1029,1040,1051,1061,1072,1083,1093,1104,1114,1125,1136,1146,1156,1167,1177,1187,1197,1208,1219,1230,1241,1251,1262,1273,1284,1295,1305,1316,1328,1339,1350,1360,1372,1383,1393,1404,1414,1425,1435,1446,1457,1467,1477,1487,1498,1508,1518,1528,1538,1549,1559,1570,1580,1591,1601,1611,1621,1632,1643,1654,1665,1676,1688,1698,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,3692,3704,3714,3725,3735,3746,3756,3766,3777,3789,3799,3809,3819,3830,3840,3851,3861,3871,3882,3893,3904,3916,3927,3937,3948,3959,3969,3979,3990,4001,4012,4023,4033,4044,4055,4066,4076,4087,4098,4108,4119,4130,4141,4151,4161,4172,4183,4193,4204,4215,4226,4236,4246,4257,4268,4279,4290,4301,4311,4322,4333,4343,4353,4363,4375,4387,4397,4409,4419,4430,4441,4452,4463,4476,4486,4497,4508,4518,4528,4538,4549,4559,4570,4581,4591,4602,4612,4623,4634,4645,4656,4667,4677,4687,4698,4709,4719,4729,4739,4750,4761,4771,4781,4791,4801,4812,4822,4832,4843,4853,4864,4874,4885,4896,4906,4916,4927,4937,4947,4958,4969,4980,4991,5001,5013,5024,5035,5045,5055,5065,5076,5087,5098,5109,5119,5130,5141,5151,5162,5174,5184,5194,5204,5215,5226,5237,5247,5257,5268,5279,5289,5301,5311,5321,5332,5342,5353,5365,5376,5386,5397,5408,5418,5429,5440,5452,5462,5472,5483,5493,5504,5514,5525,5535,5545,5556,5566,5577,5587,5597,5608,5618,5629,5640,5650,5660,5671,5681,5691,5701,5711,5722,5733,5745,5756,5767,5779,5791,5802,5813,5823,5834,5844,5854,5865,5876,5887,5897,5907,5917,5927,5937,5948,5960,5971,5983,5994,6004,6014,6025,6035,6045,6055,6065,6075,6085,6096,6106,6116,6127,6137,6147,6158,6169,6179,6191,6202,6212,6224,6235,6245,6256,6267,6277,6287,6297,6309,6319,6330,6341,6352,6363,6373,6383,6394,6406,6416,6426,6437,6447,6458,6468,6480,6491,6501,6511,6522,6534,6544,6557,6567,6579,6590,6600,6610,6621,6631,6642,6653,6664,6675,6686,6697,6708,6719,6730,6741,6752,6763,6774,6785,6796,6806,6819,6829,6840,6850,6861,6871,6881,6892,6903,6914,6924,6934,6945,6955,6966,6977,6989,7000,7010,7021,7032,7042,7052,7062,7072,7082,7093,7103,7114,7124,7135,7150,7161,7171,7182,7193,7204,7215,7226,7236,7247,7258,7269,7279,7290,7300,7310,7320,7330,7340,7351,7363,7373,7384,7395,7407,7417,7428,7438,7450,7461,7471,7481,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":689,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":691,"config":696,"_id":698,"_type":32,"title":692,"_source":34,"_file":699,"_stem":700,"_extension":37},"/en-us/blog/authors/aakriti-gupta","authors",{"name":692,"config":693},"Aakriti Gupta",{"headshot":694,"ctfId":695},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":697},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":702,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":703,"config":707,"_id":708,"_type":32,"title":709,"_source":34,"_file":710,"_stem":711,"_extension":37},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":704,"config":705},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":706},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":697},"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":713,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":714,"config":719,"_id":720,"_type":32,"title":715,"_source":34,"_file":721,"_stem":722,"_extension":37},"/en-us/blog/authors/aathira-nair",{"name":715,"config":716},"Aathira Nair",{"headshot":717,"ctfId":718},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":697},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":724,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":725,"config":730,"_id":731,"_type":32,"title":726,"_source":34,"_file":732,"_stem":733,"_extension":37},"/en-us/blog/authors/abdulkader-benchi",{"name":726,"config":727},"Abdulkader Benchi",{"headshot":728,"ctfId":729},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":697},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":735,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":736,"config":741,"_id":742,"_type":32,"title":737,"_source":34,"_file":743,"_stem":744,"_extension":37},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":737,"config":738},"Abubakar Siddiq Ango",{"headshot":739,"ctfId":740},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":697},"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":746,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":747,"config":752,"_id":753,"_type":32,"title":748,"_source":34,"_file":754,"_stem":755,"_extension":37},"/en-us/blog/authors/achilleas-pipinellis",{"name":748,"config":749},"Achilleas Pipinellis",{"headshot":750,"ctfId":751},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":697},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":757,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":758,"config":762,"_id":763,"_type":32,"title":764,"_source":34,"_file":765,"_stem":766,"_extension":37},"/en-us/blog/authors/adfinis-sygroup",{"name":759,"config":760},"Adfinis SyGroup",{"headshot":728,"ctfId":761},"Adfinis-SyGroup",{"template":697},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":768,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":769,"config":773,"_id":774,"_type":32,"title":770,"_source":34,"_file":775,"_stem":776,"_extension":37},"/en-us/blog/authors/ahmet-kizilay",{"name":770,"config":771},"Ahmet Kizilay",{"headshot":728,"ctfId":772},"Ahmet-Kizilay",{"template":697},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":778,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":779,"config":783,"_id":784,"_type":32,"title":780,"_source":34,"_file":785,"_stem":786,"_extension":37},"/en-us/blog/authors/akashdeep-dhar",{"name":780,"config":781},"Akashdeep Dhar",{"headshot":7,"ctfId":782},"t0xic0der",{"template":697},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":788,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":789,"config":794,"_id":795,"_type":32,"title":790,"_source":34,"_file":796,"_stem":797,"_extension":37},"/en-us/blog/authors/alana-bellucci",{"name":790,"config":791},"Alana Bellucci",{"headshot":792,"ctfId":793},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":697},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":799,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":800,"config":805,"_id":806,"_type":32,"title":801,"_source":34,"_file":807,"_stem":808,"_extension":37},"/en-us/blog/authors/alex-fracazo",{"name":801,"config":802},"Alex Fracazo",{"headshot":803,"ctfId":804},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":697},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":810,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":811,"config":815,"_id":816,"_type":32,"title":812,"_source":34,"_file":817,"_stem":818,"_extension":37},"/en-us/blog/authors/alex-groleau",{"name":812,"config":813},"Alex Groleau",{"headshot":728,"ctfId":814},"3VVHytQSHu9ehZgsUEJ3qq",{"template":697},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":820,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":821,"config":826,"_id":827,"_type":32,"title":822,"_source":34,"_file":828,"_stem":829,"_extension":37},"/en-us/blog/authors/alex-mark",{"name":822,"config":823},"Alex Mark",{"headshot":824,"ctfId":825},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":697},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":831,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":832,"config":837,"_id":838,"_type":32,"title":833,"_source":34,"_file":839,"_stem":840,"_extension":37},"/en-us/blog/authors/alex-martin",{"name":833,"config":834},"Alex Martin",{"headshot":835,"ctfId":836},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":697},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":842,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":843,"config":847,"_id":848,"_type":32,"title":844,"_source":34,"_file":849,"_stem":850,"_extension":37},"/en-us/blog/authors/alexander-dietrich",{"name":844,"config":845},"Alexander Dietrich",{"headshot":728,"ctfId":846},"2CzeEOPVjjGKpdblIm0JfO",{"template":697},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":852,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":853,"config":857,"_id":858,"_type":32,"title":854,"_source":34,"_file":859,"_stem":860,"_extension":37},"/en-us/blog/authors/alexander-malaev",{"name":854,"config":855},"Alexander Malaev",{"headshot":728,"ctfId":856},"Alexander-Malaev",{"template":697},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":862,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":863,"config":867,"_id":868,"_type":32,"title":864,"_source":34,"_file":869,"_stem":870,"_extension":37},"/en-us/blog/authors/alexander-pereverzevs",{"name":864,"config":865},"Alexander Pereverzevs",{"headshot":7,"ctfId":866},"lokalise",{"template":697},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":872,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":873,"config":877,"_id":878,"_type":32,"title":874,"_source":34,"_file":879,"_stem":880,"_extension":37},"/en-us/blog/authors/alexis-ginsberg",{"name":874,"config":875},"Alexis Ginsberg",{"headshot":728,"ctfId":876},"lmDIchpcDx48jKuke2B4l",{"template":697},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":882,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":883,"config":888,"_id":889,"_type":32,"title":884,"_source":34,"_file":890,"_stem":891,"_extension":37},"/en-us/blog/authors/allie-holland",{"name":884,"config":885},"Allie Holland",{"headshot":886,"ctfId":887},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":697},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":893,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":894,"config":898,"_id":899,"_type":32,"title":895,"_source":34,"_file":900,"_stem":901,"_extension":37},"/en-us/blog/authors/allison-whilden",{"name":895,"config":896},"Allison Whilden",{"headshot":728,"ctfId":897},"Allison-Whilden",{"template":697},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":903,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":904,"config":908,"_id":909,"_type":32,"title":905,"_source":34,"_file":910,"_stem":911,"_extension":37},"/en-us/blog/authors/alyssa-rock",{"name":905,"config":906},"Alyssa Rock",{"headshot":728,"ctfId":907},"4T2hddEfeK0Kp1zF8Ncvej",{"template":697},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":913,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":914,"config":918,"_id":919,"_type":32,"title":915,"_source":34,"_file":920,"_stem":921,"_extension":37},"/en-us/blog/authors/amanda-folson",{"name":915,"config":916},"Amanda Folson",{"headshot":728,"ctfId":917},"Amanda-Folson",{"template":697},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":923,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":924,"config":929,"_id":930,"_type":32,"title":925,"_source":34,"_file":931,"_stem":932,"_extension":37},"/en-us/blog/authors/amanda-rueda",{"name":925,"config":926},"Amanda Rueda",{"headshot":927,"ctfId":928},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":697},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":934,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":935,"config":940,"_id":941,"_type":32,"title":936,"_source":34,"_file":942,"_stem":943,"_extension":37},"/en-us/blog/authors/amar-patel",{"name":936,"config":937},"Amar Patel",{"headshot":938,"ctfId":939},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":697},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":945,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":946,"config":950,"_id":951,"_type":32,"title":947,"_source":34,"_file":952,"_stem":953,"_extension":37},"/en-us/blog/authors/amara-nwaigwe",{"name":947,"config":948},"Amara Nwaigwe",{"headshot":728,"ctfId":949},"Amara-Nwaigwe",{"template":697},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":955,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":956,"config":961,"_id":962,"_type":32,"title":957,"_source":34,"_file":963,"_stem":964,"_extension":37},"/en-us/blog/authors/amelia-bauerly",{"name":957,"config":958},"Amelia Bauerly",{"headshot":959,"ctfId":960},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":697},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":966,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":967,"config":972,"_id":973,"_type":32,"title":968,"_source":34,"_file":974,"_stem":975,"_extension":37},"/en-us/blog/authors/ameya-darshan",{"name":968,"config":969},"Ameya Darshan",{"headshot":970,"ctfId":971},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":697},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":977,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":978,"config":982,"_id":983,"_type":32,"title":979,"_source":34,"_file":984,"_stem":985,"_extension":37},"/en-us/blog/authors/andrea-borga",{"name":979,"config":980},"Andrea Borga",{"headshot":728,"ctfId":981},"6dPpfov6kpNcMdmyHyhKcN",{"template":697},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":987,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":988,"config":993,"_id":994,"_type":32,"title":989,"_source":34,"_file":995,"_stem":996,"_extension":37},"/en-us/blog/authors/andreas-brandl",{"name":989,"config":990},"Andreas Brandl",{"headshot":991,"ctfId":992},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":697},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":998,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":999,"config":1003,"_id":1004,"_type":32,"title":1000,"_source":34,"_file":1005,"_stem":1006,"_extension":37},"/en-us/blog/authors/andrew-chilton",{"name":1000,"config":1001},"Andrew Chilton",{"headshot":7,"ctfId":1002},"chilts",{"template":697},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":1008,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1009,"config":1014,"_id":1015,"_type":32,"title":1010,"_source":34,"_file":1016,"_stem":1017,"_extension":37},"/en-us/blog/authors/andrew-fontaine",{"name":1010,"config":1011},"Andrew Fontaine",{"headshot":1012,"ctfId":1013},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":697},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1019,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1020,"config":1025,"_id":1026,"_type":32,"title":1021,"_source":34,"_file":1027,"_stem":1028,"_extension":37},"/en-us/blog/authors/andrew-kelly",{"name":1021,"config":1022},"Andrew Kelly",{"headshot":1023,"ctfId":1024},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":697},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1030,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1031,"config":1036,"_id":1037,"_type":32,"title":1032,"_source":34,"_file":1038,"_stem":1039,"_extension":37},"/en-us/blog/authors/andrew-newdigate",{"name":1032,"config":1033},"Andrew Newdigate",{"headshot":1034,"ctfId":1035},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":697},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1041,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1042,"config":1047,"_id":1048,"_type":32,"title":1043,"_source":34,"_file":1049,"_stem":1050,"_extension":37},"/en-us/blog/authors/andrew-patterson",{"name":1043,"config":1044},"Andrew Patterson",{"headshot":1045,"ctfId":1046},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":697},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1052,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1053,"config":1057,"_id":1058,"_type":32,"title":1054,"_source":34,"_file":1059,"_stem":1060,"_extension":37},"/en-us/blog/authors/andrew-taylor",{"name":1054,"config":1055},"Andrew Taylor",{"headshot":728,"ctfId":1056},"Andrew-Taylor",{"template":697},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1062,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1063,"config":1068,"_id":1069,"_type":32,"title":1064,"_source":34,"_file":1070,"_stem":1071,"_extension":37},"/en-us/blog/authors/andrew-thomas",{"name":1064,"config":1065},"Andrew Thomas",{"headshot":1066,"ctfId":1067},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":697},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1073,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1074,"config":1079,"_id":1080,"_type":32,"title":1075,"_source":34,"_file":1081,"_stem":1082,"_extension":37},"/en-us/blog/authors/andy-bradfield",{"name":1075,"role":1076,"config":1077},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1078},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":697},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1084,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1085,"config":1089,"_id":1090,"_type":32,"title":1086,"_source":34,"_file":1091,"_stem":1092,"_extension":37},"/en-us/blog/authors/andy-rogers",{"name":1086,"config":1087},"Andy Rogers",{"headshot":728,"ctfId":1088},"Andy-Rogers",{"template":697},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1094,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1095,"config":1100,"_id":1101,"_type":32,"title":1096,"_source":34,"_file":1102,"_stem":1103,"_extension":37},"/en-us/blog/authors/andy-volpe",{"name":1096,"config":1097},"Andy Volpe",{"headshot":1098,"ctfId":1099},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":697},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1105,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1106,"config":1110,"_id":1111,"_type":32,"title":1107,"_source":34,"_file":1112,"_stem":1113,"_extension":37},"/en-us/blog/authors/angelo-stavrow",{"name":1107,"config":1108},"Angelo Stavrow",{"headshot":728,"ctfId":1109},"Angelo-Stavrow",{"template":697},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1115,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1116,"config":1121,"_id":1122,"_type":32,"title":1117,"_source":34,"_file":1123,"_stem":1124,"_extension":37},"/en-us/blog/authors/anna-vovchenko",{"name":1117,"config":1118},"Anna Vovchenko",{"headshot":1119,"ctfId":1120},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":697},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1126,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1127,"config":1132,"_id":1133,"_type":32,"title":1128,"_source":34,"_file":1134,"_stem":1135,"_extension":37},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1128,"config":1129},"Annabel Dunstone Gray",{"headshot":1130,"ctfId":1131},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":697},"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":1137,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1138,"config":1142,"_id":1143,"_type":32,"title":1139,"_source":34,"_file":1144,"_stem":1145,"_extension":37},"/en-us/blog/authors/anshuman-singh",{"name":1139,"config":1140},"Anshuman Singh",{"headshot":728,"ctfId":1141},"4xzrY67JSkxp4j7hlK1DWA",{"template":697},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1147,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1148,"config":1152,"_id":1153,"_type":32,"title":1149,"_source":34,"_file":1154,"_stem":1155,"_extension":37},"/en-us/blog/authors/anthony-davanzo",{"name":1149,"config":1150},"Anthony Davanzo",{"headshot":728,"ctfId":1151},"4KccrB6k5jq46xQRDOdWSb",{"template":697},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1157,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1158,"config":1163,"_id":1164,"_type":32,"title":1159,"_source":34,"_file":1165,"_stem":1166,"_extension":37},"/en-us/blog/authors/anton-smith",{"name":1159,"config":1160},"Anton Smith",{"headshot":1161,"ctfId":1162},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":697},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1168,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1169,"config":1173,"_id":1174,"_type":32,"title":1170,"_source":34,"_file":1175,"_stem":1176,"_extension":37},"/en-us/blog/authors/aricka-flowers",{"name":1170,"config":1171},"Aricka Flowers",{"headshot":7,"ctfId":1172},"atflowers",{"template":697},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1178,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1179,"config":1183,"_id":1184,"_type":32,"title":1180,"_source":34,"_file":1185,"_stem":1186,"_extension":37},"/en-us/blog/authors/ariel-camus",{"name":1180,"config":1181},"Ariel Camus",{"headshot":7,"ctfId":1182},"arielcamus",{"template":697},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1188,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1189,"config":1193,"_id":1194,"_type":32,"title":1190,"_source":34,"_file":1195,"_stem":1196,"_extension":37},"/en-us/blog/authors/arunoda-susiripala",{"name":1190,"config":1191},"Arunoda Susiripala",{"headshot":728,"ctfId":1192},"7kQaq0xFWPi2zRW6NZIDHp",{"template":697},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1198,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1199,"config":1203,"_id":1205,"_type":32,"title":1200,"_source":34,"_file":1206,"_stem":1207,"_extension":37},"/en-us/blog/authors/ashher-syed",{"name":1200,"config":1201},"Ashher Syed",{"headshot":1202},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":697,"gitlabHandle":1204},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1209,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1210,"config":1215,"_id":1216,"_type":32,"title":1211,"_source":34,"_file":1217,"_stem":1218,"_extension":37},"/en-us/blog/authors/ashley-knobloch",{"name":1211,"config":1212},"Ashley Knobloch",{"headshot":1213,"ctfId":1214},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":697},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1220,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1221,"config":1226,"_id":1227,"_type":32,"title":1222,"_source":34,"_file":1228,"_stem":1229,"_extension":37},"/en-us/blog/authors/ashley-kramer",{"name":1222,"config":1223},"Ashley Kramer",{"headshot":1224,"ctfId":1225},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":697},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1231,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1232,"config":1236,"_id":1237,"_type":32,"title":1238,"_source":34,"_file":1239,"_stem":1240,"_extension":37},"/en-us/blog/authors/ashley-mcalpin",{"name":1233,"config":1234},"Ashley McAlpin",{"headshot":728,"ctfId":1235},"Ashley-McAlpin",{"template":697},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1242,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1243,"config":1247,"_id":1248,"_type":32,"title":1244,"_source":34,"_file":1249,"_stem":1250,"_extension":37},"/en-us/blog/authors/ashley-smith",{"name":1244,"config":1245},"Ashley Smith",{"headshot":728,"ctfId":1246},"Ashley-Smith",{"template":697},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1252,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1253,"config":1257,"_id":1258,"_type":32,"title":1259,"_source":34,"_file":1260,"_stem":1261,"_extension":37},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1254,"config":1255},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":728,"ctfId":1256},"Atlassian-Bitbucket-GitHub-GitLab",{"template":697},"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":1263,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1264,"config":1269,"_id":1270,"_type":32,"title":1265,"_source":34,"_file":1271,"_stem":1272,"_extension":37},"/en-us/blog/authors/austin-regnery",{"name":1265,"config":1266},"Austin Regnery",{"headshot":1267,"ctfId":1268},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":697},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1274,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1275,"config":1280,"_id":1281,"_type":32,"title":1276,"_source":34,"_file":1282,"_stem":1283,"_extension":37},"/en-us/blog/authors/ayoub-fandi",{"name":1276,"config":1277},"Ayoub Fandi",{"headshot":1278,"ctfId":1279},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":697},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1285,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1286,"config":1290,"_id":1291,"_type":32,"title":1292,"_source":34,"_file":1293,"_stem":1294,"_extension":37},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1287,"config":1288},"Bahubali (Bill) Shetti",{"headshot":728,"ctfId":1289},"4rFnUJeUt0JNGQwwCZSLMj",{"template":697},"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":1296,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1297,"config":1301,"_id":1302,"_type":32,"title":1298,"_source":34,"_file":1303,"_stem":1304,"_extension":37},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1298,"config":1299},"Baksheesh Singh Ghuman",{"headshot":728,"ctfId":1300},"Baksheesh-Singh-Ghuman",{"template":697},"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":1306,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1307,"config":1312,"_id":1313,"_type":32,"title":1308,"_source":34,"_file":1314,"_stem":1315,"_extension":37},"/en-us/blog/authors/bala-allam",{"name":1308,"config":1309},"Bala Allam",{"headshot":1310,"ctfId":1311},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":697},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1317,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1318,"config":1323,"_id":1324,"_type":32,"title":1325,"_source":34,"_file":1326,"_stem":1327,"_extension":37},"/en-us/blog/authors/balasankar-balu-c",{"name":1319,"config":1320},"Balasankar 'Balu' C",{"headshot":1321,"ctfId":1322},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":697},"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":1329,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1330,"config":1335,"_id":1336,"_type":32,"title":1331,"_source":34,"_file":1337,"_stem":1338,"_extension":37},"/en-us/blog/authors/bart-zhang",{"name":1331,"config":1332},"Bart Zhang",{"headshot":1333,"ctfId":1334},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":697},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1340,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1341,"config":1346,"_id":1347,"_type":32,"title":1342,"_source":34,"_file":1348,"_stem":1349,"_extension":37},"/en-us/blog/authors/beatriz-barbosa",{"name":1342,"config":1343},"Beatriz Barbosa",{"headshot":1344,"ctfId":1345},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":697},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1351,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1352,"config":1356,"_id":1357,"_type":32,"title":1353,"_source":34,"_file":1358,"_stem":1359,"_extension":37},"/en-us/blog/authors/becka-lippert",{"name":1353,"config":1354},"Becka Lippert",{"headshot":728,"ctfId":1355},"7wX6Hbvb3AbKwa6NnClvBX",{"template":697},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1361,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1362,"config":1367,"_id":1368,"_type":32,"title":1369,"_source":34,"_file":1370,"_stem":1371,"_extension":37},"/en-us/blog/authors/ben-leduc-mills",{"name":1363,"config":1364},"Ben Leduc-Mills",{"headshot":1365,"ctfId":1366},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":697},"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":1373,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1374,"config":1379,"_id":1380,"_type":32,"title":1375,"_source":34,"_file":1381,"_stem":1382,"_extension":37},"/en-us/blog/authors/ben-ridley",{"name":1375,"config":1376},"Ben Ridley",{"headshot":1377,"ctfId":1378},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":697},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1384,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1385,"config":1389,"_id":1390,"_type":32,"title":1386,"_source":34,"_file":1391,"_stem":1392,"_extension":37},"/en-us/blog/authors/benedikt-rollik",{"name":1386,"config":1387},"Benedikt Rollik",{"headshot":728,"ctfId":1388},"Benedikt-Rollik",{"template":697},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1394,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1395,"config":1400,"_id":1401,"_type":32,"title":1396,"_source":34,"_file":1402,"_stem":1403,"_extension":37},"/en-us/blog/authors/benjamin-skierlak",{"name":1396,"config":1397},"Benjamin Skierlak",{"headshot":1398,"ctfId":1399},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":697},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1405,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1406,"config":1410,"_id":1411,"_type":32,"title":1407,"_source":34,"_file":1412,"_stem":1413,"_extension":37},"/en-us/blog/authors/bert-van-eyck",{"name":1407,"config":1408},"Bert Van Eyck",{"headshot":7,"ctfId":1409},"bertveproximus",{"template":697},"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":1415,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1416,"config":1421,"_id":1422,"_type":32,"title":1417,"_source":34,"_file":1423,"_stem":1424,"_extension":37},"/en-us/blog/authors/betsy-bula",{"name":1417,"config":1418},"Betsy Bula",{"headshot":1419,"ctfId":1420},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":697},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1426,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1427,"config":1431,"_id":1432,"_type":32,"title":1428,"_source":34,"_file":1433,"_stem":1434,"_extension":37},"/en-us/blog/authors/betsy-church",{"name":1428,"config":1429},"Betsy Church",{"headshot":7,"ctfId":1430},"bchurch",{"template":697},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1436,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1437,"config":1442,"_id":1443,"_type":32,"title":1438,"_source":34,"_file":1444,"_stem":1445,"_extension":37},"/en-us/blog/authors/bill-staples",{"name":1438,"config":1439,"role":1441},"Bill Staples",{"headshot":1440},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":697},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1447,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1448,"config":1453,"_id":1454,"_type":32,"title":1449,"_source":34,"_file":1455,"_stem":1456,"_extension":37},"/en-us/blog/authors/bob-van-landuyt",{"name":1449,"config":1450},"Bob Van Landuyt",{"headshot":1451,"ctfId":1452},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":697},"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":1458,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1459,"config":1463,"_id":1464,"_type":32,"title":1460,"_source":34,"_file":1465,"_stem":1466,"_extension":37},"/en-us/blog/authors/boris-baldassari",{"name":1460,"config":1461},"Boris Baldassari",{"headshot":7,"ctfId":1462},"bbaldassari",{"template":697},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1468,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1469,"config":1473,"_id":1474,"_type":32,"title":1470,"_source":34,"_file":1475,"_stem":1476,"_extension":37},"/en-us/blog/authors/borivoje-tasovac",{"name":1470,"config":1471},"Borivoje Tasovac",{"headshot":7,"ctfId":1472},"borivoje",{"template":697},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1478,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1479,"config":1483,"_id":1484,"_type":32,"title":1480,"_source":34,"_file":1485,"_stem":1486,"_extension":37},"/en-us/blog/authors/brad-downey",{"name":1480,"config":1481},"Brad Downey",{"headshot":728,"ctfId":1482},"6b6RTu6832NFEju2zKJhbE",{"template":697},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1488,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1489,"config":1494,"_id":1495,"_type":32,"title":1490,"_source":34,"_file":1496,"_stem":1497,"_extension":37},"/en-us/blog/authors/bradley-lee",{"name":1490,"config":1491},"Bradley Lee",{"headshot":1492,"ctfId":1493},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":697},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1499,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1500,"config":1504,"_id":1505,"_type":32,"title":1501,"_source":34,"_file":1506,"_stem":1507,"_extension":37},"/en-us/blog/authors/brandon-foo",{"name":1501,"config":1502},"Brandon Foo",{"headshot":728,"ctfId":1503},"Brandon-Foo",{"template":697},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1509,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1510,"config":1514,"_id":1515,"_type":32,"title":1511,"_source":34,"_file":1516,"_stem":1517,"_extension":37},"/en-us/blog/authors/brandon-jung",{"name":1511,"config":1512},"Brandon Jung",{"headshot":728,"ctfId":1513},"Brandon-Jung",{"template":697},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1519,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1520,"config":1524,"_id":1525,"_type":32,"title":1521,"_source":34,"_file":1526,"_stem":1527,"_extension":37},"/en-us/blog/authors/brandon-lyon",{"name":1521,"config":1522},"Brandon Lyon",{"headshot":7,"ctfId":1523},"brandonlyon",{"template":697},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1529,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1530,"config":1534,"_id":1535,"_type":32,"title":1531,"_source":34,"_file":1536,"_stem":1537,"_extension":37},"/en-us/blog/authors/brein-matturro",{"name":1531,"config":1532},"Brein Matturro",{"headshot":7,"ctfId":1533},"bmatturro",{"template":697},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1539,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1540,"config":1544,"_id":1545,"_type":32,"title":1546,"_source":34,"_file":1547,"_stem":1548,"_extension":37},"/en-us/blog/authors/brendan-oleary",{"name":1541,"config":1542},"Brendan O'Leary",{"headshot":7,"ctfId":1543},"brendan",{"template":697},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1550,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1551,"config":1555,"_id":1556,"_type":32,"title":1552,"_source":34,"_file":1557,"_stem":1558,"_extension":37},"/en-us/blog/authors/brendan-regan",{"name":1552,"config":1553},"Brendan Regan",{"headshot":7,"ctfId":1554},"brendanregan11",{"template":697},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1560,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1561,"config":1566,"_id":1567,"_type":32,"title":1562,"_source":34,"_file":1568,"_stem":1569,"_extension":37},"/en-us/blog/authors/brett-walker",{"name":1562,"config":1563},"Brett Walker",{"headshot":1564,"ctfId":1565},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":697},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1571,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1572,"config":1576,"_id":1577,"_type":32,"title":1573,"_source":34,"_file":1578,"_stem":1579,"_extension":37},"/en-us/blog/authors/brian-glanz",{"name":1573,"config":1574},"Brian Glanz",{"headshot":7,"ctfId":1575},"brianglanz",{"template":697},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1581,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1582,"config":1586,"_id":1587,"_type":32,"title":1588,"_source":34,"_file":1589,"_stem":1590,"_extension":37},"/en-us/blog/authors/brian-oconnell",{"name":1583,"config":1584},"Brian O'Connell",{"headshot":728,"ctfId":1585},"Brian-OConnell",{"template":697},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1592,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1593,"config":1597,"_id":1598,"_type":32,"title":1594,"_source":34,"_file":1599,"_stem":1600,"_extension":37},"/en-us/blog/authors/brian-rhea",{"name":1594,"config":1595},"Brian Rhea",{"headshot":7,"ctfId":1596},"brhea",{"template":697},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1602,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1603,"config":1607,"_id":1608,"_type":32,"title":1604,"_source":34,"_file":1609,"_stem":1610,"_extension":37},"/en-us/blog/authors/brian-wald",{"name":1604,"config":1605},"Brian Wald",{"headshot":728,"ctfId":1606},"78qOxgHKlgDY2IxMrBrgCu",{"template":697},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1612,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1613,"config":1617,"_id":1618,"_type":32,"title":1614,"_source":34,"_file":1619,"_stem":1620,"_extension":37},"/en-us/blog/authors/brittany-rohde",{"name":1614,"config":1615},"Brittany Rohde",{"headshot":7,"ctfId":1616},"brittanyr",{"template":697},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1622,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1623,"config":1628,"_id":1629,"_type":32,"title":1624,"_source":34,"_file":1630,"_stem":1631,"_extension":37},"/en-us/blog/authors/bryan-behrenshausen",{"name":1624,"config":1625},"Bryan Behrenshausen",{"headshot":1626,"ctfId":1627},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":697},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1633,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1634,"config":1639,"_id":1640,"_type":32,"title":1635,"_source":34,"_file":1641,"_stem":1642,"_extension":37},"/en-us/blog/authors/bryan-may",{"name":1635,"config":1636},"Bryan May",{"headshot":1637,"ctfId":1638},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":697},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1644,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1645,"config":1650,"_id":1651,"_type":32,"title":1646,"_source":34,"_file":1652,"_stem":1653,"_extension":37},"/en-us/blog/authors/byron-boots",{"name":1646,"config":1647},"Byron Boots",{"headshot":1648,"ctfId":1649},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":697},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1655,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1656,"config":1661,"_id":1662,"_type":32,"title":1657,"_source":34,"_file":1663,"_stem":1664,"_extension":37},"/en-us/blog/authors/camellia-yang",{"name":1657,"config":1658},"Camellia Yang",{"headshot":1659,"ctfId":1660},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":697},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1666,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1667,"config":1672,"_id":1673,"_type":32,"title":1668,"_source":34,"_file":1674,"_stem":1675,"_extension":37},"/en-us/blog/authors/cameron-swords",{"name":1668,"config":1669},"Cameron Swords",{"headshot":1670,"ctfId":1671},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":697},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1677,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1678,"config":1684,"_id":1685,"_type":32,"title":1680,"_source":34,"_file":1686,"_stem":1687,"_extension":37},"/en-us/blog/authors/carl-myers",{"role":1679,"name":1680,"config":1681},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1682,"ctfId":1683},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":697},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1689,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1690,"config":1694,"_id":1695,"_type":32,"title":1691,"_source":34,"_file":1696,"_stem":1697,"_extension":37},"/en-us/blog/authors/carol-teskey",{"name":1691,"config":1692},"Carol Teskey",{"headshot":7,"ctfId":1693},"cteskey",{"template":697},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1699,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1700,"config":1704,"_id":1705,"_type":32,"title":19,"_source":34,"_file":1706,"_stem":1707,"_extension":37},"/en-us/blog/authors/cesar-saavedra",{"name":19,"config":1701},{"headshot":1702,"ctfId":1703},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":697},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1709,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1710,"config":1714,"_id":1715,"_type":32,"title":1711,"_source":34,"_file":1716,"_stem":1717,"_extension":37},"/en-us/blog/authors/chad-malchow",{"name":1711,"config":1712},"Chad Malchow",{"headshot":728,"ctfId":1713},"Chad-Malchow",{"template":697},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1719,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1720,"config":1725,"_id":1726,"_type":32,"title":1721,"_source":34,"_file":1727,"_stem":1728,"_extension":37},"/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":697},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1730,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1731,"config":1736,"_id":1737,"_type":32,"title":1732,"_source":34,"_file":1738,"_stem":1739,"_extension":37},"/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":697},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1741,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1742,"config":1746,"_id":1747,"_type":32,"title":1748,"_source":34,"_file":1749,"_stem":1750,"_extension":37},"/en-us/blog/authors/charl-de-wit",{"name":1743,"config":1744},"Charl de Wit",{"headshot":728,"ctfId":1745},"45mQeypQVLNvvTWMzserbR",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":1753,"config":1758,"_id":1759,"_type":32,"title":1754,"_source":34,"_file":1760,"_stem":1761,"_extension":37},"/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":697},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1763,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1764,"config":1768,"_id":1769,"_type":32,"title":1765,"_source":34,"_file":1770,"_stem":1771,"_extension":37},"/en-us/blog/authors/charvi-mendiratta",{"name":1765,"config":1766},"Charvi Mendiratta",{"headshot":728,"ctfId":1767},"YV7WvnjPWFS3JhXmSYJLk",{"template":697},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1773,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1774,"config":1779,"_id":1780,"_type":32,"title":1775,"_source":34,"_file":1781,"_stem":1782,"_extension":37},"/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":697},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1784,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1785,"config":1789,"_id":1791,"_type":32,"title":1786,"_source":34,"_file":1792,"_stem":1793,"_extension":37},"/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":697,"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":690,"_draft":6,"_partial":6,"_locale":7,"content":1796,"config":1801,"_id":1802,"_type":32,"title":1797,"_source":34,"_file":1803,"_stem":1804,"_extension":37},"/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":697},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1806,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1807,"config":1812,"_id":1813,"_type":32,"title":1808,"_source":34,"_file":1814,"_stem":1815,"_extension":37},"/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":697},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1817,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1818,"config":1822,"_id":1823,"_type":32,"title":1819,"_source":34,"_file":1824,"_stem":1825,"_extension":37},"/en-us/blog/authors/chris-baus",{"name":1819,"config":1820},"Chris Baus",{"headshot":7,"ctfId":1821},"chrisbaus",{"template":697},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1827,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1828,"config":1833,"_id":1834,"_type":32,"title":1829,"_source":34,"_file":1835,"_stem":1836,"_extension":37},"/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":697},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1838,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1839,"config":1844,"_id":1845,"_type":32,"title":1840,"_source":34,"_file":1846,"_stem":1847,"_extension":37},"/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":697},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1849,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1850,"config":1854,"_id":1855,"_type":32,"title":1856,"_source":34,"_file":1857,"_stem":1858,"_extension":37},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1851,"config":1852},"Chris Sterry, Dotscience",{"headshot":728,"ctfId":1853},"Chris-Sterry-Dotscience",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":1861,"config":1865,"_id":1866,"_type":32,"title":1862,"_source":34,"_file":1867,"_stem":1868,"_extension":37},"/en-us/blog/authors/chris-ward",{"name":1862,"config":1863},"Chris Ward",{"headshot":7,"ctfId":1864},"chrischinchilla",{"template":697},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1870,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1871,"config":1878,"_id":1879,"_type":32,"title":1873,"_source":34,"_file":1880,"_stem":1881,"_extension":37},"/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":697},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1883,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1884,"config":1888,"_id":1889,"_type":32,"title":1885,"_source":34,"_file":1890,"_stem":1891,"_extension":37},"/en-us/blog/authors/chrissie-buchanan",{"name":1885,"config":1886},"Chrissie Buchanan",{"headshot":728,"ctfId":1887},"cbuchanan",{"template":697},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1893,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1894,"config":1899,"_id":1900,"_type":32,"title":1895,"_source":34,"_file":1901,"_stem":1902,"_extension":37},"/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":697},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1904,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1905,"config":1910,"_id":1911,"_type":32,"title":1906,"_source":34,"_file":1912,"_stem":1913,"_extension":37},"/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":697},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1915,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1916,"config":1921,"_id":1922,"_type":32,"title":1917,"_source":34,"_file":1923,"_stem":1924,"_extension":37},"/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":697},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1926,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1927,"config":1931,"_id":1932,"_type":32,"title":1928,"_source":34,"_file":1933,"_stem":1934,"_extension":37},"/en-us/blog/authors/christian-simko",{"name":1928,"config":1929},"Christian Simko",{"headshot":7,"ctfId":1930},"csimko",{"template":697},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1936,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1937,"config":1942,"_id":1943,"_type":32,"title":1938,"_source":34,"_file":1944,"_stem":1945,"_extension":37},"/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":697},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1947,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1948,"config":1952,"_id":1953,"_type":32,"title":1954,"_source":34,"_file":1955,"_stem":1956,"_extension":37},"/en-us/blog/authors/christina-hupy-phd",{"name":1949,"config":1950},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1951},"chupy",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":1959,"config":1964,"_id":1965,"_type":32,"title":1960,"_source":34,"_file":1966,"_stem":1967,"_extension":37},"/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":697},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":1969,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1970,"config":1974,"_id":1975,"_type":32,"title":1971,"_source":34,"_file":1976,"_stem":1977,"_extension":37},"/en-us/blog/authors/christine-yoshida",{"name":1971,"config":1972},"Christine Yoshida",{"headshot":7,"ctfId":1973},"cyoshida",{"template":697},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":1979,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1980,"config":1984,"_id":1985,"_type":32,"title":1981,"_source":34,"_file":1986,"_stem":1987,"_extension":37},"/en-us/blog/authors/christopher-watson",{"name":1981,"config":1982},"Christopher Watson",{"headshot":728,"ctfId":1983},"Christopher-Watson",{"template":697},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":1989,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1990,"config":1994,"_id":1995,"_type":32,"title":1991,"_source":34,"_file":1996,"_stem":1997,"_extension":37},"/en-us/blog/authors/christos-bacharakis",{"name":1991,"config":1992},"Christos Bacharakis",{"headshot":728,"ctfId":1993},"Christos-Bacharakis",{"template":697},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":1999,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2000,"config":2004,"_id":2005,"_type":32,"title":2001,"_source":34,"_file":2006,"_stem":2007,"_extension":37},"/en-us/blog/authors/cindy-blake",{"name":2001,"config":2002},"Cindy Blake",{"headshot":728,"ctfId":2003},"cblake",{"template":697},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":2009,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2010,"config":2015,"_id":2016,"_type":32,"title":2011,"_source":34,"_file":2017,"_stem":2018,"_extension":37},"/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":697},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2020,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2021,"config":2025,"_id":2026,"_type":32,"title":2022,"_source":34,"_file":2027,"_stem":2028,"_extension":37},"/en-us/blog/authors/clement-ho",{"name":2022,"config":2023},"Clement Ho",{"headshot":7,"ctfId":2024},"ClemMakesApps",{"template":697},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2030,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2031,"config":2035,"_id":2036,"_type":32,"title":2032,"_source":34,"_file":2037,"_stem":2038,"_extension":37},"/en-us/blog/authors/colin-fletcher",{"name":2032,"config":2033},"Colin Fletcher",{"headshot":7,"ctfId":2034},"cfletcher1",{"template":697},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2040,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2041,"config":2046,"_id":2047,"_type":32,"title":2042,"_source":34,"_file":2048,"_stem":2049,"_extension":37},"/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":697},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2051,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2052,"config":2056,"_id":2057,"_type":32,"title":2053,"_source":34,"_file":2058,"_stem":2059,"_extension":37},"/en-us/blog/authors/connor-shea",{"name":2053,"config":2054},"Connor Shea",{"headshot":728,"ctfId":2055},"Connor-Shea",{"template":697},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2061,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2062,"config":2067,"_id":2068,"_type":32,"title":2063,"_source":34,"_file":2069,"_stem":2070,"_extension":37},"/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":697},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2072,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2073,"config":2077,"_id":2078,"_type":32,"title":2074,"_source":34,"_file":2079,"_stem":2080,"_extension":37},"/en-us/blog/authors/cormac-foster",{"name":2074,"config":2075},"Cormac Foster",{"headshot":7,"ctfId":2076},"cfoster3",{"template":697},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2082,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2083,"config":2088,"_id":2089,"_type":32,"title":2084,"_source":34,"_file":2090,"_stem":2091,"_extension":37},"/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":697},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2093,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2094,"config":2099,"_id":2100,"_type":32,"title":2095,"_source":34,"_file":2101,"_stem":2102,"_extension":37},"/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":697},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2104,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2105,"config":2109,"_id":2110,"_type":32,"title":2106,"_source":34,"_file":2111,"_stem":2112,"_extension":37},"/en-us/blog/authors/craig-gomes",{"name":2106,"config":2107},"Craig Gomes",{"headshot":7,"ctfId":2108},"craiggomes",{"template":697},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2114,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2115,"config":2120,"_id":2121,"_type":32,"title":2116,"_source":34,"_file":2122,"_stem":2123,"_extension":37},"/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":697},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2125,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2126,"config":2130,"_id":2131,"_type":32,"title":2127,"_source":34,"_file":2132,"_stem":2133,"_extension":37},"/en-us/blog/authors/creighton-swank",{"name":2127,"config":2128},"Creighton Swank",{"headshot":728,"ctfId":2129},"5uf3k9lutpbelxJQ373eWu",{"template":697},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2135,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2136,"config":2140,"_id":2141,"_type":32,"title":2137,"_source":34,"_file":2142,"_stem":2143,"_extension":37},"/en-us/blog/authors/daisy-miclat",{"name":2137,"config":2138},"Daisy Miclat",{"headshot":728,"ctfId":2139},"IU4zOKoPhWS7hok7qsy7w",{"template":697},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2145,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2146,"config":2150,"_id":2151,"_type":32,"title":2147,"_source":34,"_file":2152,"_stem":2153,"_extension":37},"/en-us/blog/authors/dan-luhring",{"name":2147,"config":2148},"Dan Luhring",{"headshot":7,"ctfId":2149},"danluhring",{"template":697},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2155,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2156,"config":2161,"_id":2162,"_type":32,"title":2157,"_source":34,"_file":2163,"_stem":2164,"_extension":37},"/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":697},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2166,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2167,"config":2171,"_id":2172,"_type":32,"title":2168,"_source":34,"_file":2173,"_stem":2174,"_extension":37},"/en-us/blog/authors/daniel-berman",{"name":2168,"config":2169},"Daniel Berman",{"headshot":728,"ctfId":2170},"Daniel-Berman",{"template":697},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2176,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2177,"config":2181,"_id":2182,"_type":32,"title":2178,"_source":34,"_file":2183,"_stem":2184,"_extension":37},"/en-us/blog/authors/daniel-gruesso",{"name":2178,"config":2179},"Daniel Gruesso",{"headshot":7,"ctfId":2180},"danielgruesso",{"template":697},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2186,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2187,"config":2192,"_id":2193,"_type":32,"title":2188,"_source":34,"_file":2194,"_stem":2195,"_extension":37},"/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":697},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2197,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2198,"config":2203,"_id":2204,"_type":32,"title":2199,"_source":34,"_file":2205,"_stem":2206,"_extension":37},"/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":697},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2208,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2209,"config":2213,"_id":2214,"_type":32,"title":2210,"_source":34,"_file":2215,"_stem":2216,"_extension":37},"/en-us/blog/authors/daniel-mora",{"name":2210,"config":2211},"Daniel Mora",{"headshot":7,"ctfId":2212},"dmoraberlin",{"template":697},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2218,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2219,"config":2223,"_id":2225,"_type":32,"title":2220,"_source":34,"_file":2226,"_stem":2227,"_extension":37},"/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":697,"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2230,"config":2235,"_id":2236,"_type":32,"title":2231,"_source":34,"_file":2237,"_stem":2238,"_extension":37},"/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":697},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2240,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2241,"config":2246,"_id":2247,"_type":32,"title":2242,"_source":34,"_file":2248,"_stem":2249,"_extension":37},"/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":697},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2251,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2252,"config":2256,"_id":2257,"_type":32,"title":2253,"_source":34,"_file":2258,"_stem":2259,"_extension":37},"/en-us/blog/authors/darren-murph",{"name":2253,"config":2254},"Darren Murph",{"headshot":7,"ctfId":2255},"dmurph",{"template":697},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2261,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2262,"config":2269,"_id":2270,"_type":32,"title":2264,"_source":34,"_file":2271,"_stem":2272,"_extension":37},"/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":697},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2274,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2275,"config":2280,"_id":2281,"_type":32,"title":2276,"_source":34,"_file":2282,"_stem":2283,"_extension":37},"/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":697},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2285,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2286,"config":2290,"_id":2291,"_type":32,"title":2287,"_source":34,"_file":2292,"_stem":2293,"_extension":37},"/en-us/blog/authors/dave-wentzel",{"name":2287,"config":2288},"Dave Wentzel",{"headshot":728,"ctfId":2289},"Dave-Wentzel",{"template":697},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2295,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2296,"config":2301,"_id":2302,"_type":32,"title":2303,"_source":34,"_file":2304,"_stem":2305,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2308,"config":2313,"_id":2314,"_type":32,"title":2315,"_source":34,"_file":2316,"_stem":2317,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2320,"config":2324,"_id":2325,"_type":32,"title":2321,"_source":34,"_file":2326,"_stem":2327,"_extension":37},"/en-us/blog/authors/david-planella",{"name":2321,"config":2322},"David Planella",{"headshot":728,"ctfId":2323},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":697},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2329,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2330,"config":2334,"_id":2335,"_type":32,"title":2331,"_source":34,"_file":2336,"_stem":2337,"_extension":37},"/en-us/blog/authors/david-russell",{"name":2331,"config":2332},"David Russell",{"headshot":728,"ctfId":2333},"David-Russell",{"template":697},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2339,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2340,"config":2345,"_id":2346,"_type":32,"title":2341,"_source":34,"_file":2347,"_stem":2348,"_extension":37},"/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":697},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2350,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2351,"config":2355,"_id":2356,"_type":32,"title":2352,"_source":34,"_file":2357,"_stem":2358,"_extension":37},"/en-us/blog/authors/davis-townsend",{"name":2352,"config":2353},"Davis Townsend",{"headshot":7,"ctfId":2354},"davistownsend",{"template":697},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2360,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2361,"config":2365,"_id":2367,"_type":32,"title":2362,"_source":34,"_file":2368,"_stem":2369,"_extension":37},"/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":697,"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2372,"config":2377,"_id":2378,"_type":32,"title":2379,"_source":34,"_file":2380,"_stem":2381,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2384,"config":2389,"_id":2390,"_type":32,"title":2385,"_source":34,"_file":2391,"_stem":2392,"_extension":37},"/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":697},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2394,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2395,"config":2400,"_id":2401,"_type":32,"title":2396,"_source":34,"_file":2402,"_stem":2403,"_extension":37},"/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":697},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2405,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2406,"config":2411,"_id":2412,"_type":32,"title":2407,"_source":34,"_file":2413,"_stem":2414,"_extension":37},"/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":697},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2416,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2417,"config":2421,"_id":2423,"_type":32,"title":2424,"_source":34,"_file":2425,"_stem":2426,"_extension":37},"/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":697,"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2429,"config":2434,"_id":2435,"_type":32,"title":2430,"_source":34,"_file":2436,"_stem":2437,"_extension":37},"/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":697},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2439,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2440,"config":2444,"_id":2445,"_type":32,"title":2441,"_source":34,"_file":2446,"_stem":2447,"_extension":37},"/en-us/blog/authors/dhruv-jain",{"name":2441,"config":2442},"Dhruv Jain",{"headshot":728,"ctfId":2443},"2wyibk9HBKn6PjgaEuzXuZ",{"template":697},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2449,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2450,"config":2454,"_id":2455,"_type":32,"title":2451,"_source":34,"_file":2456,"_stem":2457,"_extension":37},"/en-us/blog/authors/diana-logan",{"name":2451,"config":2452},"Diana Logan",{"headshot":728,"ctfId":2453},"6poIwhQe6W9ysm5rBuSPXX",{"template":697},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2459,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2460,"config":2465,"_id":2466,"_type":32,"title":2461,"_source":34,"_file":2467,"_stem":2468,"_extension":37},"/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":697},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2470,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2471,"config":2475,"_id":2476,"_type":32,"title":2472,"_source":34,"_file":2477,"_stem":2478,"_extension":37},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2472,"config":2473},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2474},"dimitrieh",{"template":697},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2480,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2481,"config":2485,"_id":2486,"_type":32,"title":2482,"_source":34,"_file":2487,"_stem":2488,"_extension":37},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2482,"config":2483},"Dinesh Bolkensteyn",{"headshot":728,"ctfId":2484},"EpylYWgjPmFOL5NX3Zxmk",{"template":697},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2490,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2491,"config":2495,"_id":2496,"_type":32,"title":2497,"_source":34,"_file":2498,"_stem":2499,"_extension":37},"/en-us/blog/authors/dj-mountney",{"name":2492,"config":2493},"DJ Mountney",{"headshot":728,"ctfId":2494},"DJ-Mountney",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2502,"config":2506,"_id":2507,"_type":32,"title":2508,"_source":34,"_file":2509,"_stem":2510,"_extension":37},"/en-us/blog/authors/dmitriy-job",{"name":2503,"config":2504},"Dmitriy, Job",{"headshot":728,"ctfId":2505},"Dmitriy-Job",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2513,"config":2517,"_id":2518,"_type":32,"title":2514,"_source":34,"_file":2519,"_stem":2520,"_extension":37},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2514,"config":2515},"Dmitriy Zaporozhets",{"headshot":728,"ctfId":2516},"Dmitriy-Zaporozhets",{"template":697},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2522,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2523,"config":2528,"_id":2529,"_type":32,"title":2524,"_source":34,"_file":2530,"_stem":2531,"_extension":37},"/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":697},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2533,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2534,"config":2539,"_id":2540,"_type":32,"title":2535,"_source":34,"_file":2541,"_stem":2542,"_extension":37},"/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":697},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2544,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2545,"config":2549,"_id":2550,"_type":32,"title":2546,"_source":34,"_file":2551,"_stem":2552,"_extension":37},"/en-us/blog/authors/douglas-alexandre",{"name":2546,"config":2547},"Douglas Alexandre",{"headshot":728,"ctfId":2548},"Douglas-Alexandre",{"template":697},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2554,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2555,"config":2559,"_id":2560,"_type":32,"title":2556,"_source":34,"_file":2561,"_stem":2562,"_extension":37},"/en-us/blog/authors/douwe-maan",{"name":2556,"config":2557},"Douwe Maan",{"headshot":7,"ctfId":2558},"DouweM",{"template":697},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2564,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2565,"config":2570,"_id":2571,"_type":32,"title":2566,"_source":34,"_file":2572,"_stem":2573,"_extension":37},"/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":697},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2575,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2576,"config":2580,"_id":2581,"_type":32,"title":2582,"_source":34,"_file":2583,"_stem":2584,"_extension":37},"/en-us/blog/authors/dr-elle-obrien",{"name":2577,"config":2578},"Dr. Elle O'Brien",{"headshot":728,"ctfId":2579},"Dr-Elle-OBrien",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2587,"config":2591,"_id":2592,"_type":32,"title":2588,"_source":34,"_file":2593,"_stem":2594,"_extension":37},"/en-us/blog/authors/drew-blessing",{"name":2588,"config":2589},"Drew Blessing",{"headshot":728,"ctfId":2590},"Drew-Blessing",{"template":697},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2596,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2597,"config":2602,"_id":2603,"_type":32,"title":2598,"_source":34,"_file":2604,"_stem":2605,"_extension":37},"/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":697},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2607,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2608,"config":2612,"_id":2613,"_type":32,"title":2609,"_source":34,"_file":2614,"_stem":2615,"_extension":37},"/en-us/blog/authors/eddie-glenn",{"name":2609,"config":2610},"Eddie Glenn",{"headshot":7,"ctfId":2611},"eglenn",{"template":697},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2617,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2618,"config":2623,"_id":2624,"_type":32,"title":2619,"_source":34,"_file":2625,"_stem":2626,"_extension":37},"/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":697},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2628,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2629,"config":2634,"_id":2635,"_type":32,"title":2630,"_source":34,"_file":2636,"_stem":2637,"_extension":37},"/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":697},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2639,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2640,"config":2645,"_id":2646,"_type":32,"title":2641,"_source":34,"_file":2647,"_stem":2648,"_extension":37},"/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":697},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2650,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2651,"config":2655,"_id":2656,"_type":32,"title":2652,"_source":34,"_file":2657,"_stem":2658,"_extension":37},"/en-us/blog/authors/elliot-rushton",{"name":2652,"config":2653},"Elliot Rushton",{"headshot":7,"ctfId":2654},"erushton",{"template":697},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2660,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2661,"config":2665,"_id":2666,"_type":32,"title":2662,"_source":34,"_file":2667,"_stem":2668,"_extension":37},"/en-us/blog/authors/emilie-schario",{"name":2662,"config":2663},"Emilie Schario",{"headshot":7,"ctfId":2664},"emilie",{"template":697},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2670,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2671,"config":2676,"_id":2677,"_type":32,"title":2672,"_source":34,"_file":2678,"_stem":2679,"_extension":37},"/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":697},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2681,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2682,"config":2687,"_id":2688,"_type":32,"title":2683,"_source":34,"_file":2689,"_stem":2690,"_extension":37},"/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":697},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2692,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2693,"config":2697,"_id":2698,"_type":32,"title":2694,"_source":34,"_file":2699,"_stem":2700,"_extension":37},"/en-us/blog/authors/emily-chin",{"name":2694,"config":2695},"Emily Chin",{"headshot":7,"ctfId":2696},"echin",{"template":697},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2702,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2703,"config":2707,"_id":2708,"_type":32,"title":2704,"_source":34,"_file":2709,"_stem":2710,"_extension":37},"/en-us/blog/authors/emily-kyle",{"name":2704,"config":2705},"Emily Kyle",{"headshot":728,"ctfId":2706},"Emily-Kyle",{"template":697},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2712,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2713,"config":2717,"_id":2718,"_type":32,"title":2719,"_source":34,"_file":2720,"_stem":2721,"_extension":37},"/en-us/blog/authors/emily-von-hoffmann",{"name":2714,"config":2715},"Emily von Hoffmann",{"headshot":728,"ctfId":2716},"evhoffmann",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2724,"config":2729,"_id":2730,"_type":32,"title":2731,"_source":34,"_file":2732,"_stem":2733,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2736,"config":2740,"_id":2741,"_type":32,"title":2737,"_source":34,"_file":2742,"_stem":2743,"_extension":37},"/en-us/blog/authors/eric-brinkman",{"name":2737,"config":2738},"Eric Brinkman",{"headshot":7,"ctfId":2739},"ebrinkman",{"template":697},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2745,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2746,"config":2750,"_id":2751,"_type":32,"title":2747,"_source":34,"_file":2752,"_stem":2753,"_extension":37},"/en-us/blog/authors/eric-eastwood",{"name":2747,"config":2748},"Eric Eastwood",{"headshot":7,"ctfId":2749},"MadLittleMods",{"template":697},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2755,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2756,"config":2760,"_id":2761,"_type":32,"title":2757,"_source":34,"_file":2762,"_stem":2763,"_extension":37},"/en-us/blog/authors/eric-rosenberg",{"name":2757,"config":2758},"Eric Rosenberg",{"headshot":7,"ctfId":2759},"ericrosenberg88",{"template":697},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2765,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2766,"config":2771,"_id":2772,"_type":32,"title":2767,"_source":34,"_file":2773,"_stem":2774,"_extension":37},"/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":697},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2776,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2777,"config":2782,"_id":2783,"_type":32,"title":2778,"_source":34,"_file":2784,"_stem":2785,"_extension":37},"/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":697},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2787,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2788,"config":2792,"_id":2793,"_type":32,"title":2789,"_source":34,"_file":2794,"_stem":2795,"_extension":37},"/en-us/blog/authors/erica-huang",{"name":2789,"config":2790},"Erica Huang",{"headshot":7,"ctfId":2791},"exhuang",{"template":697},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2797,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2798,"config":2802,"_id":2803,"_type":32,"title":2799,"_source":34,"_file":2804,"_stem":2805,"_extension":37},"/en-us/blog/authors/erica-lindberg",{"name":2799,"config":2800},"Erica Lindberg",{"headshot":728,"ctfId":2801},"Erica-Lindberg",{"template":697},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2807,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2808,"config":2812,"_id":2813,"_type":32,"title":2809,"_source":34,"_file":2814,"_stem":2815,"_extension":37},"/en-us/blog/authors/erich-wegscheider",{"name":2809,"config":2810},"Erich Wegscheider",{"headshot":7,"ctfId":2811},"ewegscheider",{"template":697},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2817,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2818,"config":2822,"_id":2823,"_type":32,"title":2819,"_source":34,"_file":2824,"_stem":2825,"_extension":37},"/en-us/blog/authors/erick-banks",{"name":2819,"config":2820},"Erick Banks",{"headshot":728,"ctfId":2821},"4CGXhAxudTq69aZOtPnLfu",{"template":697},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2827,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2828,"config":2832,"_id":2833,"_type":32,"title":2829,"_source":34,"_file":2834,"_stem":2835,"_extension":37},"/en-us/blog/authors/erika-feldman",{"name":2829,"config":2830},"Erika Feldman",{"headshot":728,"ctfId":2831},"78oCat8vvbl6mzXsLawd9d",{"template":697},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2837,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2838,"config":2842,"_id":2843,"_type":32,"title":2844,"_source":34,"_file":2845,"_stem":2846,"_extension":37},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2839,"config":2840},"Erin Krengel, Pulumi",{"headshot":728,"ctfId":2841},"Erin-Krengel-Pulumi",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2849,"config":2853,"_id":2854,"_type":32,"title":2855,"_source":34,"_file":2856,"_stem":2857,"_extension":37},"/en-us/blog/authors/ernst-van-nierop",{"name":2850,"config":2851},"Ernst van Nierop",{"headshot":7,"ctfId":2852},"ernstvn",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":2860,"config":2864,"_id":2865,"_type":32,"title":2861,"_source":34,"_file":2866,"_stem":2867,"_extension":37},"/en-us/blog/authors/esther-shein",{"name":2861,"config":2862},"Esther Shein",{"headshot":728,"ctfId":2863},"Esther-Shein",{"template":697},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2869,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2870,"config":2875,"_id":2876,"_type":32,"title":2871,"_source":34,"_file":2877,"_stem":2878,"_extension":37},"/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":697},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2880,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2881,"config":2885,"_id":2886,"_type":32,"title":2882,"_source":34,"_file":2887,"_stem":2888,"_extension":37},"/en-us/blog/authors/ethan-urie",{"name":2882,"config":2883},"Ethan Urie",{"headshot":728,"ctfId":2884},"mJhtQw4TY9ZRNF7dfitIF",{"template":697},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2890,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2891,"config":2895,"_id":2896,"_type":32,"title":2892,"_source":34,"_file":2897,"_stem":2898,"_extension":37},"/en-us/blog/authors/eugene-lim",{"name":2892,"config":2893},"Eugene Lim",{"headshot":728,"ctfId":2894},"6KHdIdghkUfSTzV2MzxNcj",{"template":697},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2900,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2901,"config":2905,"_id":2906,"_type":32,"title":2902,"_source":34,"_file":2907,"_stem":2908,"_extension":37},"/en-us/blog/authors/eugenia-hannon",{"name":2902,"config":2903},"Eugenia Hannon",{"headshot":7,"ctfId":2904},"eugeniah",{"template":697},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2910,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2911,"config":2915,"_id":2916,"_type":32,"title":2912,"_source":34,"_file":2917,"_stem":2918,"_extension":37},"/en-us/blog/authors/ev-kontsevoy",{"name":2912,"config":2913},"Ev Kontsevoy",{"headshot":7,"ctfId":2914},"ekontsevoy",{"template":697},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2920,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2921,"config":2925,"_id":2926,"_type":32,"title":2922,"_source":34,"_file":2927,"_stem":2928,"_extension":37},"/en-us/blog/authors/eva-sasson",{"name":2922,"config":2923},"Eva Sasson",{"headshot":728,"ctfId":2924},"Eva-Sasson",{"template":697},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2930,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2931,"config":2936,"_id":2937,"_type":32,"title":2932,"_source":34,"_file":2938,"_stem":2939,"_extension":37},"/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":697},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2941,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2942,"config":2946,"_id":2947,"_type":32,"title":2943,"_source":34,"_file":2948,"_stem":2949,"_extension":37},"/en-us/blog/authors/fabio-akita",{"name":2943,"config":2944},"Fabio Akita",{"headshot":728,"ctfId":2945},"Fabio-Akita",{"template":697},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2951,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2952,"config":2956,"_id":2957,"_type":32,"title":2953,"_source":34,"_file":2958,"_stem":2959,"_extension":37},"/en-us/blog/authors/fabio-busatto",{"name":2953,"config":2954},"Fabio Busatto",{"headshot":7,"ctfId":2955},"bikebilly",{"template":697},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":2961,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2962,"config":2967,"_id":2968,"_type":32,"title":2963,"_source":34,"_file":2969,"_stem":2970,"_extension":37},"/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":697},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":2972,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2973,"config":2977,"_id":2978,"_type":32,"title":2974,"_source":34,"_file":2979,"_stem":2980,"_extension":37},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2974,"config":2975},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2976},"fseifoddini",{"template":697},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":2982,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2983,"config":2987,"_id":2988,"_type":32,"title":2984,"_source":34,"_file":2989,"_stem":2990,"_extension":37},"/en-us/blog/authors/fatih-acet",{"name":2984,"config":2985},"Fatih Acet",{"headshot":7,"ctfId":2986},"fatihacet",{"template":697},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":2992,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2993,"config":2998,"_id":2999,"_type":32,"title":2994,"_source":34,"_file":3000,"_stem":3001,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3004,"config":3009,"_id":3010,"_type":32,"title":3005,"_source":34,"_file":3011,"_stem":3012,"_extension":37},"/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":697},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3014,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3015,"config":3019,"_id":3020,"_type":32,"title":3016,"_source":34,"_file":3021,"_stem":3022,"_extension":37},"/en-us/blog/authors/filipa-lacerda",{"name":3016,"config":3017},"Filipa Lacerda",{"headshot":7,"ctfId":3018},"filipa",{"template":697},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3024,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3025,"config":3030,"_id":3031,"_type":32,"title":3032,"_source":34,"_file":3033,"_stem":3034,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3037,"config":3041,"_id":3042,"_type":32,"title":3038,"_source":34,"_file":3043,"_stem":3044,"_extension":37},"/en-us/blog/authors/forrest-brazeal",{"name":3038,"config":3039},"Forrest Brazeal",{"headshot":7,"ctfId":3040},"fbrazeal",{"template":697},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3046,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3047,"config":3051,"_id":3052,"_type":32,"title":3048,"_source":34,"_file":3053,"_stem":3054,"_extension":37},"/en-us/blog/authors/francis-ofungwu",{"name":3048,"config":3049},"Francis Ofungwu",{"headshot":728,"ctfId":3050},"fofungwu",{"template":697},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3056,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3057,"config":3062,"_id":3063,"_type":32,"title":3064,"_source":34,"_file":3065,"_stem":3066,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3069,"config":3074,"_id":3075,"_type":32,"title":3070,"_source":34,"_file":3076,"_stem":3077,"_extension":37},"/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":697},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3079,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3080,"config":3085,"_id":3086,"_type":32,"title":3081,"_source":34,"_file":3087,"_stem":3088,"_extension":37},"/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":697},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3090,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3091,"config":3095,"_id":3096,"_type":32,"title":3092,"_source":34,"_file":3097,"_stem":3098,"_extension":37},"/en-us/blog/authors/gabriel-le-breton",{"name":3092,"config":3093},"Gabriel Le Breton",{"headshot":728,"ctfId":3094},"Gabriel-Le-Breton",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3101,"config":3106,"_id":3107,"_type":32,"title":3102,"_source":34,"_file":3108,"_stem":3109,"_extension":37},"/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":697},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3111,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3112,"config":3117,"_id":3118,"_type":32,"title":3113,"_source":34,"_file":3119,"_stem":3120,"_extension":37},"/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":697},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3122,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3123,"config":3128,"_id":3129,"_type":32,"title":3124,"_source":34,"_file":3130,"_stem":3131,"_extension":37},"/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":697},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3133,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3134,"config":3138,"_id":3139,"_type":32,"title":3135,"_source":34,"_file":3140,"_stem":3141,"_extension":37},"/en-us/blog/authors/gerard-hickey",{"name":3135,"config":3136},"Gerard Hickey",{"headshot":7,"ctfId":3137},"ghickey",{"template":697},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3143,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3144,"config":3149,"_id":3150,"_type":32,"title":3151,"_source":34,"_file":3152,"_stem":3153,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3156,"config":3161,"_id":3162,"_type":32,"title":3157,"_source":34,"_file":3163,"_stem":3164,"_extension":37},"/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":697},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3166,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3167,"config":3170,"_id":3171,"_type":32,"title":3172,"_source":34,"_file":3173,"_stem":3174,"_extension":37},"/en-us/blog/authors/gitlab",{"name":3168,"config":3169},"GitLab",{"headshot":728,"ctfId":3168},{"template":697},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3176,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3177,"config":3181,"_id":3182,"_type":32,"title":3183,"_source":34,"_file":3184,"_stem":3185,"_extension":37},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3178,"config":3179},"GitLab AI Assisted Group",{"headshot":728,"ctfId":3180},"GitLab-AI-Assisted-Group",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3188,"config":3192,"_id":3193,"_type":32,"title":3194,"_source":34,"_file":3195,"_stem":3196,"_extension":37},"/en-us/blog/authors/gitlab-france-team",{"name":3189,"config":3190},"GitLab France Team",{"headshot":728,"ctfId":3191},"1gfblqN0ibYIuWGk7MOTny",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3199,"config":3203,"_id":3204,"_type":32,"title":3205,"_source":34,"_file":3206,"_stem":3207,"_extension":37},"/en-us/blog/authors/gitlab-germany-team",{"name":3200,"config":3201},"GitLab Germany Team",{"headshot":728,"ctfId":3202},"6tNquF8jQeRRRi8k3ZXpvS",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3210,"config":3214,"_id":3215,"_type":32,"title":3216,"_source":34,"_file":3217,"_stem":3218,"_extension":37},"/en-us/blog/authors/gitlab-japan-team",{"name":3211,"config":3212},"GitLab Japan Team",{"headshot":728,"ctfId":3213},"5YWHF8vG80rluQ41QjgP7V",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3221,"config":3225,"_id":3226,"_type":32,"title":3227,"_source":34,"_file":3228,"_stem":3229,"_extension":37},"/en-us/blog/authors/gitlab-security-team",{"name":3222,"config":3223},"GitLab Security Team",{"headshot":728,"ctfId":3224},"GitLab-Security-Team",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3232,"config":3236,"_id":3237,"_type":32,"title":3238,"_source":34,"_file":3239,"_stem":3240,"_extension":37},"/en-us/blog/authors/gitlab-team",{"name":3233,"config":3234},"GitLab Team",{"headshot":728,"ctfId":3235},"GitLab-Team",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3243,"config":3247,"_id":3248,"_type":32,"title":3249,"_source":34,"_file":3250,"_stem":3251,"_extension":37},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3244,"config":3245},"GitLab Vulnerability Research Team",{"headshot":728,"ctfId":3246},"GitLab-Vulnerability-Research-Team",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3254,"config":3258,"_id":3259,"_type":32,"title":3255,"_source":34,"_file":3260,"_stem":3261,"_extension":37},"/en-us/blog/authors/goetz-buerkle",{"name":3255,"config":3256},"Goetz Buerkle",{"headshot":728,"ctfId":3257},"Goetz-Buerkle",{"template":697},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3263,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3264,"config":3269,"_id":3270,"_type":32,"title":3265,"_source":34,"_file":3271,"_stem":3272,"_extension":37},"/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":697},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3274,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3275,"config":3280,"_id":3281,"_type":32,"title":3276,"_source":34,"_file":3282,"_stem":3283,"_extension":37},"/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":697},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3285,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3286,"config":3291,"_id":3292,"_type":32,"title":3287,"_source":34,"_file":3293,"_stem":3294,"_extension":37},"/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":697},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3296,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3297,"config":3301,"_id":3302,"_type":32,"title":3298,"_source":34,"_file":3303,"_stem":3304,"_extension":37},"/en-us/blog/authors/greg-alfaro",{"name":3298,"config":3299},"Greg Alfaro",{"headshot":7,"ctfId":3300},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":697},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3306,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3307,"config":3311,"_id":3312,"_type":32,"title":3308,"_source":34,"_file":3313,"_stem":3314,"_extension":37},"/en-us/blog/authors/greg-johnson",{"name":3308,"config":3309},"Greg Johnson",{"headshot":7,"ctfId":3310},"codeEmitter",{"template":697},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3316,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3317,"config":3322,"_id":3323,"_type":32,"title":3318,"_source":34,"_file":3324,"_stem":3325,"_extension":37},"/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":697},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3327,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3328,"config":3332,"_id":3333,"_type":32,"title":3329,"_source":34,"_file":3334,"_stem":3335,"_extension":37},"/en-us/blog/authors/grzegorz-bizon",{"name":3329,"config":3330},"Grzegorz Bizon",{"headshot":728,"ctfId":3331},"Grzegorz-Bizon",{"template":697},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3337,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3338,"config":3342,"_id":3343,"_type":32,"title":3339,"_source":34,"_file":3344,"_stem":3345,"_extension":37},"/en-us/blog/authors/guenjun-yoo",{"name":3339,"config":3340},"Guenjun Yoo",{"headshot":7,"ctfId":3341},"gyoo",{"template":697},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3347,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3348,"config":3352,"_id":3353,"_type":32,"title":3354,"_source":34,"_file":3355,"_stem":3356,"_extension":37},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3349,"config":3350},"Guest author André Arko of Ruby Together",{"headshot":728,"ctfId":3351},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3359,"config":3363,"_id":3364,"_type":32,"title":3365,"_source":34,"_file":3366,"_stem":3367,"_extension":37},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3360,"config":3361},"Guest author André Miranda",{"headshot":728,"ctfId":3362},"Guest-author-Andr-Miranda",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3370,"config":3376,"_id":3377,"_type":32,"title":3378,"_source":34,"_file":3379,"_stem":3380,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3383,"config":3387,"_id":3388,"_type":32,"title":3389,"_source":34,"_file":3390,"_stem":3391,"_extension":37},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3384,"config":3385},"Gustaw Fit of Zoopla",{"headshot":728,"ctfId":3386},"Gustaw-Fit-of-Zoopla",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3394,"config":3398,"_id":3399,"_type":32,"title":3400,"_source":34,"_file":3401,"_stem":3402,"_extension":37},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3395,"config":3396},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":728,"ctfId":3397},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3405,"config":3409,"_id":3410,"_type":32,"title":3406,"_source":34,"_file":3411,"_stem":3412,"_extension":37},"/en-us/blog/authors/gyan-chawdhary",{"name":3406,"config":3407},"Gyan Chawdhary",{"headshot":728,"ctfId":3408},"Gyan-Chawdhary",{"template":697},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3414,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3415,"config":3420,"_id":3421,"_type":32,"title":3416,"_source":34,"_file":3422,"_stem":3423,"_extension":37},"/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":697},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3425,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3426,"config":3431,"_id":3432,"_type":32,"title":3433,"_source":34,"_file":3434,"_stem":3435,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3438,"config":3442,"_id":3444,"_type":32,"title":3439,"_source":34,"_file":3445,"_stem":3446,"_extension":37},"/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":697,"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3449,"config":3454,"_id":3455,"_type":32,"title":3450,"_source":34,"_file":3456,"_stem":3457,"_extension":37},"/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":697},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3459,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3460,"config":3465,"_id":3466,"_type":32,"title":3461,"_source":34,"_file":3467,"_stem":3468,"_extension":37},"/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":697},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3470,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3471,"config":3475,"_id":3476,"_type":32,"title":3472,"_source":34,"_file":3477,"_stem":3478,"_extension":37},"/en-us/blog/authors/haydn-mackay",{"name":3472,"config":3473},"Haydn Mackay",{"headshot":728,"ctfId":3474},"Haydn-Mackay",{"template":697},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3480,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3481,"config":3485,"_id":3486,"_type":32,"title":3482,"_source":34,"_file":3487,"_stem":3488,"_extension":37},"/en-us/blog/authors/hazel-yang",{"name":3482,"config":3483},"Hazel Yang",{"headshot":7,"ctfId":3484},"hazelyang",{"template":697},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3490,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3491,"config":3495,"_id":3496,"_type":32,"title":3497,"_source":34,"_file":3498,"_stem":3499,"_extension":37},"/en-us/blog/authors/heather-mcnamee",{"name":3492,"config":3493},"Heather McNamee",{"headshot":728,"ctfId":3494},"Heather-McNamee",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3502,"config":3506,"_id":3507,"_type":32,"title":3503,"_source":34,"_file":3508,"_stem":3509,"_extension":37},"/en-us/blog/authors/heather-simpson",{"name":3503,"config":3504},"Heather Simpson",{"headshot":728,"ctfId":3505},"hsimpson",{"template":697},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3511,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3512,"config":3517,"_id":3518,"_type":32,"title":3513,"_source":34,"_file":3519,"_stem":3520,"_extension":37},"/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":697},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3522,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3523,"config":3527,"_id":3529,"_type":32,"title":3524,"_source":34,"_file":3530,"_stem":3531,"_extension":37},"/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":697,"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3534,"config":3539,"_id":3540,"_type":32,"title":3535,"_source":34,"_file":3541,"_stem":3542,"_extension":37},"/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":697},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3544,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3545,"config":3549,"_id":3550,"_type":32,"title":3546,"_source":34,"_file":3551,"_stem":3552,"_extension":37},"/en-us/blog/authors/holly-reynolds",{"name":3546,"config":3547},"Holly Reynolds",{"headshot":7,"ctfId":3548},"hollyreynolds",{"template":697},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3554,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3555,"config":3559,"_id":3560,"_type":32,"title":3556,"_source":34,"_file":3561,"_stem":3562,"_extension":37},"/en-us/blog/authors/huldra",{"name":3556,"config":3557},"Huldra",{"headshot":7,"ctfId":3558},"huldra",{"template":697},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3564,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3565,"config":3569,"_id":3570,"_type":32,"title":3566,"_source":34,"_file":3571,"_stem":3572,"_extension":37},"/en-us/blog/authors/iain-camacho",{"name":3566,"config":3567},"Iain Camacho",{"headshot":7,"ctfId":3568},"icamacho",{"template":697},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3574,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3575,"config":3579,"_id":3580,"_type":32,"title":3576,"_source":34,"_file":3581,"_stem":3582,"_extension":37},"/en-us/blog/authors/ian-bartholomew",{"name":3576,"config":3577},"Ian Bartholomew",{"headshot":728,"ctfId":3578},"7D4PE43CXfi8pgOSCmipH0",{"template":697},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3584,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3585,"config":3590,"_id":3591,"_type":32,"title":3586,"_source":34,"_file":3592,"_stem":3593,"_extension":37},"/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":697},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3595,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3596,"config":3601,"_id":3602,"_type":32,"title":3597,"_source":34,"_file":3603,"_stem":3604,"_extension":37},"/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":697},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3606,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3607,"config":3612,"_id":3613,"_type":32,"title":3608,"_source":34,"_file":3614,"_stem":3615,"_extension":37},"/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":697},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3617,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3618,"config":3623,"_id":3624,"_type":32,"title":3619,"_source":34,"_file":3625,"_stem":3626,"_extension":37},"/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":697},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3628,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3629,"config":3634,"_id":3635,"_type":32,"title":3636,"_source":34,"_file":3637,"_stem":3638,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3641,"config":3646,"_id":3647,"_type":32,"title":3642,"_source":34,"_file":3648,"_stem":3649,"_extension":37},"/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":697},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3651,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3652,"config":3656,"_id":3658,"_type":32,"title":3659,"_source":34,"_file":3660,"_stem":3661,"_extension":37},"/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":697,"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3664,"config":3669,"_id":3670,"_type":32,"title":3665,"_source":34,"_file":3671,"_stem":3672,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":3675,"config":3679,"_id":3680,"_type":32,"title":3676,"_source":34,"_file":3681,"_stem":3682,"_extension":37},"/en-us/blog/authors/ivan-lychev",{"name":3676,"config":3677},"Ivan Lychev",{"headshot":7,"ctfId":3678},"iLychevAD",{"template":697},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3684,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3685,"config":3688,"_id":3689,"_type":32,"title":18,"_source":34,"_file":3690,"_stem":3691,"_extension":37},"/en-us/blog/authors/ivan-nemytchenko",{"name":18,"config":3686},{"headshot":728,"ctfId":3687},"Ivan-Nemytchenko",{"template":697},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3693,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3694,"config":3700,"_id":3701,"_type":32,"title":3696,"_source":34,"_file":3702,"_stem":3703,"_extension":37},"/en-us/blog/authors/ivanha-paz",{"role":3695,"name":3696,"config":3697},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3698,"ctfId":3699},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":697},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3705,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3706,"config":3710,"_id":3711,"_type":32,"title":3707,"_source":34,"_file":3712,"_stem":3713,"_extension":37},"/en-us/blog/authors/jacie-bandur",{"name":3707,"config":3708},"Jacie Bandur",{"headshot":7,"ctfId":3709},"jbandur",{"template":697},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3715,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3716,"config":3721,"_id":3722,"_type":32,"title":3717,"_source":34,"_file":3723,"_stem":3724,"_extension":37},"/en-us/blog/authors/jacki-bauer",{"name":3717,"config":3718},"Jacki Bauer",{"headshot":3719,"ctfId":3720},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":697},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3726,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3727,"config":3731,"_id":3732,"_type":32,"title":3728,"_source":34,"_file":3733,"_stem":3734,"_extension":37},"/en-us/blog/authors/jackie-meshell",{"name":3728,"config":3729},"Jackie Meshell",{"headshot":7,"ctfId":3730},"jmeshell",{"template":697},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3736,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3737,"config":3742,"_id":3743,"_type":32,"title":3738,"_source":34,"_file":3744,"_stem":3745,"_extension":37},"/en-us/blog/authors/jackie-porter",{"name":3738,"config":3739},"Jackie Porter",{"headshot":3740,"ctfId":3741},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":697},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3747,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3748,"config":3752,"_id":3753,"_type":32,"title":3749,"_source":34,"_file":3754,"_stem":3755,"_extension":37},"/en-us/blog/authors/jacob-schatz",{"name":3749,"config":3750},"Jacob Schatz",{"headshot":7,"ctfId":3751},"jschatz1",{"template":697},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3757,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3758,"config":3762,"_id":3763,"_type":32,"title":3759,"_source":34,"_file":3764,"_stem":3765,"_extension":37},"/en-us/blog/authors/jacob-vosmaer",{"name":3759,"config":3760},"Jacob Vosmaer",{"headshot":728,"ctfId":3761},"Jacob-Vosmaer",{"template":697},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3767,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3768,"config":3773,"_id":3774,"_type":32,"title":3769,"_source":34,"_file":3775,"_stem":3776,"_extension":37},"/en-us/blog/authors/jacques-erasmus",{"name":3769,"config":3770},"Jacques Erasmus",{"headshot":3771,"ctfId":3772},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":697},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3778,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3779,"config":3784,"_id":3785,"_type":32,"title":3786,"_source":34,"_file":3787,"_stem":3788,"_extension":37},"/en-us/blog/authors/jaime-martnez",{"name":3780,"config":3781},"Jaime Martínez",{"headshot":3782,"ctfId":3783},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":697},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3790,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3791,"config":3795,"_id":3796,"_type":32,"title":3792,"_source":34,"_file":3797,"_stem":3798,"_extension":37},"/en-us/blog/authors/jake-foster",{"name":3792,"config":3793},"Jake Foster",{"headshot":728,"ctfId":3794},"jakefoster1",{"template":697},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3800,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3801,"config":3805,"_id":3806,"_type":32,"title":3802,"_source":34,"_file":3807,"_stem":3808,"_extension":37},"/en-us/blog/authors/jake-stein",{"name":3802,"config":3803},"Jake Stein",{"headshot":728,"ctfId":3804},"Jake-Stein",{"template":697},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3810,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3811,"config":3815,"_id":3816,"_type":32,"title":3812,"_source":34,"_file":3817,"_stem":3818,"_extension":37},"/en-us/blog/authors/james-dang",{"name":3812,"config":3813},"James Dang",{"headshot":728,"ctfId":3814},"James-Dang",{"template":697},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3820,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3821,"config":3826,"_id":3827,"_type":32,"title":3822,"_source":34,"_file":3828,"_stem":3829,"_extension":37},"/en-us/blog/authors/james-heimbuck",{"name":3822,"config":3823},"James Heimbuck",{"headshot":3824,"ctfId":3825},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":697},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3831,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3832,"config":3836,"_id":3837,"_type":32,"title":3833,"_source":34,"_file":3838,"_stem":3839,"_extension":37},"/en-us/blog/authors/james-ramsay",{"name":3833,"config":3834},"James Ramsay",{"headshot":7,"ctfId":3835},"jramsay",{"template":697},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3841,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3842,"config":3847,"_id":3848,"_type":32,"title":3843,"_source":34,"_file":3849,"_stem":3850,"_extension":37},"/en-us/blog/authors/james-wormwell",{"name":3843,"config":3844},"James Wormwell",{"headshot":3845,"ctfId":3846},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":697},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3852,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3853,"config":3857,"_id":3858,"_type":32,"title":3854,"_source":34,"_file":3859,"_stem":3860,"_extension":37},"/en-us/blog/authors/jamie-hurewitz",{"name":3854,"config":3855},"Jamie Hurewitz",{"headshot":728,"ctfId":3856},"Jamie-Hurewitz",{"template":697},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3862,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3863,"config":3867,"_id":3868,"_type":32,"title":3864,"_source":34,"_file":3869,"_stem":3870,"_extension":37},"/en-us/blog/authors/jamie-rachel",{"name":3864,"config":3865},"Jamie Rachel",{"headshot":7,"ctfId":3866},"jrachel1",{"template":697},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3872,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3873,"config":3878,"_id":3879,"_type":32,"title":3874,"_source":34,"_file":3880,"_stem":3881,"_extension":37},"/en-us/blog/authors/jan-provaznik",{"name":3874,"config":3875},"Jan Provaznik",{"headshot":3876,"ctfId":3877},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":697},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3883,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3884,"config":3889,"_id":3890,"_type":32,"title":3885,"_source":34,"_file":3891,"_stem":3892,"_extension":37},"/en-us/blog/authors/janis-altherr",{"name":3885,"config":3886},"Janis Altherr",{"headshot":3887,"ctfId":3888},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":697},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3894,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3895,"config":3900,"_id":3901,"_type":32,"title":3896,"_source":34,"_file":3902,"_stem":3903,"_extension":37},"/en-us/blog/authors/jannik-lehmann",{"name":3896,"config":3897},"Jannik Lehmann",{"headshot":3898,"ctfId":3899},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":697},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3905,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3906,"config":3911,"_id":3912,"_type":32,"title":3913,"_source":34,"_file":3914,"_stem":3915,"_extension":37},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3907,"config":3908},"Jarka Košanová et al",{"headshot":3909,"ctfId":3910},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":697},"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":3917,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3918,"config":3922,"_id":3923,"_type":32,"title":3924,"_source":34,"_file":3925,"_stem":3926,"_extension":37},"/en-us/blog/authors/jason-blais-mattermost",{"name":3919,"config":3920},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3921},"jasonblais",{"template":697},"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":3928,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3929,"config":3933,"_id":3934,"_type":32,"title":3930,"_source":34,"_file":3935,"_stem":3936,"_extension":37},"/en-us/blog/authors/jason-chen",{"name":3930,"config":3931},"Jason Chen",{"headshot":728,"ctfId":3932},"Jason-Chen",{"template":697},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3938,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3939,"config":3944,"_id":3945,"_type":32,"title":3940,"_source":34,"_file":3946,"_stem":3947,"_extension":37},"/en-us/blog/authors/jason-colyer",{"name":3940,"config":3941},"Jason Colyer",{"headshot":3942,"ctfId":3943},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":697},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3949,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3950,"config":3955,"_id":3956,"_type":32,"title":3951,"_source":34,"_file":3957,"_stem":3958,"_extension":37},"/en-us/blog/authors/jason-plum",{"name":3951,"config":3952},"Jason Plum",{"headshot":3953,"ctfId":3954},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":697},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":3960,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3961,"config":3965,"_id":3966,"_type":32,"title":3962,"_source":34,"_file":3967,"_stem":3968,"_extension":37},"/en-us/blog/authors/jason-yavorska",{"name":3962,"config":3963},"Jason Yavorska",{"headshot":7,"ctfId":3964},"jyavorska",{"template":697},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":3970,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3971,"config":3975,"_id":3976,"_type":32,"title":3972,"_source":34,"_file":3977,"_stem":3978,"_extension":37},"/en-us/blog/authors/jay-newman",{"name":3972,"config":3973},"Jay Newman",{"headshot":728,"ctfId":3974},"Jay-Newman",{"template":697},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":3980,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3981,"config":3986,"_id":3987,"_type":32,"title":3982,"_source":34,"_file":3988,"_stem":3989,"_extension":37},"/en-us/blog/authors/jayson-salazar",{"name":3982,"config":3983},"Jayson Salazar",{"headshot":3984,"ctfId":3985},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":697},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":3991,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3992,"config":3996,"_id":3997,"_type":32,"title":3998,"_source":34,"_file":3999,"_stem":4000,"_extension":37},"/en-us/blog/authors/jd-alex",{"name":3993,"config":3994},"JD Alex",{"headshot":7,"ctfId":3995},"jalex1",{"template":697},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":4002,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4003,"config":4007,"_id":4008,"_type":32,"title":4009,"_source":34,"_file":4010,"_stem":4011,"_extension":37},"/en-us/blog/authors/jean-philippe-baconnais",{"name":4004,"config":4005},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":4006},"jeanphibaconnais",{"template":697},"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":4013,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4014,"config":4019,"_id":4020,"_type":32,"title":4015,"_source":34,"_file":4021,"_stem":4022,"_extension":37},"/en-us/blog/authors/jeff-burrows",{"name":4015,"config":4016},"Jeff Burrows",{"headshot":4017,"ctfId":4018},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":697},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4024,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4025,"config":4029,"_id":4030,"_type":32,"title":4026,"_source":34,"_file":4031,"_stem":4032,"_extension":37},"/en-us/blog/authors/jeff-kelsey",{"name":4026,"config":4027},"Jeff Kelsey",{"headshot":728,"ctfId":4028},"Jeff-Kelsey",{"template":697},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4034,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4035,"config":4040,"_id":4041,"_type":32,"title":4036,"_source":34,"_file":4042,"_stem":4043,"_extension":37},"/en-us/blog/authors/jeff-park",{"name":4036,"config":4037},"Jeff Park",{"headshot":4038,"ctfId":4039},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":697},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4045,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4046,"config":4051,"_id":4052,"_type":32,"title":4047,"_source":34,"_file":4053,"_stem":4054,"_extension":37},"/en-us/blog/authors/jeff-tucker",{"name":4047,"config":4048},"Jeff Tucker",{"headshot":4049,"ctfId":4050},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":697},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4056,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4057,"config":4062,"_id":4063,"_type":32,"title":4058,"_source":34,"_file":4064,"_stem":4065,"_extension":37},"/en-us/blog/authors/jensen-stava",{"name":4058,"config":4059},"Jensen Stava",{"headshot":4060,"ctfId":4061},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":697},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4067,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4068,"config":4072,"_id":4073,"_type":32,"title":4069,"_source":34,"_file":4074,"_stem":4075,"_extension":37},"/en-us/blog/authors/jeremy-cooper",{"name":4069,"config":4070},"Jeremy Cooper",{"headshot":728,"ctfId":4071},"6sXs62l8jODDcUlS9OPgTu",{"template":697},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4077,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4078,"config":4083,"_id":4084,"_type":32,"title":4079,"_source":34,"_file":4085,"_stem":4086,"_extension":37},"/en-us/blog/authors/jeremy-elder",{"name":4079,"config":4080},"Jeremy Elder",{"headshot":4081,"ctfId":4082},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":697},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4088,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4089,"config":4094,"_id":4095,"_type":32,"title":4090,"_source":34,"_file":4096,"_stem":4097,"_extension":37},"/en-us/blog/authors/jeremy-wagner",{"name":4090,"config":4091},"Jeremy Wagner",{"headshot":4092,"ctfId":4093},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":697},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4099,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4100,"config":4104,"_id":4105,"_type":32,"title":4101,"_source":34,"_file":4106,"_stem":4107,"_extension":37},"/en-us/blog/authors/jeremy-watson",{"name":4101,"config":4102},"Jeremy Watson",{"headshot":7,"ctfId":4103},"jeremy",{"template":697},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4109,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4110,"config":4115,"_id":4116,"_type":32,"title":4111,"_source":34,"_file":4117,"_stem":4118,"_extension":37},"/en-us/blog/authors/jerez-solis",{"name":4111,"config":4112},"Jerez Solis",{"headshot":4113,"ctfId":4114},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":697},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4120,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4121,"config":4125,"_id":4126,"_type":32,"title":4127,"_source":34,"_file":4128,"_stem":4129,"_extension":37},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4122,"config":4123},"Jeroen van Baarsen",{"headshot":728,"ctfId":4124},"Jeroen-van-Baarsen",{"template":697},"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":4131,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4132,"config":4137,"_id":4138,"_type":32,"title":4133,"_source":34,"_file":4139,"_stem":4140,"_extension":37},"/en-us/blog/authors/jessica-hurwitz",{"name":4133,"config":4134},"Jessica Hurwitz",{"headshot":4135,"ctfId":4136},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":697},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4142,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4143,"config":4147,"_id":4148,"_type":32,"title":4144,"_source":34,"_file":4149,"_stem":4150,"_extension":37},"/en-us/blog/authors/jim-riley",{"name":4144,"config":4145},"Jim Riley",{"headshot":7,"ctfId":4146},"GitLabcom-username-jrileyinva",{"template":697},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4152,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4153,"config":4157,"_id":4158,"_type":32,"title":4154,"_source":34,"_file":4159,"_stem":4160,"_extension":37},"/en-us/blog/authors/jim-thavisouk",{"name":4154,"config":4155},"Jim Thavisouk",{"headshot":728,"ctfId":4156},"jimthavisouk",{"template":697},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4162,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4163,"config":4167,"_id":4168,"_type":32,"title":4169,"_source":34,"_file":4170,"_stem":4171,"_extension":37},"/en-us/blog/authors/job-van-der-voort",{"name":4164,"config":4165},"Job van der Voort",{"headshot":728,"ctfId":4166},"Job-van-der-Voort",{"template":697},"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":4173,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4174,"config":4179,"_id":4180,"_type":32,"title":4175,"_source":34,"_file":4181,"_stem":4182,"_extension":37},"/en-us/blog/authors/jocelyn-eillis",{"name":4175,"config":4176},"Jocelyn Eillis",{"headshot":4177,"ctfId":4178},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":697},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4184,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4185,"config":4189,"_id":4190,"_type":32,"title":4186,"_source":34,"_file":4191,"_stem":4192,"_extension":37},"/en-us/blog/authors/jochen-roth",{"name":4186,"config":4187},"Jochen Roth",{"headshot":7,"ctfId":4188},"ochorocho",{"template":697},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4194,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4195,"config":4200,"_id":4201,"_type":32,"title":4196,"_source":34,"_file":4202,"_stem":4203,"_extension":37},"/en-us/blog/authors/joe-randazzo",{"name":4196,"config":4197},"Joe Randazzo",{"headshot":4198,"ctfId":4199},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":697},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4205,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4206,"config":4211,"_id":4212,"_type":32,"title":4207,"_source":34,"_file":4213,"_stem":4214,"_extension":37},"/en-us/blog/authors/joel-krooswyk",{"name":4207,"config":4208},"Joel Krooswyk",{"headshot":4209,"ctfId":4210},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":697},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4216,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4217,"config":4222,"_id":4223,"_type":32,"title":4218,"_source":34,"_file":4224,"_stem":4225,"_extension":37},"/en-us/blog/authors/joern-schneeweisz",{"name":4218,"config":4219},"Joern Schneeweisz",{"headshot":4220,"ctfId":4221},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":697},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4227,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4228,"config":4232,"_id":4233,"_type":32,"title":4229,"_source":34,"_file":4234,"_stem":4235,"_extension":37},"/en-us/blog/authors/joey-salazar",{"name":4229,"config":4230},"Joey Salazar",{"headshot":728,"ctfId":4231},"4LgUP4bzQV6kuhoZNFID9r",{"template":697},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4237,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4238,"config":4242,"_id":4243,"_type":32,"title":4239,"_source":34,"_file":4244,"_stem":4245,"_extension":37},"/en-us/blog/authors/johanna-ambrosio",{"name":4239,"config":4240},"Johanna Ambrosio",{"headshot":728,"ctfId":4241},"Johanna-Ambrosio",{"template":697},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4247,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4248,"config":4253,"_id":4254,"_type":32,"title":4249,"_source":34,"_file":4255,"_stem":4256,"_extension":37},"/en-us/blog/authors/johannes-bauer",{"name":4249,"config":4250},"Johannes Bauer",{"headshot":4251,"ctfId":4252},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":697},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4258,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4259,"config":4264,"_id":4265,"_type":32,"title":4260,"_source":34,"_file":4266,"_stem":4267,"_extension":37},"/en-us/blog/authors/john-cai",{"name":4260,"config":4261},"John Cai",{"headshot":4262,"ctfId":4263},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":697},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4269,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4270,"config":4275,"_id":4276,"_type":32,"title":4271,"_source":34,"_file":4277,"_stem":4278,"_extension":37},"/en-us/blog/authors/john-coghlan",{"name":4271,"config":4272},"John Coghlan",{"headshot":4273,"ctfId":4274},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":697},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4280,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4281,"config":4286,"_id":4287,"_type":32,"title":4282,"_source":34,"_file":4288,"_stem":4289,"_extension":37},"/en-us/blog/authors/john-crowley",{"name":4282,"config":4283},"John Crowley",{"headshot":4284,"ctfId":4285},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":697},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4291,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4292,"config":4297,"_id":4298,"_type":32,"title":4293,"_source":34,"_file":4299,"_stem":4300,"_extension":37},"/en-us/blog/authors/john-jarvis",{"name":4293,"config":4294},"John Jarvis",{"headshot":4295,"ctfId":4296},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":697},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4302,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4303,"config":4307,"_id":4308,"_type":32,"title":4304,"_source":34,"_file":4309,"_stem":4310,"_extension":37},"/en-us/blog/authors/john-jeremiah",{"name":4304,"config":4305},"John Jeremiah",{"headshot":728,"ctfId":4306},"johnjeremiah",{"template":697},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4312,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4313,"config":4317,"_id":4318,"_type":32,"title":4319,"_source":34,"_file":4320,"_stem":4321,"_extension":37},"/en-us/blog/authors/john-mcguire",{"name":4314,"config":4315},"John McGuire",{"headshot":728,"ctfId":4316},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":697},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4323,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4324,"config":4328,"_id":4330,"_type":32,"title":4325,"_source":34,"_file":4331,"_stem":4332,"_extension":37},"/en-us/blog/authors/john-skarbek",{"name":4325,"config":4326},"John Skarbek",{"headshot":4327},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":697,"gitlabHandle":4329},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4334,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4335,"config":4339,"_id":4340,"_type":32,"title":4336,"_source":34,"_file":4341,"_stem":4342,"_extension":37},"/en-us/blog/authors/john-sparrow",{"name":4336,"config":4337},"John Sparrow",{"headshot":728,"ctfId":4338},"John-Sparrow",{"template":697},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4344,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4345,"config":4349,"_id":4350,"_type":32,"title":4346,"_source":34,"_file":4351,"_stem":4352,"_extension":37},"/en-us/blog/authors/johnathan-hunt",{"name":4346,"config":4347},"Johnathan Hunt",{"headshot":728,"ctfId":4348},"JohnathanHunt",{"template":697},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4354,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4355,"config":4359,"_id":4360,"_type":32,"title":4356,"_source":34,"_file":4361,"_stem":4362,"_extension":37},"/en-us/blog/authors/joni-klippert",{"name":4356,"config":4357},"Joni Klippert",{"headshot":728,"ctfId":4358},"Joni-Klippert",{"template":697},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4364,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4365,"config":4370,"_id":4371,"_type":32,"title":4372,"_source":34,"_file":4373,"_stem":4374,"_extension":37},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4366,"config":4367},"João Alexandre Prado Tavares Cunha",{"headshot":4368,"ctfId":4369},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":697},"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":4376,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4377,"config":4382,"_id":4383,"_type":32,"title":4384,"_source":34,"_file":4385,"_stem":4386,"_extension":37},"/en-us/blog/authors/joo-pereira",{"name":4378,"config":4379},"João Pereira",{"headshot":4380,"ctfId":4381},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":697},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4388,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4389,"config":4393,"_id":4394,"_type":32,"title":4390,"_source":34,"_file":4395,"_stem":4396,"_extension":37},"/en-us/blog/authors/jordi-mon",{"name":4390,"config":4391},"Jordi Mon",{"headshot":7,"ctfId":4392},"jordimon",{"template":697},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4398,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4399,"config":4404,"_id":4405,"_type":32,"title":4406,"_source":34,"_file":4407,"_stem":4408,"_extension":37},"/en-us/blog/authors/jos-ivn-vargas",{"name":4400,"config":4401},"José Iván Vargas",{"headshot":4402,"ctfId":4403},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":697},"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":4410,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4411,"config":4415,"_id":4416,"_type":32,"title":4412,"_source":34,"_file":4417,"_stem":4418,"_extension":37},"/en-us/blog/authors/jose-finotto",{"name":4412,"config":4413},"Jose Finotto",{"headshot":7,"ctfId":4414},"finotto",{"template":697},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4420,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4421,"config":4425,"_id":4427,"_type":32,"title":4424,"_source":34,"_file":4428,"_stem":4429,"_extension":37},"/en-us/blog/authors/joseph-burnett",{"config":4422,"name":4424},{"headshot":4423},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":697,"gitlabHandle":4426},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4431,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4432,"config":4437,"_id":4438,"_type":32,"title":4433,"_source":34,"_file":4439,"_stem":4440,"_extension":37},"/en-us/blog/authors/joseph-longo",{"name":4433,"config":4434},"Joseph Longo",{"headshot":4435,"ctfId":4436},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":697},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4442,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4443,"config":4447,"_id":4448,"_type":32,"title":4449,"_source":34,"_file":4450,"_stem":4451,"_extension":37},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4444,"config":4445},"Joseph Schorr from CoreOS",{"headshot":728,"ctfId":4446},"Joseph-Schorr-from-CoreOS",{"template":697},"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":4453,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4454,"config":4459,"_id":4460,"_type":32,"title":4455,"_source":34,"_file":4461,"_stem":4462,"_extension":37},"/en-us/blog/authors/josh-feehs",{"name":4455,"config":4456},"Josh Feehs",{"headshot":4457,"ctfId":4458},"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":697},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4464,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4465,"config":4471,"_id":4472,"_type":32,"title":4473,"_source":34,"_file":4474,"_stem":4475,"_extension":37},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4466,"name":4467,"config":4468},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4469,"ctfId":4470},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":697},"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":4477,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4478,"config":4482,"_id":4483,"_type":32,"title":4479,"_source":34,"_file":4484,"_stem":4485,"_extension":37},"/en-us/blog/authors/josh-zimmerman",{"name":4479,"config":4480},"Josh Zimmerman",{"headshot":7,"ctfId":4481},"JoshZimmerman",{"template":697},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4487,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4488,"config":4493,"_id":4494,"_type":32,"title":4489,"_source":34,"_file":4495,"_stem":4496,"_extension":37},"/en-us/blog/authors/joshua-carroll",{"name":4489,"config":4490},"Joshua Carroll",{"headshot":4491,"ctfId":4492},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":697},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4498,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4499,"config":4504,"_id":4505,"_type":32,"title":4500,"_source":34,"_file":4506,"_stem":4507,"_extension":37},"/en-us/blog/authors/joshua-lambert",{"name":4500,"config":4501},"Joshua Lambert",{"headshot":4502,"ctfId":4503},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":697},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4509,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4510,"config":4514,"_id":4515,"_type":32,"title":4511,"_source":34,"_file":4516,"_stem":4517,"_extension":37},"/en-us/blog/authors/joyce-tompsett",{"name":4511,"config":4512},"Joyce Tompsett",{"headshot":7,"ctfId":4513},"Tompsett",{"template":697},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4519,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4520,"config":4524,"_id":4525,"_type":32,"title":4521,"_source":34,"_file":4526,"_stem":4527,"_extension":37},"/en-us/blog/authors/juan-broullon",{"name":4521,"config":4522},"Juan Broullon",{"headshot":7,"ctfId":4523},"jbroullon",{"template":697},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4529,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4530,"config":4534,"_id":4535,"_type":32,"title":4531,"_source":34,"_file":4536,"_stem":4537,"_extension":37},"/en-us/blog/authors/julia-lake",{"name":4531,"config":4532},"Julia Lake",{"headshot":728,"ctfId":4533},"5i9IDwCDDg3lfkiu9T3edZ",{"template":697},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4539,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4540,"config":4545,"_id":4546,"_type":32,"title":4541,"_source":34,"_file":4547,"_stem":4548,"_extension":37},"/en-us/blog/authors/julia-miocene",{"name":4541,"config":4542},"Julia Miocene",{"headshot":4543,"ctfId":4544},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":697},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4550,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4551,"config":4555,"_id":4556,"_type":32,"title":4552,"_source":34,"_file":4557,"_stem":4558,"_extension":37},"/en-us/blog/authors/julian-thome",{"name":4552,"config":4553},"Julian Thome",{"headshot":7,"ctfId":4554},"jthome",{"template":697},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4560,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4561,"config":4566,"_id":4567,"_type":32,"title":4562,"_source":34,"_file":4568,"_stem":4569,"_extension":37},"/en-us/blog/authors/julie-byrne",{"name":4562,"config":4563},"Julie Byrne",{"headshot":4564,"ctfId":4565},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":697},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4571,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4572,"config":4577,"_id":4578,"_type":32,"title":4573,"_source":34,"_file":4579,"_stem":4580,"_extension":37},"/en-us/blog/authors/julie-griffin",{"name":4573,"config":4574},"Julie Griffin",{"headshot":4575,"ctfId":4576},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":697},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4582,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4583,"config":4587,"_id":4588,"_type":32,"title":4584,"_source":34,"_file":4589,"_stem":4590,"_extension":37},"/en-us/blog/authors/julien-andrieux",{"name":4584,"config":4585},"Julien Andrieux",{"headshot":728,"ctfId":4586},"Julien-Andrieux",{"template":697},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4592,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4593,"config":4598,"_id":4599,"_type":32,"title":4594,"_source":34,"_file":4600,"_stem":4601,"_extension":37},"/en-us/blog/authors/juliet-wanjohi",{"name":4594,"config":4595},"Juliet Wanjohi",{"headshot":4596,"ctfId":4597},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":697},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4603,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4604,"config":4608,"_id":4609,"_type":32,"title":4605,"_source":34,"_file":4610,"_stem":4611,"_extension":37},"/en-us/blog/authors/justin-farris",{"name":4605,"config":4606},"Justin Farris",{"headshot":728,"ctfId":4607},"5RHYudAlWLmSj5U7AOIcbG",{"template":697},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4613,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4614,"config":4619,"_id":4620,"_type":32,"title":4615,"_source":34,"_file":4621,"_stem":4622,"_extension":37},"/en-us/blog/authors/justin-tobler",{"name":4615,"config":4616},"Justin Tobler",{"headshot":4617,"ctfId":4618},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":697},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4624,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4625,"config":4630,"_id":4631,"_type":32,"title":4626,"_source":34,"_file":4632,"_stem":4633,"_extension":37},"/en-us/blog/authors/kai-armstrong",{"name":4626,"config":4627},"Kai Armstrong",{"headshot":4628,"ctfId":4629},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":697},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4635,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4636,"config":4640,"_id":4641,"_type":32,"title":4642,"_source":34,"_file":4643,"_stem":4644,"_extension":37},"/en-us/blog/authors/kamil-trzciski",{"name":4637,"config":4638},"Kamil Trzciński",{"headshot":728,"ctfId":4639},"Kamil-Trzciski",{"template":697},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4646,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4647,"config":4651,"_id":4652,"_type":32,"title":4653,"_source":34,"_file":4654,"_stem":4655,"_extension":37},"/en-us/blog/authors/karen-caras",{"name":4648,"config":4649},"Karen Carías",{"headshot":728,"ctfId":4650},"Karen-Caras",{"template":697},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4657,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4658,"config":4663,"_id":4664,"_type":32,"title":4659,"_source":34,"_file":4665,"_stem":4666,"_extension":37},"/en-us/blog/authors/karthik-nayak",{"name":4659,"config":4660},"Karthik Nayak",{"headshot":4661,"ctfId":4662},"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":697},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4668,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4669,"config":4673,"_id":4674,"_type":32,"title":4670,"_source":34,"_file":4675,"_stem":4676,"_extension":37},"/en-us/blog/authors/katherine-okpara",{"name":4670,"config":4671},"Katherine Okpara",{"headshot":7,"ctfId":4672},"katokpara",{"template":697},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4678,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4679,"config":4683,"_id":4684,"_type":32,"title":4680,"_source":34,"_file":4685,"_stem":4686,"_extension":37},"/en-us/blog/authors/kathy-wang",{"name":4680,"config":4681},"Kathy Wang",{"headshot":7,"ctfId":4682},"kathyw",{"template":697},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4688,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4689,"config":4693,"_id":4694,"_type":32,"title":4695,"_source":34,"_file":4696,"_stem":4697,"_extension":37},"/en-us/blog/authors/keanon-okeefe",{"name":4690,"config":4691},"Keanon O’Keefe",{"headshot":7,"ctfId":4692},"kokeefe",{"template":697},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4699,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4700,"config":4705,"_id":4706,"_type":32,"title":4701,"_source":34,"_file":4707,"_stem":4708,"_extension":37},"/en-us/blog/authors/kees-valkhof",{"name":4701,"role":4702,"config":4703},"Kees Valkhof","Configuration manager at Lely",{"headshot":4704},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":697},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4710,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4711,"config":4715,"_id":4716,"_type":32,"title":4712,"_source":34,"_file":4717,"_stem":4718,"_extension":37},"/en-us/blog/authors/kelly-hair",{"name":4712,"config":4713},"Kelly Hair",{"headshot":728,"ctfId":4714},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":697},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4720,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4721,"config":4725,"_id":4726,"_type":32,"title":4722,"_source":34,"_file":4727,"_stem":4728,"_extension":37},"/en-us/blog/authors/kendra-marquart",{"name":4722,"config":4723},"Kendra Marquart",{"headshot":7,"ctfId":4724},"kmarquart",{"template":697},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4730,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4731,"config":4735,"_id":4736,"_type":32,"title":4732,"_source":34,"_file":4737,"_stem":4738,"_extension":37},"/en-us/blog/authors/kenny-johnston",{"name":4732,"config":4733},"Kenny Johnston",{"headshot":7,"ctfId":4734},"kencjohnston",{"template":697},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4740,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4741,"config":4746,"_id":4747,"_type":32,"title":4742,"_source":34,"_file":4748,"_stem":4749,"_extension":37},"/en-us/blog/authors/kevin-chu",{"name":4742,"config":4743},"Kevin Chu",{"headshot":4744,"ctfId":4745},"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":697},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4751,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4752,"config":4757,"_id":4758,"_type":32,"title":4753,"_source":34,"_file":4759,"_stem":4760,"_extension":37},"/en-us/blog/authors/kevin-morrison",{"name":4753,"config":4754},"Kevin Morrison",{"headshot":4755,"ctfId":4756},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":697},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4762,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4763,"config":4767,"_id":4768,"_type":32,"title":4764,"_source":34,"_file":4769,"_stem":4770,"_extension":37},"/en-us/blog/authors/khrystyna-humenna",{"name":4764,"config":4765},"Khrystyna Humenna",{"headshot":728,"ctfId":4766},"Khrystyna-Humenna",{"template":697},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4772,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4773,"config":4777,"_id":4778,"_type":32,"title":4774,"_source":34,"_file":4779,"_stem":4780,"_extension":37},"/en-us/blog/authors/kim-lock",{"name":4774,"config":4775},"Kim Lock",{"headshot":7,"ctfId":4776},"KimLock",{"template":697},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4782,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4783,"config":4787,"_id":4788,"_type":32,"title":4784,"_source":34,"_file":4789,"_stem":4790,"_extension":37},"/en-us/blog/authors/kirsten-abma",{"name":4784,"config":4785},"Kirsten Abma",{"headshot":728,"ctfId":4786},"Kirsten-Abma",{"template":697},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4792,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4793,"config":4797,"_id":4798,"_type":32,"title":4794,"_source":34,"_file":4799,"_stem":4800,"_extension":37},"/en-us/blog/authors/kristian-larsson",{"name":4794,"config":4795},"Kristian Larsson",{"headshot":728,"ctfId":4796},"Kristian-Larsson",{"template":697},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4802,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4803,"config":4808,"_id":4809,"_type":32,"title":4804,"_source":34,"_file":4810,"_stem":4811,"_extension":37},"/en-us/blog/authors/kristina-weis",{"name":4804,"config":4805},"Kristina Weis",{"headshot":4806,"ctfId":4807},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":697},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4813,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4814,"config":4818,"_id":4819,"_type":32,"title":4815,"_source":34,"_file":4820,"_stem":4821,"_extension":37},"/en-us/blog/authors/kurt-dusek",{"name":4815,"config":4816},"Kurt Dusek",{"headshot":7,"ctfId":4817},"kdusek",{"template":697},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4823,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4824,"config":4828,"_id":4829,"_type":32,"title":4825,"_source":34,"_file":4830,"_stem":4831,"_extension":37},"/en-us/blog/authors/kushal-koolwal",{"name":4825,"config":4826},"Kushal Koolwal",{"headshot":728,"ctfId":4827},"Kushal-Koolwal",{"template":697},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4833,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4834,"config":4839,"_id":4840,"_type":32,"title":4835,"_source":34,"_file":4841,"_stem":4842,"_extension":37},"/en-us/blog/authors/kushal-pandya",{"name":4835,"config":4836},"Kushal Pandya",{"headshot":4837,"ctfId":4838},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":697},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4844,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4845,"config":4849,"_id":4850,"_type":32,"title":4846,"_source":34,"_file":4851,"_stem":4852,"_extension":37},"/en-us/blog/authors/kwan-lee",{"name":4846,"config":4847},"Kwan Lee",{"headshot":728,"ctfId":4848},"Kwan-Lee",{"template":697},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4854,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4855,"config":4860,"_id":4861,"_type":32,"title":4856,"_source":34,"_file":4862,"_stem":4863,"_extension":37},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4856,"config":4857},"Kyla Gradin Dahl",{"headshot":4858,"ctfId":4859},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":697},"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":4865,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4866,"config":4870,"_id":4871,"_type":32,"title":4867,"_source":34,"_file":4872,"_stem":4873,"_extension":37},"/en-us/blog/authors/kyle-mann",{"name":4867,"config":4868},"Kyle Mann",{"headshot":728,"ctfId":4869},"44YiW1r6sTpbC9wKBeHGgE",{"template":697},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4875,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4876,"config":4881,"_id":4882,"_type":32,"title":4877,"_source":34,"_file":4883,"_stem":4884,"_extension":37},"/en-us/blog/authors/kyle-smith",{"name":4877,"config":4878},"Kyle Smith",{"headshot":4879,"ctfId":4880},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":697},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4886,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4887,"config":4891,"_id":4893,"_type":32,"title":4888,"_source":34,"_file":4894,"_stem":4895,"_extension":37},"/en-us/blog/authors/kymberlee-price",{"name":4888,"config":4889},"Kymberlee Price",{"headshot":4890},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":697,"gitlabHandle":4892},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4897,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4898,"config":4902,"_id":4903,"_type":32,"title":4899,"_source":34,"_file":4904,"_stem":4905,"_extension":37},"/en-us/blog/authors/lasse-schuirmann",{"name":4899,"config":4900},"Lasse Schuirmann",{"headshot":728,"ctfId":4901},"5vpo2ZOrPIS8PBp3k47S6w",{"template":697},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4907,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4908,"config":4912,"_id":4913,"_type":32,"title":4909,"_source":34,"_file":4914,"_stem":4915,"_extension":37},"/en-us/blog/authors/laura-montemayor",{"name":4909,"config":4910},"Laura Montemayor",{"headshot":7,"ctfId":4911},"lauraMon",{"template":697},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4917,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4918,"config":4923,"_id":4924,"_type":32,"title":4919,"_source":34,"_file":4925,"_stem":4926,"_extension":37},"/en-us/blog/authors/lauren-barker",{"name":4919,"config":4920},"Lauren Barker",{"headshot":4921,"ctfId":4922},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":697},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4928,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4929,"config":4933,"_id":4934,"_type":32,"title":4930,"_source":34,"_file":4935,"_stem":4936,"_extension":37},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4930,"config":4931},"Lauren Gibbons Paul",{"headshot":728,"ctfId":4932},"Lauren-Gibbons-Paul",{"template":697},"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":4938,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4939,"config":4943,"_id":4944,"_type":32,"title":4940,"_source":34,"_file":4945,"_stem":4946,"_extension":37},"/en-us/blog/authors/lauren-minning",{"name":4940,"config":4941},"Lauren Minning",{"headshot":7,"ctfId":4942},"lminning",{"template":697},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":4948,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4949,"config":4954,"_id":4955,"_type":32,"title":4950,"_source":34,"_file":4956,"_stem":4957,"_extension":37},"/en-us/blog/authors/laurena-alves",{"name":4950,"config":4951},"Laurena Alves",{"headshot":4952,"ctfId":4953},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":697},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":4959,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4960,"config":4965,"_id":4966,"_type":32,"title":4961,"_source":34,"_file":4967,"_stem":4968,"_extension":37},"/en-us/blog/authors/lee-faus",{"name":4961,"config":4962},"Lee Faus",{"headshot":4963,"ctfId":4964},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":697},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":4970,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4971,"config":4976,"_id":4977,"_type":32,"title":4972,"_source":34,"_file":4978,"_stem":4979,"_extension":37},"/en-us/blog/authors/lee-matos",{"name":4972,"config":4973},"Lee Matos",{"headshot":4974,"ctfId":4975},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":697},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":4981,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4982,"config":4987,"_id":4988,"_type":32,"title":4983,"_source":34,"_file":4989,"_stem":4990,"_extension":37},"/en-us/blog/authors/lee-tickett",{"name":4983,"config":4984},"Lee Tickett",{"headshot":4985,"ctfId":4986},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":697},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":4992,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4993,"config":4997,"_id":4998,"_type":32,"title":4994,"_source":34,"_file":4999,"_stem":5000,"_extension":37},"/en-us/blog/authors/levente-polyak",{"name":4994,"config":4995},"Levente Polyak",{"headshot":7,"ctfId":4996},"anthraxx",{"template":697},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":5002,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5003,"config":5008,"_id":5009,"_type":32,"title":5010,"_source":34,"_file":5011,"_stem":5012,"_extension":37},"/en-us/blog/authors/lin-jen-shin",{"name":5004,"config":5005},"Lin Jen-Shin",{"headshot":5006,"ctfId":5007},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":697},"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":5014,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5015,"config":5020,"_id":5021,"_type":32,"title":5016,"_source":34,"_file":5022,"_stem":5023,"_extension":37},"/en-us/blog/authors/liz-coleman",{"name":5016,"config":5017},"Liz Coleman",{"headshot":5018,"ctfId":5019},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":697},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5025,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5026,"config":5031,"_id":5032,"_type":32,"title":5027,"_source":34,"_file":5033,"_stem":5034,"_extension":37},"/en-us/blog/authors/loryn-bortins",{"name":5027,"config":5028},"Loryn Bortins",{"headshot":5029,"ctfId":5030},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":697},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5036,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5037,"config":5041,"_id":5042,"_type":32,"title":5038,"_source":34,"_file":5043,"_stem":5044,"_extension":37},"/en-us/blog/authors/lucas-charles",{"name":5038,"config":5039},"Lucas Charles",{"headshot":728,"ctfId":5040},"01OUkmRJImMowxMk3YHGNS",{"template":697},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5046,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5047,"config":5051,"_id":5052,"_type":32,"title":5048,"_source":34,"_file":5053,"_stem":5054,"_extension":37},"/en-us/blog/authors/luka-trbojevic",{"name":5048,"config":5049},"Luka Trbojevic",{"headshot":7,"ctfId":5050},"ltrbojevic",{"template":697},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5056,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5057,"config":5061,"_id":5062,"_type":32,"title":5058,"_source":34,"_file":5063,"_stem":5064,"_extension":37},"/en-us/blog/authors/lukas-eipert",{"name":5058,"config":5059},"Lukas Eipert",{"headshot":728,"ctfId":5060},"37PO8stm7JUQgglr4tWcmw",{"template":697},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5066,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5067,"config":5072,"_id":5073,"_type":32,"title":5068,"_source":34,"_file":5074,"_stem":5075,"_extension":37},"/en-us/blog/authors/lyle-kozloff",{"name":5068,"config":5069},"Lyle Kozloff",{"headshot":5070,"ctfId":5071},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":697},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5077,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5078,"config":5083,"_id":5084,"_type":32,"title":5079,"_source":34,"_file":5085,"_stem":5086,"_extension":37},"/en-us/blog/authors/madeline-lake",{"name":5079,"config":5080},"Madeline Lake",{"headshot":5081,"ctfId":5082},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":697},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5088,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5089,"config":5094,"_id":5095,"_type":32,"title":5090,"_source":34,"_file":5096,"_stem":5097,"_extension":37},"/en-us/blog/authors/madou-coulibaly",{"name":5090,"config":5091},"Madou Coulibaly",{"headshot":5092,"ctfId":5093},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":697},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5099,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5100,"config":5105,"_id":5106,"_type":32,"title":5101,"_source":34,"_file":5107,"_stem":5108,"_extension":37},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5101,"config":5102},"Magdalena Frankiewicz",{"headshot":5103,"ctfId":5104},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":697},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5110,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5111,"config":5115,"_id":5116,"_type":32,"title":5112,"_source":34,"_file":5117,"_stem":5118,"_extension":37},"/en-us/blog/authors/mahesh-kumar",{"name":5112,"config":5113},"Mahesh Kumar",{"headshot":728,"ctfId":5114},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":697},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5120,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5121,"config":5126,"_id":5127,"_type":32,"title":5122,"_source":34,"_file":5128,"_stem":5129,"_extension":37},"/en-us/blog/authors/manav-khurana",{"name":5122,"config":5123,"role":5125},"Manav Khurana",{"headshot":5124},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":697,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5131,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5132,"config":5137,"_id":5138,"_type":32,"title":5133,"_source":34,"_file":5139,"_stem":5140,"_extension":37},"/en-us/blog/authors/manuel-kraft",{"name":5133,"config":5134},"Manuel Kraft",{"headshot":5135,"ctfId":5136},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":697},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5142,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5143,"config":5147,"_id":5148,"_type":32,"title":5144,"_source":34,"_file":5149,"_stem":5150,"_extension":37},"/en-us/blog/authors/marc-radulescu",{"name":5144,"config":5145},"Marc Radulescu",{"headshot":728,"ctfId":5146},"Marc-Radulescu",{"template":697},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5152,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5153,"config":5158,"_id":5159,"_type":32,"title":5154,"_source":34,"_file":5160,"_stem":5161,"_extension":37},"/en-us/blog/authors/marc-shaw",{"name":5154,"config":5155},"Marc Shaw",{"headshot":5156,"ctfId":5157},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":697},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5163,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5164,"config":5169,"_id":5170,"_type":32,"title":5171,"_source":34,"_file":5172,"_stem":5173,"_extension":37},"/en-us/blog/authors/marcel-van-remmerden",{"name":5165,"config":5166},"Marcel van Remmerden",{"headshot":5167,"ctfId":5168},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":697},"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":5175,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5176,"config":5180,"_id":5181,"_type":32,"title":5177,"_source":34,"_file":5182,"_stem":5183,"_extension":37},"/en-us/blog/authors/marcia-ramos",{"name":5177,"config":5178},"Marcia Ramos",{"headshot":728,"ctfId":5179},"Marcia-Ramos",{"template":697},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5185,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5186,"config":5190,"_id":5191,"_type":32,"title":5187,"_source":34,"_file":5192,"_stem":5193,"_extension":37},"/en-us/blog/authors/marco-lenzo",{"name":5187,"config":5188},"Marco Lenzo",{"headshot":728,"ctfId":5189},"Marco-Lenzo",{"template":697},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5195,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5196,"config":5200,"_id":5201,"_type":32,"title":5197,"_source":34,"_file":5202,"_stem":5203,"_extension":37},"/en-us/blog/authors/marie-hargitt",{"name":5197,"config":5198},"Marie Hargitt",{"headshot":728,"ctfId":5199},"Marie-Hargitt",{"template":697},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5205,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5206,"config":5211,"_id":5212,"_type":32,"title":5207,"_source":34,"_file":5213,"_stem":5214,"_extension":37},"/en-us/blog/authors/marin-jankovski",{"name":5207,"config":5208},"Marin Jankovski",{"headshot":5209,"ctfId":5210},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":697},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5216,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5217,"config":5221,"_id":5222,"_type":32,"title":5223,"_source":34,"_file":5224,"_stem":5225,"_extension":37},"/en-us/blog/authors/marin-job",{"name":5218,"config":5219},"Marin, Job",{"headshot":728,"ctfId":5220},"Marin-Job",{"template":697},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5227,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5228,"config":5232,"_id":5233,"_type":32,"title":5234,"_source":34,"_file":5235,"_stem":5236,"_extension":37},"/en-us/blog/authors/mario-de-la-ossa",{"name":5229,"config":5230},"Mario de la Ossa",{"headshot":7,"ctfId":5231},"mdelaossa",{"template":697},"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":5238,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5239,"config":5243,"_id":5244,"_type":32,"title":5240,"_source":34,"_file":5245,"_stem":5246,"_extension":37},"/en-us/blog/authors/mark-art",{"name":5240,"config":5241},"Mark Art",{"headshot":728,"ctfId":5242},"55KCfyNmgPaJRmBZhiN7k5",{"template":697},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5248,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5249,"config":5253,"_id":5254,"_type":32,"title":5250,"_source":34,"_file":5255,"_stem":5256,"_extension":37},"/en-us/blog/authors/mark-fletcher",{"name":5250,"config":5251},"Mark Fletcher",{"headshot":7,"ctfId":5252},"markglenfletcher",{"template":697},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5258,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5259,"config":5264,"_id":5265,"_type":32,"title":5260,"_source":34,"_file":5266,"_stem":5267,"_extension":37},"/en-us/blog/authors/mark-lapierre",{"name":5260,"config":5261},"Mark Lapierre",{"headshot":5262,"ctfId":5263},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":697},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5269,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5270,"config":5275,"_id":5276,"_type":32,"title":5271,"_source":34,"_file":5277,"_stem":5278,"_extension":37},"/en-us/blog/authors/mark-loveless",{"name":5271,"config":5272},"Mark Loveless",{"headshot":5273,"ctfId":5274},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":697},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5280,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5281,"config":5285,"_id":5286,"_type":32,"title":5282,"_source":34,"_file":5287,"_stem":5288,"_extension":37},"/en-us/blog/authors/mark-pundsack",{"name":5282,"config":5283},"Mark Pundsack",{"headshot":728,"ctfId":5284},"markpundsack",{"template":697},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5290,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5291,"config":5296,"_id":5297,"_type":32,"title":5298,"_source":34,"_file":5299,"_stem":5300,"_extension":37},"/en-us/blog/authors/martin-brmmer",{"name":5292,"config":5293},"Martin Brümmer",{"headshot":5294,"ctfId":5295},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":697},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5302,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5303,"config":5307,"_id":5308,"_type":32,"title":5304,"_source":34,"_file":5309,"_stem":5310,"_extension":37},"/en-us/blog/authors/martynas-krupskis",{"name":5304,"config":5305},"Martynas Krupskis",{"headshot":728,"ctfId":5306},"3tK5S0f4QshGFGRrdEl7rn",{"template":697},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5312,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5313,"config":5317,"_id":5318,"_type":32,"title":5314,"_source":34,"_file":5319,"_stem":5320,"_extension":37},"/en-us/blog/authors/matej-latin",{"name":5314,"config":5315},"Matej Latin",{"headshot":7,"ctfId":5316},"matejlatin",{"template":697},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5322,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5323,"config":5328,"_id":5329,"_type":32,"title":5324,"_source":34,"_file":5330,"_stem":5331,"_extension":37},"/en-us/blog/authors/mathias-ewald",{"name":5324,"config":5325},"Mathias Ewald",{"headshot":5326,"ctfId":5327},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":697},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5333,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5334,"config":5338,"_id":5339,"_type":32,"title":5335,"_source":34,"_file":5340,"_stem":5341,"_extension":37},"/en-us/blog/authors/matt-baldwin",{"name":5335,"config":5336},"Matt Baldwin",{"headshot":728,"ctfId":5337},"Matt-Baldwin",{"template":697},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5343,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5344,"config":5349,"_id":5350,"_type":32,"title":5345,"_source":34,"_file":5351,"_stem":5352,"_extension":37},"/en-us/blog/authors/matt-coons",{"name":5345,"config":5346},"Matt Coons",{"headshot":5347,"ctfId":5348},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":697},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5354,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5355,"config":5360,"_id":5361,"_type":32,"title":5362,"_source":34,"_file":5363,"_stem":5364,"_extension":37},"/en-us/blog/authors/matt-delaney",{"name":5356,"config":5357},"Matt DeLaney",{"headshot":5358,"ctfId":5359},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":697},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5366,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5367,"config":5372,"_id":5373,"_type":32,"title":5368,"_source":34,"_file":5374,"_stem":5375,"_extension":37},"/en-us/blog/authors/matt-genelin",{"name":5368,"config":5369},"Matt Genelin",{"headshot":5370,"ctfId":5371},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":697},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5377,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5378,"config":5382,"_id":5383,"_type":32,"title":5379,"_source":34,"_file":5384,"_stem":5385,"_extension":37},"/en-us/blog/authors/matt-nguyen",{"name":5379,"config":5380},"Matt Nguyen",{"headshot":728,"ctfId":5381},"Matt-Nguyen",{"template":697},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5387,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5388,"config":5393,"_id":5394,"_type":32,"title":5389,"_source":34,"_file":5395,"_stem":5396,"_extension":37},"/en-us/blog/authors/matt-nohr",{"name":5389,"config":5390},"Matt Nohr",{"headshot":5391,"ctfId":5392},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":697},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5398,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5399,"config":5404,"_id":5405,"_type":32,"title":5400,"_source":34,"_file":5406,"_stem":5407,"_extension":37},"/en-us/blog/authors/matt-smiley",{"name":5400,"config":5401},"Matt Smiley",{"headshot":5402,"ctfId":5403},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":697},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5409,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5410,"config":5414,"_id":5415,"_type":32,"title":5411,"_source":34,"_file":5416,"_stem":5417,"_extension":37},"/en-us/blog/authors/matt-wilson",{"name":5411,"config":5412},"Matt Wilson",{"headshot":728,"ctfId":5413},"mattwilson",{"template":697},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5419,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5420,"config":5425,"_id":5426,"_type":32,"title":5421,"_source":34,"_file":5427,"_stem":5428,"_extension":37},"/en-us/blog/authors/matthew-macfarlane",{"name":5421,"config":5422},"Matthew Macfarlane",{"headshot":5423,"ctfId":5424},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":697},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5430,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5431,"config":5436,"_id":5437,"_type":32,"title":5432,"_source":34,"_file":5438,"_stem":5439,"_extension":37},"/en-us/blog/authors/matthew-nearents",{"name":5432,"config":5433},"Matthew Nearents",{"headshot":5434,"ctfId":5435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":697},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5441,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5442,"config":5447,"_id":5448,"_type":32,"title":5449,"_source":34,"_file":5450,"_stem":5451,"_extension":37},"/en-us/blog/authors/matthias-kppler",{"name":5443,"config":5444},"Matthias Käppler",{"headshot":5445,"ctfId":5446},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":697},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5453,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5454,"config":5458,"_id":5459,"_type":32,"title":5455,"_source":34,"_file":5460,"_stem":5461,"_extension":37},"/en-us/blog/authors/matthieu-fronton",{"name":5455,"config":5456},"Matthieu Fronton",{"headshot":7,"ctfId":5457},"frntn",{"template":697},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5463,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5464,"config":5468,"_id":5469,"_type":32,"title":5465,"_source":34,"_file":5470,"_stem":5471,"_extension":37},"/en-us/blog/authors/max-woolf",{"name":5465,"config":5466},"Max Woolf",{"headshot":728,"ctfId":5467},"Max-Woolf",{"template":697},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5473,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5474,"config":5479,"_id":5480,"_type":32,"title":5475,"_source":34,"_file":5481,"_stem":5482,"_extension":37},"/en-us/blog/authors/maximilien-belinga",{"name":5475,"config":5476},"Maximilien Belinga",{"headshot":5477,"ctfId":5478},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":697},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5484,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5485,"config":5489,"_id":5490,"_type":32,"title":5486,"_source":34,"_file":5491,"_stem":5492,"_extension":37},"/en-us/blog/authors/mayank-tahilramani",{"name":5486,"config":5487},"Mayank Tahilramani",{"headshot":7,"ctfId":5488},"mayanktahil",{"template":697},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5494,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5495,"config":5500,"_id":5501,"_type":32,"title":5496,"_source":34,"_file":5502,"_stem":5503,"_extension":37},"/en-us/blog/authors/mayra-cabrera",{"name":5496,"config":5497},"Mayra Cabrera",{"headshot":5498,"ctfId":5499},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":697},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5505,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5506,"config":5510,"_id":5511,"_type":32,"title":5507,"_source":34,"_file":5512,"_stem":5513,"_extension":37},"/en-us/blog/authors/meghan-maneval",{"name":5507,"config":5508},"Meghan Maneval",{"headshot":7,"ctfId":5509},"mmaneval20",{"template":697},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5515,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5516,"config":5521,"_id":5522,"_type":32,"title":5517,"_source":34,"_file":5523,"_stem":5524,"_extension":37},"/en-us/blog/authors/mek-stittri",{"name":5517,"config":5518},"Mek Stittri",{"headshot":5519,"ctfId":5520},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":697},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5526,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5527,"config":5531,"_id":5532,"_type":32,"title":5528,"_source":34,"_file":5533,"_stem":5534,"_extension":37},"/en-us/blog/authors/melissa-farber",{"name":5528,"config":5529},"Melissa Farber",{"headshot":7,"ctfId":5530},"mfarber",{"template":697},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5536,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5537,"config":5541,"_id":5542,"_type":32,"title":5538,"_source":34,"_file":5543,"_stem":5544,"_extension":37},"/en-us/blog/authors/melissa-smolensky",{"name":5538,"config":5539},"Melissa Smolensky",{"headshot":7,"ctfId":5540},"melsmo",{"template":697},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5546,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5547,"config":5552,"_id":5553,"_type":32,"title":5548,"_source":34,"_file":5554,"_stem":5555,"_extension":37},"/en-us/blog/authors/melissa-ushakov",{"name":5548,"config":5549},"Melissa Ushakov",{"headshot":5550,"ctfId":5551},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":697},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5557,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5558,"config":5562,"_id":5563,"_type":32,"title":5559,"_source":34,"_file":5564,"_stem":5565,"_extension":37},"/en-us/blog/authors/michael-fahey",{"name":5559,"config":5560},"Michael Fahey",{"headshot":7,"ctfId":5561},"mfahey",{"template":697},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5567,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5568,"config":5573,"_id":5574,"_type":32,"title":5569,"_source":34,"_file":5575,"_stem":5576,"_extension":37},"/en-us/blog/authors/michael-friedrich",{"name":5569,"config":5570},"Michael Friedrich",{"headshot":5571,"ctfId":5572},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":697},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5578,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5579,"config":5583,"_id":5584,"_type":32,"title":5580,"_source":34,"_file":5585,"_stem":5586,"_extension":37},"/en-us/blog/authors/michael-henriksen",{"name":5580,"config":5581},"Michael Henriksen",{"headshot":728,"ctfId":5582},"3DmojnawcJFqAgoNMCpFTX",{"template":697},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5588,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5589,"config":5593,"_id":5594,"_type":32,"title":5590,"_source":34,"_file":5595,"_stem":5596,"_extension":37},"/en-us/blog/authors/michael-karampalas",{"name":5590,"config":5591},"Michael Karampalas",{"headshot":7,"ctfId":5592},"mkarampalas",{"template":697},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5598,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5599,"config":5604,"_id":5605,"_type":32,"title":5600,"_source":34,"_file":5606,"_stem":5607,"_extension":37},"/en-us/blog/authors/michael-kozono",{"name":5600,"config":5601},"Michael Kozono",{"headshot":5602,"ctfId":5603},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":697},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5609,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5610,"config":5614,"_id":5615,"_type":32,"title":5611,"_source":34,"_file":5616,"_stem":5617,"_extension":37},"/en-us/blog/authors/michael-miranda",{"name":5611,"config":5612},"Michael Miranda",{"headshot":7,"ctfId":5613},"mikemiranda",{"template":697},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5619,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5620,"config":5625,"_id":5626,"_type":32,"title":5621,"_source":34,"_file":5627,"_stem":5628,"_extension":37},"/en-us/blog/authors/michelle-gill",{"name":5621,"config":5622},"Michelle Gill",{"headshot":5623,"ctfId":5624},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":697},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5630,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5631,"config":5636,"_id":5637,"_type":32,"title":5632,"_source":34,"_file":5638,"_stem":5639,"_extension":37},"/en-us/blog/authors/miguel-rincon",{"name":5632,"config":5633},"Miguel Rincon",{"headshot":5634,"ctfId":5635},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":697},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5641,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5642,"config":5646,"_id":5647,"_type":32,"title":5643,"_source":34,"_file":5648,"_stem":5649,"_extension":37},"/en-us/blog/authors/mike-bartlett",{"name":5643,"config":5644},"Mike Bartlett",{"headshot":7,"ctfId":5645},"mydigitalself",{"template":697},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5651,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5652,"config":5656,"_id":5657,"_type":32,"title":5653,"_source":34,"_file":5658,"_stem":5659,"_extension":37},"/en-us/blog/authors/mike-eddington",{"name":5653,"config":5654},"Mike Eddington",{"headshot":728,"ctfId":5655},"q5tK0TgB1ZovSwShKSvOJ",{"template":697},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5661,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5662,"config":5667,"_id":5668,"_type":32,"title":5663,"_source":34,"_file":5669,"_stem":5670,"_extension":37},"/en-us/blog/authors/mike-flouton",{"name":5663,"config":5664},"Mike Flouton",{"headshot":5665,"ctfId":5666},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":697},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5672,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5673,"config":5677,"_id":5678,"_type":32,"title":5674,"_source":34,"_file":5679,"_stem":5680,"_extension":37},"/en-us/blog/authors/mike-gerwitz",{"name":5674,"config":5675},"Mike Gerwitz",{"headshot":728,"ctfId":5676},"Mike-Gerwitz",{"template":697},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5682,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5683,"config":5687,"_id":5688,"_type":32,"title":5684,"_source":34,"_file":5689,"_stem":5690,"_extension":37},"/en-us/blog/authors/mike-greiling",{"name":5684,"config":5685},"Mike Greiling",{"headshot":7,"ctfId":5686},"mikegreiling",{"template":697},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5692,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5693,"config":5697,"_id":5698,"_type":32,"title":5694,"_source":34,"_file":5699,"_stem":5700,"_extension":37},"/en-us/blog/authors/mike-vanbuskirk",{"name":5694,"config":5695},"Mike Vanbuskirk",{"headshot":728,"ctfId":5696},"Mike-Vanbuskirk",{"template":697},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5702,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5703,"config":5707,"_id":5708,"_type":32,"title":5704,"_source":34,"_file":5709,"_stem":5710,"_extension":37},"/en-us/blog/authors/miranda-carter",{"name":5704,"config":5705},"Miranda Carter",{"headshot":728,"ctfId":5706},"4xT4dbRh6N9i7jW5xuPhVp",{"template":697},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5712,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5713,"config":5718,"_id":5719,"_type":32,"title":5714,"_source":34,"_file":5720,"_stem":5721,"_extension":37},"/en-us/blog/authors/mitra-jozenazemian",{"name":5714,"config":5715},"Mitra Jozenazemian",{"headshot":5716,"ctfId":5717},"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":697},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5723,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5724,"config":5729,"_id":5730,"_type":32,"title":5725,"_source":34,"_file":5731,"_stem":5732,"_extension":37},"/en-us/blog/authors/monmayuri-ray",{"name":5725,"config":5726},"Monmayuri Ray",{"headshot":5727,"ctfId":5728},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":697},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5734,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5735,"config":5740,"_id":5742,"_type":32,"title":5736,"_source":34,"_file":5743,"_stem":5744,"_extension":37},"/en-us/blog/authors/naoharu-sasaki",{"name":5736,"config":5737,"role":5739},"Naoharu Sasaki",{"headshot":5738},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":697,"gitlabHandle":5741},"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":5746,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5747,"config":5752,"_id":5753,"_type":32,"title":5748,"_source":34,"_file":5754,"_stem":5755,"_extension":37},"/en-us/blog/authors/nate-rosandich",{"name":5748,"config":5749},"Nate Rosandich",{"headshot":5750,"ctfId":5751},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":697},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5757,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5758,"config":5763,"_id":5764,"_type":32,"title":5759,"_source":34,"_file":5765,"_stem":5766,"_extension":37},"/en-us/blog/authors/neha-khalwadekar",{"name":5759,"config":5760},"Neha Khalwadekar",{"headshot":5761,"ctfId":5762},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":697},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5768,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5769,"config":5774,"_id":5775,"_type":32,"title":5776,"_source":34,"_file":5777,"_stem":5778,"_extension":37},"/en-us/blog/authors/neil-mccorrison",{"name":5770,"config":5771},"Neil McCorrison",{"headshot":5772,"ctfId":5773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":697},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5780,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5781,"config":5786,"_id":5787,"_type":32,"title":5788,"_source":34,"_file":5789,"_stem":5790,"_extension":37},"/en-us/blog/authors/neil-mcdonald",{"name":5782,"config":5783},"Neil McDonald",{"headshot":5784,"ctfId":5785},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":697},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5792,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5793,"config":5797,"_id":5799,"_type":32,"title":5794,"_source":34,"_file":5800,"_stem":5801,"_extension":37},"/en-us/blog/authors/nick-cayou",{"name":5794,"config":5795,"role":7},"Nick Cayou",{"headshot":5796},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":697,"gitlabHandle":5798},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5803,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5804,"config":5809,"_id":5810,"_type":32,"title":5805,"_source":34,"_file":5811,"_stem":5812,"_extension":37},"/en-us/blog/authors/nick-malcolm",{"name":5805,"config":5806},"Nick Malcolm",{"headshot":5807,"ctfId":5808},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":697},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5814,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5815,"config":5819,"_id":5820,"_type":32,"title":5816,"_source":34,"_file":5821,"_stem":5822,"_extension":37},"/en-us/blog/authors/nick-thomas",{"name":5816,"config":5817},"Nick Thomas",{"headshot":7,"ctfId":5818},"nickthomas",{"template":697},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5824,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5825,"config":5830,"_id":5831,"_type":32,"title":5826,"_source":34,"_file":5832,"_stem":5833,"_extension":37},"/en-us/blog/authors/nick-veenhof",{"name":5826,"config":5827},"Nick Veenhof",{"headshot":5828,"ctfId":5829},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":697},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5835,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5836,"config":5840,"_id":5841,"_type":32,"title":5837,"_source":34,"_file":5842,"_stem":5843,"_extension":37},"/en-us/blog/authors/nico-meisenzahl",{"name":5837,"config":5838},"Nico Meisenzahl",{"headshot":7,"ctfId":5839},"nicomeisenzahl",{"template":697},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5845,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5846,"config":5850,"_id":5851,"_type":32,"title":5847,"_source":34,"_file":5852,"_stem":5853,"_extension":37},"/en-us/blog/authors/nicole-schwartz",{"name":5847,"config":5848},"Nicole Schwartz",{"headshot":7,"ctfId":5849},"nicoleschwartz",{"template":697},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5855,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5856,"config":5861,"_id":5862,"_type":32,"title":5857,"_source":34,"_file":5863,"_stem":5864,"_extension":37},"/en-us/blog/authors/nikhil-george",{"name":5857,"config":5858},"Nikhil George",{"headshot":5859,"ctfId":5860},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":697},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5866,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5867,"config":5872,"_id":5873,"_type":32,"title":5868,"_source":34,"_file":5874,"_stem":5875,"_extension":37},"/en-us/blog/authors/nima-badiey",{"name":5868,"config":5869},"Nima Badiey",{"headshot":5870,"ctfId":5871},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":697},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5877,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5878,"config":5883,"_id":5884,"_type":32,"title":5879,"_source":34,"_file":5885,"_stem":5886,"_extension":37},"/en-us/blog/authors/noah-ing",{"name":5879,"config":5880},"Noah Ing",{"headshot":5881,"ctfId":5882},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":697},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5888,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5889,"config":5893,"_id":5894,"_type":32,"title":5890,"_source":34,"_file":5895,"_stem":5896,"_extension":37},"/en-us/blog/authors/noah-manger",{"name":5890,"config":5891},"Noah Manger",{"headshot":728,"ctfId":5892},"Noah-Manger",{"template":697},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5898,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5899,"config":5903,"_id":5904,"_type":32,"title":5900,"_source":34,"_file":5905,"_stem":5906,"_extension":37},"/en-us/blog/authors/noah-zoschke",{"name":5900,"config":5901},"Noah Zoschke",{"headshot":728,"ctfId":5902},"Noah-Zoschke",{"template":697},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5908,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5909,"config":5913,"_id":5914,"_type":32,"title":5910,"_source":34,"_file":5915,"_stem":5916,"_extension":37},"/en-us/blog/authors/nolan-myers",{"name":5910,"config":5911},"Nolan Myers",{"headshot":728,"ctfId":5912},"Nolan-Myers",{"template":697},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5918,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5919,"config":5923,"_id":5924,"_type":32,"title":5920,"_source":34,"_file":5925,"_stem":5926,"_extension":37},"/en-us/blog/authors/nupur-sharma",{"name":5920,"config":5921},"Nupur Sharma",{"headshot":728,"ctfId":5922},"6p7RQDl0cDWnAxU8yu2vVK",{"template":697},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5928,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5929,"config":5933,"_id":5934,"_type":32,"title":5930,"_source":34,"_file":5935,"_stem":5936,"_extension":37},"/en-us/blog/authors/nuritzi-sanchez",{"name":5930,"config":5931},"Nuritzi Sanchez",{"headshot":7,"ctfId":5932},"nuritzi",{"template":697},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5938,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5939,"config":5944,"_id":5945,"_type":32,"title":5940,"_source":34,"_file":5946,"_stem":5947,"_extension":37},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5940,"config":5941},"Oleksandr Pysaryuk",{"headshot":5942,"ctfId":5943},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":697},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":5949,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5950,"config":5955,"_id":5956,"_type":32,"title":5957,"_source":34,"_file":5958,"_stem":5959,"_extension":37},"/en-us/blog/authors/olena-horal-koretska",{"name":5951,"config":5952},"Olena Horal-Koretska",{"headshot":5953,"ctfId":5954},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":697},"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":5961,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5962,"config":5966,"_id":5968,"_type":32,"title":5963,"_source":34,"_file":5969,"_stem":5970,"_extension":37},"/en-us/blog/authors/olivier-campeau",{"name":5963,"config":5964},"Olivier Campeau",{"headshot":5965},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":697,"gitlabHandle":5967},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5972,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5973,"config":5978,"_id":5979,"_type":32,"title":5980,"_source":34,"_file":5981,"_stem":5982,"_extension":37},"/en-us/blog/authors/olivier-dupr",{"name":5974,"config":5975},"Olivier Dupré",{"headshot":5976,"ctfId":5977},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":697},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":5984,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5985,"config":5990,"_id":5991,"_type":32,"title":5986,"_source":34,"_file":5992,"_stem":5993,"_extension":37},"/en-us/blog/authors/omar-fernandez",{"name":5986,"config":5987},"Omar Fernandez",{"headshot":5988,"ctfId":5989},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":697},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":5995,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5996,"config":6000,"_id":6001,"_type":32,"title":5997,"_source":34,"_file":6002,"_stem":6003,"_extension":37},"/en-us/blog/authors/opher-vishnia",{"name":5997,"config":5998},"Opher Vishnia",{"headshot":728,"ctfId":5999},"O0F3sw3av9pRAxeP9iR7N",{"template":697},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":6005,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6006,"config":6010,"_id":6011,"_type":32,"title":6007,"_source":34,"_file":6012,"_stem":6013,"_extension":37},"/en-us/blog/authors/orit-golowinski",{"name":6007,"config":6008},"Orit Golowinski",{"headshot":7,"ctfId":6009},"ogolowinski",{"template":697},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6015,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6016,"config":6021,"_id":6022,"_type":32,"title":6017,"_source":34,"_file":6023,"_stem":6024,"_extension":37},"/en-us/blog/authors/ottilia-westerlund",{"name":6017,"config":6018},"Ottilia Westerlund",{"headshot":6019,"ctfId":6020},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":697},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6026,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6027,"config":6031,"_id":6032,"_type":32,"title":6028,"_source":34,"_file":6033,"_stem":6034,"_extension":37},"/en-us/blog/authors/owen-williams",{"name":6028,"config":6029},"Owen Williams",{"headshot":728,"ctfId":6030},"Owen-Williams",{"template":697},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6036,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6037,"config":6041,"_id":6042,"_type":32,"title":6038,"_source":34,"_file":6043,"_stem":6044,"_extension":37},"/en-us/blog/authors/pablo-carranza",{"name":6038,"config":6039},"Pablo Carranza",{"headshot":728,"ctfId":6040},"Pablo-Carranza",{"template":697},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6046,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6047,"config":6051,"_id":6052,"_type":32,"title":6048,"_source":34,"_file":6053,"_stem":6054,"_extension":37},"/en-us/blog/authors/parker-ennis",{"name":6048,"config":6049},"Parker Ennis",{"headshot":7,"ctfId":6050},"parkerennis",{"template":697},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6056,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6057,"config":6061,"_id":6062,"_type":32,"title":6058,"_source":34,"_file":6063,"_stem":6064,"_extension":37},"/en-us/blog/authors/patricio-cano",{"name":6058,"config":6059},"Patricio Cano",{"headshot":728,"ctfId":6060},"Patricio-Cano",{"template":697},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6066,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6067,"config":6071,"_id":6072,"_type":32,"title":6068,"_source":34,"_file":6073,"_stem":6074,"_extension":37},"/en-us/blog/authors/patrick-deuley",{"name":6068,"config":6069},"Patrick Deuley",{"headshot":728,"ctfId":6070},"4YYemtKKpxKC4yukyFavai",{"template":697},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6076,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6077,"config":6081,"_id":6082,"_type":32,"title":6078,"_source":34,"_file":6083,"_stem":6084,"_extension":37},"/en-us/blog/authors/patrick-foster",{"name":6078,"config":6079},"Patrick Foster",{"headshot":728,"ctfId":6080},"Patrick-Foster",{"template":697},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6086,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6087,"config":6092,"_id":6093,"_type":32,"title":6088,"_source":34,"_file":6094,"_stem":6095,"_extension":37},"/en-us/blog/authors/patrick-steinhardt",{"name":6088,"config":6089},"Patrick Steinhardt",{"headshot":6090,"ctfId":6091},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":697},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6097,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6098,"config":6102,"_id":6103,"_type":32,"title":6099,"_source":34,"_file":6104,"_stem":6105,"_extension":37},"/en-us/blog/authors/patty-cheung",{"name":6099,"config":6100},"Patty Cheung",{"headshot":728,"ctfId":6101},"pattycheung",{"template":697},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6107,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6108,"config":6112,"_id":6113,"_type":32,"title":6109,"_source":34,"_file":6114,"_stem":6115,"_extension":37},"/en-us/blog/authors/paul-badcock",{"name":6109,"config":6110},"Paul Badcock",{"headshot":728,"ctfId":6111},"TbNQIdiD4vlFB7XYXeArb",{"template":697},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6117,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6118,"config":6122,"_id":6123,"_type":32,"title":6124,"_source":34,"_file":6125,"_stem":6126,"_extension":37},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6119,"config":6120},"Paul Gascou-Vaillancourt",{"headshot":728,"ctfId":6121},"6Yg7HWPoy2E5vwudH0EZja",{"template":697},"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":6128,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6129,"config":6133,"_id":6134,"_type":32,"title":6130,"_source":34,"_file":6135,"_stem":6136,"_extension":37},"/en-us/blog/authors/paul-hibbitts",{"name":6130,"config":6131},"Paul Hibbitts",{"headshot":728,"ctfId":6132},"Paul-Hibbitts",{"template":697},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6138,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6139,"config":6143,"_id":6144,"_type":32,"title":6140,"_source":34,"_file":6145,"_stem":6146,"_extension":37},"/en-us/blog/authors/paul-machle",{"name":6140,"config":6141},"Paul Machle",{"headshot":728,"ctfId":6142},"Paul-Machle",{"template":697},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6148,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6149,"config":6153,"_id":6155,"_type":32,"title":6150,"_source":34,"_file":6156,"_stem":6157,"_extension":37},"/en-us/blog/authors/paul-meresanu",{"name":6150,"role":7,"config":6151},"Paul Meresanu",{"headshot":6152},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":697,"gitlabHandle":6154},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6159,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6160,"config":6165,"_id":6166,"_type":32,"title":6161,"_source":34,"_file":6167,"_stem":6168,"_extension":37},"/en-us/blog/authors/payton-burdette",{"name":6161,"config":6162},"Payton Burdette",{"headshot":6163,"ctfId":6164},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":697},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6170,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6171,"config":6175,"_id":6176,"_type":32,"title":6172,"_source":34,"_file":6177,"_stem":6178,"_extension":37},"/en-us/blog/authors/pedro-fortuna",{"name":6172,"config":6173},"Pedro Fortuna",{"headshot":728,"ctfId":6174},"7JwB4WZYF19OKwOo4yk5n4",{"template":697},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6180,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6181,"config":6186,"_id":6187,"_type":32,"title":6188,"_source":34,"_file":6189,"_stem":6190,"_extension":37},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6182,"config":6183},"Pedro Moreira da Silva",{"headshot":6184,"ctfId":6185},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":697},"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":6192,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6193,"config":6198,"_id":6199,"_type":32,"title":6194,"_source":34,"_file":6200,"_stem":6201,"_extension":37},"/en-us/blog/authors/phil-hughes",{"name":6194,"config":6195},"Phil Hughes",{"headshot":6196,"ctfId":6197},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":697},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6203,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6204,"config":6208,"_id":6209,"_type":32,"title":6205,"_source":34,"_file":6210,"_stem":6211,"_extension":37},"/en-us/blog/authors/philip-welz",{"name":6205,"config":6206},"Philip Welz",{"headshot":7,"ctfId":6207},"philxx",{"template":697},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6213,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6214,"config":6219,"_id":6220,"_type":32,"title":6221,"_source":34,"_file":6222,"_stem":6223,"_extension":37},"/en-us/blog/authors/philippe-lafoucrire",{"name":6215,"config":6216},"Philippe Lafoucrière",{"headshot":6217,"ctfId":6218},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":697},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6225,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6226,"config":6230,"_id":6231,"_type":32,"title":6232,"_source":34,"_file":6233,"_stem":6234,"_extension":37},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6227,"config":6228},"Pierre de La Morinerie",{"headshot":728,"ctfId":6229},"Pierre-de-La-Morinerie",{"template":697},"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":6236,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6237,"config":6241,"_id":6242,"_type":32,"title":6238,"_source":34,"_file":6243,"_stem":6244,"_extension":37},"/en-us/blog/authors/pierre-smeyers",{"name":6238,"config":6239},"Pierre Smeyers",{"headshot":7,"ctfId":6240},"pismy",{"template":697},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6246,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6247,"config":6252,"_id":6253,"_type":32,"title":6248,"_source":34,"_file":6254,"_stem":6255,"_extension":37},"/en-us/blog/authors/pini-wietchner",{"name":6248,"config":6249},"Pini Wietchner",{"headshot":6250,"ctfId":6251},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":697},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6257,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6258,"config":6262,"_id":6263,"_type":32,"title":6264,"_source":34,"_file":6265,"_stem":6266,"_extension":37},"/en-us/blog/authors/pj-metz",{"name":6259,"config":6260},"PJ Metz",{"headshot":728,"ctfId":6261},"PjMetz",{"template":697},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6268,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6269,"config":6272,"_id":6273,"_type":32,"title":6274,"_source":34,"_file":6275,"_stem":6276,"_extension":37},"/en-us/blog/authors/plapadoo",{"name":6270,"config":6271},"plapadoo",{"headshot":728,"ctfId":6270},{"template":697},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6278,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6279,"config":6283,"_id":6284,"_type":32,"title":6280,"_source":34,"_file":6285,"_stem":6286,"_extension":37},"/en-us/blog/authors/pranay-bakre",{"name":6280,"config":6281},"Pranay Bakre",{"headshot":7,"ctfId":6282},"Darren-Eastman",{"template":697},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6288,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6289,"config":6293,"_id":6294,"_type":32,"title":6290,"_source":34,"_file":6295,"_stem":6296,"_extension":37},"/en-us/blog/authors/priyanka-sharma",{"name":6290,"config":6291},"Priyanka Sharma",{"headshot":7,"ctfId":6292},"pritianka",{"template":697},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6298,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6299,"config":6304,"_id":6305,"_type":32,"title":6306,"_source":34,"_file":6307,"_stem":6308,"_extension":37},"/en-us/blog/authors/pter-bozs",{"name":6300,"config":6301},"Péter Bozsó",{"headshot":6302,"ctfId":6303},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":697},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6310,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6311,"config":6315,"_id":6316,"_type":32,"title":6312,"_source":34,"_file":6317,"_stem":6318,"_extension":37},"/en-us/blog/authors/quan-to",{"name":6312,"config":6313},"Quan To",{"headshot":728,"ctfId":6314},"5dswLnpCobgICjM0RpHMU2",{"template":697},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6320,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6321,"config":6326,"_id":6327,"_type":32,"title":6322,"_source":34,"_file":6328,"_stem":6329,"_extension":37},"/en-us/blog/authors/rachel-nienaber",{"name":6322,"config":6323},"Rachel Nienaber",{"headshot":6324,"ctfId":6325},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":697},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6331,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6332,"config":6336,"_id":6338,"_type":32,"title":6333,"_source":34,"_file":6339,"_stem":6340,"_extension":37},"/en-us/blog/authors/radovan-bacovic",{"name":6333,"config":6334},"Radovan Bacovic",{"headshot":6335},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":697,"gitlabHandle":6337},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6342,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6343,"config":6347,"_id":6348,"_type":32,"title":6349,"_source":34,"_file":6350,"_stem":6351,"_extension":37},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6344,"config":6345},"Rahul Bhargava, CTO, Evolphin",{"headshot":728,"ctfId":6346},"Rahul-Bhargava-CTO-Evolphin",{"template":697},"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":6353,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6354,"config":6359,"_id":6360,"_type":32,"title":6355,"_source":34,"_file":6361,"_stem":6362,"_extension":37},"/en-us/blog/authors/raimund-hook",{"name":6355,"config":6356},"Raimund Hook",{"headshot":6357,"ctfId":6358},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":697},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6364,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6365,"config":6369,"_id":6370,"_type":32,"title":6366,"_source":34,"_file":6371,"_stem":6372,"_extension":37},"/en-us/blog/authors/raquel-campuzano",{"name":6366,"config":6367},"Raquel Campuzano",{"headshot":728,"ctfId":6368},"Raquel-Campuzano",{"template":697},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6374,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6375,"config":6379,"_id":6380,"_type":32,"title":6376,"_source":34,"_file":6381,"_stem":6382,"_extension":37},"/en-us/blog/authors/ray-paik",{"name":6376,"config":6377},"Ray Paik",{"headshot":7,"ctfId":6378},"rpaik",{"template":697},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6384,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6385,"config":6390,"_id":6391,"_type":32,"title":6386,"_source":34,"_file":6392,"_stem":6393,"_extension":37},"/en-us/blog/authors/rayana-verissimo",{"name":6386,"config":6387},"Rayana Verissimo",{"headshot":6388,"ctfId":6389},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":697},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6395,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6396,"config":6400,"_id":6402,"_type":32,"title":6403,"_source":34,"_file":6404,"_stem":6405,"_extension":37},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6397,"config":6398},"Rebeca Fenoy-Anthony",{"headshot":6399},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":697,"gitlabHandle":6401},"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":6407,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6408,"config":6412,"_id":6413,"_type":32,"title":6409,"_source":34,"_file":6414,"_stem":6415,"_extension":37},"/en-us/blog/authors/rebecca-dodd",{"name":6409,"config":6410},"Rebecca Dodd",{"headshot":728,"ctfId":6411},"Rebecca-Dodd",{"template":697},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6417,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6418,"config":6422,"_id":6423,"_type":32,"title":6419,"_source":34,"_file":6424,"_stem":6425,"_extension":37},"/en-us/blog/authors/regis-freyd",{"name":6419,"config":6420},"Regis Freyd",{"headshot":728,"ctfId":6421},"Regis-Freyd",{"template":697},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6427,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6428,"config":6433,"_id":6434,"_type":32,"title":6429,"_source":34,"_file":6435,"_stem":6436,"_extension":37},"/en-us/blog/authors/regnard-raquedan",{"name":6429,"config":6430},"Regnard Raquedan",{"headshot":6431,"ctfId":6432},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":697},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6438,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6439,"config":6443,"_id":6444,"_type":32,"title":6440,"_source":34,"_file":6445,"_stem":6446,"_extension":37},"/en-us/blog/authors/renato-stanic",{"name":6440,"config":6441},"Renato Stanic",{"headshot":7,"ctfId":6442},"rstanic12",{"template":697},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6448,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6449,"config":6454,"_id":6455,"_type":32,"title":6450,"_source":34,"_file":6456,"_stem":6457,"_extension":37},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6450,"config":6451},"Ricardo Amarilla Villalba",{"headshot":6452,"ctfId":6453},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":697},"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":6459,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6460,"config":6464,"_id":6465,"_type":32,"title":6461,"_source":34,"_file":6466,"_stem":6467,"_extension":37},"/en-us/blog/authors/riccardo-padovani",{"name":6461,"config":6462},"Riccardo Padovani",{"headshot":728,"ctfId":6463},"Riccardo-Padovani",{"template":697},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6469,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6470,"config":6475,"_id":6476,"_type":32,"title":6477,"_source":34,"_file":6478,"_stem":6479,"_extension":37},"/en-us/blog/authors/rmy-coutable",{"name":6471,"config":6472},"Rémy Coutable",{"headshot":6473,"ctfId":6474},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":697},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6481,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6482,"config":6487,"_id":6488,"_type":32,"title":6483,"_source":34,"_file":6489,"_stem":6490,"_extension":37},"/en-us/blog/authors/rob-jackson",{"name":6483,"config":6484},"Rob Jackson",{"headshot":6485,"ctfId":6486},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":697},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6492,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6493,"config":6497,"_id":6498,"_type":32,"title":6494,"_source":34,"_file":6499,"_stem":6500,"_extension":37},"/en-us/blog/authors/rob-ribeiro",{"name":6494,"config":6495},"Rob Ribeiro",{"headshot":728,"ctfId":6496},"Rob-Ribeiro",{"template":697},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6502,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6503,"config":6507,"_id":6508,"_type":32,"title":6504,"_source":34,"_file":6509,"_stem":6510,"_extension":37},"/en-us/blog/authors/robert-speicher",{"name":6504,"config":6505},"Robert Speicher",{"headshot":7,"ctfId":6506},"rspeicher",{"template":697},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6512,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6513,"config":6518,"_id":6519,"_type":32,"title":6514,"_source":34,"_file":6520,"_stem":6521,"_extension":37},"/en-us/blog/authors/robert-williams",{"name":6514,"config":6515},"Robert Williams",{"headshot":6516,"ctfId":6517},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":697},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6523,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6524,"config":6530,"_id":6531,"_type":32,"title":6525,"_source":34,"_file":6532,"_stem":6533,"_extension":37},"/en-us/blog/authors/robin-schulman",{"name":6525,"config":6526,"role":6529},"Robin Schulman",{"headshot":6527,"ctfId":6528},"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":697},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6535,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6536,"config":6540,"_id":6541,"_type":32,"title":6537,"_source":34,"_file":6542,"_stem":6543,"_extension":37},"/en-us/blog/authors/roger-woo",{"name":6537,"config":6538},"Roger Woo",{"headshot":728,"ctfId":6539},"rogerwoo",{"template":697},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6545,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6546,"config":6552,"_id":6553,"_type":32,"title":6554,"_source":34,"_file":6555,"_stem":6556,"_extension":37},"/en-us/blog/authors/rohit-shambhuni",{"role":6547,"name":6548,"config":6549},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6550,"ctfId":6551},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":697},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6558,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6559,"config":6563,"_id":6564,"_type":32,"title":6560,"_source":34,"_file":6565,"_stem":6566,"_extension":37},"/en-us/blog/authors/roman-kuba",{"name":6560,"config":6561},"Roman Kuba",{"headshot":7,"ctfId":6562},"rkuba",{"template":697},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6568,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6569,"config":6574,"_id":6575,"_type":32,"title":6576,"_source":34,"_file":6577,"_stem":6578,"_extension":37},"/en-us/blog/authors/romuald-atchad",{"name":6570,"config":6571},"Romuald Atchadé",{"headshot":6572,"ctfId":6573},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":697},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6580,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6581,"config":6585,"_id":6586,"_type":32,"title":6587,"_source":34,"_file":6588,"_stem":6589,"_extension":37},"/en-us/blog/authors/ronald-van-zon",{"name":6582,"config":6583},"Ronald van Zon",{"headshot":7,"ctfId":6584},"Eagllus",{"template":697},"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":6591,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6592,"config":6596,"_id":6597,"_type":32,"title":6593,"_source":34,"_file":6598,"_stem":6599,"_extension":37},"/en-us/blog/authors/ross-fuhrman",{"name":6593,"config":6594},"Ross Fuhrman",{"headshot":728,"ctfId":6595},"7dkuWBvIc0AQanUclt3pOk",{"template":697},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6601,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6602,"config":6606,"_id":6607,"_type":32,"title":6603,"_source":34,"_file":6608,"_stem":6609,"_extension":37},"/en-us/blog/authors/roy-taragan",{"name":6603,"config":6604},"Roy Taragan",{"headshot":728,"ctfId":6605},"3pnwP9gqELfda3DCOQJQCL",{"template":697},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6611,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6612,"config":6617,"_id":6618,"_type":32,"title":6613,"_source":34,"_file":6619,"_stem":6620,"_extension":37},"/en-us/blog/authors/ruby-nealon",{"name":6613,"config":6614},"Ruby Nealon",{"headshot":6615,"ctfId":6616},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":697},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6622,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6623,"config":6627,"_id":6628,"_type":32,"title":6624,"_source":34,"_file":6629,"_stem":6630,"_extension":37},"/en-us/blog/authors/rupert-douglas",{"name":6624,"config":6625},"Rupert Douglas",{"headshot":7,"ctfId":6626},"rdouglasgitlab",{"template":697},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6632,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6633,"config":6637,"_id":6638,"_type":32,"title":6639,"_source":34,"_file":6640,"_stem":6641,"_extension":37},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6634,"config":6635},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6636},"3PShSyZ6DJXnkDa5xrQs7V",{"template":697},"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":6643,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6644,"config":6649,"_id":6650,"_type":32,"title":6645,"_source":34,"_file":6651,"_stem":6652,"_extension":37},"/en-us/blog/authors/rutvik-shah",{"name":6645,"config":6646},"Rutvik Shah",{"headshot":6647,"ctfId":6648},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":697},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6654,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6655,"config":6660,"_id":6661,"_type":32,"title":6656,"_source":34,"_file":6662,"_stem":6663,"_extension":37},"/en-us/blog/authors/sacha-guyon",{"name":6656,"config":6657},"Sacha Guyon",{"headshot":6658,"ctfId":6659},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":697},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6665,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6666,"config":6671,"_id":6672,"_type":32,"title":6667,"_source":34,"_file":6673,"_stem":6674,"_extension":37},"/en-us/blog/authors/safwan-ahmed",{"name":6667,"config":6668},"Safwan Ahmed",{"headshot":6669,"ctfId":6670},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":697},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6676,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6677,"config":6681,"_id":6683,"_type":32,"title":6678,"_source":34,"_file":6684,"_stem":6685,"_extension":37},"/en-us/blog/authors/salahddine-aberkan",{"name":6678,"config":6679},"Salahddine Aberkan",{"headshot":6680},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":697,"gitlabHandle":6682},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6687,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6688,"config":6693,"_id":6694,"_type":32,"title":6689,"_source":34,"_file":6695,"_stem":6696,"_extension":37},"/en-us/blog/authors/salman-ladha",{"name":6689,"config":6690},"Salman Ladha",{"headshot":6691,"ctfId":6692},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":697},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6698,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6699,"config":6704,"_id":6705,"_type":32,"title":6700,"_source":34,"_file":6706,"_stem":6707,"_extension":37},"/en-us/blog/authors/sam-beckham",{"name":6700,"config":6701},"Sam Beckham",{"headshot":6702,"ctfId":6703},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":697},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6709,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6710,"config":6715,"_id":6716,"_type":32,"title":6711,"_source":34,"_file":6717,"_stem":6718,"_extension":37},"/en-us/blog/authors/sam-kerr",{"name":6711,"config":6712},"Sam Kerr",{"headshot":6713,"ctfId":6714},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":697},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6720,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6721,"config":6726,"_id":6727,"_type":32,"title":6722,"_source":34,"_file":6728,"_stem":6729,"_extension":37},"/en-us/blog/authors/sam-morris",{"name":6722,"config":6723},"Sam Morris",{"headshot":6724,"ctfId":6725},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":697},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6731,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6732,"config":6737,"_id":6738,"_type":32,"title":6733,"_source":34,"_file":6739,"_stem":6740,"_extension":37},"/en-us/blog/authors/sam-white",{"name":6733,"config":6734},"Sam White",{"headshot":6735,"ctfId":6736},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":697},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6742,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6743,"config":6748,"_id":6749,"_type":32,"title":6744,"_source":34,"_file":6750,"_stem":6751,"_extension":37},"/en-us/blog/authors/sam-wiskow",{"name":6744,"config":6745},"Sam Wiskow",{"headshot":6746,"ctfId":6747},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":697},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6753,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6754,"config":6759,"_id":6760,"_type":32,"title":6755,"_source":34,"_file":6761,"_stem":6762,"_extension":37},"/en-us/blog/authors/samantha-lee",{"name":6755,"config":6756},"Samantha Lee",{"headshot":6757,"ctfId":6758},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":697},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6764,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6765,"config":6769,"_id":6770,"_type":32,"title":6771,"_source":34,"_file":6772,"_stem":6773,"_extension":37},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6766,"config":6767},"Sameer Farooqui, OctoML",{"headshot":728,"ctfId":6768},"Sameer-Farooqui-OctoML",{"template":697},"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":6775,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6776,"config":6781,"_id":6782,"_type":32,"title":6777,"_source":34,"_file":6783,"_stem":6784,"_extension":37},"/en-us/blog/authors/sameer-kamani",{"name":6777,"config":6778},"Sameer Kamani",{"headshot":6779,"ctfId":6780},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":697},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6786,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6787,"config":6792,"_id":6793,"_type":32,"title":6788,"_source":34,"_file":6794,"_stem":6795,"_extension":37},"/en-us/blog/authors/samer-akkoub",{"name":6788,"config":6789},"Samer Akkoub",{"headshot":6790,"ctfId":6791},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":697},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6797,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6798,"config":6802,"_id":6803,"_type":32,"title":6799,"_source":34,"_file":6804,"_stem":6805,"_extension":37},"/en-us/blog/authors/samuel-alfageme",{"name":6799,"config":6800},"Samuel Alfageme",{"headshot":728,"ctfId":6801},"Samuel-Alfageme",{"template":697},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6807,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6808,"config":6815,"_id":6816,"_type":32,"title":6810,"_source":34,"_file":6817,"_stem":6818,"_extension":37},"/en-us/blog/authors/sandra-gittlen",{"role":6809,"name":6810,"config":6811},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6812,"linkedin":6813,"ctfId":6814},"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":697},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6820,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6821,"config":6825,"_id":6826,"_type":32,"title":6822,"_source":34,"_file":6827,"_stem":6828,"_extension":37},"/en-us/blog/authors/sandra-salerno",{"name":6822,"config":6823},"Sandra Salerno",{"headshot":728,"ctfId":6824},"Sandra-Salerno",{"template":697},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6830,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6831,"config":6835,"_id":6836,"_type":32,"title":6837,"_source":34,"_file":6838,"_stem":6839,"_extension":37},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6832,"config":6833},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6834},"topodelapradera",{"template":697},"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":6841,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6842,"config":6846,"_id":6847,"_type":32,"title":6843,"_source":34,"_file":6848,"_stem":6849,"_extension":37},"/en-us/blog/authors/sara-kassabian",{"name":6843,"config":6844},"Sara Kassabian",{"headshot":7,"ctfId":6845},"skassabian",{"template":697},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6851,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6852,"config":6857,"_id":6858,"_type":32,"title":6853,"_source":34,"_file":6859,"_stem":6860,"_extension":37},"/en-us/blog/authors/sara-meadzinger",{"name":6853,"config":6854},"Sara Meadzinger",{"headshot":6855,"ctfId":6856},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":697},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6862,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6863,"config":6867,"_id":6868,"_type":32,"title":6864,"_source":34,"_file":6869,"_stem":6870,"_extension":37},"/en-us/blog/authors/sarah-daily",{"name":6864,"config":6865},"Sarah Daily",{"headshot":728,"ctfId":6866},"2YhqRPG08HF0FCF1l7oeZL",{"template":697},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6872,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6873,"config":6877,"_id":6878,"_type":32,"title":6874,"_source":34,"_file":6879,"_stem":6880,"_extension":37},"/en-us/blog/authors/sarah-german",{"name":6874,"config":6875},"Sarah German",{"headshot":6876,"ctfId":4544},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":697},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6882,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6883,"config":6888,"_id":6889,"_type":32,"title":6884,"_source":34,"_file":6890,"_stem":6891,"_extension":37},"/en-us/blog/authors/sarah-matthies",{"name":6884,"config":6885},"Sarah Matthies",{"headshot":6886,"ctfId":6887},"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":697},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6893,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6894,"config":6898,"_id":6899,"_type":32,"title":6900,"_source":34,"_file":6901,"_stem":6902,"_extension":37},"/en-us/blog/authors/sarah-odonnell",{"name":6895,"config":6896},"Sarah O’Donnell",{"headshot":7,"ctfId":6897},"sarahod",{"template":697},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6904,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6905,"config":6910,"_id":6911,"_type":32,"title":6906,"_source":34,"_file":6912,"_stem":6913,"_extension":37},"/en-us/blog/authors/sarah-waldner",{"name":6906,"config":6907},"Sarah Waldner",{"headshot":6908,"ctfId":6909},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":697},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6915,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6916,"config":6920,"_id":6921,"_type":32,"title":6917,"_source":34,"_file":6922,"_stem":6923,"_extension":37},"/en-us/blog/authors/sarrah-vesselov",{"name":6917,"config":6918},"Sarrah Vesselov",{"headshot":7,"ctfId":6919},"sarrahvesselov",{"template":697},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6925,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6926,"config":6930,"_id":6931,"_type":32,"title":6927,"_source":34,"_file":6932,"_stem":6933,"_extension":37},"/en-us/blog/authors/sarup-banskota",{"name":6927,"config":6928},"Sarup Banskota",{"headshot":728,"ctfId":6929},"3sY2Ef0sXxaJKCmArdSLsA",{"template":697},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6935,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6936,"config":6941,"_id":6942,"_type":32,"title":6937,"_source":34,"_file":6943,"_stem":6944,"_extension":37},"/en-us/blog/authors/sascha-eggenberger",{"name":6937,"config":6938},"Sascha Eggenberger",{"headshot":6939,"ctfId":6940},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":697},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":6946,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6947,"config":6951,"_id":6952,"_type":32,"title":6948,"_source":34,"_file":6953,"_stem":6954,"_extension":37},"/en-us/blog/authors/sasha-bannister",{"name":6948,"config":6949},"Sasha Bannister",{"headshot":728,"ctfId":6950},"Sasha-Bannister",{"template":697},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":6956,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6957,"config":6962,"_id":6963,"_type":32,"title":6958,"_source":34,"_file":6964,"_stem":6965,"_extension":37},"/en-us/blog/authors/sasha-gazlay",{"name":6958,"config":6959},"Sasha Gazlay",{"headshot":6960,"ctfId":6961},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":697},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":6967,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6968,"config":6973,"_id":6974,"_type":32,"title":6969,"_source":34,"_file":6975,"_stem":6976,"_extension":37},"/en-us/blog/authors/saumya-upadhyaya",{"name":6969,"config":6970},"Saumya Upadhyaya",{"headshot":6971,"ctfId":6972},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":697},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":6978,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6979,"config":6984,"_id":6985,"_type":32,"title":6986,"_source":34,"_file":6987,"_stem":6988,"_extension":37},"/en-us/blog/authors/scott-de-jonge",{"name":6980,"config":6981},"Scott de Jonge",{"headshot":6982,"ctfId":6983},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":697},"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":6990,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6991,"config":6996,"_id":6997,"_type":32,"title":6992,"_source":34,"_file":6998,"_stem":6999,"_extension":37},"/en-us/blog/authors/scott-hampton",{"name":6992,"config":6993},"Scott Hampton",{"headshot":6994,"ctfId":6995},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":697},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":7001,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7002,"config":7006,"_id":7007,"_type":32,"title":7003,"_source":34,"_file":7008,"_stem":7009,"_extension":37},"/en-us/blog/authors/scott-williamson",{"name":7003,"config":7004},"Scott Williamson",{"headshot":7,"ctfId":7005},"sfwgitlab",{"template":697},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":7011,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7012,"config":7017,"_id":7018,"_type":32,"title":7013,"_source":34,"_file":7019,"_stem":7020,"_extension":37},"/en-us/blog/authors/sean-arnold",{"name":7013,"config":7014},"Sean Arnold",{"headshot":7015,"ctfId":7016},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":697},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7022,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7023,"config":7027,"_id":7028,"_type":32,"title":7029,"_source":34,"_file":7030,"_stem":7031,"_extension":37},"/en-us/blog/authors/sean-mcgivern",{"name":7024,"config":7025},"Sean McGivern",{"headshot":728,"ctfId":7026},"Sean-McGivern",{"template":697},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7033,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7034,"config":7038,"_id":7039,"_type":32,"title":7035,"_source":34,"_file":7040,"_stem":7041,"_extension":37},"/en-us/blog/authors/sean-packham",{"name":7035,"config":7036},"Sean Packham",{"headshot":728,"ctfId":7037},"Sean-Packham",{"template":697},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7043,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7044,"config":7048,"_id":7049,"_type":32,"title":7045,"_source":34,"_file":7050,"_stem":7051,"_extension":37},"/en-us/blog/authors/sebastian-latacz",{"name":7045,"config":7046},"Sebastian Latacz",{"headshot":728,"ctfId":7047},"4DoWSQV719HEWt2rbDIoQR",{"template":697},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7053,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7054,"config":7058,"_id":7059,"_type":32,"title":7055,"_source":34,"_file":7060,"_stem":7061,"_extension":37},"/en-us/blog/authors/sergey-nuzhdin",{"name":7055,"config":7056},"Sergey Nuzhdin",{"headshot":728,"ctfId":7057},"Sergey-Nuzhdin",{"template":697},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7063,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7064,"config":7068,"_id":7069,"_type":32,"title":7065,"_source":34,"_file":7070,"_stem":7071,"_extension":37},"/en-us/blog/authors/seth-berger",{"name":7065,"config":7066},"Seth Berger",{"headshot":7,"ctfId":7067},"sethgitlab",{"template":697},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7073,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7074,"config":7078,"_id":7079,"_type":32,"title":7075,"_source":34,"_file":7080,"_stem":7081,"_extension":37},"/en-us/blog/authors/shane-rice",{"name":7075,"config":7076},"Shane Rice",{"headshot":728,"ctfId":7077},"3uVL7xMsEf13JzpbXYTCbM",{"template":697},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7083,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7084,"config":7089,"_id":7090,"_type":32,"title":7085,"_source":34,"_file":7091,"_stem":7092,"_extension":37},"/en-us/blog/authors/sharon-gaudin",{"name":7085,"config":7086},"Sharon Gaudin",{"headshot":7087,"ctfId":7088},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":697},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7094,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7095,"config":7099,"_id":7100,"_type":32,"title":7096,"_source":34,"_file":7101,"_stem":7102,"_extension":37},"/en-us/blog/authors/shawn-winters",{"name":7096,"config":7097},"Shawn Winters",{"headshot":7,"ctfId":7098},"ShawnWinters",{"template":697},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7104,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7105,"config":7109,"_id":7110,"_type":32,"title":7111,"_source":34,"_file":7112,"_stem":7113,"_extension":37},"/en-us/blog/authors/sherida-mcmullan",{"name":7106,"config":7107},"Sherida McMullan",{"headshot":728,"ctfId":7108},"BpqiUFXm6aUxjXJdAeKuL",{"template":697},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7115,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7116,"config":7120,"_id":7121,"_type":32,"title":7117,"_source":34,"_file":7122,"_stem":7123,"_extension":37},"/en-us/blog/authors/shinya-maeda",{"name":7117,"config":7118},"Shinya Maeda",{"headshot":7,"ctfId":7119},"dosuken123",{"template":697},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7125,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7126,"config":7131,"_id":7132,"_type":32,"title":7127,"_source":34,"_file":7133,"_stem":7134,"_extension":37},"/en-us/blog/authors/shrishti-choudhary",{"name":7127,"config":7128},"Shrishti Choudhary",{"headshot":7129,"ctfId":7130},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":697},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7136,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7137,"config":7146,"_id":7147,"_type":32,"title":7139,"_source":34,"_file":7148,"_stem":7149,"_extension":37},"/en-us/blog/authors/sid-sijbrandij",{"role":7138,"name":7139,"bio":7140,"config":7141},"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":7142,"twitter":7143,"linkedin":7144,"ctfId":7145},"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":697},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7151,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7152,"config":7157,"_id":7158,"_type":32,"title":7153,"_source":34,"_file":7159,"_stem":7160,"_extension":37},"/en-us/blog/authors/siddharth-mathur",{"name":7153,"config":7154},"Siddharth Mathur",{"headshot":7155,"ctfId":7156},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":697},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7162,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7163,"config":7167,"_id":7168,"_type":32,"title":7164,"_source":34,"_file":7169,"_stem":7170,"_extension":37},"/en-us/blog/authors/simon-tarchichi",{"name":7164,"config":7165},"Simon Tarchichi",{"headshot":7,"ctfId":7166},"kartsims",{"template":697},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7172,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7173,"config":7178,"_id":7179,"_type":32,"title":7174,"_source":34,"_file":7180,"_stem":7181,"_extension":37},"/en-us/blog/authors/sophia-manicor",{"name":7174,"config":7175},"Sophia Manicor",{"headshot":7176,"ctfId":7177},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":697},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7183,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7184,"config":7189,"_id":7190,"_type":32,"title":7185,"_source":34,"_file":7191,"_stem":7192,"_extension":37},"/en-us/blog/authors/sri-rangan",{"name":7185,"config":7186},"Sri Rangan",{"headshot":7187,"ctfId":7188},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":697},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7194,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7195,"config":7200,"_id":7201,"_type":32,"title":7196,"_source":34,"_file":7202,"_stem":7203,"_extension":37},"/en-us/blog/authors/stacy-cline",{"name":7196,"config":7197},"Stacy Cline",{"headshot":7198,"ctfId":7199},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":697},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7205,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7206,"config":7211,"_id":7212,"_type":32,"title":7207,"_source":34,"_file":7213,"_stem":7214,"_extension":37},"/en-us/blog/authors/stan-hu",{"name":7207,"config":7208},"Stan Hu",{"headshot":7209,"ctfId":7210},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":697},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7216,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7217,"config":7221,"_id":7222,"_type":32,"title":7223,"_source":34,"_file":7224,"_stem":7225,"_extension":37},"/en-us/blog/authors/stephan-hochdrfer",{"name":7218,"config":7219},"Stephan Hochdörfer",{"headshot":728,"ctfId":7220},"Stephan-Hochdrfer",{"template":697},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7227,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7228,"config":7232,"_id":7233,"_type":32,"title":7229,"_source":34,"_file":7234,"_stem":7235,"_extension":37},"/en-us/blog/authors/stephanie-garza",{"name":7229,"config":7230},"Stephanie Garza",{"headshot":7,"ctfId":7231},"StephanieGarza",{"template":697},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7237,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7238,"config":7242,"_id":7243,"_type":32,"title":7244,"_source":34,"_file":7245,"_stem":7246,"_extension":37},"/en-us/blog/authors/stephen-mcguinness",{"name":7239,"config":7240},"Stephen McGuinness",{"headshot":7,"ctfId":7241},"smcguinness1",{"template":697},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7248,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7249,"config":7254,"_id":7255,"_type":32,"title":7250,"_source":34,"_file":7256,"_stem":7257,"_extension":37},"/en-us/blog/authors/stephen-walters",{"name":7250,"config":7251},"Stephen Walters",{"headshot":7252,"ctfId":7253},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":697},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7259,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7260,"config":7265,"_id":7266,"_type":32,"title":7261,"_source":34,"_file":7267,"_stem":7268,"_extension":37},"/en-us/blog/authors/steve-abrams",{"name":7261,"config":7262},"Steve Abrams",{"headshot":7263,"ctfId":7264},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":697},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7270,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7271,"config":7275,"_id":7276,"_type":32,"title":7272,"_source":34,"_file":7277,"_stem":7278,"_extension":37},"/en-us/blog/authors/steve-azzopardi",{"name":7272,"config":7273},"Steve Azzopardi",{"headshot":7,"ctfId":7274},"steveazz",{"template":697},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7280,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7281,"config":7286,"_id":7287,"_type":32,"title":7282,"_source":34,"_file":7288,"_stem":7289,"_extension":37},"/en-us/blog/authors/steve-grossman",{"name":7282,"config":7283},"Steve Grossman",{"headshot":7284,"ctfId":7285},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":697},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7291,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7292,"config":7296,"_id":7297,"_type":32,"title":7293,"_source":34,"_file":7298,"_stem":7299,"_extension":37},"/en-us/blog/authors/steve-ropa",{"name":7293,"config":7294},"Steve Ropa",{"headshot":728,"ctfId":7295},"Steve-Ropa",{"template":697},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7301,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7302,"config":7306,"_id":7307,"_type":32,"title":7303,"_source":34,"_file":7308,"_stem":7309,"_extension":37},"/en-us/blog/authors/steve-truong",{"name":7303,"config":7304},"Steve Truong",{"headshot":7,"ctfId":7305},"sttruong",{"template":697},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7311,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7312,"config":7316,"_id":7317,"_type":32,"title":7313,"_source":34,"_file":7318,"_stem":7319,"_extension":37},"/en-us/blog/authors/steven-zinck",{"name":7313,"config":7314},"Steven Zinck",{"headshot":728,"ctfId":7315},"49JllsB7PFUrjj2Wi4Wa2O",{"template":697},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7321,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7322,"config":7326,"_id":7327,"_type":32,"title":7323,"_source":34,"_file":7328,"_stem":7329,"_extension":37},"/en-us/blog/authors/sunil-kowlgi",{"name":7323,"config":7324},"Sunil Kowlgi",{"headshot":728,"ctfId":7325},"Sunil-Kowlgi",{"template":697},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7331,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7332,"config":7336,"_id":7337,"_type":32,"title":7333,"_source":34,"_file":7338,"_stem":7339,"_extension":37},"/en-us/blog/authors/suri-patel",{"name":7333,"config":7334},"Suri Patel",{"headshot":728,"ctfId":7335},"suripatel",{"template":697},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7341,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7342,"config":7347,"_id":7348,"_type":32,"title":7343,"_source":34,"_file":7349,"_stem":7350,"_extension":37},"/en-us/blog/authors/susan-tacker",{"name":7343,"config":7344},"Susan Tacker",{"headshot":7345,"ctfId":7346},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":697},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7352,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7353,"config":7359,"_id":7360,"_type":32,"title":7354,"_source":34,"_file":7361,"_stem":7362,"_extension":37},"/en-us/blog/authors/susie-bitters",{"name":7354,"config":7355},"Susie Bitters",{"headshot":7356,"linkedin":7357,"ctfId":7358},"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":697},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7364,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7365,"config":7369,"_id":7370,"_type":32,"title":7366,"_source":34,"_file":7371,"_stem":7372,"_extension":37},"/en-us/blog/authors/suzanne-selhorn",{"name":7366,"config":7367},"Suzanne Selhorn",{"headshot":7368,"ctfId":4544},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":697},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7374,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7375,"config":7380,"_id":7381,"_type":32,"title":7376,"_source":34,"_file":7382,"_stem":7383,"_extension":37},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7376,"config":7377},"Tanuja Jayarama Raju",{"headshot":7378,"ctfId":7379},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":697},"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":7385,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7386,"config":7391,"_id":7392,"_type":32,"title":7387,"_source":34,"_file":7393,"_stem":7394,"_extension":37},"/en-us/blog/authors/taurie-davis",{"name":7387,"config":7388},"Taurie Davis",{"headshot":7389,"ctfId":7390},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":697},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7396,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7397,"config":7402,"_id":7403,"_type":32,"title":7404,"_source":34,"_file":7405,"_stem":7406,"_extension":37},"/en-us/blog/authors/taylor-mccaslin",{"name":7398,"config":7399},"Taylor McCaslin",{"headshot":7400,"ctfId":7401},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":697},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7408,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7409,"config":7413,"_id":7414,"_type":32,"title":7410,"_source":34,"_file":7415,"_stem":7416,"_extension":37},"/en-us/blog/authors/taylor-murphy",{"name":7410,"config":7411},"Taylor Murphy",{"headshot":7,"ctfId":7412},"tayloramurphy",{"template":697},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7418,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7419,"config":7424,"_id":7425,"_type":32,"title":7420,"_source":34,"_file":7426,"_stem":7427,"_extension":37},"/en-us/blog/authors/ted-gieschen",{"name":7420,"config":7421},"Ted Gieschen",{"headshot":7422,"ctfId":7423},"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":697},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7429,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7430,"config":7434,"_id":7435,"_type":32,"title":7431,"_source":34,"_file":7436,"_stem":7437,"_extension":37},"/en-us/blog/authors/thao-yeager",{"name":7431,"config":7432},"Thao Yeager",{"headshot":7,"ctfId":7433},"thaoyeager",{"template":697},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7439,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7440,"config":7445,"_id":7446,"_type":32,"title":7447,"_source":34,"_file":7448,"_stem":7449,"_extension":37},"/en-us/blog/authors/thiago-figueir",{"name":7441,"config":7442},"Thiago Figueiró",{"headshot":7443,"ctfId":7444},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":697},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7451,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7452,"config":7457,"_id":7458,"_type":32,"title":7453,"_source":34,"_file":7459,"_stem":7460,"_extension":37},"/en-us/blog/authors/thong-kuah",{"name":7453,"config":7454},"Thong Kuah",{"headshot":7455,"ctfId":7456},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":697},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7462,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7463,"config":7467,"_id":7468,"_type":32,"title":7464,"_source":34,"_file":7469,"_stem":7470,"_extension":37},"/en-us/blog/authors/tim-davis",{"name":7464,"config":7465},"Tim Davis",{"headshot":728,"ctfId":7466},"6PksqjEtq1Y8goFUvAUcIn",{"template":697},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7472,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7473,"config":7477,"_id":7478,"_type":32,"title":7474,"_source":34,"_file":7479,"_stem":7480,"_extension":37},"/en-us/blog/authors/tim-lehnen",{"name":7474,"config":7475},"Tim Lehnen",{"headshot":7,"ctfId":7476},"hestenet",{"template":697},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7482,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7483,"config":7488,"_id":7489,"_type":32,"title":7484,"_source":34,"_file":7490,"_stem":7491,"_extension":37},"/en-us/blog/authors/tim-rizzi",{"name":7484,"config":7485},"Tim Rizzi",{"headshot":7486,"ctfId":7487},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":697},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7493,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7494,"config":7498,"_id":7500,"_type":32,"title":7495,"_source":34,"_file":7501,"_stem":7502,"_extension":37},"/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":697,"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":690,"_draft":6,"_partial":6,"_locale":7,"content":7505,"config":7509,"_id":7510,"_type":32,"title":7506,"_source":34,"_file":7511,"_stem":7512,"_extension":37},"/en-us/blog/authors/tina-sturgis",{"name":7506,"config":7507},"Tina Sturgis",{"headshot":7,"ctfId":7508},"TinaS",{"template":697},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7514,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7515,"config":7519,"_id":7520,"_type":32,"title":7521,"_source":34,"_file":7522,"_stem":7523,"_extension":37},"/en-us/blog/authors/tobias-gnther",{"name":7516,"config":7517},"Tobias Günther",{"headshot":728,"ctfId":7518},"Tobias-Gnther",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":7526,"config":7530,"_id":7531,"_type":32,"title":7527,"_source":34,"_file":7532,"_stem":7533,"_extension":37},"/en-us/blog/authors/todd-barr",{"name":7527,"config":7528},"Todd Barr",{"headshot":7,"ctfId":7529},"twbarr",{"template":697},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7535,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7536,"config":7540,"_id":7541,"_type":32,"title":7537,"_source":34,"_file":7542,"_stem":7543,"_extension":37},"/en-us/blog/authors/tom-cooney",{"name":7537,"config":7538},"Tom Cooney",{"headshot":7,"ctfId":7539},"tomcooney",{"template":697},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7545,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7546,"config":7551,"_id":7552,"_type":32,"title":7547,"_source":34,"_file":7553,"_stem":7554,"_extension":37},"/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":697},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7556,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7557,"config":7562,"_id":7563,"_type":32,"title":7558,"_source":34,"_file":7564,"_stem":7565,"_extension":37},"/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":697},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7567,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7568,"config":7573,"_id":7574,"_type":32,"title":7569,"_source":34,"_file":7575,"_stem":7576,"_extension":37},"/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":697},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7578,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7579,"config":7584,"_id":7585,"_type":32,"title":7580,"_source":34,"_file":7586,"_stem":7587,"_extension":37},"/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":697},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7589,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7590,"config":7594,"_id":7595,"_type":32,"title":7591,"_source":34,"_file":7596,"_stem":7597,"_extension":37},"/en-us/blog/authors/trevor-knudsen",{"name":7591,"config":7592},"Trevor Knudsen",{"headshot":7,"ctfId":7593},"Tknudsen",{"template":697},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7599,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7600,"config":7605,"_id":7606,"_type":32,"title":7601,"_source":34,"_file":7607,"_stem":7608,"_extension":37},"/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":697},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7610,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7611,"config":7616,"_id":7617,"_type":32,"title":7612,"_source":34,"_file":7618,"_stem":7619,"_extension":37},"/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":697},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7621,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7622,"config":7626,"_id":7627,"_type":32,"title":7623,"_source":34,"_file":7628,"_stem":7629,"_extension":37},"/en-us/blog/authors/tsvi-zandany",{"name":7623,"config":7624},"Tsvi Zandany",{"headshot":728,"ctfId":7625},"Tsvi-Zandany",{"template":697},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7631,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7632,"config":7636,"_id":7637,"_type":32,"title":7633,"_source":34,"_file":7638,"_stem":7639,"_extension":37},"/en-us/blog/authors/tye-davis",{"name":7633,"config":7634},"Tye Davis",{"headshot":7,"ctfId":7635},"davistye",{"template":697},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7641,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7642,"config":7646,"_id":7647,"_type":32,"title":7643,"_source":34,"_file":7648,"_stem":7649,"_extension":37},"/en-us/blog/authors/tyler-williams",{"name":7643,"config":7644},"Tyler Williams",{"headshot":7,"ctfId":7645},"tywilliams",{"template":697},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7651,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7652,"config":7656,"_id":7657,"_type":32,"title":7658,"_source":34,"_file":7659,"_stem":7660,"_extension":37},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7653,"config":7654},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7655},"ulrica1",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":7663,"config":7668,"_id":7669,"_type":32,"title":7664,"_source":34,"_file":7670,"_stem":7671,"_extension":37},"/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":697},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7673,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7674,"config":7678,"_id":7679,"_type":32,"title":7675,"_source":34,"_file":7680,"_stem":7681,"_extension":37},"/en-us/blog/authors/valerie-silverthorne",{"name":7675,"config":7676},"Valerie Silverthorne",{"headshot":728,"ctfId":7677},"vsilverthorne",{"template":697},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7683,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7684,"config":7688,"_id":7689,"_type":32,"title":7685,"_source":34,"_file":7690,"_stem":7691,"_extension":37},"/en-us/blog/authors/vanessa-wegner",{"name":7685,"config":7686},"Vanessa Wegner",{"headshot":7,"ctfId":7687},"vwegner",{"template":697},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7693,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7694,"config":7699,"_id":7700,"_type":32,"title":7695,"_source":34,"_file":7701,"_stem":7702,"_extension":37},"/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":697},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7704,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7705,"config":7710,"_id":7711,"_type":32,"title":7706,"_source":34,"_file":7712,"_stem":7713,"_extension":37},"/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":697},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7715,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7716,"config":7720,"_id":7721,"_type":32,"title":7717,"_source":34,"_file":7722,"_stem":7723,"_extension":37},"/en-us/blog/authors/vicky-steeves",{"name":7717,"config":7718},"Vicky Steeves",{"headshot":7,"ctfId":7719},"vickysteeves",{"template":697},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7725,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7726,"config":7730,"_id":7731,"_type":32,"title":7727,"_source":34,"_file":7732,"_stem":7733,"_extension":37},"/en-us/blog/authors/victor-hernandez",{"name":7727,"config":7728},"Victor Hernandez",{"headshot":728,"ctfId":7729},"KVTkvySIqkAu34p2jsXZz",{"template":697},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7735,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7736,"config":7740,"_id":7741,"_type":32,"title":7737,"_source":34,"_file":7742,"_stem":7743,"_extension":37},"/en-us/blog/authors/victor-wu",{"name":7737,"config":7738},"Victor Wu",{"headshot":728,"ctfId":7739},"victorwu",{"template":697},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7745,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7746,"config":7751,"_id":7752,"_type":32,"title":7747,"_source":34,"_file":7753,"_stem":7754,"_extension":37},"/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":697},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7756,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7757,"config":7761,"_id":7762,"_type":32,"title":7758,"_source":34,"_file":7763,"_stem":7764,"_extension":37},"/en-us/blog/authors/vincent-jong",{"name":7758,"config":7759},"Vincent Jong",{"headshot":728,"ctfId":7760},"Vincent-Jong",{"template":697},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7766,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7767,"config":7772,"_id":7773,"_type":32,"title":7768,"_source":34,"_file":7774,"_stem":7775,"_extension":37},"/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":697},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7777,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7778,"config":7783,"_id":7784,"_type":32,"title":7779,"_source":34,"_file":7785,"_stem":7786,"_extension":37},"/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":697},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7788,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7789,"config":7794,"_id":7795,"_type":32,"title":7790,"_source":34,"_file":7796,"_stem":7797,"_extension":37},"/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":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":7800,"config":7804,"_id":7805,"_type":32,"title":7801,"_source":34,"_file":7806,"_stem":7807,"_extension":37},"/en-us/blog/authors/vlad-budica",{"name":7801,"config":7802},"Vlad Budica",{"headshot":728,"ctfId":7803},"Vlad-Budica",{"template":697},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7809,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7810,"config":7814,"_id":7815,"_type":32,"title":7811,"_source":34,"_file":7816,"_stem":7817,"_extension":37},"/en-us/blog/authors/vlad-stoianovici",{"name":7811,"config":7812},"Vlad Stoianovici",{"headshot":7,"ctfId":7813},"vstoianovici",{"template":697},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7819,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7820,"config":7824,"_id":7825,"_type":32,"title":7821,"_source":34,"_file":7826,"_stem":7827,"_extension":37},"/en-us/blog/authors/wayne-haber",{"name":7821,"config":7822},"Wayne Haber",{"headshot":7,"ctfId":7823},"whaber",{"template":697},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7829,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7830,"config":7834,"_id":7835,"_type":32,"title":7831,"_source":34,"_file":7836,"_stem":7837,"_extension":37},"/en-us/blog/authors/will-chandler",{"name":7831,"config":7832},"Will Chandler",{"headshot":728,"ctfId":7833},"DKiIGSSRIyO6QdTQkRkjs",{"template":697},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7839,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7840,"config":7845,"_id":7846,"_type":32,"title":7841,"_source":34,"_file":7847,"_stem":7848,"_extension":37},"/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":697},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7850,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7851,"config":7856,"_id":7857,"_type":32,"title":7852,"_source":34,"_file":7858,"_stem":7859,"_extension":37},"/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":697},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7861,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7862,"config":7866,"_id":7867,"_type":32,"title":7863,"_source":34,"_file":7868,"_stem":7869,"_extension":37},"/en-us/blog/authors/william-chia",{"name":7863,"config":7864},"William Chia",{"headshot":7,"ctfId":7865},"williamchia",{"template":697},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7871,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7872,"config":7876,"_id":7877,"_type":32,"title":7873,"_source":34,"_file":7878,"_stem":7879,"_extension":37},"/en-us/blog/authors/yannis-roussos",{"name":7873,"config":7874},"Yannis Roussos",{"headshot":7,"ctfId":7875},"iroussos",{"template":697},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7881,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7882,"config":7886,"_id":7887,"_type":32,"title":7883,"_source":34,"_file":7888,"_stem":7889,"_extension":37},"/en-us/blog/authors/yevgeny-pats",{"name":7883,"config":7884},"Yevgeny Pats",{"headshot":7,"ctfId":7885},"ypats",{"template":697},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7891,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7892,"config":7896,"_id":7897,"_type":32,"title":7893,"_source":34,"_file":7898,"_stem":7899,"_extension":37},"/en-us/blog/authors/yorick-peterse",{"name":7893,"config":7894},"Yorick Peterse",{"headshot":728,"ctfId":7895},"Yorick-Peterse",{"template":697},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7901,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7902,"config":7906,"_id":7907,"_type":32,"title":7908,"_source":34,"_file":7909,"_stem":7910,"_extension":37},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7903,"config":7904},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7905},"zjgitlab",{"template":697},"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":690,"_draft":6,"_partial":6,"_locale":7,"content":7913,"config":7918,"_id":7919,"_type":32,"title":7914,"_source":34,"_file":7920,"_stem":7921,"_extension":37},"/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":697},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7923,"_dir":40,"_draft":6,"_partial":6,"_locale":7,"header":7924,"eyebrow":7925,"blurb":7926,"button":7927,"secondaryButton":7931,"_id":7933,"_type":32,"title":7934,"_source":34,"_file":7935,"_stem":7936,"_extension":37},"/shared/fr-fr/next-steps","Commencez à livrer des logiciels de meilleurs qualité plus rapidement","Plus de 50 % des entreprises du classement Fortune 100 font confiance à GitLab","Découvrez comment la plateforme DevSecOps intelligente\n\n\npeut aider votre équipe.\n",{"text":48,"config":7928},{"href":7929,"dataGaName":51,"dataGaLocation":7930},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":53,"config":7932},{"href":55,"dataGaName":56,"dataGaLocation":7930},"content:shared:fr-fr:next-steps.yml","Next Steps","shared/fr-fr/next-steps.yml","shared/fr-fr/next-steps",1761852445261]