[{"data":1,"prerenderedAt":7949},["ShallowReactive",2],{"/fr-fr/blog/a-beginners-guide-to-the-git-reftable-format":3,"navigation-fr-fr":39,"banner-fr-fr":457,"footer-fr-fr":470,"footer-source-/fr-fr/blog/a-beginners-guide-to-the-git-reftable-format/":681,"blogAuthors-fr-fr":687,"next-steps-fr-fr":7934},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":28,"_id":32,"_type":33,"title":34,"_source":35,"_file":36,"_stem":37,"_extension":38},"/fr-fr/blog/a-beginners-guide-to-the-git-reftable-format","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"Format reftable de Git : guide pour les débutants","Dans la version 2.45.0 de Git, GitLab a introduit le backend « reftable », révolutionnant ainsi le stockage des références. Découvrez en détail le fonctionnement de ce nouveau format.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664595/Blog/Hero%20Images/blog-image-template-1800x945__9_.png","https://about.gitlab.com/blog/a-beginners-guide-to-the-git-reftable-format","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"Format reftable de Git : guide pour les débutants\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Patrick Steinhardt\"}],\n        \"datePublished\": \"2024-05-30\",\n      }",{"title":9,"description":10,"authors":17,"heroImage":11,"date":19,"body":20,"category":21,"tags":22,"updatedDate":27},[18],"Patrick Steinhardt","2024-05-30","Jusqu'à récemment, Git ne pouvait stocker des références qu'au format « fichiers ». Avec la [version 2.45.0 de Git](https://about.gitlab.com/fr-fr/blog/whats-new-in-git-2-45-0/), Git peut désormais stocker des références au format « reftable ». Ce nouveau format binaire est un peu plus complexe, mais c'est précisément cette complexité qui lui permet de corriger plusieurs lacunes du format « fichiers ». Les objectifs du format « reftable » sont les suivants :\n\n- Rendre la recherche d'une référence unique et l'itération à travers des plages de références aussi efficaces et rapides que possible.\n- Prendre en charge des lectures cohérentes des références afin que Git ne lise jamais un état intermédiaire lorsqu'une mise à jour de plusieurs références n'a été appliquée que partiellement.\n- Prendre en charge des écritures atomiques de sorte que la mise à jour de plusieurs références peut être effectuée comme une opération tout ou rien.\n- Stocker efficacement des références et des journaux de référence (« reflog »).\n\nDans cet article, nous allons examiner le format « reftable » pour comprendre son fonctionnement.\n\n## Stockage des références dans Git\n\nAvant d'entrer dans les détails, récapitulons rapidement la façon dont [Git](https://about.gitlab.com/fr-fr/blog/what-is-git/ \"Qu'est-ce que Git ? \") stockait les références jusqu'à présent. Si le sujet vous est familier, vous pouvez passer cette section.\n\nUn dépôt Git contient deux structures de données importantes :\n\n- [Les objets](https://git-scm.com/book/fr/v2/Les-tripes-de-Git-Les-objets-de-Git), qui contiennent les données réelles de votre dépôt. Ils incluent les validations (« commits »), la structure d'arborescence des répertoires (« tree ») et les blobs qui contiennent votre code source. Les objets sont organisés de manière à ce qu'ils pointent les uns vers les autres, formant ainsi un graphe des objets. En outre, chaque objet est associé à un identifiant unique, appelé ID d'objet.\n\n- Les références, telles que les branches et les étiquettes (« tags »). Ces pointeurs sur des objets du graphe vous permettent de donner des noms à des objets qui sont plus faciles à mémoriser et de suivre les différentes étapes et directions de votre historique de développement. Par exemple, un dépôt peut contenir une branche `main` : il s'agit d'une référence nommée `refs/heads/main` qui pointe vers une validation spécifique.\n\nLes références sont stockées dans la base de données des références. Jusqu'à la version 2.45.0 de Git, le format « fichiers » constituait le seul format de base de données disponible. Ce format stocke chaque référence en tant que fichier normal contenant l'un des éléments suivants :\n\n- Une référence standard qui contient l'ID d'objet de la validation vers laquelle elle pointe.\n- Une référence symbolique qui contient le nom d'une autre référence, de la même manière qu'un lien symbolique pointe vers un autre fichier.\n\nCes références sont régulièrement empaquetées dans un seul fichier `packed-refs` afin de faciliter les recherches.\n\nLes exemples suivants illustrent le fonctionnement du format « fichiers » :\n\n```shell\n$ git init .\n$ git commit --allow-empty --message \"Initial commit\"\n[main (root-commit) 6917c17] Initial commit\n\n# HEAD is a symbolic reference pointing to refs/heads/main.\n$ cat .git/HEAD\nref: refs/heads/main\n\n# refs/heads/main is a regular reference pointing to a commit.\n$ cat .git/refs/heads/main\n6917c178cfc3c50215a82cf959204e9934af24c8\n\n# git-pack-refs(1) packs these references into the packed-refs file.\n$ git pack-refs --all\n$ cat .git/packed-refs\n# pack-refs with: peeled fully-peeled sorted\n6917c178cfc3c50215a82cf959204e9934af24c8 refs/heads/main\n```\n\n## Vue d'ensemble de la structure « reftable » \n\nSi vous avez installé la version 2.45.0 de Git ou une version plus récente, vous pouvez créer un dépôt au format « reftable » en utilisant l'option `--ref-format=reftable` :\n\n```shell\n$ git init --ref-format=reftable .\nInitialized empty Git repository in /tmp/repo/.git/\n$ git rev-parse --show-ref-format\nreftable\n\n# Irrelevant files have been removed for ease of understanding.\n$ tree .git\n.git\n├── config\n├── HEAD\n├── index\n├── objects\n├── refs\n│   └── heads\n└── reftable\n\t├── 0x000000000001-0x000000000002-40a482a9.ref\n\t└── tables.list\n\n4 directories, 6 files\n```\n\nRegardez la configuration du dépôt. Remarquez tout d'abord sa clé de configuration `extension.refstorage` :\n\n```shell\n$ cat .git/config\n[core]\n    repositoryformatversion = 1\n    filemode = true\n    bare = false\n    logallrefupdates = true\n[extensions]\n    refstorage = reftable\n```\n\nCette configuration indique à Git que le dépôt a été initialisé avec le format « reftable » et que Git doit utiliser le backend « reftable » pour y accéder.\n\nCurieusement, le dépôt contient encore des fichiers qui semblent utilisés par le backend « fichiers » :\n\n- `HEAD` est une référence symbolique dans Git qui indique généralement la branche sur laquelle vous travaillez actuellement. Bien que le format « reftable » n'utilise pas HEAD, la présence de cette référence est nécessaire pour qu'un répertoire soit reconnu comme un dépôt Git par les clients Git. Par conséquent, lorsque vous utilisez le format « reftable », `HEAD` est juste une entité fictive et temporaire dont le contenu est `ref: refs/heads/.invalid`.\n\n- `refs/head` est un fichier dont le contenu est : `this repository uses the reftable format`. Les clients Git qui ne connaissent pas le format « reftable » s'attendent généralement à ce que le chemin d'accès soit un répertoire. Par conséquent, la création de ce chemin d'accès en tant que fichier entraîne intentionnellement l'échec des anciens clients Git s'ils tentent d'accéder au dépôt par le biais du backend « fichiers ».\n\nLes références réelles sont stockées dans le répertoire `reftable/` :\n\n```shell\n$ tree .git/reftable\n.git/reftable/\n├── 0x000000000001-0x000000000001-794bd722.ref\n└── tables.list\n\n$ cat .git/reftable/tables.list\n0x000000000001-0x000000000001-794bd722.ref\n```\n\nIl y a ici deux fichiers :\n\n- `0x000000000001-0x000000000001-794bd722.ref` est une table contenant des références et des données de reflog dans un format binaire.\n\n- `tables.list` est, comme son nom l'indique, une liste de tables. Dans l'état actuel du dépôt, le fichier contient une seule ligne, qui est le nom de la table. Ce fichier suit l'ensemble actuel des tables actives dans la base de données « reftable ». Il est mis à jour chaque fois que de nouvelles tables sont ajoutées au dépôt.\n\nLa mise à jour d'une référence crée une nouvelle table :\n\n```shell\n$ git commit --allow-empty --message \"Initial commit\"\n[main (root-commit) 1472a58] Initial commit\n\n$ tree .git/reftable\n.git/reftable/\n├── 0x000000000001-0x000000000002-eb87d12b.ref\n└── tables.list\n\n$ cat .git/reftable/tables.list\n0x000000000001-0x000000000002-eb87d12b.ref\n```\n\nComme vous pouvez le constater, la table précédente a été remplacée par une nouvelle. En outre, le fichier `tables.list` a été mis à jour pour contenir la nouvelle table.\n\n## Structure d'une table\n\nComme mentionné précédemment, les données réelles de la base de données des références sont contenues dans des tables. Pour faire simple, une table se divise en plusieurs sections :\n\n- L'en-tête contient des métadonnées sur la table. En plus d'autres informations, il inclut la version du format, la taille des blocs de données et la fonction de hachage utilisée par le dépôt (par exemple, SHA1 ou SHA256).\n- La section « ref » contient vos références. Ces enregistrements ont une clé identique au nom de la référence et pointent soit vers un ID d'objet pour les références standards, soit vers une autre référence pour les références symboliques.\n- La section « obj » contient la correspondance inverse entre les ID d'objet et les références qui pointent vers eux. Celle-ci permet à Git de rechercher efficacement les références qui pointent vers un ID d'objet spécifique.\n- La section « log » contient vos éléments reflog. Ces enregistrements ont une clé identique au nom de la référence, plus un index qui représente le numéro de l'élément du journal. Ils contiennent en outre les anciens et nouveaux ID d'objet, ainsi que le message pour cet élément reflog.\n- Le « footer » contient des offsets pour les différentes sections.\n\n![table longue avec toutes les sections reftable](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_1_-_Reftable_overview.svg)\n\nChaque type de section est structuré de manière similaire. Les sections contiennent un ensemble d'enregistrements qui sont classés en fonction de la clé de chaque enregistrement. Par exemple, lorsque vous avez ces deux enregistrements de références : `refs/heads/aaaaa` et `refs/heads/bbb`, vous avez deux enregistrements de références dont les noms de référence sont les clés respectives, et `refs/heads/aaaaa` vient avant `refs/heads/bbb`.\n\nChaque section est par ailleurs divisée en blocs d'une longueur fixe. La longueur d'un bloc est encodée dans l'en-tête et remplit deux fonctions :\n\n- En se basant sur le début de la section ainsi que la taille des blocs de données, le processus qui lit les tables sait implicitement où chacun des blocs commence. Git peut ainsi facilement effectuer une recherche au milieu d'une section sans lire les blocs précédents, ce qui permet d'effectuer des recherches par dichotomie sur des blocs pour accélérer la recherche d'enregistrements.\n- Elle permet au processus qui lit les tables de savoir combien de données lire sur le disque à la fois. Par conséquent, la taille des blocs de données est par défaut définie à 4 KiB, ce qui correspond à la taille de secteur la plus courante pour les disques durs. La taille maximale des blocs de données est de 16 Mo.\n\nIntéressons-nous à une section « ref » : elle ressemble à peu près au graphique suivant. Notez comment ses enregistrements sont ordonnés lexicographiquement à l'intérieur des blocs, mais aussi entre différents blocs.\n\n![bloc de référence non compressé](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_2_-_Ref_block_uncompressed.svg)\n\nMaintenant que vous disposez de ces informations, vous pouvez localiser un enregistrement en suivant les étapes suivantes :\n\n1. Effectuez une recherche par dichotomie sur les blocs en regardant les clés de leurs premiers enregistrements respectifs, ce qui permet d'identifier le bloc qui doit contenir l'enregistrement.\n\n2. Effectuez une recherche linéaire sur les enregistrements de ce bloc.\n\nCes deux étapes sont encore quelque peu inefficaces. S'il y a beaucoup de blocs, vous devrez peut-être effectuer une lecture logarithmique d'un bon nombre d'entre eux au cours de la recherche par dichotomie pour trouver celui que vous recherchez. Et lorsque les blocs contiennent de nombreux enregistrements, une recherche linéaire doit potentiellement tous les lire.\n\nLe format « reftable » intègre des mécanismes supplémentaires pour résoudre ces problèmes de performance. Nous les mentionnerons dans les prochaines sections.\n\n### Compression de préfixe\n\nComme vous l'avez peut-être remarqué, toutes les clés d'enregistrement partagent le même préfixe `refs/`. C'est une norme établie dans Git :\n\n- Toutes les branches commencent par `refs/heads/`.\n- Toutes les étiquettes (« tags ») commencent par `refs/tags/`.\n\nPar conséquent, il est très probable que les enregistrements suivants partagent une partie importante du préfixe de leur clé. C'est une bonne occasion d'économiser de l'espace de stockage précieux. Comme nous savons que la plupart des clés partagent un préfixe commun, il est logique d'utiliser ce dernier à des fins d'optimisation.\n\nCelle-ci passe par la compression de préfixe. Chaque enregistrement encode une longueur de préfixe qui indique au processus qui lit les tables le nombre d'octets à réutiliser à partir de la clé de l'enregistrement précédent. Si vous avez deux enregistrements, `refs/heads/a` et `refs/heads/b`, ce dernier peut être encodé en spécifiant une longueur de préfixe de 11, puis en stockant uniquement le suffixe `b`. Le processus qui lit les tables prendra alors les 11 premiers octets de `refs/heads/a`, c'est-à-dire `refs/heads/`, et y ajoutera le suffixe `b`.\n\n![compression de préfixe](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_3_-_Ref_block_prefix_compression.svg)\n\n### « Restart points »\n\nComme expliqué précédemment et d'après vos connaissances actuelles du format « reftable », une recherche linéaire constitue la meilleure façon de chercher une référence dans un bloc, car la longueur des enregistrements n'est pas fixe. Il est donc impossible de savoir où les enregistrements devraient commencer sans parcourir l'intégralité du bloc depuis le début. En outre, même si les enregistrements étaient de longueur fixe, il ne serait pas possible de rechercher au milieu d'un bloc, car la compression de préfixe nous oblige également à lire les enregistrements précédents.\n\nUne recherche linéaire serait assez inefficace, dans la mesure où les blocs peuvent contenir des centaines, voire des milliers d'enregistrements. Pour résoudre ce problème, le format « reftable » encode des « restart points » dans chaque bloc. Les « restart points » sont des enregistrements non compressés où la compression de préfixe est réinitialisée. Par conséquent, les enregistrements des « restart points » contiennent toujours leur clé complète. Il devient donc possible de rechercher et de lire directement l'enregistrement, sans avoir à lire les enregistrements précédents. Ces « restart points » sont répertoriés dans le footer de chaque bloc.\n\nGrâce à ces informations, vous pouvez maintenant éviter d'effectuer une recherche linéaire sur le bloc. Effectuez plutôt une recherche par dichotomie sur les « restart points » en cherchant le premier « restart point » dont la clé est lexicographiquement supérieure à la clé recherchée. Il s'ensuit que l'enregistrement que vous recherchez doit être situé dans la section s'étendant entre le « restart point » _précédent_ et celui identifié.\n\nLa procédure initiale pour rechercher un enregistrement (recherche par dichotomie du bloc, recherche linéaire de l'enregistrement) est donc la suivante :\n\n1. Effectuez une recherche par dichotomie sur les blocs, pour identifier celui qui doit contenir l'enregistrement.\n\n2. Effectuez une recherche par dichotomie sur les « restart points », en identifiant la sous-section du bloc qui doit contenir l'enregistrement.\n\n3. Effectuez une recherche linéaire sur les enregistrements de cette sous-section.\n\n![Recherche linéaire pour un enregistrement](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_4_-_Restart_points.svg)\n\n### Index\n\nBien que la recherche d'enregistrements à l'intérieur d'un bloc soit désormais raisonnablement efficace, ce n'est pas le cas pour l'identification du bloc spécifique. Une recherche par dichotomie peut être relativement performante sur quelques blocs, mais les dépôts contenant des millions de références peuvent comporter des centaines, voire des milliers de blocs. En l'absence d'une structure de données supplémentaire visant à minimiser les accès au disque, chaque recherche de bloc pourrait entraîner en moyenne un nombre important d'accès au disque.\n\nPour éviter cette situation, chaque section peut être suivie d'une section d'indexation qui fournit un moyen efficace de rechercher un bloc. Chaque enregistrement d'index contient les informations suivantes :\n\n- L'emplacement du bloc qu'il indexe.\n- La clé du dernier enregistrement du bloc qu'il indexe.\n\nPour trois blocs ou moins, une recherche par dichotomie nécessite toujours, au plus, deux lectures de disque pour trouver le bloc cible souhaité. Le nombre de lectures est le même pour un index : une pour lire l'index et une pour lire le bloc souhaité. Par conséquent, les index ne sont écrits que lorsqu'ils évitent de fait plusieurs lectures, ce qui est le cas lorsque quatre blocs ou plus sont indexés.\n\nLa question se pose alors de savoir ce qu'il se passe lorsque l'index lui-même devient si grand qu'il s'étend sur plusieurs blocs. Vous l'avez peut-être deviné : nous écrivons un nouvel index qui indexe l'index. Ces index à plusieurs niveaux ne deviennent vraiment nécessaires que lorsque vos dépôts contiennent des centaines de milliers de références.\n\nÀ l'aide de ces index, vous pouvez désormais accélérer la recherche d'enregistrements :\n1. Déterminez s'il existe un index en consultant le footer de la table.\n\t- Si c'est le cas, effectuez une recherche par dichotomie dans l'index pour trouver le bloc souhaité. Ce bloc peut pointer vers un bloc d'index, auquel cas il vous faut répéter l'opération jusqu'à atteindre un enregistrement du type souhaité.\n\t- Dans le cas contraire, effectuez une recherche par dichotomie dans les blocs comme auparavant.\n2. Effectuez une recherche par dichotomie sur les « restart points » pour identifier la sous-section du bloc qui doit contenir l'enregistrement.\n3. Effectuez une recherche linéaire sur les enregistrements de cette sous-section.\n\n## Tables multiples\n\nJusqu'à présent, nous n'avons discuté que de la façon de lire une table _unique_. Comme l'indique le nom `tables.list`, votre base de données « reftable » peut contenir une liste de tables.\n\nChaque fois que vous mettez à jour une référence dans votre dépôt, une nouvelle table est créée et ajoutée à `tables.list`. Vous obtiendrez donc plusieurs tables, comme suit :\n\n```shell\n$ tree .git/reftable/\n.git/reftable/\n├── 0x000000000001-0x000000000007-8dcd8a77.ref\n├── 0x000000000008-0x000000000008-30e0f6f6.ref\n└── tables.list\n\n$ cat .git/reftable/tables.list\n0x000000000001-0x000000000007-8dcd8a77.ref\n0x000000000008-0x000000000008-30e0f6f6.ref\n```\nLa lecture de l'état réel d'un dépôt nous oblige à fusionner ces multiples tables en une seule table virtuelle.\n\nVous vous demandez peut-être comment le format « reftable » connaît la valeur la plus récente d'une référence donnée, si une table est créée pour chaque mise à jour de référence et que la même référence est mise à jour plusieurs fois. Intuitivement, on pourrait supposer que la valeur serait celle de la table la plus récente contenant la référence.\n\nEn réalité, chaque enregistrement a un index de mise à jour qui encode la « priorisation » d'un enregistrement. Par exemple, s'il existe deux enregistrements pour le même nom de référence, celui qui a l'index de mise à jour le plus élevé remplace celui qui a l'index de mise à jour le plus bas.\n\nCes index de mise à jour sont visibles dans la structure de fichiers ci-dessus. Les longues chaînes hexagonales (par exemple `0x000000000001`) sont les index de mise à jour. L'index de mise à jour minimum contenu dans la table se trouve dans la partie gauche de son nom de fichier et l'index de mise à jour maximum dans la partie droite.\n\nLe merge des tables se fait ensuite via une [file d'attente de priorisation](https://fr.wikipedia.org/wiki/File_de_priorit%C3%A9) qui est triée par clé d’enregistrement ainsi que son index de mise à jour. Imaginez que vous voulez parcourir tous les enregistrements de références. Vous devez suivre les étapes suivantes :\n\n1. Pour chaque table, ajoutez son premier enregistrement à la file d'attente de priorisation.\n\n![Ajout du premier enregistrement à la file d'attente de priorisation](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_5_-_Priority_queue_1.svg)\n\n2. Récupérez et retirez de la file d'attente l'enregistrement en tête de la file. Comme la file d'attente est triée par index de mise à jour, cet enregistrement doit être la version la plus récente. Ajoutez l'enregistrement suivant de la table de cet enregistrement à la file d'attente de priorisation.\n\n![Définition de la tête de la file d'attente de priorisation](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_6_-_Priority_queue_2.svg)\n\n3. Retirez tous les enregistrements de la file d'attente qui ont la même clé que l’enregistrement récupéré. Ces enregistrements sont dépassés et ne seront pas utilisés. Pour chaque table pour laquelle vous supprimez des enregistrements, ajoutez l'enregistrement suivant à la file d'attente de priorisation.\n\n![Dépôt de tous les enregistrements de la file qui ont le même nom](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_7_-_Priority_queue_3.svg)\nVous pouvez maintenant répéter les étapes ci-dessus pour lire les enregistrements pour d'autres clés.\n\nLes tables peuvent contenir des enregistrements spéciaux « tombstone » qui marquent un enregistrement supprimé. Vous pouvez ainsi supprimer des enregistrements sans avoir à réécrire toutes les tables afin qu'elles ne contiennent plus ces enregistrements.\n\n### Compactage automatique\n\nLa file d'attente de priorisation a beau être un concept simple, elle ne parviendrait pas à fusionner efficacement des centaines de tables, ni même des dizaines. S'il est vrai que chaque mise à jour de vos références ajoute une nouvelle table à votre fichier `tables.list`, ce n'est pas tout.\n\nLe compactage automatique entre ici en scène : lorsqu'une nouvelle table a été ajoutée à la liste des tables, le backend « reftable » vérifie si certaines des tables doivent être fusionnées. Ce processus utilise une méthode simple : nous vérifions que les tailles de fichiers de la liste des tables forment une [séquence géométrique](https://en.wikipedia.org/wiki/Geometric_progression). Chaque table `n` doit être au moins deux fois plus grande que la table suivante la plus récente `n + 1`. Si cette séquence géométrique n'est pas respectée, le backend compacte les tables afin de restaurer la séquence géométrique.\n\nCe processus aboutit à des structures de ce type :\n\n```shell\n$ du --apparent-size .git/reftable/*\n429    .git/reftable/0x000000000001-0x00000000bd7c-d9819000.ref\n101    .git/reftable/0x00000000bd7d-0x00000000c5ac-c34b88a4.ref\n32    .git/reftable/0x00000000c5ad-0x00000000cc6c-60391f53.ref\n8    .git/reftable/0x00000000cc6d-0x00000000cdc1-61c30db1.ref\n3    .git/reftable/0x00000000cdc2-0x00000000ce67-d9b55a96.ref\n1    .git/reftable/0x00000000ce68-0x00000000ce6b-44721696.ref\n1    .git/reftable/tables.list\n```\n\nNotez que la propriété `size(n) > size(n+1) * 2` est respectée pour chaque table.\n\nL'une des conséquences du compactage automatique est la maintenance automatique du backend « reftable ». Il n'est plus nécessaire d'exécuter `git pack-refs` dans un dépôt.\n\n## Vous souhaitez en savoir plus ?\n\nÀ présent, le fonctionnement du nouveau format « reftable » ne devrait plus avoir de secret pour vous. Si vous souhaitez approfondir vos connaissances, vous pouvez consulter la [documentation technique](https://git-scm.com/docs/reftable) fournie par le projet Git.\n\n> Lisez notre [récapitulatif sur Git 2.45.0](https://about.gitlab.com/blog/whats-new-in-git-2-45-0/), [Git 2.46.0](https://about.gitlab.com/fr-fr/blog/whats-new-in-git-2-46-0/ \"Nouveautés Git 2.46.0\") et Git [2.47.0](https://about.gitlab.com/fr-fr/blog/whats-new-in-git-2-47-0/ \"Nouveautés Git 2.47.0\") pour découvrir les autres points forts de cette version.","open-source",[23,24,25,26],"git","tutorial","open source","performance","2024-12-19",{"slug":29,"featured":30,"template":31},"a-beginners-guide-to-the-git-reftable-format",true,"BlogPost","content:fr-fr:blog:a-beginners-guide-to-the-git-reftable-format.yml","yaml","A Beginners Guide To The Git Reftable Format","content","fr-fr/blog/a-beginners-guide-to-the-git-reftable-format.yml","fr-fr/blog/a-beginners-guide-to-the-git-reftable-format","yml",{"_path":40,"_dir":41,"_draft":6,"_partial":6,"_locale":7,"data":42,"_id":453,"_type":33,"title":454,"_source":35,"_file":455,"_stem":456,"_extension":38},"/shared/fr-fr/main-navigation","fr-fr",{"logo":43,"freeTrial":48,"sales":53,"login":58,"items":63,"search":394,"minimal":430,"duo":444},{"config":44},{"href":45,"dataGaName":46,"dataGaLocation":47},"/fr-fr/","gitlab logo","header",{"text":49,"config":50},"Commencer un essai gratuit",{"href":51,"dataGaName":52,"dataGaLocation":47},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":54,"config":55},"Contacter l'équipe commerciale",{"href":56,"dataGaName":57,"dataGaLocation":47},"/fr-fr/sales/","sales",{"text":59,"config":60},"Connexion",{"href":61,"dataGaName":62,"dataGaLocation":47},"https://gitlab.com/users/sign_in/","sign in",[64,108,205,210,315,375],{"text":65,"config":66,"cards":68,"footer":91},"Plateforme",{"dataNavLevelOne":67},"platform",[69,75,83],{"title":65,"description":70,"link":71},"La plateforme DevSecOps alimentée par l'IA la plus complète",{"text":72,"config":73},"Découvrir notre plateforme",{"href":74,"dataGaName":67,"dataGaLocation":47},"/fr-fr/platform/",{"title":76,"description":77,"link":78},"GitLab Duo (IA)","Créez des logiciels plus rapidement en tirant parti de l'IA à chaque étape du développement",{"text":79,"config":80},"Découvrez GitLab Duo",{"href":81,"dataGaName":82,"dataGaLocation":47},"/fr-fr/gitlab-duo/","gitlab duo ai",{"title":84,"description":85,"link":86},"Choisir GitLab","10 raisons pour lesquelles les entreprises choisissent GitLab",{"text":87,"config":88},"En savoir plus",{"href":89,"dataGaName":90,"dataGaLocation":47},"/fr-fr/why-gitlab/","why gitlab",{"title":92,"items":93},"Démarrer avec",[94,99,104],{"text":95,"config":96},"Ingénierie de plateforme",{"href":97,"dataGaName":98,"dataGaLocation":47},"/fr-fr/solutions/platform-engineering/","platform engineering",{"text":100,"config":101},"Expérience développeur",{"href":102,"dataGaName":103,"dataGaLocation":47},"/fr-fr/developer-experience/","Developer experience",{"text":105,"config":106},"MLOps",{"href":107,"dataGaName":105,"dataGaLocation":47},"/fr-fr/topics/devops/the-role-of-ai-in-devops/",{"text":109,"left":30,"config":110,"link":112,"lists":116,"footer":187},"Produit",{"dataNavLevelOne":111},"solutions",{"text":113,"config":114},"Voir toutes les solutions",{"href":115,"dataGaName":111,"dataGaLocation":47},"/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":47},"AutomatedCodeAlt","/fr-fr/solutions/delivery-automation/","automated software delivery",[126,130,134,139],{"text":127,"config":128},"CI/CD",{"href":129,"dataGaLocation":47,"dataGaName":127},"/fr-fr/solutions/continuous-integration/",{"text":131,"config":132},"Développement assisté par l'IA",{"href":81,"dataGaLocation":47,"dataGaName":133},"AI assisted development",{"text":135,"config":136},"Gestion du code source",{"href":137,"dataGaLocation":47,"dataGaName":138},"/fr-fr/solutions/source-code-management/","Source Code Management",{"text":140,"config":141},"Livraison de logiciels automatisée",{"href":123,"dataGaLocation":47,"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":47,"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":47},"Application security testing",{"text":157,"config":158},"Sécurité de la chaîne d'approvisionnement logicielle",{"href":159,"dataGaLocation":47,"dataGaName":160},"/fr-fr/solutions/supply-chain/","Software supply chain security",{"text":162,"config":163},"Software Compliance",{"href":164,"dataGaName":162,"dataGaLocation":47},"/fr-fr/solutions/software-compliance/",{"title":166,"link":167,"items":172},"Mesures",{"config":168},{"icon":169,"href":170,"dataGaName":171,"dataGaLocation":47},"DigitalTransformation","/fr-fr/solutions/visibility-measurement/","visibility and measurement",[173,177,182],{"text":174,"config":175},"Visibilité et mesures",{"href":170,"dataGaLocation":47,"dataGaName":176},"Visibility and Measurement",{"text":178,"config":179},"Gestion de la chaîne de valeur",{"href":180,"dataGaLocation":47,"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":47,"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":47,"dataGaName":194},"/fr-fr/enterprise/","enterprise",{"text":196,"config":197},"PME",{"href":198,"dataGaLocation":47,"dataGaName":199},"/fr-fr/small-business/","small business",{"text":201,"config":202},"Secteur public",{"href":203,"dataGaLocation":47,"dataGaName":204},"/fr-fr/solutions/public-sector/","public sector",{"text":206,"config":207},"Tarifs",{"href":208,"dataGaName":209,"dataGaLocation":47,"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":47},"/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":47},"/fr-fr/install/","install",{"text":228,"config":229},"Guides de démarrage rapide",{"href":230,"dataGaName":231,"dataGaLocation":47},"/fr-fr/get-started/","quick setup checklists",{"text":233,"config":234},"Apprentissage",{"href":235,"dataGaLocation":47,"dataGaName":236},"https://university.gitlab.com/","learn",{"text":238,"config":239},"Documentation sur le produit",{"href":240,"dataGaName":241,"dataGaLocation":47},"https://docs.gitlab.com/","product documentation",{"text":243,"config":244},"Vidéos sur les bonnes pratiques",{"href":245,"dataGaName":246,"dataGaLocation":47},"/fr-fr/getting-started-videos/","best practice videos",{"text":248,"config":249},"Intégrations",{"href":250,"dataGaName":251,"dataGaLocation":47},"/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":47},"/fr-fr/customers/","customer success stories",{"text":261,"config":262},"Blog",{"href":263,"dataGaName":5,"dataGaLocation":47},"/fr-fr/blog/",{"text":265,"config":266},"Travail à distance",{"href":267,"dataGaName":268,"dataGaLocation":47},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":270,"config":271},"TeamOps",{"href":272,"dataGaName":273,"dataGaLocation":47},"/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":47},"/fr-fr/services/","services",{"text":283,"config":284},"Communauté",{"href":285,"dataGaName":286,"dataGaLocation":47},"/community/","community",{"text":288,"config":289},"Forum",{"href":290,"dataGaName":291,"dataGaLocation":47},"https://forum.gitlab.com/","forum",{"text":293,"config":294},"Événements",{"href":295,"dataGaName":296,"dataGaLocation":47},"/events/","events",{"text":298,"config":299},"Partenaires",{"href":300,"dataGaName":301,"dataGaLocation":47},"/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":47},"/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":47},"/fr-fr/company/","about",{"text":328,"config":329,"footerGa":332},"Emplois",{"href":330,"dataGaName":331,"dataGaLocation":47},"/jobs/","jobs",{"dataGaName":331},{"text":293,"config":334},{"href":295,"dataGaName":296,"dataGaLocation":47},{"text":336,"config":337},"Leadership",{"href":338,"dataGaName":339,"dataGaLocation":47},"/company/team/e-group/","leadership",{"text":341,"config":342},"Équipe",{"href":343,"dataGaName":344,"dataGaLocation":47},"/company/team/","team",{"text":346,"config":347},"Manuel",{"href":348,"dataGaName":349,"dataGaLocation":47},"https://handbook.gitlab.com/","handbook",{"text":351,"config":352},"Relations avec les investisseurs",{"href":353,"dataGaName":354,"dataGaLocation":47},"https://ir.gitlab.com/","investor relations",{"text":356,"config":357},"Centre de confiance",{"href":358,"dataGaName":359,"dataGaLocation":47},"/fr-fr/security/","trust center",{"text":361,"config":362},"Centre pour la transparence de l'IA",{"href":363,"dataGaName":364,"dataGaLocation":47},"/fr-fr/ai-transparency-center/","ai transparency center",{"text":366,"config":367},"Newsletter",{"href":368,"dataGaName":369,"dataGaLocation":47},"/company/contact/","newsletter",{"text":371,"config":372},"Presse",{"href":373,"dataGaName":374,"dataGaLocation":47},"/press/","press",{"text":376,"config":377,"lists":378},"Nous contacter",{"dataNavLevelOne":318},[379],{"items":380},[381,384,389],{"text":54,"config":382},{"href":56,"dataGaName":383,"dataGaLocation":47},"talk to sales",{"text":385,"config":386},"Aide",{"href":387,"dataGaName":388,"dataGaLocation":47},"/support/","get help",{"text":390,"config":391},"Portail clients GitLab",{"href":392,"dataGaName":393,"dataGaLocation":47},"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":61,"dataGaName":401,"dataGaLocation":402},"search login","search",{"text":404,"default":405},"Suggestions",[406,409,414,416,421,426],{"text":76,"config":407},{"href":81,"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":89,"dataGaName":429,"dataGaLocation":402},"Why GitLab?",{"freeTrial":431,"mobileIcon":436,"desktopIcon":441},{"text":432,"config":433},"Commencer votre essai gratuit",{"href":434,"dataGaName":52,"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":81,"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":41,"_draft":6,"_partial":6,"_locale":7,"title":459,"titleMobile":459,"button":460,"config":465,"_id":467,"_type":33,"_source":35,"_file":468,"_stem":469,"_extension":38},"/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":47},"/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":41,"_draft":6,"_partial":6,"_locale":7,"data":472,"_id":677,"_type":33,"title":678,"_source":35,"_file":679,"_stem":680,"_extension":38},"/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":65,"links":497,"subMenu":502},[498],{"text":499,"config":500},"Plateforme DevSecOps",{"href":74,"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":56,"dataGaName":57,"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":30},"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":30},"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":32,"_type":33,"title":34,"_source":35,"_file":36,"_stem":37,"_extension":38},{"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":19,"body":20,"category":21,"tags":685,"updatedDate":27},[18],[23,24,25,26],{"slug":29,"featured":30,"template":31},[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,1709,1719,1730,1741,1752,1763,1773,1784,1795,1806,1817,1827,1838,1849,1860,1870,1883,1893,1904,1915,1926,1936,1947,1958,1969,1979,1989,1999,2009,2020,2030,2040,2051,2061,2072,2082,2093,2104,2114,2125,2135,2145,2155,2166,2176,2186,2197,2208,2218,2229,2240,2251,2261,2274,2285,2295,2307,2319,2329,2339,2350,2360,2371,2383,2394,2405,2416,2428,2439,2449,2459,2470,2480,2490,2501,2512,2522,2533,2544,2554,2564,2575,2586,2596,2607,2617,2628,2639,2650,2660,2670,2681,2692,2702,2712,2723,2735,2745,2755,2765,2776,2787,2797,2807,2817,2827,2837,2848,2859,2869,2880,2890,2900,2910,2920,2930,2941,2951,2961,2972,2982,2992,3003,3014,3024,3036,3046,3056,3068,3079,3090,3100,3111,3122,3133,3143,3155,3166,3176,3187,3198,3209,3220,3231,3242,3253,3263,3274,3285,3296,3306,3316,3327,3337,3347,3358,3369,3382,3393,3404,3414,3425,3437,3448,3459,3470,3480,3490,3501,3511,3522,3533,3544,3554,3564,3574,3584,3595,3606,3617,3628,3640,3651,3663,3674,3684,3694,3706,3716,3727,3737,3748,3758,3768,3779,3791,3801,3811,3821,3832,3842,3853,3863,3873,3884,3895,3906,3918,3929,3939,3950,3961,3971,3981,3992,4003,4014,4025,4035,4046,4057,4068,4078,4089,4100,4110,4121,4132,4143,4153,4163,4174,4185,4195,4206,4217,4228,4238,4248,4259,4270,4281,4292,4303,4313,4324,4335,4345,4355,4365,4377,4389,4399,4411,4421,4432,4443,4454,4465,4478,4488,4499,4510,4520,4530,4540,4551,4561,4572,4583,4593,4604,4614,4625,4636,4647,4658,4669,4680,4690,4700,4711,4722,4732,4742,4752,4763,4774,4784,4794,4804,4814,4825,4835,4845,4856,4866,4877,4887,4898,4909,4919,4929,4940,4950,4960,4971,4982,4993,5004,5014,5026,5037,5048,5058,5068,5078,5089,5100,5111,5122,5132,5143,5154,5164,5175,5187,5197,5207,5217,5228,5239,5250,5260,5270,5281,5292,5302,5314,5324,5334,5345,5355,5366,5378,5389,5399,5410,5421,5431,5442,5453,5465,5475,5485,5496,5506,5517,5527,5538,5548,5558,5569,5579,5590,5600,5610,5621,5631,5642,5653,5663,5673,5684,5694,5704,5714,5724,5735,5746,5758,5769,5780,5792,5804,5815,5826,5836,5847,5857,5867,5878,5889,5900,5910,5920,5930,5940,5950,5961,5973,5984,5996,6007,6017,6027,6038,6048,6058,6068,6078,6088,6098,6108,6118,6128,6139,6149,6159,6170,6181,6191,6203,6214,6224,6236,6247,6257,6268,6279,6289,6299,6309,6321,6331,6342,6353,6364,6375,6385,6395,6406,6418,6428,6438,6449,6459,6470,6480,6492,6503,6513,6523,6534,6546,6556,6569,6579,6591,6602,6612,6622,6633,6643,6654,6665,6676,6687,6698,6709,6720,6731,6742,6753,6764,6775,6786,6797,6808,6818,6831,6841,6852,6862,6873,6883,6893,6904,6915,6926,6936,6946,6957,6967,6978,6989,7001,7012,7022,7033,7044,7054,7064,7074,7084,7094,7105,7115,7126,7136,7147,7162,7173,7183,7194,7205,7216,7227,7238,7248,7259,7270,7281,7291,7302,7312,7322,7332,7342,7352,7363,7375,7385,7396,7407,7419,7429,7440,7450,7462,7473,7483,7493,7504,7515,7525,7536,7546,7556,7567,7578,7589,7600,7610,7621,7632,7642,7652,7662,7673,7684,7694,7704,7715,7726,7736,7746,7756,7767,7777,7788,7799,7810,7820,7830,7840,7850,7861,7872,7882,7892,7902,7912,7923],{"_path":689,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":691,"config":696,"_id":698,"_type":33,"title":692,"_source":35,"_file":699,"_stem":700,"_extension":38},"/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":33,"title":709,"_source":35,"_file":710,"_stem":711,"_extension":38},"/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":33,"title":715,"_source":35,"_file":721,"_stem":722,"_extension":38},"/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":33,"title":726,"_source":35,"_file":732,"_stem":733,"_extension":38},"/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":33,"title":737,"_source":35,"_file":743,"_stem":744,"_extension":38},"/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":33,"title":748,"_source":35,"_file":754,"_stem":755,"_extension":38},"/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":33,"title":764,"_source":35,"_file":765,"_stem":766,"_extension":38},"/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":33,"title":770,"_source":35,"_file":775,"_stem":776,"_extension":38},"/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":33,"title":780,"_source":35,"_file":785,"_stem":786,"_extension":38},"/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":33,"title":790,"_source":35,"_file":796,"_stem":797,"_extension":38},"/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":33,"title":801,"_source":35,"_file":807,"_stem":808,"_extension":38},"/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":33,"title":812,"_source":35,"_file":817,"_stem":818,"_extension":38},"/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":33,"title":822,"_source":35,"_file":828,"_stem":829,"_extension":38},"/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":33,"title":833,"_source":35,"_file":839,"_stem":840,"_extension":38},"/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":33,"title":844,"_source":35,"_file":849,"_stem":850,"_extension":38},"/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":33,"title":854,"_source":35,"_file":859,"_stem":860,"_extension":38},"/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":33,"title":864,"_source":35,"_file":869,"_stem":870,"_extension":38},"/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":33,"title":874,"_source":35,"_file":879,"_stem":880,"_extension":38},"/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":33,"title":884,"_source":35,"_file":890,"_stem":891,"_extension":38},"/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":33,"title":895,"_source":35,"_file":900,"_stem":901,"_extension":38},"/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":33,"title":905,"_source":35,"_file":910,"_stem":911,"_extension":38},"/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":33,"title":915,"_source":35,"_file":920,"_stem":921,"_extension":38},"/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":33,"title":925,"_source":35,"_file":931,"_stem":932,"_extension":38},"/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":33,"title":936,"_source":35,"_file":942,"_stem":943,"_extension":38},"/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":33,"title":947,"_source":35,"_file":952,"_stem":953,"_extension":38},"/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":33,"title":957,"_source":35,"_file":963,"_stem":964,"_extension":38},"/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":33,"title":968,"_source":35,"_file":974,"_stem":975,"_extension":38},"/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":33,"title":979,"_source":35,"_file":984,"_stem":985,"_extension":38},"/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":33,"title":989,"_source":35,"_file":995,"_stem":996,"_extension":38},"/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":33,"title":1000,"_source":35,"_file":1005,"_stem":1006,"_extension":38},"/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":33,"title":1010,"_source":35,"_file":1016,"_stem":1017,"_extension":38},"/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":33,"title":1021,"_source":35,"_file":1027,"_stem":1028,"_extension":38},"/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":33,"title":1032,"_source":35,"_file":1038,"_stem":1039,"_extension":38},"/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":33,"title":1043,"_source":35,"_file":1049,"_stem":1050,"_extension":38},"/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":33,"title":1054,"_source":35,"_file":1059,"_stem":1060,"_extension":38},"/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":33,"title":1064,"_source":35,"_file":1070,"_stem":1071,"_extension":38},"/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":33,"title":1075,"_source":35,"_file":1081,"_stem":1082,"_extension":38},"/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":33,"title":1086,"_source":35,"_file":1091,"_stem":1092,"_extension":38},"/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":33,"title":1096,"_source":35,"_file":1102,"_stem":1103,"_extension":38},"/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":33,"title":1107,"_source":35,"_file":1112,"_stem":1113,"_extension":38},"/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":33,"title":1117,"_source":35,"_file":1123,"_stem":1124,"_extension":38},"/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":33,"title":1128,"_source":35,"_file":1134,"_stem":1135,"_extension":38},"/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":33,"title":1139,"_source":35,"_file":1144,"_stem":1145,"_extension":38},"/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":33,"title":1149,"_source":35,"_file":1154,"_stem":1155,"_extension":38},"/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":33,"title":1159,"_source":35,"_file":1165,"_stem":1166,"_extension":38},"/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":33,"title":1170,"_source":35,"_file":1175,"_stem":1176,"_extension":38},"/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":33,"title":1180,"_source":35,"_file":1185,"_stem":1186,"_extension":38},"/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":33,"title":1190,"_source":35,"_file":1195,"_stem":1196,"_extension":38},"/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":33,"title":1200,"_source":35,"_file":1206,"_stem":1207,"_extension":38},"/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":33,"title":1211,"_source":35,"_file":1217,"_stem":1218,"_extension":38},"/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":33,"title":1222,"_source":35,"_file":1228,"_stem":1229,"_extension":38},"/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":33,"title":1238,"_source":35,"_file":1239,"_stem":1240,"_extension":38},"/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":33,"title":1244,"_source":35,"_file":1249,"_stem":1250,"_extension":38},"/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":33,"title":1259,"_source":35,"_file":1260,"_stem":1261,"_extension":38},"/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":33,"title":1265,"_source":35,"_file":1271,"_stem":1272,"_extension":38},"/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":33,"title":1276,"_source":35,"_file":1282,"_stem":1283,"_extension":38},"/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":33,"title":1292,"_source":35,"_file":1293,"_stem":1294,"_extension":38},"/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":33,"title":1298,"_source":35,"_file":1303,"_stem":1304,"_extension":38},"/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":33,"title":1308,"_source":35,"_file":1314,"_stem":1315,"_extension":38},"/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":33,"title":1325,"_source":35,"_file":1326,"_stem":1327,"_extension":38},"/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":33,"title":1331,"_source":35,"_file":1337,"_stem":1338,"_extension":38},"/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":33,"title":1342,"_source":35,"_file":1348,"_stem":1349,"_extension":38},"/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":33,"title":1353,"_source":35,"_file":1358,"_stem":1359,"_extension":38},"/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":33,"title":1369,"_source":35,"_file":1370,"_stem":1371,"_extension":38},"/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":33,"title":1375,"_source":35,"_file":1381,"_stem":1382,"_extension":38},"/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":33,"title":1386,"_source":35,"_file":1391,"_stem":1392,"_extension":38},"/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":33,"title":1396,"_source":35,"_file":1402,"_stem":1403,"_extension":38},"/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":33,"title":1407,"_source":35,"_file":1412,"_stem":1413,"_extension":38},"/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":33,"title":1417,"_source":35,"_file":1423,"_stem":1424,"_extension":38},"/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":33,"title":1428,"_source":35,"_file":1433,"_stem":1434,"_extension":38},"/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":33,"title":1438,"_source":35,"_file":1444,"_stem":1445,"_extension":38},"/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":33,"title":1449,"_source":35,"_file":1455,"_stem":1456,"_extension":38},"/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":33,"title":1460,"_source":35,"_file":1465,"_stem":1466,"_extension":38},"/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":33,"title":1470,"_source":35,"_file":1475,"_stem":1476,"_extension":38},"/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":33,"title":1480,"_source":35,"_file":1485,"_stem":1486,"_extension":38},"/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":33,"title":1490,"_source":35,"_file":1496,"_stem":1497,"_extension":38},"/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":33,"title":1501,"_source":35,"_file":1506,"_stem":1507,"_extension":38},"/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":33,"title":1511,"_source":35,"_file":1516,"_stem":1517,"_extension":38},"/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":33,"title":1521,"_source":35,"_file":1526,"_stem":1527,"_extension":38},"/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":33,"title":1531,"_source":35,"_file":1536,"_stem":1537,"_extension":38},"/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":33,"title":1546,"_source":35,"_file":1547,"_stem":1548,"_extension":38},"/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":33,"title":1552,"_source":35,"_file":1557,"_stem":1558,"_extension":38},"/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":33,"title":1562,"_source":35,"_file":1568,"_stem":1569,"_extension":38},"/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":33,"title":1573,"_source":35,"_file":1578,"_stem":1579,"_extension":38},"/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":33,"title":1588,"_source":35,"_file":1589,"_stem":1590,"_extension":38},"/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":33,"title":1594,"_source":35,"_file":1599,"_stem":1600,"_extension":38},"/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":33,"title":1604,"_source":35,"_file":1609,"_stem":1610,"_extension":38},"/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":33,"title":1614,"_source":35,"_file":1619,"_stem":1620,"_extension":38},"/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":33,"title":1624,"_source":35,"_file":1630,"_stem":1631,"_extension":38},"/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":33,"title":1635,"_source":35,"_file":1641,"_stem":1642,"_extension":38},"/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":33,"title":1646,"_source":35,"_file":1652,"_stem":1653,"_extension":38},"/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":33,"title":1657,"_source":35,"_file":1663,"_stem":1664,"_extension":38},"/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":33,"title":1668,"_source":35,"_file":1674,"_stem":1675,"_extension":38},"/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":33,"title":1680,"_source":35,"_file":1686,"_stem":1687,"_extension":38},"/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":33,"title":1691,"_source":35,"_file":1696,"_stem":1697,"_extension":38},"/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":1705,"_id":1706,"_type":33,"title":1701,"_source":35,"_file":1707,"_stem":1708,"_extension":38},"/en-us/blog/authors/cesar-saavedra",{"name":1701,"config":1702},"Cesar Saavedra",{"headshot":1703,"ctfId":1704},"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":1710,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1711,"config":1715,"_id":1716,"_type":33,"title":1712,"_source":35,"_file":1717,"_stem":1718,"_extension":38},"/en-us/blog/authors/chad-malchow",{"name":1712,"config":1713},"Chad Malchow",{"headshot":728,"ctfId":1714},"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":1720,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1721,"config":1726,"_id":1727,"_type":33,"title":1722,"_source":35,"_file":1728,"_stem":1729,"_extension":38},"/en-us/blog/authors/chance-feick",{"name":1722,"config":1723},"Chance Feick",{"headshot":1724,"ctfId":1725},"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":1731,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1732,"config":1737,"_id":1738,"_type":33,"title":1733,"_source":35,"_file":1739,"_stem":1740,"_extension":38},"/en-us/blog/authors/chandler-gibbons",{"name":1733,"config":1734},"Chandler Gibbons",{"headshot":1735,"ctfId":1736},"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":1742,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1743,"config":1747,"_id":1748,"_type":33,"title":1749,"_source":35,"_file":1750,"_stem":1751,"_extension":38},"/en-us/blog/authors/charl-de-wit",{"name":1744,"config":1745},"Charl de Wit",{"headshot":728,"ctfId":1746},"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":1753,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1754,"config":1759,"_id":1760,"_type":33,"title":1755,"_source":35,"_file":1761,"_stem":1762,"_extension":38},"/en-us/blog/authors/charlie-ablett",{"name":1755,"config":1756},"Charlie Ablett",{"headshot":1757,"ctfId":1758},"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":1764,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1765,"config":1769,"_id":1770,"_type":33,"title":1766,"_source":35,"_file":1771,"_stem":1772,"_extension":38},"/en-us/blog/authors/charvi-mendiratta",{"name":1766,"config":1767},"Charvi Mendiratta",{"headshot":728,"ctfId":1768},"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":1774,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1775,"config":1780,"_id":1781,"_type":33,"title":1776,"_source":35,"_file":1782,"_stem":1783,"_extension":38},"/en-us/blog/authors/cherry-han",{"name":1776,"config":1777},"Cherry Han",{"headshot":1778,"ctfId":1779},"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":1785,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1786,"config":1790,"_id":1792,"_type":33,"title":1787,"_source":35,"_file":1793,"_stem":1794,"_extension":38},"/en-us/blog/authors/chloe-cartron",{"name":1787,"config":1788},"Chloe Cartron",{"headshot":1789},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":697,"gitlabHandle":1791},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1796,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1797,"config":1802,"_id":1803,"_type":33,"title":1798,"_source":35,"_file":1804,"_stem":1805,"_extension":38},"/en-us/blog/authors/chloe-whitestone",{"name":1798,"config":1799},"Chloe Whitestone",{"headshot":1800,"ctfId":1801},"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":1807,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1808,"config":1813,"_id":1814,"_type":33,"title":1809,"_source":35,"_file":1815,"_stem":1816,"_extension":38},"/en-us/blog/authors/chris-balane",{"name":1809,"config":1810},"Chris Balane",{"headshot":1811,"ctfId":1812},"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":1818,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1819,"config":1823,"_id":1824,"_type":33,"title":1820,"_source":35,"_file":1825,"_stem":1826,"_extension":38},"/en-us/blog/authors/chris-baus",{"name":1820,"config":1821},"Chris Baus",{"headshot":7,"ctfId":1822},"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":1828,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1829,"config":1834,"_id":1835,"_type":33,"title":1830,"_source":35,"_file":1836,"_stem":1837,"_extension":38},"/en-us/blog/authors/chris-micek",{"name":1830,"config":1831},"Chris Micek",{"headshot":1832,"ctfId":1833},"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":1839,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1840,"config":1845,"_id":1846,"_type":33,"title":1841,"_source":35,"_file":1847,"_stem":1848,"_extension":38},"/en-us/blog/authors/chris-moberly",{"name":1841,"config":1842},"Chris Moberly",{"headshot":1843,"ctfId":1844},"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":1850,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1851,"config":1855,"_id":1856,"_type":33,"title":1857,"_source":35,"_file":1858,"_stem":1859,"_extension":38},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1852,"config":1853},"Chris Sterry, Dotscience",{"headshot":728,"ctfId":1854},"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":1861,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1862,"config":1866,"_id":1867,"_type":33,"title":1863,"_source":35,"_file":1868,"_stem":1869,"_extension":38},"/en-us/blog/authors/chris-ward",{"name":1863,"config":1864},"Chris Ward",{"headshot":7,"ctfId":1865},"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":1871,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1872,"config":1879,"_id":1880,"_type":33,"title":1874,"_source":35,"_file":1881,"_stem":1882,"_extension":38},"/en-us/blog/authors/chris-weber",{"role":1873,"name":1874,"config":1875},"CRO ","Chris Weber",{"headshot":1876,"linkedin":1877,"ctfId":1878},"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":1884,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1885,"config":1889,"_id":1890,"_type":33,"title":1886,"_source":35,"_file":1891,"_stem":1892,"_extension":38},"/en-us/blog/authors/chrissie-buchanan",{"name":1886,"config":1887},"Chrissie Buchanan",{"headshot":728,"ctfId":1888},"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":1894,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1895,"config":1900,"_id":1901,"_type":33,"title":1896,"_source":35,"_file":1902,"_stem":1903,"_extension":38},"/en-us/blog/authors/christen-dybenko",{"name":1896,"config":1897},"Christen Dybenko",{"headshot":1898,"ctfId":1899},"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":1905,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1906,"config":1911,"_id":1912,"_type":33,"title":1907,"_source":35,"_file":1913,"_stem":1914,"_extension":38},"/en-us/blog/authors/christian-couder",{"name":1907,"config":1908},"Christian Couder",{"headshot":1909,"ctfId":1910},"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":1916,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1917,"config":1922,"_id":1923,"_type":33,"title":1918,"_source":35,"_file":1924,"_stem":1925,"_extension":38},"/en-us/blog/authors/christian-nnachi",{"name":1918,"config":1919},"Christian Nnachi",{"headshot":1920,"ctfId":1921},"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":1927,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1928,"config":1932,"_id":1933,"_type":33,"title":1929,"_source":35,"_file":1934,"_stem":1935,"_extension":38},"/en-us/blog/authors/christian-simko",{"name":1929,"config":1930},"Christian Simko",{"headshot":7,"ctfId":1931},"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":1937,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1938,"config":1943,"_id":1944,"_type":33,"title":1939,"_source":35,"_file":1945,"_stem":1946,"_extension":38},"/en-us/blog/authors/christie-lenneville",{"name":1939,"config":1940},"Christie Lenneville",{"headshot":1941,"ctfId":1942},"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":1948,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1949,"config":1953,"_id":1954,"_type":33,"title":1955,"_source":35,"_file":1956,"_stem":1957,"_extension":38},"/en-us/blog/authors/christina-hupy-phd",{"name":1950,"config":1951},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1952},"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":1959,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1960,"config":1965,"_id":1966,"_type":33,"title":1961,"_source":35,"_file":1967,"_stem":1968,"_extension":38},"/en-us/blog/authors/christina-lohr",{"name":1961,"config":1962},"Christina Lohr",{"headshot":1963,"ctfId":1964},"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":1970,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1971,"config":1975,"_id":1976,"_type":33,"title":1972,"_source":35,"_file":1977,"_stem":1978,"_extension":38},"/en-us/blog/authors/christine-yoshida",{"name":1972,"config":1973},"Christine Yoshida",{"headshot":7,"ctfId":1974},"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":1980,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1981,"config":1985,"_id":1986,"_type":33,"title":1982,"_source":35,"_file":1987,"_stem":1988,"_extension":38},"/en-us/blog/authors/christopher-watson",{"name":1982,"config":1983},"Christopher Watson",{"headshot":728,"ctfId":1984},"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":1990,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":1991,"config":1995,"_id":1996,"_type":33,"title":1992,"_source":35,"_file":1997,"_stem":1998,"_extension":38},"/en-us/blog/authors/christos-bacharakis",{"name":1992,"config":1993},"Christos Bacharakis",{"headshot":728,"ctfId":1994},"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":2000,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2001,"config":2005,"_id":2006,"_type":33,"title":2002,"_source":35,"_file":2007,"_stem":2008,"_extension":38},"/en-us/blog/authors/cindy-blake",{"name":2002,"config":2003},"Cindy Blake",{"headshot":728,"ctfId":2004},"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":2010,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2011,"config":2016,"_id":2017,"_type":33,"title":2012,"_source":35,"_file":2018,"_stem":2019,"_extension":38},"/en-us/blog/authors/claire-champernowne",{"name":2012,"config":2013},"Claire Champernowne",{"headshot":2014,"ctfId":2015},"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":2021,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2022,"config":2026,"_id":2027,"_type":33,"title":2023,"_source":35,"_file":2028,"_stem":2029,"_extension":38},"/en-us/blog/authors/clement-ho",{"name":2023,"config":2024},"Clement Ho",{"headshot":7,"ctfId":2025},"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":2031,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2032,"config":2036,"_id":2037,"_type":33,"title":2033,"_source":35,"_file":2038,"_stem":2039,"_extension":38},"/en-us/blog/authors/colin-fletcher",{"name":2033,"config":2034},"Colin Fletcher",{"headshot":7,"ctfId":2035},"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":2041,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2042,"config":2047,"_id":2048,"_type":33,"title":2043,"_source":35,"_file":2049,"_stem":2050,"_extension":38},"/en-us/blog/authors/connor-gilbert",{"name":2043,"config":2044},"Connor Gilbert",{"headshot":2045,"ctfId":2046},"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":2052,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2053,"config":2057,"_id":2058,"_type":33,"title":2054,"_source":35,"_file":2059,"_stem":2060,"_extension":38},"/en-us/blog/authors/connor-shea",{"name":2054,"config":2055},"Connor Shea",{"headshot":728,"ctfId":2056},"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":2062,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2063,"config":2068,"_id":2069,"_type":33,"title":2064,"_source":35,"_file":2070,"_stem":2071,"_extension":38},"/en-us/blog/authors/corey-oas",{"name":2064,"config":2065},"Corey Oas",{"headshot":2066,"ctfId":2067},"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":2073,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2074,"config":2078,"_id":2079,"_type":33,"title":2075,"_source":35,"_file":2080,"_stem":2081,"_extension":38},"/en-us/blog/authors/cormac-foster",{"name":2075,"config":2076},"Cormac Foster",{"headshot":7,"ctfId":2077},"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":2083,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2084,"config":2089,"_id":2090,"_type":33,"title":2085,"_source":35,"_file":2091,"_stem":2092,"_extension":38},"/en-us/blog/authors/costel-maxim",{"name":2085,"config":2086},"Costel Maxim",{"headshot":2087,"ctfId":2088},"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":2094,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2095,"config":2100,"_id":2101,"_type":33,"title":2096,"_source":35,"_file":2102,"_stem":2103,"_extension":38},"/en-us/blog/authors/courtney-meddaugh",{"name":2096,"config":2097},"Courtney Meddaugh",{"headshot":2098,"ctfId":2099},"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":2105,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2106,"config":2110,"_id":2111,"_type":33,"title":2107,"_source":35,"_file":2112,"_stem":2113,"_extension":38},"/en-us/blog/authors/craig-gomes",{"name":2107,"config":2108},"Craig Gomes",{"headshot":7,"ctfId":2109},"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":2115,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2116,"config":2121,"_id":2122,"_type":33,"title":2117,"_source":35,"_file":2123,"_stem":2124,"_extension":38},"/en-us/blog/authors/craig-miskell",{"name":2117,"config":2118},"Craig Miskell",{"headshot":2119,"ctfId":2120},"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":2126,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2127,"config":2131,"_id":2132,"_type":33,"title":2128,"_source":35,"_file":2133,"_stem":2134,"_extension":38},"/en-us/blog/authors/creighton-swank",{"name":2128,"config":2129},"Creighton Swank",{"headshot":728,"ctfId":2130},"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":2136,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2137,"config":2141,"_id":2142,"_type":33,"title":2138,"_source":35,"_file":2143,"_stem":2144,"_extension":38},"/en-us/blog/authors/daisy-miclat",{"name":2138,"config":2139},"Daisy Miclat",{"headshot":728,"ctfId":2140},"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":2146,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2147,"config":2151,"_id":2152,"_type":33,"title":2148,"_source":35,"_file":2153,"_stem":2154,"_extension":38},"/en-us/blog/authors/dan-luhring",{"name":2148,"config":2149},"Dan Luhring",{"headshot":7,"ctfId":2150},"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":2156,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2157,"config":2162,"_id":2163,"_type":33,"title":2158,"_source":35,"_file":2164,"_stem":2165,"_extension":38},"/en-us/blog/authors/dan-rabinovitz",{"name":2158,"config":2159},"Dan Rabinovitz",{"headshot":2160,"ctfId":2161},"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":2167,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2168,"config":2172,"_id":2173,"_type":33,"title":2169,"_source":35,"_file":2174,"_stem":2175,"_extension":38},"/en-us/blog/authors/daniel-berman",{"name":2169,"config":2170},"Daniel Berman",{"headshot":728,"ctfId":2171},"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":2177,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2178,"config":2182,"_id":2183,"_type":33,"title":2179,"_source":35,"_file":2184,"_stem":2185,"_extension":38},"/en-us/blog/authors/daniel-gruesso",{"name":2179,"config":2180},"Daniel Gruesso",{"headshot":7,"ctfId":2181},"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":2187,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2188,"config":2193,"_id":2194,"_type":33,"title":2189,"_source":35,"_file":2195,"_stem":2196,"_extension":38},"/en-us/blog/authors/daniel-hauenstein",{"name":2189,"config":2190},"Daniel Hauenstein",{"headshot":2191,"ctfId":2192},"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":2198,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2199,"config":2204,"_id":2205,"_type":33,"title":2200,"_source":35,"_file":2206,"_stem":2207,"_extension":38},"/en-us/blog/authors/daniel-helfand",{"name":2200,"config":2201},"Daniel Helfand",{"headshot":2202,"ctfId":2203},"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":2209,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2210,"config":2214,"_id":2215,"_type":33,"title":2211,"_source":35,"_file":2216,"_stem":2217,"_extension":38},"/en-us/blog/authors/daniel-mora",{"name":2211,"config":2212},"Daniel Mora",{"headshot":7,"ctfId":2213},"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":2219,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2220,"config":2224,"_id":2226,"_type":33,"title":2221,"_source":35,"_file":2227,"_stem":2228,"_extension":38},"/en-us/blog/authors/daniel-murphy",{"name":2221,"config":2222},"Daniel Murphy",{"headshot":2223},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":697,"gitlabHandle":2225},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2230,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2231,"config":2236,"_id":2237,"_type":33,"title":2232,"_source":35,"_file":2238,"_stem":2239,"_extension":38},"/en-us/blog/authors/darby-frey",{"name":2232,"config":2233},"Darby Frey",{"headshot":2234,"ctfId":2235},"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":2241,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2242,"config":2247,"_id":2248,"_type":33,"title":2243,"_source":35,"_file":2249,"_stem":2250,"_extension":38},"/en-us/blog/authors/darren-eastman",{"name":2243,"config":2244},"Darren Eastman",{"headshot":2245,"ctfId":2246},"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":2252,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2253,"config":2257,"_id":2258,"_type":33,"title":2254,"_source":35,"_file":2259,"_stem":2260,"_extension":38},"/en-us/blog/authors/darren-murph",{"name":2254,"config":2255},"Darren Murph",{"headshot":7,"ctfId":2256},"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":2262,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2263,"config":2270,"_id":2271,"_type":33,"title":2265,"_source":35,"_file":2272,"_stem":2273,"_extension":38},"/en-us/blog/authors/darwin-sanoy",{"role":2264,"name":2265,"config":2266},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2267,"linkedin":2268,"ctfId":2269},"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":2275,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2276,"config":2281,"_id":2282,"_type":33,"title":2277,"_source":35,"_file":2283,"_stem":2284,"_extension":38},"/en-us/blog/authors/dave-steer",{"name":2277,"config":2278},"Dave Steer",{"headshot":2279,"ctfId":2280},"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":2286,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2287,"config":2291,"_id":2292,"_type":33,"title":2288,"_source":35,"_file":2293,"_stem":2294,"_extension":38},"/en-us/blog/authors/dave-wentzel",{"name":2288,"config":2289},"Dave Wentzel",{"headshot":728,"ctfId":2290},"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":2296,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2297,"config":2302,"_id":2303,"_type":33,"title":2304,"_source":35,"_file":2305,"_stem":2306,"_extension":38},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2298,"config":2299},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2300,"ctfId":2301},"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":2308,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2309,"config":2314,"_id":2315,"_type":33,"title":2316,"_source":35,"_file":2317,"_stem":2318,"_extension":38},"/en-us/blog/authors/david-oregan",{"name":2310,"config":2311},"David O'Regan",{"headshot":2312,"ctfId":2313},"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":2320,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2321,"config":2325,"_id":2326,"_type":33,"title":2322,"_source":35,"_file":2327,"_stem":2328,"_extension":38},"/en-us/blog/authors/david-planella",{"name":2322,"config":2323},"David Planella",{"headshot":728,"ctfId":2324},"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":2330,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2331,"config":2335,"_id":2336,"_type":33,"title":2332,"_source":35,"_file":2337,"_stem":2338,"_extension":38},"/en-us/blog/authors/david-russell",{"name":2332,"config":2333},"David Russell",{"headshot":728,"ctfId":2334},"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":2340,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2341,"config":2346,"_id":2347,"_type":33,"title":2342,"_source":35,"_file":2348,"_stem":2349,"_extension":38},"/en-us/blog/authors/david-smith",{"name":2342,"config":2343},"David Smith",{"headshot":2344,"ctfId":2345},"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":2351,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2352,"config":2356,"_id":2357,"_type":33,"title":2353,"_source":35,"_file":2358,"_stem":2359,"_extension":38},"/en-us/blog/authors/davis-townsend",{"name":2353,"config":2354},"Davis Townsend",{"headshot":7,"ctfId":2355},"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":2361,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2362,"config":2366,"_id":2368,"_type":33,"title":2363,"_source":35,"_file":2369,"_stem":2370,"_extension":38},"/en-us/blog/authors/davoud-tu",{"name":2363,"config":2364},"Davoud Tu",{"headshot":2365},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":697,"gitlabHandle":2367},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2372,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2373,"config":2378,"_id":2379,"_type":33,"title":2380,"_source":35,"_file":2381,"_stem":2382,"_extension":38},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2374,"config":2375},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2376,"ctfId":2377},"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":2384,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2385,"config":2390,"_id":2391,"_type":33,"title":2386,"_source":35,"_file":2392,"_stem":2393,"_extension":38},"/en-us/blog/authors/deepa-mahalingam",{"name":2386,"config":2387},"Deepa Mahalingam",{"headshot":2388,"ctfId":2389},"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":2395,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2396,"config":2401,"_id":2402,"_type":33,"title":2397,"_source":35,"_file":2403,"_stem":2404,"_extension":38},"/en-us/blog/authors/dennis-appelt",{"name":2397,"config":2398},"Dennis Appelt",{"headshot":2399,"ctfId":2400},"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":2406,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2407,"config":2412,"_id":2413,"_type":33,"title":2408,"_source":35,"_file":2414,"_stem":2415,"_extension":38},"/en-us/blog/authors/dennis-tang",{"name":2408,"config":2409},"Dennis Tang",{"headshot":2410,"ctfId":2411},"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":2417,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2418,"config":2422,"_id":2424,"_type":33,"title":2425,"_source":35,"_file":2426,"_stem":2427,"_extension":38},"/en-us/blog/authors/dennis-van-rooijen",{"name":2419,"config":2420},"Dennis van Rooijen",{"headshot":2421},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":697,"gitlabHandle":2423},"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":2429,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2430,"config":2435,"_id":2436,"_type":33,"title":2431,"_source":35,"_file":2437,"_stem":2438,"_extension":38},"/en-us/blog/authors/devin-sylva",{"name":2431,"config":2432},"Devin Sylva",{"headshot":2433,"ctfId":2434},"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":2440,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2441,"config":2445,"_id":2446,"_type":33,"title":2442,"_source":35,"_file":2447,"_stem":2448,"_extension":38},"/en-us/blog/authors/dhruv-jain",{"name":2442,"config":2443},"Dhruv Jain",{"headshot":728,"ctfId":2444},"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":2450,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2451,"config":2455,"_id":2456,"_type":33,"title":2452,"_source":35,"_file":2457,"_stem":2458,"_extension":38},"/en-us/blog/authors/diana-logan",{"name":2452,"config":2453},"Diana Logan",{"headshot":728,"ctfId":2454},"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":2460,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2461,"config":2466,"_id":2467,"_type":33,"title":2462,"_source":35,"_file":2468,"_stem":2469,"_extension":38},"/en-us/blog/authors/dilan-orrino",{"name":2462,"config":2463},"Dilan Orrino",{"headshot":2464,"ctfId":2465},"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":2471,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2472,"config":2476,"_id":2477,"_type":33,"title":2473,"_source":35,"_file":2478,"_stem":2479,"_extension":38},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2473,"config":2474},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2475},"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":2481,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2482,"config":2486,"_id":2487,"_type":33,"title":2483,"_source":35,"_file":2488,"_stem":2489,"_extension":38},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2483,"config":2484},"Dinesh Bolkensteyn",{"headshot":728,"ctfId":2485},"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":2491,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2492,"config":2496,"_id":2497,"_type":33,"title":2498,"_source":35,"_file":2499,"_stem":2500,"_extension":38},"/en-us/blog/authors/dj-mountney",{"name":2493,"config":2494},"DJ Mountney",{"headshot":728,"ctfId":2495},"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":2502,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2503,"config":2507,"_id":2508,"_type":33,"title":2509,"_source":35,"_file":2510,"_stem":2511,"_extension":38},"/en-us/blog/authors/dmitriy-job",{"name":2504,"config":2505},"Dmitriy, Job",{"headshot":728,"ctfId":2506},"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":2513,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2514,"config":2518,"_id":2519,"_type":33,"title":2515,"_source":35,"_file":2520,"_stem":2521,"_extension":38},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2515,"config":2516},"Dmitriy Zaporozhets",{"headshot":728,"ctfId":2517},"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":2523,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2524,"config":2529,"_id":2530,"_type":33,"title":2525,"_source":35,"_file":2531,"_stem":2532,"_extension":38},"/en-us/blog/authors/dmitry-gruzd",{"name":2525,"config":2526},"Dmitry Gruzd",{"headshot":2527,"ctfId":2528},"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":2534,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2535,"config":2540,"_id":2541,"_type":33,"title":2536,"_source":35,"_file":2542,"_stem":2543,"_extension":38},"/en-us/blog/authors/dominic-couture",{"name":2536,"config":2537},"Dominic Couture",{"headshot":2538,"ctfId":2539},"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":2545,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2546,"config":2550,"_id":2551,"_type":33,"title":2547,"_source":35,"_file":2552,"_stem":2553,"_extension":38},"/en-us/blog/authors/douglas-alexandre",{"name":2547,"config":2548},"Douglas Alexandre",{"headshot":728,"ctfId":2549},"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":2555,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2556,"config":2560,"_id":2561,"_type":33,"title":2557,"_source":35,"_file":2562,"_stem":2563,"_extension":38},"/en-us/blog/authors/douwe-maan",{"name":2557,"config":2558},"Douwe Maan",{"headshot":7,"ctfId":2559},"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":2565,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2566,"config":2571,"_id":2572,"_type":33,"title":2567,"_source":35,"_file":2573,"_stem":2574,"_extension":38},"/en-us/blog/authors/dov-hershkovitch",{"name":2567,"config":2568},"Dov Hershkovitch",{"headshot":2569,"ctfId":2570},"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":2576,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2577,"config":2581,"_id":2582,"_type":33,"title":2583,"_source":35,"_file":2584,"_stem":2585,"_extension":38},"/en-us/blog/authors/dr-elle-obrien",{"name":2578,"config":2579},"Dr. Elle O'Brien",{"headshot":728,"ctfId":2580},"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":2587,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2588,"config":2592,"_id":2593,"_type":33,"title":2589,"_source":35,"_file":2594,"_stem":2595,"_extension":38},"/en-us/blog/authors/drew-blessing",{"name":2589,"config":2590},"Drew Blessing",{"headshot":728,"ctfId":2591},"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":2597,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2598,"config":2603,"_id":2604,"_type":33,"title":2599,"_source":35,"_file":2605,"_stem":2606,"_extension":38},"/en-us/blog/authors/dylan-griffith",{"name":2599,"config":2600},"Dylan Griffith",{"headshot":2601,"ctfId":2602},"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":2608,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2609,"config":2613,"_id":2614,"_type":33,"title":2610,"_source":35,"_file":2615,"_stem":2616,"_extension":38},"/en-us/blog/authors/eddie-glenn",{"name":2610,"config":2611},"Eddie Glenn",{"headshot":7,"ctfId":2612},"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":2618,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2619,"config":2624,"_id":2625,"_type":33,"title":2620,"_source":35,"_file":2626,"_stem":2627,"_extension":38},"/en-us/blog/authors/eduardo-bonet",{"name":2620,"config":2621},"Eduardo Bonet",{"headshot":2622,"ctfId":2623},"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":2629,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2630,"config":2635,"_id":2636,"_type":33,"title":2631,"_source":35,"_file":2637,"_stem":2638,"_extension":38},"/en-us/blog/authors/eliran-mesika",{"name":2631,"config":2632},"Eliran Mesika",{"headshot":2633,"ctfId":2634},"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":2640,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2641,"config":2646,"_id":2647,"_type":33,"title":2642,"_source":35,"_file":2648,"_stem":2649,"_extension":38},"/en-us/blog/authors/elisabeth-burrows",{"name":2642,"config":2643},"Elisabeth Burrows",{"headshot":2644,"ctfId":2645},"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":2651,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2652,"config":2656,"_id":2657,"_type":33,"title":2653,"_source":35,"_file":2658,"_stem":2659,"_extension":38},"/en-us/blog/authors/elliot-rushton",{"name":2653,"config":2654},"Elliot Rushton",{"headshot":7,"ctfId":2655},"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":2661,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2662,"config":2666,"_id":2667,"_type":33,"title":2663,"_source":35,"_file":2668,"_stem":2669,"_extension":38},"/en-us/blog/authors/emilie-schario",{"name":2663,"config":2664},"Emilie Schario",{"headshot":7,"ctfId":2665},"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":2671,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2672,"config":2677,"_id":2678,"_type":33,"title":2673,"_source":35,"_file":2679,"_stem":2680,"_extension":38},"/en-us/blog/authors/emilio-salvador",{"name":2673,"config":2674},"Emilio Salvador",{"headshot":2675,"ctfId":2676},"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":2682,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2683,"config":2688,"_id":2689,"_type":33,"title":2684,"_source":35,"_file":2690,"_stem":2691,"_extension":38},"/en-us/blog/authors/emily-bauman",{"name":2684,"config":2685},"Emily Bauman",{"headshot":2686,"ctfId":2687},"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":2693,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2694,"config":2698,"_id":2699,"_type":33,"title":2695,"_source":35,"_file":2700,"_stem":2701,"_extension":38},"/en-us/blog/authors/emily-chin",{"name":2695,"config":2696},"Emily Chin",{"headshot":7,"ctfId":2697},"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":2703,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2704,"config":2708,"_id":2709,"_type":33,"title":2705,"_source":35,"_file":2710,"_stem":2711,"_extension":38},"/en-us/blog/authors/emily-kyle",{"name":2705,"config":2706},"Emily Kyle",{"headshot":728,"ctfId":2707},"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":2713,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2714,"config":2718,"_id":2719,"_type":33,"title":2720,"_source":35,"_file":2721,"_stem":2722,"_extension":38},"/en-us/blog/authors/emily-von-hoffmann",{"name":2715,"config":2716},"Emily von Hoffmann",{"headshot":728,"ctfId":2717},"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":2724,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2725,"config":2730,"_id":2731,"_type":33,"title":2732,"_source":35,"_file":2733,"_stem":2734,"_extension":38},"/en-us/blog/authors/enrique-alcntara",{"name":2726,"config":2727},"Enrique Alcántara",{"headshot":2728,"ctfId":2729},"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":2736,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2737,"config":2741,"_id":2742,"_type":33,"title":2738,"_source":35,"_file":2743,"_stem":2744,"_extension":38},"/en-us/blog/authors/eric-brinkman",{"name":2738,"config":2739},"Eric Brinkman",{"headshot":7,"ctfId":2740},"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":2746,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2747,"config":2751,"_id":2752,"_type":33,"title":2748,"_source":35,"_file":2753,"_stem":2754,"_extension":38},"/en-us/blog/authors/eric-eastwood",{"name":2748,"config":2749},"Eric Eastwood",{"headshot":7,"ctfId":2750},"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":2756,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2757,"config":2761,"_id":2762,"_type":33,"title":2758,"_source":35,"_file":2763,"_stem":2764,"_extension":38},"/en-us/blog/authors/eric-rosenberg",{"name":2758,"config":2759},"Eric Rosenberg",{"headshot":7,"ctfId":2760},"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":2766,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2767,"config":2772,"_id":2773,"_type":33,"title":2768,"_source":35,"_file":2774,"_stem":2775,"_extension":38},"/en-us/blog/authors/eric-rubin",{"name":2768,"config":2769},"Eric Rubin",{"headshot":2770,"ctfId":2771},"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":2777,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2778,"config":2783,"_id":2784,"_type":33,"title":2779,"_source":35,"_file":2785,"_stem":2786,"_extension":38},"/en-us/blog/authors/eric-schurter",{"name":2779,"config":2780},"Eric Schurter",{"headshot":2781,"ctfId":2782},"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":2788,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2789,"config":2793,"_id":2794,"_type":33,"title":2790,"_source":35,"_file":2795,"_stem":2796,"_extension":38},"/en-us/blog/authors/erica-huang",{"name":2790,"config":2791},"Erica Huang",{"headshot":7,"ctfId":2792},"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":2798,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2799,"config":2803,"_id":2804,"_type":33,"title":2800,"_source":35,"_file":2805,"_stem":2806,"_extension":38},"/en-us/blog/authors/erica-lindberg",{"name":2800,"config":2801},"Erica Lindberg",{"headshot":728,"ctfId":2802},"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":2808,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2809,"config":2813,"_id":2814,"_type":33,"title":2810,"_source":35,"_file":2815,"_stem":2816,"_extension":38},"/en-us/blog/authors/erich-wegscheider",{"name":2810,"config":2811},"Erich Wegscheider",{"headshot":7,"ctfId":2812},"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":2818,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2819,"config":2823,"_id":2824,"_type":33,"title":2820,"_source":35,"_file":2825,"_stem":2826,"_extension":38},"/en-us/blog/authors/erick-banks",{"name":2820,"config":2821},"Erick Banks",{"headshot":728,"ctfId":2822},"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":2828,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2829,"config":2833,"_id":2834,"_type":33,"title":2830,"_source":35,"_file":2835,"_stem":2836,"_extension":38},"/en-us/blog/authors/erika-feldman",{"name":2830,"config":2831},"Erika Feldman",{"headshot":728,"ctfId":2832},"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":2838,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2839,"config":2843,"_id":2844,"_type":33,"title":2845,"_source":35,"_file":2846,"_stem":2847,"_extension":38},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2840,"config":2841},"Erin Krengel, Pulumi",{"headshot":728,"ctfId":2842},"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":2849,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2850,"config":2854,"_id":2855,"_type":33,"title":2856,"_source":35,"_file":2857,"_stem":2858,"_extension":38},"/en-us/blog/authors/ernst-van-nierop",{"name":2851,"config":2852},"Ernst van Nierop",{"headshot":7,"ctfId":2853},"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":2860,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2861,"config":2865,"_id":2866,"_type":33,"title":2862,"_source":35,"_file":2867,"_stem":2868,"_extension":38},"/en-us/blog/authors/esther-shein",{"name":2862,"config":2863},"Esther Shein",{"headshot":728,"ctfId":2864},"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":2870,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2871,"config":2876,"_id":2877,"_type":33,"title":2872,"_source":35,"_file":2878,"_stem":2879,"_extension":38},"/en-us/blog/authors/ethan-strike",{"name":2872,"config":2873},"Ethan Strike",{"headshot":2874,"ctfId":2875},"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":2881,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2882,"config":2886,"_id":2887,"_type":33,"title":2883,"_source":35,"_file":2888,"_stem":2889,"_extension":38},"/en-us/blog/authors/ethan-urie",{"name":2883,"config":2884},"Ethan Urie",{"headshot":728,"ctfId":2885},"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":2891,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2892,"config":2896,"_id":2897,"_type":33,"title":2893,"_source":35,"_file":2898,"_stem":2899,"_extension":38},"/en-us/blog/authors/eugene-lim",{"name":2893,"config":2894},"Eugene Lim",{"headshot":728,"ctfId":2895},"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":2901,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2902,"config":2906,"_id":2907,"_type":33,"title":2903,"_source":35,"_file":2908,"_stem":2909,"_extension":38},"/en-us/blog/authors/eugenia-hannon",{"name":2903,"config":2904},"Eugenia Hannon",{"headshot":7,"ctfId":2905},"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":2911,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2912,"config":2916,"_id":2917,"_type":33,"title":2913,"_source":35,"_file":2918,"_stem":2919,"_extension":38},"/en-us/blog/authors/ev-kontsevoy",{"name":2913,"config":2914},"Ev Kontsevoy",{"headshot":7,"ctfId":2915},"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":2921,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2922,"config":2926,"_id":2927,"_type":33,"title":2923,"_source":35,"_file":2928,"_stem":2929,"_extension":38},"/en-us/blog/authors/eva-sasson",{"name":2923,"config":2924},"Eva Sasson",{"headshot":728,"ctfId":2925},"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":2931,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2932,"config":2937,"_id":2938,"_type":33,"title":2933,"_source":35,"_file":2939,"_stem":2940,"_extension":38},"/en-us/blog/authors/fabian-zimmer",{"name":2933,"config":2934},"Fabian Zimmer",{"headshot":2935,"ctfId":2936},"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":2942,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2943,"config":2947,"_id":2948,"_type":33,"title":2944,"_source":35,"_file":2949,"_stem":2950,"_extension":38},"/en-us/blog/authors/fabio-akita",{"name":2944,"config":2945},"Fabio Akita",{"headshot":728,"ctfId":2946},"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":2952,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2953,"config":2957,"_id":2958,"_type":33,"title":2954,"_source":35,"_file":2959,"_stem":2960,"_extension":38},"/en-us/blog/authors/fabio-busatto",{"name":2954,"config":2955},"Fabio Busatto",{"headshot":7,"ctfId":2956},"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":2962,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2963,"config":2968,"_id":2969,"_type":33,"title":2964,"_source":35,"_file":2970,"_stem":2971,"_extension":38},"/en-us/blog/authors/fabio-pitino",{"name":2964,"config":2965},"Fabio Pitino",{"headshot":2966,"ctfId":2967},"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":2973,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2974,"config":2978,"_id":2979,"_type":33,"title":2975,"_source":35,"_file":2980,"_stem":2981,"_extension":38},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2975,"config":2976},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2977},"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":2983,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2984,"config":2988,"_id":2989,"_type":33,"title":2985,"_source":35,"_file":2990,"_stem":2991,"_extension":38},"/en-us/blog/authors/fatih-acet",{"name":2985,"config":2986},"Fatih Acet",{"headshot":7,"ctfId":2987},"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":2993,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":2994,"config":2999,"_id":3000,"_type":33,"title":2995,"_source":35,"_file":3001,"_stem":3002,"_extension":38},"/en-us/blog/authors/fatima-sarah-khalid",{"name":2995,"config":2996},"Fatima Sarah Khalid",{"headshot":2997,"ctfId":2998},"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":3004,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3005,"config":3010,"_id":3011,"_type":33,"title":3006,"_source":35,"_file":3012,"_stem":3013,"_extension":38},"/en-us/blog/authors/fernando-diaz",{"name":3006,"config":3007},"Fernando Diaz",{"headshot":3008,"ctfId":3009},"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":3015,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3016,"config":3020,"_id":3021,"_type":33,"title":3017,"_source":35,"_file":3022,"_stem":3023,"_extension":38},"/en-us/blog/authors/filipa-lacerda",{"name":3017,"config":3018},"Filipa Lacerda",{"headshot":7,"ctfId":3019},"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":3025,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3026,"config":3031,"_id":3032,"_type":33,"title":3033,"_source":35,"_file":3034,"_stem":3035,"_extension":38},"/en-us/blog/authors/flix-veillette-potvin",{"name":3027,"config":3028}," Félix Veillette-Potvin",{"headshot":3029,"ctfId":3030},"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":3037,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3038,"config":3042,"_id":3043,"_type":33,"title":3039,"_source":35,"_file":3044,"_stem":3045,"_extension":38},"/en-us/blog/authors/forrest-brazeal",{"name":3039,"config":3040},"Forrest Brazeal",{"headshot":7,"ctfId":3041},"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":3047,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3048,"config":3052,"_id":3053,"_type":33,"title":3049,"_source":35,"_file":3054,"_stem":3055,"_extension":38},"/en-us/blog/authors/francis-ofungwu",{"name":3049,"config":3050},"Francis Ofungwu",{"headshot":728,"ctfId":3051},"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":3057,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3058,"config":3063,"_id":3064,"_type":33,"title":3065,"_source":35,"_file":3066,"_stem":3067,"_extension":38},"/en-us/blog/authors/frdric-caplette",{"name":3059,"config":3060},"Frédéric Caplette",{"headshot":3061,"ctfId":3062},"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":3069,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3070,"config":3075,"_id":3076,"_type":33,"title":3071,"_source":35,"_file":3077,"_stem":3078,"_extension":38},"/en-us/blog/authors/gabe-weaver",{"name":3071,"config":3072},"Gabe Weaver",{"headshot":3073,"ctfId":3074},"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":3080,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3081,"config":3086,"_id":3087,"_type":33,"title":3082,"_source":35,"_file":3088,"_stem":3089,"_extension":38},"/en-us/blog/authors/gabriel-engel",{"name":3082,"config":3083},"Gabriel Engel",{"headshot":3084,"ctfId":3085},"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":3091,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3092,"config":3096,"_id":3097,"_type":33,"title":3093,"_source":35,"_file":3098,"_stem":3099,"_extension":38},"/en-us/blog/authors/gabriel-le-breton",{"name":3093,"config":3094},"Gabriel Le Breton",{"headshot":728,"ctfId":3095},"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":3101,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3102,"config":3107,"_id":3108,"_type":33,"title":3103,"_source":35,"_file":3109,"_stem":3110,"_extension":38},"/en-us/blog/authors/gabriel-mazetto",{"name":3103,"config":3104},"Gabriel Mazetto",{"headshot":3105,"ctfId":3106},"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":3112,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3113,"config":3118,"_id":3119,"_type":33,"title":3114,"_source":35,"_file":3120,"_stem":3121,"_extension":38},"/en-us/blog/authors/gavin-peltz",{"name":3114,"config":3115},"Gavin Peltz",{"headshot":3116,"ctfId":3117},"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":3123,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3124,"config":3129,"_id":3130,"_type":33,"title":3125,"_source":35,"_file":3131,"_stem":3132,"_extension":38},"/en-us/blog/authors/george-kichukov",{"name":3125,"config":3126},"George Kichukov",{"headshot":3127,"ctfId":3128},"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":3134,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3135,"config":3139,"_id":3140,"_type":33,"title":3136,"_source":35,"_file":3141,"_stem":3142,"_extension":38},"/en-us/blog/authors/gerard-hickey",{"name":3136,"config":3137},"Gerard Hickey",{"headshot":7,"ctfId":3138},"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":3144,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3145,"config":3150,"_id":3151,"_type":33,"title":3152,"_source":35,"_file":3153,"_stem":3154,"_extension":38},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3146,"config":3147},"Gerardo Lopez-Fernandez",{"headshot":3148,"ctfId":3149},"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":3156,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3157,"config":3162,"_id":3163,"_type":33,"title":3158,"_source":35,"_file":3164,"_stem":3165,"_extension":38},"/en-us/blog/authors/gina-doyle",{"name":3158,"config":3159},"Gina Doyle",{"headshot":3160,"ctfId":3161},"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":3167,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3168,"config":3171,"_id":3172,"_type":33,"title":3173,"_source":35,"_file":3174,"_stem":3175,"_extension":38},"/en-us/blog/authors/gitlab",{"name":3169,"config":3170},"GitLab",{"headshot":728,"ctfId":3169},{"template":697},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3177,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3178,"config":3182,"_id":3183,"_type":33,"title":3184,"_source":35,"_file":3185,"_stem":3186,"_extension":38},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3179,"config":3180},"GitLab AI Assisted Group",{"headshot":728,"ctfId":3181},"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":3188,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3189,"config":3193,"_id":3194,"_type":33,"title":3195,"_source":35,"_file":3196,"_stem":3197,"_extension":38},"/en-us/blog/authors/gitlab-france-team",{"name":3190,"config":3191},"GitLab France Team",{"headshot":728,"ctfId":3192},"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":3199,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3200,"config":3204,"_id":3205,"_type":33,"title":3206,"_source":35,"_file":3207,"_stem":3208,"_extension":38},"/en-us/blog/authors/gitlab-germany-team",{"name":3201,"config":3202},"GitLab Germany Team",{"headshot":728,"ctfId":3203},"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":3210,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3211,"config":3215,"_id":3216,"_type":33,"title":3217,"_source":35,"_file":3218,"_stem":3219,"_extension":38},"/en-us/blog/authors/gitlab-japan-team",{"name":3212,"config":3213},"GitLab Japan Team",{"headshot":728,"ctfId":3214},"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":3221,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3222,"config":3226,"_id":3227,"_type":33,"title":3228,"_source":35,"_file":3229,"_stem":3230,"_extension":38},"/en-us/blog/authors/gitlab-security-team",{"name":3223,"config":3224},"GitLab Security Team",{"headshot":728,"ctfId":3225},"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":3232,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3233,"config":3237,"_id":3238,"_type":33,"title":3239,"_source":35,"_file":3240,"_stem":3241,"_extension":38},"/en-us/blog/authors/gitlab-team",{"name":3234,"config":3235},"GitLab Team",{"headshot":728,"ctfId":3236},"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":3243,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3244,"config":3248,"_id":3249,"_type":33,"title":3250,"_source":35,"_file":3251,"_stem":3252,"_extension":38},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3245,"config":3246},"GitLab Vulnerability Research Team",{"headshot":728,"ctfId":3247},"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":3254,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3255,"config":3259,"_id":3260,"_type":33,"title":3256,"_source":35,"_file":3261,"_stem":3262,"_extension":38},"/en-us/blog/authors/goetz-buerkle",{"name":3256,"config":3257},"Goetz Buerkle",{"headshot":728,"ctfId":3258},"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":3264,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3265,"config":3270,"_id":3271,"_type":33,"title":3266,"_source":35,"_file":3272,"_stem":3273,"_extension":38},"/en-us/blog/authors/gosia-ksionek",{"name":3266,"config":3267},"Gosia Ksionek",{"headshot":3268,"ctfId":3269},"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":3275,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3276,"config":3281,"_id":3282,"_type":33,"title":3277,"_source":35,"_file":3283,"_stem":3284,"_extension":38},"/en-us/blog/authors/grant-hickman",{"name":3277,"config":3278},"Grant Hickman",{"headshot":3279,"ctfId":3280},"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":3286,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3287,"config":3292,"_id":3293,"_type":33,"title":3288,"_source":35,"_file":3294,"_stem":3295,"_extension":38},"/en-us/blog/authors/grant-young",{"name":3288,"config":3289},"Grant Young",{"headshot":3290,"ctfId":3291},"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":3297,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3298,"config":3302,"_id":3303,"_type":33,"title":3299,"_source":35,"_file":3304,"_stem":3305,"_extension":38},"/en-us/blog/authors/greg-alfaro",{"name":3299,"config":3300},"Greg Alfaro",{"headshot":7,"ctfId":3301},"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":3307,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3308,"config":3312,"_id":3313,"_type":33,"title":3309,"_source":35,"_file":3314,"_stem":3315,"_extension":38},"/en-us/blog/authors/greg-johnson",{"name":3309,"config":3310},"Greg Johnson",{"headshot":7,"ctfId":3311},"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":3317,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3318,"config":3323,"_id":3324,"_type":33,"title":3319,"_source":35,"_file":3325,"_stem":3326,"_extension":38},"/en-us/blog/authors/greg-myers",{"name":3319,"config":3320},"Greg Myers",{"headshot":3321,"ctfId":3322},"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":3328,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3329,"config":3333,"_id":3334,"_type":33,"title":3330,"_source":35,"_file":3335,"_stem":3336,"_extension":38},"/en-us/blog/authors/grzegorz-bizon",{"name":3330,"config":3331},"Grzegorz Bizon",{"headshot":728,"ctfId":3332},"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":3338,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3339,"config":3343,"_id":3344,"_type":33,"title":3340,"_source":35,"_file":3345,"_stem":3346,"_extension":38},"/en-us/blog/authors/guenjun-yoo",{"name":3340,"config":3341},"Guenjun Yoo",{"headshot":7,"ctfId":3342},"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":3348,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3349,"config":3353,"_id":3354,"_type":33,"title":3355,"_source":35,"_file":3356,"_stem":3357,"_extension":38},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3350,"config":3351},"Guest author André Arko of Ruby Together",{"headshot":728,"ctfId":3352},"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":3359,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3360,"config":3364,"_id":3365,"_type":33,"title":3366,"_source":35,"_file":3367,"_stem":3368,"_extension":38},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3361,"config":3362},"Guest author André Miranda",{"headshot":728,"ctfId":3363},"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":3370,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3371,"config":3377,"_id":3378,"_type":33,"title":3379,"_source":35,"_file":3380,"_stem":3381,"_extension":38},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3372,"config":3373},"Gufran Yeşilyurt, OBSS",{"headshot":3374,"linkedin":3375,"ctfId":3376},"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":3383,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3384,"config":3388,"_id":3389,"_type":33,"title":3390,"_source":35,"_file":3391,"_stem":3392,"_extension":38},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3385,"config":3386},"Gustaw Fit of Zoopla",{"headshot":728,"ctfId":3387},"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":3394,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3395,"config":3399,"_id":3400,"_type":33,"title":3401,"_source":35,"_file":3402,"_stem":3403,"_extension":38},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3396,"config":3397},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":728,"ctfId":3398},"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":3405,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3406,"config":3410,"_id":3411,"_type":33,"title":3407,"_source":35,"_file":3412,"_stem":3413,"_extension":38},"/en-us/blog/authors/gyan-chawdhary",{"name":3407,"config":3408},"Gyan Chawdhary",{"headshot":728,"ctfId":3409},"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":3415,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3416,"config":3421,"_id":3422,"_type":33,"title":3417,"_source":35,"_file":3423,"_stem":3424,"_extension":38},"/en-us/blog/authors/haim-snir",{"name":3417,"config":3418},"Haim Snir",{"headshot":3419,"ctfId":3420},"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":3426,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3427,"config":3432,"_id":3433,"_type":33,"title":3434,"_source":35,"_file":3435,"_stem":3436,"_extension":38},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3428,"config":3429},"Hakeem Abdul-Razak",{"headshot":3430,"ctfId":3431},"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":3438,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3439,"config":3443,"_id":3445,"_type":33,"title":3440,"_source":35,"_file":3446,"_stem":3447,"_extension":38},"/en-us/blog/authors/halil-coban",{"name":3440,"config":3441},"Halil Coban",{"headshot":3442},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":697,"gitlabHandle":3444},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3449,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3450,"config":3455,"_id":3456,"_type":33,"title":3451,"_source":35,"_file":3457,"_stem":3458,"_extension":38},"/en-us/blog/authors/hannah-sutor",{"name":3451,"config":3452},"Hannah Sutor",{"headshot":3453,"ctfId":3454},"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":3460,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3461,"config":3466,"_id":3467,"_type":33,"title":3462,"_source":35,"_file":3468,"_stem":3469,"_extension":38},"/en-us/blog/authors/harjeet-sharma",{"name":3462,"config":3463},"Harjeet Sharma",{"headshot":3464,"ctfId":3465},"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":3471,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3472,"config":3476,"_id":3477,"_type":33,"title":3473,"_source":35,"_file":3478,"_stem":3479,"_extension":38},"/en-us/blog/authors/haydn-mackay",{"name":3473,"config":3474},"Haydn Mackay",{"headshot":728,"ctfId":3475},"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":3481,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3482,"config":3486,"_id":3487,"_type":33,"title":3483,"_source":35,"_file":3488,"_stem":3489,"_extension":38},"/en-us/blog/authors/hazel-yang",{"name":3483,"config":3484},"Hazel Yang",{"headshot":7,"ctfId":3485},"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":3491,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3492,"config":3496,"_id":3497,"_type":33,"title":3498,"_source":35,"_file":3499,"_stem":3500,"_extension":38},"/en-us/blog/authors/heather-mcnamee",{"name":3493,"config":3494},"Heather McNamee",{"headshot":728,"ctfId":3495},"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":3502,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3503,"config":3507,"_id":3508,"_type":33,"title":3504,"_source":35,"_file":3509,"_stem":3510,"_extension":38},"/en-us/blog/authors/heather-simpson",{"name":3504,"config":3505},"Heather Simpson",{"headshot":728,"ctfId":3506},"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":3512,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3513,"config":3518,"_id":3519,"_type":33,"title":3514,"_source":35,"_file":3520,"_stem":3521,"_extension":38},"/en-us/blog/authors/hillary-benson",{"name":3514,"config":3515},"Hillary Benson",{"headshot":3516,"ctfId":3517},"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":3523,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3524,"config":3528,"_id":3530,"_type":33,"title":3525,"_source":35,"_file":3531,"_stem":3532,"_extension":38},"/en-us/blog/authors/himanshu-kapoor",{"name":3525,"config":3526},"Himanshu Kapoor",{"headshot":3527},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":697,"gitlabHandle":3529},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3534,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3535,"config":3540,"_id":3541,"_type":33,"title":3536,"_source":35,"_file":3542,"_stem":3543,"_extension":38},"/en-us/blog/authors/hiroki-suezawa",{"name":3536,"config":3537},"Hiroki Suezawa",{"headshot":3538,"ctfId":3539},"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":3545,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3546,"config":3550,"_id":3551,"_type":33,"title":3547,"_source":35,"_file":3552,"_stem":3553,"_extension":38},"/en-us/blog/authors/holly-reynolds",{"name":3547,"config":3548},"Holly Reynolds",{"headshot":7,"ctfId":3549},"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":3555,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3556,"config":3560,"_id":3561,"_type":33,"title":3557,"_source":35,"_file":3562,"_stem":3563,"_extension":38},"/en-us/blog/authors/huldra",{"name":3557,"config":3558},"Huldra",{"headshot":7,"ctfId":3559},"huldra",{"template":697},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3565,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3566,"config":3570,"_id":3571,"_type":33,"title":3567,"_source":35,"_file":3572,"_stem":3573,"_extension":38},"/en-us/blog/authors/iain-camacho",{"name":3567,"config":3568},"Iain Camacho",{"headshot":7,"ctfId":3569},"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":3575,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3576,"config":3580,"_id":3581,"_type":33,"title":3577,"_source":35,"_file":3582,"_stem":3583,"_extension":38},"/en-us/blog/authors/ian-bartholomew",{"name":3577,"config":3578},"Ian Bartholomew",{"headshot":728,"ctfId":3579},"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":3585,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3586,"config":3591,"_id":3592,"_type":33,"title":3587,"_source":35,"_file":3593,"_stem":3594,"_extension":38},"/en-us/blog/authors/ian-khor",{"name":3587,"config":3588},"Ian Khor",{"headshot":3589,"ctfId":3590},"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":3596,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3597,"config":3602,"_id":3603,"_type":33,"title":3598,"_source":35,"_file":3604,"_stem":3605,"_extension":38},"/en-us/blog/authors/ian-pedowitz",{"name":3598,"config":3599},"Ian Pedowitz",{"headshot":3600,"ctfId":3601},"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":3607,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3608,"config":3613,"_id":3614,"_type":33,"title":3609,"_source":35,"_file":3615,"_stem":3616,"_extension":38},"/en-us/blog/authors/igor-drozdov",{"name":3609,"config":3610},"Igor Drozdov",{"headshot":3611,"ctfId":3612},"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":3618,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3619,"config":3624,"_id":3625,"_type":33,"title":3620,"_source":35,"_file":3626,"_stem":3627,"_extension":38},"/en-us/blog/authors/igor-wiedler",{"name":3620,"config":3621},"Igor Wiedler",{"headshot":3622,"ctfId":3623},"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":3629,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3630,"config":3635,"_id":3636,"_type":33,"title":3637,"_source":35,"_file":3638,"_stem":3639,"_extension":38},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3631,"config":3632},"Inchul Yoo, Sunjung Park",{"headshot":3633,"ctfId":3634},"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":3641,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3642,"config":3647,"_id":3648,"_type":33,"title":3643,"_source":35,"_file":3649,"_stem":3650,"_extension":38},"/en-us/blog/authors/isaac-dawson",{"name":3643,"config":3644},"Isaac Dawson",{"headshot":3645,"ctfId":3646},"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":3652,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3653,"config":3657,"_id":3659,"_type":33,"title":3660,"_source":35,"_file":3661,"_stem":3662,"_extension":38},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3654,"name":3656},{"headshot":3655},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":697,"gitlabHandle":3658},"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":3664,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3665,"config":3670,"_id":3671,"_type":33,"title":3666,"_source":35,"_file":3672,"_stem":3673,"_extension":38},"/en-us/blog/authors/itzik-gan-baruch",{"name":3666,"config":3667},"Itzik Gan Baruch",{"headshot":3668,"ctfId":3669},"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":3675,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3676,"config":3680,"_id":3681,"_type":33,"title":3677,"_source":35,"_file":3682,"_stem":3683,"_extension":38},"/en-us/blog/authors/ivan-lychev",{"name":3677,"config":3678},"Ivan Lychev",{"headshot":7,"ctfId":3679},"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":3685,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3686,"config":3690,"_id":3691,"_type":33,"title":3687,"_source":35,"_file":3692,"_stem":3693,"_extension":38},"/en-us/blog/authors/ivan-nemytchenko",{"name":3687,"config":3688},"Ivan Nemytchenko",{"headshot":728,"ctfId":3689},"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":3695,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3696,"config":3702,"_id":3703,"_type":33,"title":3698,"_source":35,"_file":3704,"_stem":3705,"_extension":38},"/en-us/blog/authors/ivanha-paz",{"role":3697,"name":3698,"config":3699},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3700,"ctfId":3701},"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":3707,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3708,"config":3712,"_id":3713,"_type":33,"title":3709,"_source":35,"_file":3714,"_stem":3715,"_extension":38},"/en-us/blog/authors/jacie-bandur",{"name":3709,"config":3710},"Jacie Bandur",{"headshot":7,"ctfId":3711},"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":3717,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3718,"config":3723,"_id":3724,"_type":33,"title":3719,"_source":35,"_file":3725,"_stem":3726,"_extension":38},"/en-us/blog/authors/jacki-bauer",{"name":3719,"config":3720},"Jacki Bauer",{"headshot":3721,"ctfId":3722},"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":3728,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3729,"config":3733,"_id":3734,"_type":33,"title":3730,"_source":35,"_file":3735,"_stem":3736,"_extension":38},"/en-us/blog/authors/jackie-meshell",{"name":3730,"config":3731},"Jackie Meshell",{"headshot":7,"ctfId":3732},"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":3738,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3739,"config":3744,"_id":3745,"_type":33,"title":3740,"_source":35,"_file":3746,"_stem":3747,"_extension":38},"/en-us/blog/authors/jackie-porter",{"name":3740,"config":3741},"Jackie Porter",{"headshot":3742,"ctfId":3743},"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":3749,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3750,"config":3754,"_id":3755,"_type":33,"title":3751,"_source":35,"_file":3756,"_stem":3757,"_extension":38},"/en-us/blog/authors/jacob-schatz",{"name":3751,"config":3752},"Jacob Schatz",{"headshot":7,"ctfId":3753},"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":3759,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3760,"config":3764,"_id":3765,"_type":33,"title":3761,"_source":35,"_file":3766,"_stem":3767,"_extension":38},"/en-us/blog/authors/jacob-vosmaer",{"name":3761,"config":3762},"Jacob Vosmaer",{"headshot":728,"ctfId":3763},"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":3769,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3770,"config":3775,"_id":3776,"_type":33,"title":3771,"_source":35,"_file":3777,"_stem":3778,"_extension":38},"/en-us/blog/authors/jacques-erasmus",{"name":3771,"config":3772},"Jacques Erasmus",{"headshot":3773,"ctfId":3774},"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":3780,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3781,"config":3786,"_id":3787,"_type":33,"title":3788,"_source":35,"_file":3789,"_stem":3790,"_extension":38},"/en-us/blog/authors/jaime-martnez",{"name":3782,"config":3783},"Jaime Martínez",{"headshot":3784,"ctfId":3785},"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":3792,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3793,"config":3797,"_id":3798,"_type":33,"title":3794,"_source":35,"_file":3799,"_stem":3800,"_extension":38},"/en-us/blog/authors/jake-foster",{"name":3794,"config":3795},"Jake Foster",{"headshot":728,"ctfId":3796},"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":3802,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3803,"config":3807,"_id":3808,"_type":33,"title":3804,"_source":35,"_file":3809,"_stem":3810,"_extension":38},"/en-us/blog/authors/jake-stein",{"name":3804,"config":3805},"Jake Stein",{"headshot":728,"ctfId":3806},"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":3812,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3813,"config":3817,"_id":3818,"_type":33,"title":3814,"_source":35,"_file":3819,"_stem":3820,"_extension":38},"/en-us/blog/authors/james-dang",{"name":3814,"config":3815},"James Dang",{"headshot":728,"ctfId":3816},"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":3822,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3823,"config":3828,"_id":3829,"_type":33,"title":3824,"_source":35,"_file":3830,"_stem":3831,"_extension":38},"/en-us/blog/authors/james-heimbuck",{"name":3824,"config":3825},"James Heimbuck",{"headshot":3826,"ctfId":3827},"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":3833,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3834,"config":3838,"_id":3839,"_type":33,"title":3835,"_source":35,"_file":3840,"_stem":3841,"_extension":38},"/en-us/blog/authors/james-ramsay",{"name":3835,"config":3836},"James Ramsay",{"headshot":7,"ctfId":3837},"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":3843,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3844,"config":3849,"_id":3850,"_type":33,"title":3845,"_source":35,"_file":3851,"_stem":3852,"_extension":38},"/en-us/blog/authors/james-wormwell",{"name":3845,"config":3846},"James Wormwell",{"headshot":3847,"ctfId":3848},"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":3854,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3855,"config":3859,"_id":3860,"_type":33,"title":3856,"_source":35,"_file":3861,"_stem":3862,"_extension":38},"/en-us/blog/authors/jamie-hurewitz",{"name":3856,"config":3857},"Jamie Hurewitz",{"headshot":728,"ctfId":3858},"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":3864,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3865,"config":3869,"_id":3870,"_type":33,"title":3866,"_source":35,"_file":3871,"_stem":3872,"_extension":38},"/en-us/blog/authors/jamie-rachel",{"name":3866,"config":3867},"Jamie Rachel",{"headshot":7,"ctfId":3868},"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":3874,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3875,"config":3880,"_id":3881,"_type":33,"title":3876,"_source":35,"_file":3882,"_stem":3883,"_extension":38},"/en-us/blog/authors/jan-provaznik",{"name":3876,"config":3877},"Jan Provaznik",{"headshot":3878,"ctfId":3879},"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":3885,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3886,"config":3891,"_id":3892,"_type":33,"title":3887,"_source":35,"_file":3893,"_stem":3894,"_extension":38},"/en-us/blog/authors/janis-altherr",{"name":3887,"config":3888},"Janis Altherr",{"headshot":3889,"ctfId":3890},"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":3896,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3897,"config":3902,"_id":3903,"_type":33,"title":3898,"_source":35,"_file":3904,"_stem":3905,"_extension":38},"/en-us/blog/authors/jannik-lehmann",{"name":3898,"config":3899},"Jannik Lehmann",{"headshot":3900,"ctfId":3901},"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":3907,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3908,"config":3913,"_id":3914,"_type":33,"title":3915,"_source":35,"_file":3916,"_stem":3917,"_extension":38},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3909,"config":3910},"Jarka Košanová et al",{"headshot":3911,"ctfId":3912},"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":3919,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3920,"config":3924,"_id":3925,"_type":33,"title":3926,"_source":35,"_file":3927,"_stem":3928,"_extension":38},"/en-us/blog/authors/jason-blais-mattermost",{"name":3921,"config":3922},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3923},"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":3930,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3931,"config":3935,"_id":3936,"_type":33,"title":3932,"_source":35,"_file":3937,"_stem":3938,"_extension":38},"/en-us/blog/authors/jason-chen",{"name":3932,"config":3933},"Jason Chen",{"headshot":728,"ctfId":3934},"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":3940,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3941,"config":3946,"_id":3947,"_type":33,"title":3942,"_source":35,"_file":3948,"_stem":3949,"_extension":38},"/en-us/blog/authors/jason-colyer",{"name":3942,"config":3943},"Jason Colyer",{"headshot":3944,"ctfId":3945},"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":3951,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3952,"config":3957,"_id":3958,"_type":33,"title":3953,"_source":35,"_file":3959,"_stem":3960,"_extension":38},"/en-us/blog/authors/jason-plum",{"name":3953,"config":3954},"Jason Plum",{"headshot":3955,"ctfId":3956},"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":3962,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3963,"config":3967,"_id":3968,"_type":33,"title":3964,"_source":35,"_file":3969,"_stem":3970,"_extension":38},"/en-us/blog/authors/jason-yavorska",{"name":3964,"config":3965},"Jason Yavorska",{"headshot":7,"ctfId":3966},"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":3972,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3973,"config":3977,"_id":3978,"_type":33,"title":3974,"_source":35,"_file":3979,"_stem":3980,"_extension":38},"/en-us/blog/authors/jay-newman",{"name":3974,"config":3975},"Jay Newman",{"headshot":728,"ctfId":3976},"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":3982,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3983,"config":3988,"_id":3989,"_type":33,"title":3984,"_source":35,"_file":3990,"_stem":3991,"_extension":38},"/en-us/blog/authors/jayson-salazar",{"name":3984,"config":3985},"Jayson Salazar",{"headshot":3986,"ctfId":3987},"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":3993,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":3994,"config":3998,"_id":3999,"_type":33,"title":4000,"_source":35,"_file":4001,"_stem":4002,"_extension":38},"/en-us/blog/authors/jd-alex",{"name":3995,"config":3996},"JD Alex",{"headshot":7,"ctfId":3997},"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":4004,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4005,"config":4009,"_id":4010,"_type":33,"title":4011,"_source":35,"_file":4012,"_stem":4013,"_extension":38},"/en-us/blog/authors/jean-philippe-baconnais",{"name":4006,"config":4007},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":4008},"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":4015,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4016,"config":4021,"_id":4022,"_type":33,"title":4017,"_source":35,"_file":4023,"_stem":4024,"_extension":38},"/en-us/blog/authors/jeff-burrows",{"name":4017,"config":4018},"Jeff Burrows",{"headshot":4019,"ctfId":4020},"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":4026,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4027,"config":4031,"_id":4032,"_type":33,"title":4028,"_source":35,"_file":4033,"_stem":4034,"_extension":38},"/en-us/blog/authors/jeff-kelsey",{"name":4028,"config":4029},"Jeff Kelsey",{"headshot":728,"ctfId":4030},"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":4036,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4037,"config":4042,"_id":4043,"_type":33,"title":4038,"_source":35,"_file":4044,"_stem":4045,"_extension":38},"/en-us/blog/authors/jeff-park",{"name":4038,"config":4039},"Jeff Park",{"headshot":4040,"ctfId":4041},"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":4047,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4048,"config":4053,"_id":4054,"_type":33,"title":4049,"_source":35,"_file":4055,"_stem":4056,"_extension":38},"/en-us/blog/authors/jeff-tucker",{"name":4049,"config":4050},"Jeff Tucker",{"headshot":4051,"ctfId":4052},"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":4058,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4059,"config":4064,"_id":4065,"_type":33,"title":4060,"_source":35,"_file":4066,"_stem":4067,"_extension":38},"/en-us/blog/authors/jensen-stava",{"name":4060,"config":4061},"Jensen Stava",{"headshot":4062,"ctfId":4063},"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":4069,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4070,"config":4074,"_id":4075,"_type":33,"title":4071,"_source":35,"_file":4076,"_stem":4077,"_extension":38},"/en-us/blog/authors/jeremy-cooper",{"name":4071,"config":4072},"Jeremy Cooper",{"headshot":728,"ctfId":4073},"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":4079,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4080,"config":4085,"_id":4086,"_type":33,"title":4081,"_source":35,"_file":4087,"_stem":4088,"_extension":38},"/en-us/blog/authors/jeremy-elder",{"name":4081,"config":4082},"Jeremy Elder",{"headshot":4083,"ctfId":4084},"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":4090,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4091,"config":4096,"_id":4097,"_type":33,"title":4092,"_source":35,"_file":4098,"_stem":4099,"_extension":38},"/en-us/blog/authors/jeremy-wagner",{"name":4092,"config":4093},"Jeremy Wagner",{"headshot":4094,"ctfId":4095},"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":4101,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4102,"config":4106,"_id":4107,"_type":33,"title":4103,"_source":35,"_file":4108,"_stem":4109,"_extension":38},"/en-us/blog/authors/jeremy-watson",{"name":4103,"config":4104},"Jeremy Watson",{"headshot":7,"ctfId":4105},"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":4111,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4112,"config":4117,"_id":4118,"_type":33,"title":4113,"_source":35,"_file":4119,"_stem":4120,"_extension":38},"/en-us/blog/authors/jerez-solis",{"name":4113,"config":4114},"Jerez Solis",{"headshot":4115,"ctfId":4116},"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":4122,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4123,"config":4127,"_id":4128,"_type":33,"title":4129,"_source":35,"_file":4130,"_stem":4131,"_extension":38},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4124,"config":4125},"Jeroen van Baarsen",{"headshot":728,"ctfId":4126},"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":4133,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4134,"config":4139,"_id":4140,"_type":33,"title":4135,"_source":35,"_file":4141,"_stem":4142,"_extension":38},"/en-us/blog/authors/jessica-hurwitz",{"name":4135,"config":4136},"Jessica Hurwitz",{"headshot":4137,"ctfId":4138},"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":4144,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4145,"config":4149,"_id":4150,"_type":33,"title":4146,"_source":35,"_file":4151,"_stem":4152,"_extension":38},"/en-us/blog/authors/jim-riley",{"name":4146,"config":4147},"Jim Riley",{"headshot":7,"ctfId":4148},"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":4154,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4155,"config":4159,"_id":4160,"_type":33,"title":4156,"_source":35,"_file":4161,"_stem":4162,"_extension":38},"/en-us/blog/authors/jim-thavisouk",{"name":4156,"config":4157},"Jim Thavisouk",{"headshot":728,"ctfId":4158},"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":4164,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4165,"config":4169,"_id":4170,"_type":33,"title":4171,"_source":35,"_file":4172,"_stem":4173,"_extension":38},"/en-us/blog/authors/job-van-der-voort",{"name":4166,"config":4167},"Job van der Voort",{"headshot":728,"ctfId":4168},"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":4175,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4176,"config":4181,"_id":4182,"_type":33,"title":4177,"_source":35,"_file":4183,"_stem":4184,"_extension":38},"/en-us/blog/authors/jocelyn-eillis",{"name":4177,"config":4178},"Jocelyn Eillis",{"headshot":4179,"ctfId":4180},"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":4186,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4187,"config":4191,"_id":4192,"_type":33,"title":4188,"_source":35,"_file":4193,"_stem":4194,"_extension":38},"/en-us/blog/authors/jochen-roth",{"name":4188,"config":4189},"Jochen Roth",{"headshot":7,"ctfId":4190},"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":4196,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4197,"config":4202,"_id":4203,"_type":33,"title":4198,"_source":35,"_file":4204,"_stem":4205,"_extension":38},"/en-us/blog/authors/joe-randazzo",{"name":4198,"config":4199},"Joe Randazzo",{"headshot":4200,"ctfId":4201},"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":4207,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4208,"config":4213,"_id":4214,"_type":33,"title":4209,"_source":35,"_file":4215,"_stem":4216,"_extension":38},"/en-us/blog/authors/joel-krooswyk",{"name":4209,"config":4210},"Joel Krooswyk",{"headshot":4211,"ctfId":4212},"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":4218,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4219,"config":4224,"_id":4225,"_type":33,"title":4220,"_source":35,"_file":4226,"_stem":4227,"_extension":38},"/en-us/blog/authors/joern-schneeweisz",{"name":4220,"config":4221},"Joern Schneeweisz",{"headshot":4222,"ctfId":4223},"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":4229,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4230,"config":4234,"_id":4235,"_type":33,"title":4231,"_source":35,"_file":4236,"_stem":4237,"_extension":38},"/en-us/blog/authors/joey-salazar",{"name":4231,"config":4232},"Joey Salazar",{"headshot":728,"ctfId":4233},"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":4239,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4240,"config":4244,"_id":4245,"_type":33,"title":4241,"_source":35,"_file":4246,"_stem":4247,"_extension":38},"/en-us/blog/authors/johanna-ambrosio",{"name":4241,"config":4242},"Johanna Ambrosio",{"headshot":728,"ctfId":4243},"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":4249,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4250,"config":4255,"_id":4256,"_type":33,"title":4251,"_source":35,"_file":4257,"_stem":4258,"_extension":38},"/en-us/blog/authors/johannes-bauer",{"name":4251,"config":4252},"Johannes Bauer",{"headshot":4253,"ctfId":4254},"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":4260,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4261,"config":4266,"_id":4267,"_type":33,"title":4262,"_source":35,"_file":4268,"_stem":4269,"_extension":38},"/en-us/blog/authors/john-cai",{"name":4262,"config":4263},"John Cai",{"headshot":4264,"ctfId":4265},"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":4271,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4272,"config":4277,"_id":4278,"_type":33,"title":4273,"_source":35,"_file":4279,"_stem":4280,"_extension":38},"/en-us/blog/authors/john-coghlan",{"name":4273,"config":4274},"John Coghlan",{"headshot":4275,"ctfId":4276},"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":4282,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4283,"config":4288,"_id":4289,"_type":33,"title":4284,"_source":35,"_file":4290,"_stem":4291,"_extension":38},"/en-us/blog/authors/john-crowley",{"name":4284,"config":4285},"John Crowley",{"headshot":4286,"ctfId":4287},"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":4293,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4294,"config":4299,"_id":4300,"_type":33,"title":4295,"_source":35,"_file":4301,"_stem":4302,"_extension":38},"/en-us/blog/authors/john-jarvis",{"name":4295,"config":4296},"John Jarvis",{"headshot":4297,"ctfId":4298},"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":4304,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4305,"config":4309,"_id":4310,"_type":33,"title":4306,"_source":35,"_file":4311,"_stem":4312,"_extension":38},"/en-us/blog/authors/john-jeremiah",{"name":4306,"config":4307},"John Jeremiah",{"headshot":728,"ctfId":4308},"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":4314,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4315,"config":4319,"_id":4320,"_type":33,"title":4321,"_source":35,"_file":4322,"_stem":4323,"_extension":38},"/en-us/blog/authors/john-mcguire",{"name":4316,"config":4317},"John McGuire",{"headshot":728,"ctfId":4318},"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":4325,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4326,"config":4330,"_id":4332,"_type":33,"title":4327,"_source":35,"_file":4333,"_stem":4334,"_extension":38},"/en-us/blog/authors/john-skarbek",{"name":4327,"config":4328},"John Skarbek",{"headshot":4329},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":697,"gitlabHandle":4331},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4336,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4337,"config":4341,"_id":4342,"_type":33,"title":4338,"_source":35,"_file":4343,"_stem":4344,"_extension":38},"/en-us/blog/authors/john-sparrow",{"name":4338,"config":4339},"John Sparrow",{"headshot":728,"ctfId":4340},"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":4346,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4347,"config":4351,"_id":4352,"_type":33,"title":4348,"_source":35,"_file":4353,"_stem":4354,"_extension":38},"/en-us/blog/authors/johnathan-hunt",{"name":4348,"config":4349},"Johnathan Hunt",{"headshot":728,"ctfId":4350},"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":4356,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4357,"config":4361,"_id":4362,"_type":33,"title":4358,"_source":35,"_file":4363,"_stem":4364,"_extension":38},"/en-us/blog/authors/joni-klippert",{"name":4358,"config":4359},"Joni Klippert",{"headshot":728,"ctfId":4360},"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":4366,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4367,"config":4372,"_id":4373,"_type":33,"title":4374,"_source":35,"_file":4375,"_stem":4376,"_extension":38},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4368,"config":4369},"João Alexandre Prado Tavares Cunha",{"headshot":4370,"ctfId":4371},"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":4378,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4379,"config":4384,"_id":4385,"_type":33,"title":4386,"_source":35,"_file":4387,"_stem":4388,"_extension":38},"/en-us/blog/authors/joo-pereira",{"name":4380,"config":4381},"João Pereira",{"headshot":4382,"ctfId":4383},"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":4390,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4391,"config":4395,"_id":4396,"_type":33,"title":4392,"_source":35,"_file":4397,"_stem":4398,"_extension":38},"/en-us/blog/authors/jordi-mon",{"name":4392,"config":4393},"Jordi Mon",{"headshot":7,"ctfId":4394},"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":4400,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4401,"config":4406,"_id":4407,"_type":33,"title":4408,"_source":35,"_file":4409,"_stem":4410,"_extension":38},"/en-us/blog/authors/jos-ivn-vargas",{"name":4402,"config":4403},"José Iván Vargas",{"headshot":4404,"ctfId":4405},"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":4412,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4413,"config":4417,"_id":4418,"_type":33,"title":4414,"_source":35,"_file":4419,"_stem":4420,"_extension":38},"/en-us/blog/authors/jose-finotto",{"name":4414,"config":4415},"Jose Finotto",{"headshot":7,"ctfId":4416},"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":4422,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4423,"config":4427,"_id":4429,"_type":33,"title":4426,"_source":35,"_file":4430,"_stem":4431,"_extension":38},"/en-us/blog/authors/joseph-burnett",{"config":4424,"name":4426},{"headshot":4425},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":697,"gitlabHandle":4428},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4433,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4434,"config":4439,"_id":4440,"_type":33,"title":4435,"_source":35,"_file":4441,"_stem":4442,"_extension":38},"/en-us/blog/authors/joseph-longo",{"name":4435,"config":4436},"Joseph Longo",{"headshot":4437,"ctfId":4438},"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":4444,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4445,"config":4449,"_id":4450,"_type":33,"title":4451,"_source":35,"_file":4452,"_stem":4453,"_extension":38},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4446,"config":4447},"Joseph Schorr from CoreOS",{"headshot":728,"ctfId":4448},"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":4455,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4456,"config":4461,"_id":4462,"_type":33,"title":4457,"_source":35,"_file":4463,"_stem":4464,"_extension":38},"/en-us/blog/authors/josh-feehs",{"name":4457,"config":4458},"Josh Feehs",{"headshot":4459,"ctfId":4460},"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":4466,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4467,"config":4473,"_id":4474,"_type":33,"title":4475,"_source":35,"_file":4476,"_stem":4477,"_extension":38},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4468,"name":4469,"config":4470},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4471,"ctfId":4472},"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":4479,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4480,"config":4484,"_id":4485,"_type":33,"title":4481,"_source":35,"_file":4486,"_stem":4487,"_extension":38},"/en-us/blog/authors/josh-zimmerman",{"name":4481,"config":4482},"Josh Zimmerman",{"headshot":7,"ctfId":4483},"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":4489,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4490,"config":4495,"_id":4496,"_type":33,"title":4491,"_source":35,"_file":4497,"_stem":4498,"_extension":38},"/en-us/blog/authors/joshua-carroll",{"name":4491,"config":4492},"Joshua Carroll",{"headshot":4493,"ctfId":4494},"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":4500,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4501,"config":4506,"_id":4507,"_type":33,"title":4502,"_source":35,"_file":4508,"_stem":4509,"_extension":38},"/en-us/blog/authors/joshua-lambert",{"name":4502,"config":4503},"Joshua Lambert",{"headshot":4504,"ctfId":4505},"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":4511,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4512,"config":4516,"_id":4517,"_type":33,"title":4513,"_source":35,"_file":4518,"_stem":4519,"_extension":38},"/en-us/blog/authors/joyce-tompsett",{"name":4513,"config":4514},"Joyce Tompsett",{"headshot":7,"ctfId":4515},"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":4521,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4522,"config":4526,"_id":4527,"_type":33,"title":4523,"_source":35,"_file":4528,"_stem":4529,"_extension":38},"/en-us/blog/authors/juan-broullon",{"name":4523,"config":4524},"Juan Broullon",{"headshot":7,"ctfId":4525},"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":4531,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4532,"config":4536,"_id":4537,"_type":33,"title":4533,"_source":35,"_file":4538,"_stem":4539,"_extension":38},"/en-us/blog/authors/julia-lake",{"name":4533,"config":4534},"Julia Lake",{"headshot":728,"ctfId":4535},"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":4541,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4542,"config":4547,"_id":4548,"_type":33,"title":4543,"_source":35,"_file":4549,"_stem":4550,"_extension":38},"/en-us/blog/authors/julia-miocene",{"name":4543,"config":4544},"Julia Miocene",{"headshot":4545,"ctfId":4546},"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":4552,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4553,"config":4557,"_id":4558,"_type":33,"title":4554,"_source":35,"_file":4559,"_stem":4560,"_extension":38},"/en-us/blog/authors/julian-thome",{"name":4554,"config":4555},"Julian Thome",{"headshot":7,"ctfId":4556},"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":4562,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4563,"config":4568,"_id":4569,"_type":33,"title":4564,"_source":35,"_file":4570,"_stem":4571,"_extension":38},"/en-us/blog/authors/julie-byrne",{"name":4564,"config":4565},"Julie Byrne",{"headshot":4566,"ctfId":4567},"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":4573,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4574,"config":4579,"_id":4580,"_type":33,"title":4575,"_source":35,"_file":4581,"_stem":4582,"_extension":38},"/en-us/blog/authors/julie-griffin",{"name":4575,"config":4576},"Julie Griffin",{"headshot":4577,"ctfId":4578},"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":4584,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4585,"config":4589,"_id":4590,"_type":33,"title":4586,"_source":35,"_file":4591,"_stem":4592,"_extension":38},"/en-us/blog/authors/julien-andrieux",{"name":4586,"config":4587},"Julien Andrieux",{"headshot":728,"ctfId":4588},"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":4594,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4595,"config":4600,"_id":4601,"_type":33,"title":4596,"_source":35,"_file":4602,"_stem":4603,"_extension":38},"/en-us/blog/authors/juliet-wanjohi",{"name":4596,"config":4597},"Juliet Wanjohi",{"headshot":4598,"ctfId":4599},"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":4605,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4606,"config":4610,"_id":4611,"_type":33,"title":4607,"_source":35,"_file":4612,"_stem":4613,"_extension":38},"/en-us/blog/authors/justin-farris",{"name":4607,"config":4608},"Justin Farris",{"headshot":728,"ctfId":4609},"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":4615,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4616,"config":4621,"_id":4622,"_type":33,"title":4617,"_source":35,"_file":4623,"_stem":4624,"_extension":38},"/en-us/blog/authors/justin-tobler",{"name":4617,"config":4618},"Justin Tobler",{"headshot":4619,"ctfId":4620},"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":4626,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4627,"config":4632,"_id":4633,"_type":33,"title":4628,"_source":35,"_file":4634,"_stem":4635,"_extension":38},"/en-us/blog/authors/kai-armstrong",{"name":4628,"config":4629},"Kai Armstrong",{"headshot":4630,"ctfId":4631},"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":4637,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4638,"config":4642,"_id":4643,"_type":33,"title":4644,"_source":35,"_file":4645,"_stem":4646,"_extension":38},"/en-us/blog/authors/kamil-trzciski",{"name":4639,"config":4640},"Kamil Trzciński",{"headshot":728,"ctfId":4641},"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":4648,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4649,"config":4653,"_id":4654,"_type":33,"title":4655,"_source":35,"_file":4656,"_stem":4657,"_extension":38},"/en-us/blog/authors/karen-caras",{"name":4650,"config":4651},"Karen Carías",{"headshot":728,"ctfId":4652},"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":4659,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4660,"config":4664,"_id":4666,"_type":33,"title":4661,"_source":35,"_file":4667,"_stem":4668,"_extension":38},"/en-us/blog/authors/karishma-kumar",{"name":4661,"config":4662},"Karishma Kumar",{"headshot":4663},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1761931048/z7wcdkw5czs9uwtpmfwg.png",{"template":697,"gitlabHandle":4665},"karishmakumar","content:en-us:blog:authors:karishma-kumar.yml","en-us/blog/authors/karishma-kumar.yml","en-us/blog/authors/karishma-kumar",{"_path":4670,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4671,"config":4676,"_id":4677,"_type":33,"title":4672,"_source":35,"_file":4678,"_stem":4679,"_extension":38},"/en-us/blog/authors/karthik-nayak",{"name":4672,"config":4673},"Karthik Nayak",{"headshot":4674,"ctfId":4675},"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":4681,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4682,"config":4686,"_id":4687,"_type":33,"title":4683,"_source":35,"_file":4688,"_stem":4689,"_extension":38},"/en-us/blog/authors/katherine-okpara",{"name":4683,"config":4684},"Katherine Okpara",{"headshot":7,"ctfId":4685},"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":4691,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4692,"config":4696,"_id":4697,"_type":33,"title":4693,"_source":35,"_file":4698,"_stem":4699,"_extension":38},"/en-us/blog/authors/kathy-wang",{"name":4693,"config":4694},"Kathy Wang",{"headshot":7,"ctfId":4695},"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":4701,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4702,"config":4706,"_id":4707,"_type":33,"title":4708,"_source":35,"_file":4709,"_stem":4710,"_extension":38},"/en-us/blog/authors/keanon-okeefe",{"name":4703,"config":4704},"Keanon O’Keefe",{"headshot":7,"ctfId":4705},"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":4712,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4713,"config":4718,"_id":4719,"_type":33,"title":4714,"_source":35,"_file":4720,"_stem":4721,"_extension":38},"/en-us/blog/authors/kees-valkhof",{"name":4714,"role":4715,"config":4716},"Kees Valkhof","Configuration manager at Lely",{"headshot":4717},"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":4723,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4724,"config":4728,"_id":4729,"_type":33,"title":4725,"_source":35,"_file":4730,"_stem":4731,"_extension":38},"/en-us/blog/authors/kelly-hair",{"name":4725,"config":4726},"Kelly Hair",{"headshot":728,"ctfId":4727},"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":4733,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4734,"config":4738,"_id":4739,"_type":33,"title":4735,"_source":35,"_file":4740,"_stem":4741,"_extension":38},"/en-us/blog/authors/kendra-marquart",{"name":4735,"config":4736},"Kendra Marquart",{"headshot":7,"ctfId":4737},"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":4743,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4744,"config":4748,"_id":4749,"_type":33,"title":4745,"_source":35,"_file":4750,"_stem":4751,"_extension":38},"/en-us/blog/authors/kenny-johnston",{"name":4745,"config":4746},"Kenny Johnston",{"headshot":7,"ctfId":4747},"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":4753,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4754,"config":4759,"_id":4760,"_type":33,"title":4755,"_source":35,"_file":4761,"_stem":4762,"_extension":38},"/en-us/blog/authors/kevin-chu",{"name":4755,"config":4756},"Kevin Chu",{"headshot":4757,"ctfId":4758},"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":4764,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4765,"config":4770,"_id":4771,"_type":33,"title":4766,"_source":35,"_file":4772,"_stem":4773,"_extension":38},"/en-us/blog/authors/kevin-morrison",{"name":4766,"config":4767},"Kevin Morrison",{"headshot":4768,"ctfId":4769},"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":4775,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4776,"config":4780,"_id":4781,"_type":33,"title":4777,"_source":35,"_file":4782,"_stem":4783,"_extension":38},"/en-us/blog/authors/khrystyna-humenna",{"name":4777,"config":4778},"Khrystyna Humenna",{"headshot":728,"ctfId":4779},"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":4785,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4786,"config":4790,"_id":4791,"_type":33,"title":4787,"_source":35,"_file":4792,"_stem":4793,"_extension":38},"/en-us/blog/authors/kim-lock",{"name":4787,"config":4788},"Kim Lock",{"headshot":7,"ctfId":4789},"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":4795,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4796,"config":4800,"_id":4801,"_type":33,"title":4797,"_source":35,"_file":4802,"_stem":4803,"_extension":38},"/en-us/blog/authors/kirsten-abma",{"name":4797,"config":4798},"Kirsten Abma",{"headshot":728,"ctfId":4799},"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":4805,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4806,"config":4810,"_id":4811,"_type":33,"title":4807,"_source":35,"_file":4812,"_stem":4813,"_extension":38},"/en-us/blog/authors/kristian-larsson",{"name":4807,"config":4808},"Kristian Larsson",{"headshot":728,"ctfId":4809},"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":4815,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4816,"config":4821,"_id":4822,"_type":33,"title":4817,"_source":35,"_file":4823,"_stem":4824,"_extension":38},"/en-us/blog/authors/kristina-weis",{"name":4817,"config":4818},"Kristina Weis",{"headshot":4819,"ctfId":4820},"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":4826,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4827,"config":4831,"_id":4832,"_type":33,"title":4828,"_source":35,"_file":4833,"_stem":4834,"_extension":38},"/en-us/blog/authors/kurt-dusek",{"name":4828,"config":4829},"Kurt Dusek",{"headshot":7,"ctfId":4830},"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":4836,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4837,"config":4841,"_id":4842,"_type":33,"title":4838,"_source":35,"_file":4843,"_stem":4844,"_extension":38},"/en-us/blog/authors/kushal-koolwal",{"name":4838,"config":4839},"Kushal Koolwal",{"headshot":728,"ctfId":4840},"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":4846,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4847,"config":4852,"_id":4853,"_type":33,"title":4848,"_source":35,"_file":4854,"_stem":4855,"_extension":38},"/en-us/blog/authors/kushal-pandya",{"name":4848,"config":4849},"Kushal Pandya",{"headshot":4850,"ctfId":4851},"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":4857,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4858,"config":4862,"_id":4863,"_type":33,"title":4859,"_source":35,"_file":4864,"_stem":4865,"_extension":38},"/en-us/blog/authors/kwan-lee",{"name":4859,"config":4860},"Kwan Lee",{"headshot":728,"ctfId":4861},"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":4867,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4868,"config":4873,"_id":4874,"_type":33,"title":4869,"_source":35,"_file":4875,"_stem":4876,"_extension":38},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4869,"config":4870},"Kyla Gradin Dahl",{"headshot":4871,"ctfId":4872},"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":4878,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4879,"config":4883,"_id":4884,"_type":33,"title":4880,"_source":35,"_file":4885,"_stem":4886,"_extension":38},"/en-us/blog/authors/kyle-mann",{"name":4880,"config":4881},"Kyle Mann",{"headshot":728,"ctfId":4882},"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":4888,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4889,"config":4894,"_id":4895,"_type":33,"title":4890,"_source":35,"_file":4896,"_stem":4897,"_extension":38},"/en-us/blog/authors/kyle-smith",{"name":4890,"config":4891},"Kyle Smith",{"headshot":4892,"ctfId":4893},"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":4899,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4900,"config":4904,"_id":4906,"_type":33,"title":4901,"_source":35,"_file":4907,"_stem":4908,"_extension":38},"/en-us/blog/authors/kymberlee-price",{"name":4901,"config":4902},"Kymberlee Price",{"headshot":4903},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":697,"gitlabHandle":4905},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4910,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4911,"config":4915,"_id":4916,"_type":33,"title":4912,"_source":35,"_file":4917,"_stem":4918,"_extension":38},"/en-us/blog/authors/lasse-schuirmann",{"name":4912,"config":4913},"Lasse Schuirmann",{"headshot":728,"ctfId":4914},"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":4920,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4921,"config":4925,"_id":4926,"_type":33,"title":4922,"_source":35,"_file":4927,"_stem":4928,"_extension":38},"/en-us/blog/authors/laura-montemayor",{"name":4922,"config":4923},"Laura Montemayor",{"headshot":7,"ctfId":4924},"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":4930,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4931,"config":4936,"_id":4937,"_type":33,"title":4932,"_source":35,"_file":4938,"_stem":4939,"_extension":38},"/en-us/blog/authors/lauren-barker",{"name":4932,"config":4933},"Lauren Barker",{"headshot":4934,"ctfId":4935},"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":4941,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4942,"config":4946,"_id":4947,"_type":33,"title":4943,"_source":35,"_file":4948,"_stem":4949,"_extension":38},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4943,"config":4944},"Lauren Gibbons Paul",{"headshot":728,"ctfId":4945},"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":4951,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4952,"config":4956,"_id":4957,"_type":33,"title":4953,"_source":35,"_file":4958,"_stem":4959,"_extension":38},"/en-us/blog/authors/lauren-minning",{"name":4953,"config":4954},"Lauren Minning",{"headshot":7,"ctfId":4955},"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":4961,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4962,"config":4967,"_id":4968,"_type":33,"title":4963,"_source":35,"_file":4969,"_stem":4970,"_extension":38},"/en-us/blog/authors/laurena-alves",{"name":4963,"config":4964},"Laurena Alves",{"headshot":4965,"ctfId":4966},"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":4972,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4973,"config":4978,"_id":4979,"_type":33,"title":4974,"_source":35,"_file":4980,"_stem":4981,"_extension":38},"/en-us/blog/authors/lee-faus",{"name":4974,"config":4975},"Lee Faus",{"headshot":4976,"ctfId":4977},"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":4983,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4984,"config":4989,"_id":4990,"_type":33,"title":4985,"_source":35,"_file":4991,"_stem":4992,"_extension":38},"/en-us/blog/authors/lee-matos",{"name":4985,"config":4986},"Lee Matos",{"headshot":4987,"ctfId":4988},"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":4994,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":4995,"config":5000,"_id":5001,"_type":33,"title":4996,"_source":35,"_file":5002,"_stem":5003,"_extension":38},"/en-us/blog/authors/lee-tickett",{"name":4996,"config":4997},"Lee Tickett",{"headshot":4998,"ctfId":4999},"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":5005,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5006,"config":5010,"_id":5011,"_type":33,"title":5007,"_source":35,"_file":5012,"_stem":5013,"_extension":38},"/en-us/blog/authors/levente-polyak",{"name":5007,"config":5008},"Levente Polyak",{"headshot":7,"ctfId":5009},"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":5015,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5016,"config":5021,"_id":5022,"_type":33,"title":5023,"_source":35,"_file":5024,"_stem":5025,"_extension":38},"/en-us/blog/authors/lin-jen-shin",{"name":5017,"config":5018},"Lin Jen-Shin",{"headshot":5019,"ctfId":5020},"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":5027,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5028,"config":5033,"_id":5034,"_type":33,"title":5029,"_source":35,"_file":5035,"_stem":5036,"_extension":38},"/en-us/blog/authors/liz-coleman",{"name":5029,"config":5030},"Liz Coleman",{"headshot":5031,"ctfId":5032},"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":5038,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5039,"config":5044,"_id":5045,"_type":33,"title":5040,"_source":35,"_file":5046,"_stem":5047,"_extension":38},"/en-us/blog/authors/loryn-bortins",{"name":5040,"config":5041},"Loryn Bortins",{"headshot":5042,"ctfId":5043},"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":5049,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5050,"config":5054,"_id":5055,"_type":33,"title":5051,"_source":35,"_file":5056,"_stem":5057,"_extension":38},"/en-us/blog/authors/lucas-charles",{"name":5051,"config":5052},"Lucas Charles",{"headshot":728,"ctfId":5053},"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":5059,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5060,"config":5064,"_id":5065,"_type":33,"title":5061,"_source":35,"_file":5066,"_stem":5067,"_extension":38},"/en-us/blog/authors/luka-trbojevic",{"name":5061,"config":5062},"Luka Trbojevic",{"headshot":7,"ctfId":5063},"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":5069,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5070,"config":5074,"_id":5075,"_type":33,"title":5071,"_source":35,"_file":5076,"_stem":5077,"_extension":38},"/en-us/blog/authors/lukas-eipert",{"name":5071,"config":5072},"Lukas Eipert",{"headshot":728,"ctfId":5073},"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":5079,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5080,"config":5085,"_id":5086,"_type":33,"title":5081,"_source":35,"_file":5087,"_stem":5088,"_extension":38},"/en-us/blog/authors/lyle-kozloff",{"name":5081,"config":5082},"Lyle Kozloff",{"headshot":5083,"ctfId":5084},"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":5090,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5091,"config":5096,"_id":5097,"_type":33,"title":5092,"_source":35,"_file":5098,"_stem":5099,"_extension":38},"/en-us/blog/authors/madeline-lake",{"name":5092,"config":5093},"Madeline Lake",{"headshot":5094,"ctfId":5095},"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":5101,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5102,"config":5107,"_id":5108,"_type":33,"title":5103,"_source":35,"_file":5109,"_stem":5110,"_extension":38},"/en-us/blog/authors/madou-coulibaly",{"name":5103,"config":5104},"Madou Coulibaly",{"headshot":5105,"ctfId":5106},"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":5112,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5113,"config":5118,"_id":5119,"_type":33,"title":5114,"_source":35,"_file":5120,"_stem":5121,"_extension":38},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5114,"config":5115},"Magdalena Frankiewicz",{"headshot":5116,"ctfId":5117},"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":5123,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5124,"config":5128,"_id":5129,"_type":33,"title":5125,"_source":35,"_file":5130,"_stem":5131,"_extension":38},"/en-us/blog/authors/mahesh-kumar",{"name":5125,"config":5126},"Mahesh Kumar",{"headshot":728,"ctfId":5127},"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":5133,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5134,"config":5139,"_id":5140,"_type":33,"title":5135,"_source":35,"_file":5141,"_stem":5142,"_extension":38},"/en-us/blog/authors/manav-khurana",{"name":5135,"config":5136,"role":5138},"Manav Khurana",{"headshot":5137},"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":5144,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5145,"config":5150,"_id":5151,"_type":33,"title":5146,"_source":35,"_file":5152,"_stem":5153,"_extension":38},"/en-us/blog/authors/manuel-kraft",{"name":5146,"config":5147},"Manuel Kraft",{"headshot":5148,"ctfId":5149},"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":5155,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5156,"config":5160,"_id":5161,"_type":33,"title":5157,"_source":35,"_file":5162,"_stem":5163,"_extension":38},"/en-us/blog/authors/marc-radulescu",{"name":5157,"config":5158},"Marc Radulescu",{"headshot":728,"ctfId":5159},"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":5165,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5166,"config":5171,"_id":5172,"_type":33,"title":5167,"_source":35,"_file":5173,"_stem":5174,"_extension":38},"/en-us/blog/authors/marc-shaw",{"name":5167,"config":5168},"Marc Shaw",{"headshot":5169,"ctfId":5170},"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":5176,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5177,"config":5182,"_id":5183,"_type":33,"title":5184,"_source":35,"_file":5185,"_stem":5186,"_extension":38},"/en-us/blog/authors/marcel-van-remmerden",{"name":5178,"config":5179},"Marcel van Remmerden",{"headshot":5180,"ctfId":5181},"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":5188,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5189,"config":5193,"_id":5194,"_type":33,"title":5190,"_source":35,"_file":5195,"_stem":5196,"_extension":38},"/en-us/blog/authors/marcia-ramos",{"name":5190,"config":5191},"Marcia Ramos",{"headshot":728,"ctfId":5192},"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":5198,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5199,"config":5203,"_id":5204,"_type":33,"title":5200,"_source":35,"_file":5205,"_stem":5206,"_extension":38},"/en-us/blog/authors/marco-lenzo",{"name":5200,"config":5201},"Marco Lenzo",{"headshot":728,"ctfId":5202},"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":5208,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5209,"config":5213,"_id":5214,"_type":33,"title":5210,"_source":35,"_file":5215,"_stem":5216,"_extension":38},"/en-us/blog/authors/marie-hargitt",{"name":5210,"config":5211},"Marie Hargitt",{"headshot":728,"ctfId":5212},"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":5218,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5219,"config":5224,"_id":5225,"_type":33,"title":5220,"_source":35,"_file":5226,"_stem":5227,"_extension":38},"/en-us/blog/authors/marin-jankovski",{"name":5220,"config":5221},"Marin Jankovski",{"headshot":5222,"ctfId":5223},"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":5229,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5230,"config":5234,"_id":5235,"_type":33,"title":5236,"_source":35,"_file":5237,"_stem":5238,"_extension":38},"/en-us/blog/authors/marin-job",{"name":5231,"config":5232},"Marin, Job",{"headshot":728,"ctfId":5233},"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":5240,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5241,"config":5245,"_id":5246,"_type":33,"title":5247,"_source":35,"_file":5248,"_stem":5249,"_extension":38},"/en-us/blog/authors/mario-de-la-ossa",{"name":5242,"config":5243},"Mario de la Ossa",{"headshot":7,"ctfId":5244},"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":5251,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5252,"config":5256,"_id":5257,"_type":33,"title":5253,"_source":35,"_file":5258,"_stem":5259,"_extension":38},"/en-us/blog/authors/mark-art",{"name":5253,"config":5254},"Mark Art",{"headshot":728,"ctfId":5255},"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":5261,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5262,"config":5266,"_id":5267,"_type":33,"title":5263,"_source":35,"_file":5268,"_stem":5269,"_extension":38},"/en-us/blog/authors/mark-fletcher",{"name":5263,"config":5264},"Mark Fletcher",{"headshot":7,"ctfId":5265},"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":5271,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5272,"config":5277,"_id":5278,"_type":33,"title":5273,"_source":35,"_file":5279,"_stem":5280,"_extension":38},"/en-us/blog/authors/mark-lapierre",{"name":5273,"config":5274},"Mark Lapierre",{"headshot":5275,"ctfId":5276},"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":5282,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5283,"config":5288,"_id":5289,"_type":33,"title":5284,"_source":35,"_file":5290,"_stem":5291,"_extension":38},"/en-us/blog/authors/mark-loveless",{"name":5284,"config":5285},"Mark Loveless",{"headshot":5286,"ctfId":5287},"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":5293,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5294,"config":5298,"_id":5299,"_type":33,"title":5295,"_source":35,"_file":5300,"_stem":5301,"_extension":38},"/en-us/blog/authors/mark-pundsack",{"name":5295,"config":5296},"Mark Pundsack",{"headshot":728,"ctfId":5297},"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":5303,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5304,"config":5309,"_id":5310,"_type":33,"title":5311,"_source":35,"_file":5312,"_stem":5313,"_extension":38},"/en-us/blog/authors/martin-brmmer",{"name":5305,"config":5306},"Martin Brümmer",{"headshot":5307,"ctfId":5308},"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":5315,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5316,"config":5320,"_id":5321,"_type":33,"title":5317,"_source":35,"_file":5322,"_stem":5323,"_extension":38},"/en-us/blog/authors/martynas-krupskis",{"name":5317,"config":5318},"Martynas Krupskis",{"headshot":728,"ctfId":5319},"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":5325,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5326,"config":5330,"_id":5331,"_type":33,"title":5327,"_source":35,"_file":5332,"_stem":5333,"_extension":38},"/en-us/blog/authors/matej-latin",{"name":5327,"config":5328},"Matej Latin",{"headshot":7,"ctfId":5329},"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":5335,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5336,"config":5341,"_id":5342,"_type":33,"title":5337,"_source":35,"_file":5343,"_stem":5344,"_extension":38},"/en-us/blog/authors/mathias-ewald",{"name":5337,"config":5338},"Mathias Ewald",{"headshot":5339,"ctfId":5340},"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":5346,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5347,"config":5351,"_id":5352,"_type":33,"title":5348,"_source":35,"_file":5353,"_stem":5354,"_extension":38},"/en-us/blog/authors/matt-baldwin",{"name":5348,"config":5349},"Matt Baldwin",{"headshot":728,"ctfId":5350},"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":5356,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5357,"config":5362,"_id":5363,"_type":33,"title":5358,"_source":35,"_file":5364,"_stem":5365,"_extension":38},"/en-us/blog/authors/matt-coons",{"name":5358,"config":5359},"Matt Coons",{"headshot":5360,"ctfId":5361},"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":5367,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5368,"config":5373,"_id":5374,"_type":33,"title":5375,"_source":35,"_file":5376,"_stem":5377,"_extension":38},"/en-us/blog/authors/matt-delaney",{"name":5369,"config":5370},"Matt DeLaney",{"headshot":5371,"ctfId":5372},"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":5379,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5380,"config":5385,"_id":5386,"_type":33,"title":5381,"_source":35,"_file":5387,"_stem":5388,"_extension":38},"/en-us/blog/authors/matt-genelin",{"name":5381,"config":5382},"Matt Genelin",{"headshot":5383,"ctfId":5384},"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":5390,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5391,"config":5395,"_id":5396,"_type":33,"title":5392,"_source":35,"_file":5397,"_stem":5398,"_extension":38},"/en-us/blog/authors/matt-nguyen",{"name":5392,"config":5393},"Matt Nguyen",{"headshot":728,"ctfId":5394},"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":5400,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5401,"config":5406,"_id":5407,"_type":33,"title":5402,"_source":35,"_file":5408,"_stem":5409,"_extension":38},"/en-us/blog/authors/matt-nohr",{"name":5402,"config":5403},"Matt Nohr",{"headshot":5404,"ctfId":5405},"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":5411,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5412,"config":5417,"_id":5418,"_type":33,"title":5413,"_source":35,"_file":5419,"_stem":5420,"_extension":38},"/en-us/blog/authors/matt-smiley",{"name":5413,"config":5414},"Matt Smiley",{"headshot":5415,"ctfId":5416},"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":5422,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5423,"config":5427,"_id":5428,"_type":33,"title":5424,"_source":35,"_file":5429,"_stem":5430,"_extension":38},"/en-us/blog/authors/matt-wilson",{"name":5424,"config":5425},"Matt Wilson",{"headshot":728,"ctfId":5426},"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":5432,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5433,"config":5438,"_id":5439,"_type":33,"title":5434,"_source":35,"_file":5440,"_stem":5441,"_extension":38},"/en-us/blog/authors/matthew-macfarlane",{"name":5434,"config":5435},"Matthew Macfarlane",{"headshot":5436,"ctfId":5437},"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":5443,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5444,"config":5449,"_id":5450,"_type":33,"title":5445,"_source":35,"_file":5451,"_stem":5452,"_extension":38},"/en-us/blog/authors/matthew-nearents",{"name":5445,"config":5446},"Matthew Nearents",{"headshot":5447,"ctfId":5448},"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":5454,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5455,"config":5460,"_id":5461,"_type":33,"title":5462,"_source":35,"_file":5463,"_stem":5464,"_extension":38},"/en-us/blog/authors/matthias-kppler",{"name":5456,"config":5457},"Matthias Käppler",{"headshot":5458,"ctfId":5459},"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":5466,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5467,"config":5471,"_id":5472,"_type":33,"title":5468,"_source":35,"_file":5473,"_stem":5474,"_extension":38},"/en-us/blog/authors/matthieu-fronton",{"name":5468,"config":5469},"Matthieu Fronton",{"headshot":7,"ctfId":5470},"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":5476,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5477,"config":5481,"_id":5482,"_type":33,"title":5478,"_source":35,"_file":5483,"_stem":5484,"_extension":38},"/en-us/blog/authors/max-woolf",{"name":5478,"config":5479},"Max Woolf",{"headshot":728,"ctfId":5480},"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":5486,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5487,"config":5492,"_id":5493,"_type":33,"title":5488,"_source":35,"_file":5494,"_stem":5495,"_extension":38},"/en-us/blog/authors/maximilien-belinga",{"name":5488,"config":5489},"Maximilien Belinga",{"headshot":5490,"ctfId":5491},"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":5497,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5498,"config":5502,"_id":5503,"_type":33,"title":5499,"_source":35,"_file":5504,"_stem":5505,"_extension":38},"/en-us/blog/authors/mayank-tahilramani",{"name":5499,"config":5500},"Mayank Tahilramani",{"headshot":7,"ctfId":5501},"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":5507,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5508,"config":5513,"_id":5514,"_type":33,"title":5509,"_source":35,"_file":5515,"_stem":5516,"_extension":38},"/en-us/blog/authors/mayra-cabrera",{"name":5509,"config":5510},"Mayra Cabrera",{"headshot":5511,"ctfId":5512},"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":5518,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5519,"config":5523,"_id":5524,"_type":33,"title":5520,"_source":35,"_file":5525,"_stem":5526,"_extension":38},"/en-us/blog/authors/meghan-maneval",{"name":5520,"config":5521},"Meghan Maneval",{"headshot":7,"ctfId":5522},"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":5528,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5529,"config":5534,"_id":5535,"_type":33,"title":5530,"_source":35,"_file":5536,"_stem":5537,"_extension":38},"/en-us/blog/authors/mek-stittri",{"name":5530,"config":5531},"Mek Stittri",{"headshot":5532,"ctfId":5533},"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":5539,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5540,"config":5544,"_id":5545,"_type":33,"title":5541,"_source":35,"_file":5546,"_stem":5547,"_extension":38},"/en-us/blog/authors/melissa-farber",{"name":5541,"config":5542},"Melissa Farber",{"headshot":7,"ctfId":5543},"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":5549,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5550,"config":5554,"_id":5555,"_type":33,"title":5551,"_source":35,"_file":5556,"_stem":5557,"_extension":38},"/en-us/blog/authors/melissa-smolensky",{"name":5551,"config":5552},"Melissa Smolensky",{"headshot":7,"ctfId":5553},"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":5559,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5560,"config":5565,"_id":5566,"_type":33,"title":5561,"_source":35,"_file":5567,"_stem":5568,"_extension":38},"/en-us/blog/authors/melissa-ushakov",{"name":5561,"config":5562},"Melissa Ushakov",{"headshot":5563,"ctfId":5564},"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":5570,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5571,"config":5575,"_id":5576,"_type":33,"title":5572,"_source":35,"_file":5577,"_stem":5578,"_extension":38},"/en-us/blog/authors/michael-fahey",{"name":5572,"config":5573},"Michael Fahey",{"headshot":7,"ctfId":5574},"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":5580,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5581,"config":5586,"_id":5587,"_type":33,"title":5582,"_source":35,"_file":5588,"_stem":5589,"_extension":38},"/en-us/blog/authors/michael-friedrich",{"name":5582,"config":5583},"Michael Friedrich",{"headshot":5584,"ctfId":5585},"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":5591,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5592,"config":5596,"_id":5597,"_type":33,"title":5593,"_source":35,"_file":5598,"_stem":5599,"_extension":38},"/en-us/blog/authors/michael-henriksen",{"name":5593,"config":5594},"Michael Henriksen",{"headshot":728,"ctfId":5595},"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":5601,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5602,"config":5606,"_id":5607,"_type":33,"title":5603,"_source":35,"_file":5608,"_stem":5609,"_extension":38},"/en-us/blog/authors/michael-karampalas",{"name":5603,"config":5604},"Michael Karampalas",{"headshot":7,"ctfId":5605},"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":5611,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5612,"config":5617,"_id":5618,"_type":33,"title":5613,"_source":35,"_file":5619,"_stem":5620,"_extension":38},"/en-us/blog/authors/michael-kozono",{"name":5613,"config":5614},"Michael Kozono",{"headshot":5615,"ctfId":5616},"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":5622,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5623,"config":5627,"_id":5628,"_type":33,"title":5624,"_source":35,"_file":5629,"_stem":5630,"_extension":38},"/en-us/blog/authors/michael-miranda",{"name":5624,"config":5625},"Michael Miranda",{"headshot":7,"ctfId":5626},"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":5632,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5633,"config":5638,"_id":5639,"_type":33,"title":5634,"_source":35,"_file":5640,"_stem":5641,"_extension":38},"/en-us/blog/authors/michelle-gill",{"name":5634,"config":5635},"Michelle Gill",{"headshot":5636,"ctfId":5637},"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":5643,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5644,"config":5649,"_id":5650,"_type":33,"title":5645,"_source":35,"_file":5651,"_stem":5652,"_extension":38},"/en-us/blog/authors/miguel-rincon",{"name":5645,"config":5646},"Miguel Rincon",{"headshot":5647,"ctfId":5648},"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":5654,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5655,"config":5659,"_id":5660,"_type":33,"title":5656,"_source":35,"_file":5661,"_stem":5662,"_extension":38},"/en-us/blog/authors/mike-bartlett",{"name":5656,"config":5657},"Mike Bartlett",{"headshot":7,"ctfId":5658},"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":5664,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5665,"config":5669,"_id":5670,"_type":33,"title":5666,"_source":35,"_file":5671,"_stem":5672,"_extension":38},"/en-us/blog/authors/mike-eddington",{"name":5666,"config":5667},"Mike Eddington",{"headshot":728,"ctfId":5668},"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":5674,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5675,"config":5680,"_id":5681,"_type":33,"title":5676,"_source":35,"_file":5682,"_stem":5683,"_extension":38},"/en-us/blog/authors/mike-flouton",{"name":5676,"config":5677},"Mike Flouton",{"headshot":5678,"ctfId":5679},"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":5685,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5686,"config":5690,"_id":5691,"_type":33,"title":5687,"_source":35,"_file":5692,"_stem":5693,"_extension":38},"/en-us/blog/authors/mike-gerwitz",{"name":5687,"config":5688},"Mike Gerwitz",{"headshot":728,"ctfId":5689},"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":5695,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5696,"config":5700,"_id":5701,"_type":33,"title":5697,"_source":35,"_file":5702,"_stem":5703,"_extension":38},"/en-us/blog/authors/mike-greiling",{"name":5697,"config":5698},"Mike Greiling",{"headshot":7,"ctfId":5699},"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":5705,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5706,"config":5710,"_id":5711,"_type":33,"title":5707,"_source":35,"_file":5712,"_stem":5713,"_extension":38},"/en-us/blog/authors/mike-vanbuskirk",{"name":5707,"config":5708},"Mike Vanbuskirk",{"headshot":728,"ctfId":5709},"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":5715,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5716,"config":5720,"_id":5721,"_type":33,"title":5717,"_source":35,"_file":5722,"_stem":5723,"_extension":38},"/en-us/blog/authors/miranda-carter",{"name":5717,"config":5718},"Miranda Carter",{"headshot":728,"ctfId":5719},"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":5725,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5726,"config":5731,"_id":5732,"_type":33,"title":5727,"_source":35,"_file":5733,"_stem":5734,"_extension":38},"/en-us/blog/authors/mitra-jozenazemian",{"name":5727,"config":5728},"Mitra Jozenazemian",{"headshot":5729,"ctfId":5730},"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":5736,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5737,"config":5742,"_id":5743,"_type":33,"title":5738,"_source":35,"_file":5744,"_stem":5745,"_extension":38},"/en-us/blog/authors/monmayuri-ray",{"name":5738,"config":5739},"Monmayuri Ray",{"headshot":5740,"ctfId":5741},"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":5747,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5748,"config":5753,"_id":5755,"_type":33,"title":5749,"_source":35,"_file":5756,"_stem":5757,"_extension":38},"/en-us/blog/authors/naoharu-sasaki",{"name":5749,"config":5750,"role":5752},"Naoharu Sasaki",{"headshot":5751},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":697,"gitlabHandle":5754},"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":5759,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5760,"config":5765,"_id":5766,"_type":33,"title":5761,"_source":35,"_file":5767,"_stem":5768,"_extension":38},"/en-us/blog/authors/nate-rosandich",{"name":5761,"config":5762},"Nate Rosandich",{"headshot":5763,"ctfId":5764},"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":5770,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5771,"config":5776,"_id":5777,"_type":33,"title":5772,"_source":35,"_file":5778,"_stem":5779,"_extension":38},"/en-us/blog/authors/neha-khalwadekar",{"name":5772,"config":5773},"Neha Khalwadekar",{"headshot":5774,"ctfId":5775},"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":5781,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5782,"config":5787,"_id":5788,"_type":33,"title":5789,"_source":35,"_file":5790,"_stem":5791,"_extension":38},"/en-us/blog/authors/neil-mccorrison",{"name":5783,"config":5784},"Neil McCorrison",{"headshot":5785,"ctfId":5786},"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":5793,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5794,"config":5799,"_id":5800,"_type":33,"title":5801,"_source":35,"_file":5802,"_stem":5803,"_extension":38},"/en-us/blog/authors/neil-mcdonald",{"name":5795,"config":5796},"Neil McDonald",{"headshot":5797,"ctfId":5798},"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":5805,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5806,"config":5810,"_id":5812,"_type":33,"title":5807,"_source":35,"_file":5813,"_stem":5814,"_extension":38},"/en-us/blog/authors/nick-cayou",{"name":5807,"config":5808,"role":7},"Nick Cayou",{"headshot":5809},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":697,"gitlabHandle":5811},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5816,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5817,"config":5822,"_id":5823,"_type":33,"title":5818,"_source":35,"_file":5824,"_stem":5825,"_extension":38},"/en-us/blog/authors/nick-malcolm",{"name":5818,"config":5819},"Nick Malcolm",{"headshot":5820,"ctfId":5821},"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":5827,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5828,"config":5832,"_id":5833,"_type":33,"title":5829,"_source":35,"_file":5834,"_stem":5835,"_extension":38},"/en-us/blog/authors/nick-thomas",{"name":5829,"config":5830},"Nick Thomas",{"headshot":7,"ctfId":5831},"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":5837,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5838,"config":5843,"_id":5844,"_type":33,"title":5839,"_source":35,"_file":5845,"_stem":5846,"_extension":38},"/en-us/blog/authors/nick-veenhof",{"name":5839,"config":5840},"Nick Veenhof",{"headshot":5841,"ctfId":5842},"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":5848,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5849,"config":5853,"_id":5854,"_type":33,"title":5850,"_source":35,"_file":5855,"_stem":5856,"_extension":38},"/en-us/blog/authors/nico-meisenzahl",{"name":5850,"config":5851},"Nico Meisenzahl",{"headshot":7,"ctfId":5852},"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":5858,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5859,"config":5863,"_id":5864,"_type":33,"title":5860,"_source":35,"_file":5865,"_stem":5866,"_extension":38},"/en-us/blog/authors/nicole-schwartz",{"name":5860,"config":5861},"Nicole Schwartz",{"headshot":7,"ctfId":5862},"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":5868,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5869,"config":5874,"_id":5875,"_type":33,"title":5870,"_source":35,"_file":5876,"_stem":5877,"_extension":38},"/en-us/blog/authors/nikhil-george",{"name":5870,"config":5871},"Nikhil George",{"headshot":5872,"ctfId":5873},"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":5879,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5880,"config":5885,"_id":5886,"_type":33,"title":5881,"_source":35,"_file":5887,"_stem":5888,"_extension":38},"/en-us/blog/authors/nima-badiey",{"name":5881,"config":5882},"Nima Badiey",{"headshot":5883,"ctfId":5884},"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":5890,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5891,"config":5896,"_id":5897,"_type":33,"title":5892,"_source":35,"_file":5898,"_stem":5899,"_extension":38},"/en-us/blog/authors/noah-ing",{"name":5892,"config":5893},"Noah Ing",{"headshot":5894,"ctfId":5895},"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":5901,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5902,"config":5906,"_id":5907,"_type":33,"title":5903,"_source":35,"_file":5908,"_stem":5909,"_extension":38},"/en-us/blog/authors/noah-manger",{"name":5903,"config":5904},"Noah Manger",{"headshot":728,"ctfId":5905},"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":5911,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5912,"config":5916,"_id":5917,"_type":33,"title":5913,"_source":35,"_file":5918,"_stem":5919,"_extension":38},"/en-us/blog/authors/noah-zoschke",{"name":5913,"config":5914},"Noah Zoschke",{"headshot":728,"ctfId":5915},"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":5921,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5922,"config":5926,"_id":5927,"_type":33,"title":5923,"_source":35,"_file":5928,"_stem":5929,"_extension":38},"/en-us/blog/authors/nolan-myers",{"name":5923,"config":5924},"Nolan Myers",{"headshot":728,"ctfId":5925},"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":5931,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5932,"config":5936,"_id":5937,"_type":33,"title":5933,"_source":35,"_file":5938,"_stem":5939,"_extension":38},"/en-us/blog/authors/nupur-sharma",{"name":5933,"config":5934},"Nupur Sharma",{"headshot":728,"ctfId":5935},"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":5941,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5942,"config":5946,"_id":5947,"_type":33,"title":5943,"_source":35,"_file":5948,"_stem":5949,"_extension":38},"/en-us/blog/authors/nuritzi-sanchez",{"name":5943,"config":5944},"Nuritzi Sanchez",{"headshot":7,"ctfId":5945},"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":5951,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5952,"config":5957,"_id":5958,"_type":33,"title":5953,"_source":35,"_file":5959,"_stem":5960,"_extension":38},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5953,"config":5954},"Oleksandr Pysaryuk",{"headshot":5955,"ctfId":5956},"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":5962,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5963,"config":5968,"_id":5969,"_type":33,"title":5970,"_source":35,"_file":5971,"_stem":5972,"_extension":38},"/en-us/blog/authors/olena-horal-koretska",{"name":5964,"config":5965},"Olena Horal-Koretska",{"headshot":5966,"ctfId":5967},"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":5974,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5975,"config":5979,"_id":5981,"_type":33,"title":5976,"_source":35,"_file":5982,"_stem":5983,"_extension":38},"/en-us/blog/authors/olivier-campeau",{"name":5976,"config":5977},"Olivier Campeau",{"headshot":5978},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":697,"gitlabHandle":5980},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5985,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5986,"config":5991,"_id":5992,"_type":33,"title":5993,"_source":35,"_file":5994,"_stem":5995,"_extension":38},"/en-us/blog/authors/olivier-dupr",{"name":5987,"config":5988},"Olivier Dupré",{"headshot":5989,"ctfId":5990},"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":5997,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":5998,"config":6003,"_id":6004,"_type":33,"title":5999,"_source":35,"_file":6005,"_stem":6006,"_extension":38},"/en-us/blog/authors/omar-fernandez",{"name":5999,"config":6000},"Omar Fernandez",{"headshot":6001,"ctfId":6002},"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":6008,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6009,"config":6013,"_id":6014,"_type":33,"title":6010,"_source":35,"_file":6015,"_stem":6016,"_extension":38},"/en-us/blog/authors/opher-vishnia",{"name":6010,"config":6011},"Opher Vishnia",{"headshot":728,"ctfId":6012},"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":6018,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6019,"config":6023,"_id":6024,"_type":33,"title":6020,"_source":35,"_file":6025,"_stem":6026,"_extension":38},"/en-us/blog/authors/orit-golowinski",{"name":6020,"config":6021},"Orit Golowinski",{"headshot":7,"ctfId":6022},"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":6028,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6029,"config":6034,"_id":6035,"_type":33,"title":6030,"_source":35,"_file":6036,"_stem":6037,"_extension":38},"/en-us/blog/authors/ottilia-westerlund",{"name":6030,"config":6031},"Ottilia Westerlund",{"headshot":6032,"ctfId":6033},"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":6039,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6040,"config":6044,"_id":6045,"_type":33,"title":6041,"_source":35,"_file":6046,"_stem":6047,"_extension":38},"/en-us/blog/authors/owen-williams",{"name":6041,"config":6042},"Owen Williams",{"headshot":728,"ctfId":6043},"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":6049,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6050,"config":6054,"_id":6055,"_type":33,"title":6051,"_source":35,"_file":6056,"_stem":6057,"_extension":38},"/en-us/blog/authors/pablo-carranza",{"name":6051,"config":6052},"Pablo Carranza",{"headshot":728,"ctfId":6053},"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":6059,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6060,"config":6064,"_id":6065,"_type":33,"title":6061,"_source":35,"_file":6066,"_stem":6067,"_extension":38},"/en-us/blog/authors/parker-ennis",{"name":6061,"config":6062},"Parker Ennis",{"headshot":7,"ctfId":6063},"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":6069,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6070,"config":6074,"_id":6075,"_type":33,"title":6071,"_source":35,"_file":6076,"_stem":6077,"_extension":38},"/en-us/blog/authors/patricio-cano",{"name":6071,"config":6072},"Patricio Cano",{"headshot":728,"ctfId":6073},"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":6079,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6080,"config":6084,"_id":6085,"_type":33,"title":6081,"_source":35,"_file":6086,"_stem":6087,"_extension":38},"/en-us/blog/authors/patrick-deuley",{"name":6081,"config":6082},"Patrick Deuley",{"headshot":728,"ctfId":6083},"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":6089,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6090,"config":6094,"_id":6095,"_type":33,"title":6091,"_source":35,"_file":6096,"_stem":6097,"_extension":38},"/en-us/blog/authors/patrick-foster",{"name":6091,"config":6092},"Patrick Foster",{"headshot":728,"ctfId":6093},"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":6099,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6100,"config":6104,"_id":6105,"_type":33,"title":18,"_source":35,"_file":6106,"_stem":6107,"_extension":38},"/en-us/blog/authors/patrick-steinhardt",{"name":18,"config":6101},{"headshot":6102,"ctfId":6103},"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":6109,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6110,"config":6114,"_id":6115,"_type":33,"title":6111,"_source":35,"_file":6116,"_stem":6117,"_extension":38},"/en-us/blog/authors/patty-cheung",{"name":6111,"config":6112},"Patty Cheung",{"headshot":728,"ctfId":6113},"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":6119,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6120,"config":6124,"_id":6125,"_type":33,"title":6121,"_source":35,"_file":6126,"_stem":6127,"_extension":38},"/en-us/blog/authors/paul-badcock",{"name":6121,"config":6122},"Paul Badcock",{"headshot":728,"ctfId":6123},"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":6129,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6130,"config":6134,"_id":6135,"_type":33,"title":6136,"_source":35,"_file":6137,"_stem":6138,"_extension":38},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6131,"config":6132},"Paul Gascou-Vaillancourt",{"headshot":728,"ctfId":6133},"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":6140,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6141,"config":6145,"_id":6146,"_type":33,"title":6142,"_source":35,"_file":6147,"_stem":6148,"_extension":38},"/en-us/blog/authors/paul-hibbitts",{"name":6142,"config":6143},"Paul Hibbitts",{"headshot":728,"ctfId":6144},"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":6150,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6151,"config":6155,"_id":6156,"_type":33,"title":6152,"_source":35,"_file":6157,"_stem":6158,"_extension":38},"/en-us/blog/authors/paul-machle",{"name":6152,"config":6153},"Paul Machle",{"headshot":728,"ctfId":6154},"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":6160,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6161,"config":6165,"_id":6167,"_type":33,"title":6162,"_source":35,"_file":6168,"_stem":6169,"_extension":38},"/en-us/blog/authors/paul-meresanu",{"name":6162,"role":7,"config":6163},"Paul Meresanu",{"headshot":6164},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":697,"gitlabHandle":6166},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6171,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6172,"config":6177,"_id":6178,"_type":33,"title":6173,"_source":35,"_file":6179,"_stem":6180,"_extension":38},"/en-us/blog/authors/payton-burdette",{"name":6173,"config":6174},"Payton Burdette",{"headshot":6175,"ctfId":6176},"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":6182,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6183,"config":6187,"_id":6188,"_type":33,"title":6184,"_source":35,"_file":6189,"_stem":6190,"_extension":38},"/en-us/blog/authors/pedro-fortuna",{"name":6184,"config":6185},"Pedro Fortuna",{"headshot":728,"ctfId":6186},"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":6192,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6193,"config":6198,"_id":6199,"_type":33,"title":6200,"_source":35,"_file":6201,"_stem":6202,"_extension":38},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6194,"config":6195},"Pedro Moreira da Silva",{"headshot":6196,"ctfId":6197},"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":6204,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6205,"config":6210,"_id":6211,"_type":33,"title":6206,"_source":35,"_file":6212,"_stem":6213,"_extension":38},"/en-us/blog/authors/phil-hughes",{"name":6206,"config":6207},"Phil Hughes",{"headshot":6208,"ctfId":6209},"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":6215,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6216,"config":6220,"_id":6221,"_type":33,"title":6217,"_source":35,"_file":6222,"_stem":6223,"_extension":38},"/en-us/blog/authors/philip-welz",{"name":6217,"config":6218},"Philip Welz",{"headshot":7,"ctfId":6219},"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":6225,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6226,"config":6231,"_id":6232,"_type":33,"title":6233,"_source":35,"_file":6234,"_stem":6235,"_extension":38},"/en-us/blog/authors/philippe-lafoucrire",{"name":6227,"config":6228},"Philippe Lafoucrière",{"headshot":6229,"ctfId":6230},"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":6237,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6238,"config":6242,"_id":6243,"_type":33,"title":6244,"_source":35,"_file":6245,"_stem":6246,"_extension":38},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6239,"config":6240},"Pierre de La Morinerie",{"headshot":728,"ctfId":6241},"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":6248,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6249,"config":6253,"_id":6254,"_type":33,"title":6250,"_source":35,"_file":6255,"_stem":6256,"_extension":38},"/en-us/blog/authors/pierre-smeyers",{"name":6250,"config":6251},"Pierre Smeyers",{"headshot":7,"ctfId":6252},"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":6258,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6259,"config":6264,"_id":6265,"_type":33,"title":6260,"_source":35,"_file":6266,"_stem":6267,"_extension":38},"/en-us/blog/authors/pini-wietchner",{"name":6260,"config":6261},"Pini Wietchner",{"headshot":6262,"ctfId":6263},"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":6269,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6270,"config":6274,"_id":6275,"_type":33,"title":6276,"_source":35,"_file":6277,"_stem":6278,"_extension":38},"/en-us/blog/authors/pj-metz",{"name":6271,"config":6272},"PJ Metz",{"headshot":728,"ctfId":6273},"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":6280,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6281,"config":6284,"_id":6285,"_type":33,"title":6286,"_source":35,"_file":6287,"_stem":6288,"_extension":38},"/en-us/blog/authors/plapadoo",{"name":6282,"config":6283},"plapadoo",{"headshot":728,"ctfId":6282},{"template":697},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6290,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6291,"config":6295,"_id":6296,"_type":33,"title":6292,"_source":35,"_file":6297,"_stem":6298,"_extension":38},"/en-us/blog/authors/pranay-bakre",{"name":6292,"config":6293},"Pranay Bakre",{"headshot":7,"ctfId":6294},"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":6300,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6301,"config":6305,"_id":6306,"_type":33,"title":6302,"_source":35,"_file":6307,"_stem":6308,"_extension":38},"/en-us/blog/authors/priyanka-sharma",{"name":6302,"config":6303},"Priyanka Sharma",{"headshot":7,"ctfId":6304},"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":6310,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6311,"config":6316,"_id":6317,"_type":33,"title":6318,"_source":35,"_file":6319,"_stem":6320,"_extension":38},"/en-us/blog/authors/pter-bozs",{"name":6312,"config":6313},"Péter Bozsó",{"headshot":6314,"ctfId":6315},"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":6322,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6323,"config":6327,"_id":6328,"_type":33,"title":6324,"_source":35,"_file":6329,"_stem":6330,"_extension":38},"/en-us/blog/authors/quan-to",{"name":6324,"config":6325},"Quan To",{"headshot":728,"ctfId":6326},"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":6332,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6333,"config":6338,"_id":6339,"_type":33,"title":6334,"_source":35,"_file":6340,"_stem":6341,"_extension":38},"/en-us/blog/authors/rachel-nienaber",{"name":6334,"config":6335},"Rachel Nienaber",{"headshot":6336,"ctfId":6337},"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":6343,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6344,"config":6348,"_id":6350,"_type":33,"title":6345,"_source":35,"_file":6351,"_stem":6352,"_extension":38},"/en-us/blog/authors/radovan-bacovic",{"name":6345,"config":6346},"Radovan Bacovic",{"headshot":6347},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":697,"gitlabHandle":6349},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6354,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6355,"config":6359,"_id":6360,"_type":33,"title":6361,"_source":35,"_file":6362,"_stem":6363,"_extension":38},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6356,"config":6357},"Rahul Bhargava, CTO, Evolphin",{"headshot":728,"ctfId":6358},"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":6365,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6366,"config":6371,"_id":6372,"_type":33,"title":6367,"_source":35,"_file":6373,"_stem":6374,"_extension":38},"/en-us/blog/authors/raimund-hook",{"name":6367,"config":6368},"Raimund Hook",{"headshot":6369,"ctfId":6370},"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":6376,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6377,"config":6381,"_id":6382,"_type":33,"title":6378,"_source":35,"_file":6383,"_stem":6384,"_extension":38},"/en-us/blog/authors/raquel-campuzano",{"name":6378,"config":6379},"Raquel Campuzano",{"headshot":728,"ctfId":6380},"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":6386,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6387,"config":6391,"_id":6392,"_type":33,"title":6388,"_source":35,"_file":6393,"_stem":6394,"_extension":38},"/en-us/blog/authors/ray-paik",{"name":6388,"config":6389},"Ray Paik",{"headshot":7,"ctfId":6390},"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":6396,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6397,"config":6402,"_id":6403,"_type":33,"title":6398,"_source":35,"_file":6404,"_stem":6405,"_extension":38},"/en-us/blog/authors/rayana-verissimo",{"name":6398,"config":6399},"Rayana Verissimo",{"headshot":6400,"ctfId":6401},"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":6407,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6408,"config":6412,"_id":6414,"_type":33,"title":6415,"_source":35,"_file":6416,"_stem":6417,"_extension":38},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6409,"config":6410},"Rebeca Fenoy-Anthony",{"headshot":6411},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":697,"gitlabHandle":6413},"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":6419,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6420,"config":6424,"_id":6425,"_type":33,"title":6421,"_source":35,"_file":6426,"_stem":6427,"_extension":38},"/en-us/blog/authors/rebecca-dodd",{"name":6421,"config":6422},"Rebecca Dodd",{"headshot":728,"ctfId":6423},"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":6429,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6430,"config":6434,"_id":6435,"_type":33,"title":6431,"_source":35,"_file":6436,"_stem":6437,"_extension":38},"/en-us/blog/authors/regis-freyd",{"name":6431,"config":6432},"Regis Freyd",{"headshot":728,"ctfId":6433},"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":6439,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6440,"config":6445,"_id":6446,"_type":33,"title":6441,"_source":35,"_file":6447,"_stem":6448,"_extension":38},"/en-us/blog/authors/regnard-raquedan",{"name":6441,"config":6442},"Regnard Raquedan",{"headshot":6443,"ctfId":6444},"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":6450,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6451,"config":6455,"_id":6456,"_type":33,"title":6452,"_source":35,"_file":6457,"_stem":6458,"_extension":38},"/en-us/blog/authors/renato-stanic",{"name":6452,"config":6453},"Renato Stanic",{"headshot":7,"ctfId":6454},"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":6460,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6461,"config":6466,"_id":6467,"_type":33,"title":6462,"_source":35,"_file":6468,"_stem":6469,"_extension":38},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6462,"config":6463},"Ricardo Amarilla Villalba",{"headshot":6464,"ctfId":6465},"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":6471,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6472,"config":6476,"_id":6477,"_type":33,"title":6473,"_source":35,"_file":6478,"_stem":6479,"_extension":38},"/en-us/blog/authors/riccardo-padovani",{"name":6473,"config":6474},"Riccardo Padovani",{"headshot":728,"ctfId":6475},"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":6481,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6482,"config":6487,"_id":6488,"_type":33,"title":6489,"_source":35,"_file":6490,"_stem":6491,"_extension":38},"/en-us/blog/authors/rmy-coutable",{"name":6483,"config":6484},"Rémy Coutable",{"headshot":6485,"ctfId":6486},"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":6493,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6494,"config":6499,"_id":6500,"_type":33,"title":6495,"_source":35,"_file":6501,"_stem":6502,"_extension":38},"/en-us/blog/authors/rob-jackson",{"name":6495,"config":6496},"Rob Jackson",{"headshot":6497,"ctfId":6498},"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":6504,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6505,"config":6509,"_id":6510,"_type":33,"title":6506,"_source":35,"_file":6511,"_stem":6512,"_extension":38},"/en-us/blog/authors/rob-ribeiro",{"name":6506,"config":6507},"Rob Ribeiro",{"headshot":728,"ctfId":6508},"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":6514,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6515,"config":6519,"_id":6520,"_type":33,"title":6516,"_source":35,"_file":6521,"_stem":6522,"_extension":38},"/en-us/blog/authors/robert-speicher",{"name":6516,"config":6517},"Robert Speicher",{"headshot":7,"ctfId":6518},"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":6524,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6525,"config":6530,"_id":6531,"_type":33,"title":6526,"_source":35,"_file":6532,"_stem":6533,"_extension":38},"/en-us/blog/authors/robert-williams",{"name":6526,"config":6527},"Robert Williams",{"headshot":6528,"ctfId":6529},"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":6535,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6536,"config":6542,"_id":6543,"_type":33,"title":6537,"_source":35,"_file":6544,"_stem":6545,"_extension":38},"/en-us/blog/authors/robin-schulman",{"name":6537,"config":6538,"role":6541},"Robin Schulman",{"headshot":6539,"ctfId":6540},"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":6547,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6548,"config":6552,"_id":6553,"_type":33,"title":6549,"_source":35,"_file":6554,"_stem":6555,"_extension":38},"/en-us/blog/authors/roger-woo",{"name":6549,"config":6550},"Roger Woo",{"headshot":728,"ctfId":6551},"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":6557,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6558,"config":6564,"_id":6565,"_type":33,"title":6566,"_source":35,"_file":6567,"_stem":6568,"_extension":38},"/en-us/blog/authors/rohit-shambhuni",{"role":6559,"name":6560,"config":6561},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6562,"ctfId":6563},"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":6570,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6571,"config":6575,"_id":6576,"_type":33,"title":6572,"_source":35,"_file":6577,"_stem":6578,"_extension":38},"/en-us/blog/authors/roman-kuba",{"name":6572,"config":6573},"Roman Kuba",{"headshot":7,"ctfId":6574},"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":6580,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6581,"config":6586,"_id":6587,"_type":33,"title":6588,"_source":35,"_file":6589,"_stem":6590,"_extension":38},"/en-us/blog/authors/romuald-atchad",{"name":6582,"config":6583},"Romuald Atchadé",{"headshot":6584,"ctfId":6585},"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":6592,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6593,"config":6597,"_id":6598,"_type":33,"title":6599,"_source":35,"_file":6600,"_stem":6601,"_extension":38},"/en-us/blog/authors/ronald-van-zon",{"name":6594,"config":6595},"Ronald van Zon",{"headshot":7,"ctfId":6596},"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":6603,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6604,"config":6608,"_id":6609,"_type":33,"title":6605,"_source":35,"_file":6610,"_stem":6611,"_extension":38},"/en-us/blog/authors/ross-fuhrman",{"name":6605,"config":6606},"Ross Fuhrman",{"headshot":728,"ctfId":6607},"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":6613,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6614,"config":6618,"_id":6619,"_type":33,"title":6615,"_source":35,"_file":6620,"_stem":6621,"_extension":38},"/en-us/blog/authors/roy-taragan",{"name":6615,"config":6616},"Roy Taragan",{"headshot":728,"ctfId":6617},"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":6623,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6624,"config":6629,"_id":6630,"_type":33,"title":6625,"_source":35,"_file":6631,"_stem":6632,"_extension":38},"/en-us/blog/authors/ruby-nealon",{"name":6625,"config":6626},"Ruby Nealon",{"headshot":6627,"ctfId":6628},"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":6634,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6635,"config":6639,"_id":6640,"_type":33,"title":6636,"_source":35,"_file":6641,"_stem":6642,"_extension":38},"/en-us/blog/authors/rupert-douglas",{"name":6636,"config":6637},"Rupert Douglas",{"headshot":7,"ctfId":6638},"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":6644,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6645,"config":6649,"_id":6650,"_type":33,"title":6651,"_source":35,"_file":6652,"_stem":6653,"_extension":38},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6646,"config":6647},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6648},"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":6655,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6656,"config":6661,"_id":6662,"_type":33,"title":6657,"_source":35,"_file":6663,"_stem":6664,"_extension":38},"/en-us/blog/authors/rutvik-shah",{"name":6657,"config":6658},"Rutvik Shah",{"headshot":6659,"ctfId":6660},"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":6666,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6667,"config":6672,"_id":6673,"_type":33,"title":6668,"_source":35,"_file":6674,"_stem":6675,"_extension":38},"/en-us/blog/authors/sacha-guyon",{"name":6668,"config":6669},"Sacha Guyon",{"headshot":6670,"ctfId":6671},"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":6677,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6678,"config":6683,"_id":6684,"_type":33,"title":6679,"_source":35,"_file":6685,"_stem":6686,"_extension":38},"/en-us/blog/authors/safwan-ahmed",{"name":6679,"config":6680},"Safwan Ahmed",{"headshot":6681,"ctfId":6682},"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":6688,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6689,"config":6693,"_id":6695,"_type":33,"title":6690,"_source":35,"_file":6696,"_stem":6697,"_extension":38},"/en-us/blog/authors/salahddine-aberkan",{"name":6690,"config":6691},"Salahddine Aberkan",{"headshot":6692},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":697,"gitlabHandle":6694},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6699,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6700,"config":6705,"_id":6706,"_type":33,"title":6701,"_source":35,"_file":6707,"_stem":6708,"_extension":38},"/en-us/blog/authors/salman-ladha",{"name":6701,"config":6702},"Salman Ladha",{"headshot":6703,"ctfId":6704},"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":6710,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6711,"config":6716,"_id":6717,"_type":33,"title":6712,"_source":35,"_file":6718,"_stem":6719,"_extension":38},"/en-us/blog/authors/sam-beckham",{"name":6712,"config":6713},"Sam Beckham",{"headshot":6714,"ctfId":6715},"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":6721,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6722,"config":6727,"_id":6728,"_type":33,"title":6723,"_source":35,"_file":6729,"_stem":6730,"_extension":38},"/en-us/blog/authors/sam-kerr",{"name":6723,"config":6724},"Sam Kerr",{"headshot":6725,"ctfId":6726},"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":6732,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6733,"config":6738,"_id":6739,"_type":33,"title":6734,"_source":35,"_file":6740,"_stem":6741,"_extension":38},"/en-us/blog/authors/sam-morris",{"name":6734,"config":6735},"Sam Morris",{"headshot":6736,"ctfId":6737},"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":6743,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6744,"config":6749,"_id":6750,"_type":33,"title":6745,"_source":35,"_file":6751,"_stem":6752,"_extension":38},"/en-us/blog/authors/sam-white",{"name":6745,"config":6746},"Sam White",{"headshot":6747,"ctfId":6748},"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":6754,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6755,"config":6760,"_id":6761,"_type":33,"title":6756,"_source":35,"_file":6762,"_stem":6763,"_extension":38},"/en-us/blog/authors/sam-wiskow",{"name":6756,"config":6757},"Sam Wiskow",{"headshot":6758,"ctfId":6759},"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":6765,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6766,"config":6771,"_id":6772,"_type":33,"title":6767,"_source":35,"_file":6773,"_stem":6774,"_extension":38},"/en-us/blog/authors/samantha-lee",{"name":6767,"config":6768},"Samantha Lee",{"headshot":6769,"ctfId":6770},"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":6776,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6777,"config":6781,"_id":6782,"_type":33,"title":6783,"_source":35,"_file":6784,"_stem":6785,"_extension":38},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6778,"config":6779},"Sameer Farooqui, OctoML",{"headshot":728,"ctfId":6780},"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":6787,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6788,"config":6793,"_id":6794,"_type":33,"title":6789,"_source":35,"_file":6795,"_stem":6796,"_extension":38},"/en-us/blog/authors/sameer-kamani",{"name":6789,"config":6790},"Sameer Kamani",{"headshot":6791,"ctfId":6792},"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":6798,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6799,"config":6804,"_id":6805,"_type":33,"title":6800,"_source":35,"_file":6806,"_stem":6807,"_extension":38},"/en-us/blog/authors/samer-akkoub",{"name":6800,"config":6801},"Samer Akkoub",{"headshot":6802,"ctfId":6803},"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":6809,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6810,"config":6814,"_id":6815,"_type":33,"title":6811,"_source":35,"_file":6816,"_stem":6817,"_extension":38},"/en-us/blog/authors/samuel-alfageme",{"name":6811,"config":6812},"Samuel Alfageme",{"headshot":728,"ctfId":6813},"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":6819,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6820,"config":6827,"_id":6828,"_type":33,"title":6822,"_source":35,"_file":6829,"_stem":6830,"_extension":38},"/en-us/blog/authors/sandra-gittlen",{"role":6821,"name":6822,"config":6823},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6824,"linkedin":6825,"ctfId":6826},"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":6832,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6833,"config":6837,"_id":6838,"_type":33,"title":6834,"_source":35,"_file":6839,"_stem":6840,"_extension":38},"/en-us/blog/authors/sandra-salerno",{"name":6834,"config":6835},"Sandra Salerno",{"headshot":728,"ctfId":6836},"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":6842,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6843,"config":6847,"_id":6848,"_type":33,"title":6849,"_source":35,"_file":6850,"_stem":6851,"_extension":38},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6844,"config":6845},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6846},"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":6853,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6854,"config":6858,"_id":6859,"_type":33,"title":6855,"_source":35,"_file":6860,"_stem":6861,"_extension":38},"/en-us/blog/authors/sara-kassabian",{"name":6855,"config":6856},"Sara Kassabian",{"headshot":7,"ctfId":6857},"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":6863,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6864,"config":6869,"_id":6870,"_type":33,"title":6865,"_source":35,"_file":6871,"_stem":6872,"_extension":38},"/en-us/blog/authors/sara-meadzinger",{"name":6865,"config":6866},"Sara Meadzinger",{"headshot":6867,"ctfId":6868},"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":6874,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6875,"config":6879,"_id":6880,"_type":33,"title":6876,"_source":35,"_file":6881,"_stem":6882,"_extension":38},"/en-us/blog/authors/sarah-daily",{"name":6876,"config":6877},"Sarah Daily",{"headshot":728,"ctfId":6878},"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":6884,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6885,"config":6889,"_id":6890,"_type":33,"title":6886,"_source":35,"_file":6891,"_stem":6892,"_extension":38},"/en-us/blog/authors/sarah-german",{"name":6886,"config":6887},"Sarah German",{"headshot":6888,"ctfId":4546},"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":6894,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6895,"config":6900,"_id":6901,"_type":33,"title":6896,"_source":35,"_file":6902,"_stem":6903,"_extension":38},"/en-us/blog/authors/sarah-matthies",{"name":6896,"config":6897},"Sarah Matthies",{"headshot":6898,"ctfId":6899},"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":6905,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6906,"config":6910,"_id":6911,"_type":33,"title":6912,"_source":35,"_file":6913,"_stem":6914,"_extension":38},"/en-us/blog/authors/sarah-odonnell",{"name":6907,"config":6908},"Sarah O’Donnell",{"headshot":7,"ctfId":6909},"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":6916,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6917,"config":6922,"_id":6923,"_type":33,"title":6918,"_source":35,"_file":6924,"_stem":6925,"_extension":38},"/en-us/blog/authors/sarah-waldner",{"name":6918,"config":6919},"Sarah Waldner",{"headshot":6920,"ctfId":6921},"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":6927,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6928,"config":6932,"_id":6933,"_type":33,"title":6929,"_source":35,"_file":6934,"_stem":6935,"_extension":38},"/en-us/blog/authors/sarrah-vesselov",{"name":6929,"config":6930},"Sarrah Vesselov",{"headshot":7,"ctfId":6931},"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":6937,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6938,"config":6942,"_id":6943,"_type":33,"title":6939,"_source":35,"_file":6944,"_stem":6945,"_extension":38},"/en-us/blog/authors/sarup-banskota",{"name":6939,"config":6940},"Sarup Banskota",{"headshot":728,"ctfId":6941},"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":6947,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6948,"config":6953,"_id":6954,"_type":33,"title":6949,"_source":35,"_file":6955,"_stem":6956,"_extension":38},"/en-us/blog/authors/sascha-eggenberger",{"name":6949,"config":6950},"Sascha Eggenberger",{"headshot":6951,"ctfId":6952},"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":6958,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6959,"config":6963,"_id":6964,"_type":33,"title":6960,"_source":35,"_file":6965,"_stem":6966,"_extension":38},"/en-us/blog/authors/sasha-bannister",{"name":6960,"config":6961},"Sasha Bannister",{"headshot":728,"ctfId":6962},"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":6968,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6969,"config":6974,"_id":6975,"_type":33,"title":6970,"_source":35,"_file":6976,"_stem":6977,"_extension":38},"/en-us/blog/authors/sasha-gazlay",{"name":6970,"config":6971},"Sasha Gazlay",{"headshot":6972,"ctfId":6973},"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":6979,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6980,"config":6985,"_id":6986,"_type":33,"title":6981,"_source":35,"_file":6987,"_stem":6988,"_extension":38},"/en-us/blog/authors/saumya-upadhyaya",{"name":6981,"config":6982},"Saumya Upadhyaya",{"headshot":6983,"ctfId":6984},"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":6990,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":6991,"config":6996,"_id":6997,"_type":33,"title":6998,"_source":35,"_file":6999,"_stem":7000,"_extension":38},"/en-us/blog/authors/scott-de-jonge",{"name":6992,"config":6993},"Scott de Jonge",{"headshot":6994,"ctfId":6995},"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":7002,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7003,"config":7008,"_id":7009,"_type":33,"title":7004,"_source":35,"_file":7010,"_stem":7011,"_extension":38},"/en-us/blog/authors/scott-hampton",{"name":7004,"config":7005},"Scott Hampton",{"headshot":7006,"ctfId":7007},"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":7013,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7014,"config":7018,"_id":7019,"_type":33,"title":7015,"_source":35,"_file":7020,"_stem":7021,"_extension":38},"/en-us/blog/authors/scott-williamson",{"name":7015,"config":7016},"Scott Williamson",{"headshot":7,"ctfId":7017},"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":7023,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7024,"config":7029,"_id":7030,"_type":33,"title":7025,"_source":35,"_file":7031,"_stem":7032,"_extension":38},"/en-us/blog/authors/sean-arnold",{"name":7025,"config":7026},"Sean Arnold",{"headshot":7027,"ctfId":7028},"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":7034,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7035,"config":7039,"_id":7040,"_type":33,"title":7041,"_source":35,"_file":7042,"_stem":7043,"_extension":38},"/en-us/blog/authors/sean-mcgivern",{"name":7036,"config":7037},"Sean McGivern",{"headshot":728,"ctfId":7038},"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":7045,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7046,"config":7050,"_id":7051,"_type":33,"title":7047,"_source":35,"_file":7052,"_stem":7053,"_extension":38},"/en-us/blog/authors/sean-packham",{"name":7047,"config":7048},"Sean Packham",{"headshot":728,"ctfId":7049},"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":7055,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7056,"config":7060,"_id":7061,"_type":33,"title":7057,"_source":35,"_file":7062,"_stem":7063,"_extension":38},"/en-us/blog/authors/sebastian-latacz",{"name":7057,"config":7058},"Sebastian Latacz",{"headshot":728,"ctfId":7059},"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":7065,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7066,"config":7070,"_id":7071,"_type":33,"title":7067,"_source":35,"_file":7072,"_stem":7073,"_extension":38},"/en-us/blog/authors/sergey-nuzhdin",{"name":7067,"config":7068},"Sergey Nuzhdin",{"headshot":728,"ctfId":7069},"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":7075,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7076,"config":7080,"_id":7081,"_type":33,"title":7077,"_source":35,"_file":7082,"_stem":7083,"_extension":38},"/en-us/blog/authors/seth-berger",{"name":7077,"config":7078},"Seth Berger",{"headshot":7,"ctfId":7079},"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":7085,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7086,"config":7090,"_id":7091,"_type":33,"title":7087,"_source":35,"_file":7092,"_stem":7093,"_extension":38},"/en-us/blog/authors/shane-rice",{"name":7087,"config":7088},"Shane Rice",{"headshot":728,"ctfId":7089},"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":7095,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7096,"config":7101,"_id":7102,"_type":33,"title":7097,"_source":35,"_file":7103,"_stem":7104,"_extension":38},"/en-us/blog/authors/sharon-gaudin",{"name":7097,"config":7098},"Sharon Gaudin",{"headshot":7099,"ctfId":7100},"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":7106,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7107,"config":7111,"_id":7112,"_type":33,"title":7108,"_source":35,"_file":7113,"_stem":7114,"_extension":38},"/en-us/blog/authors/shawn-winters",{"name":7108,"config":7109},"Shawn Winters",{"headshot":7,"ctfId":7110},"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":7116,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7117,"config":7121,"_id":7122,"_type":33,"title":7123,"_source":35,"_file":7124,"_stem":7125,"_extension":38},"/en-us/blog/authors/sherida-mcmullan",{"name":7118,"config":7119},"Sherida McMullan",{"headshot":728,"ctfId":7120},"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":7127,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7128,"config":7132,"_id":7133,"_type":33,"title":7129,"_source":35,"_file":7134,"_stem":7135,"_extension":38},"/en-us/blog/authors/shinya-maeda",{"name":7129,"config":7130},"Shinya Maeda",{"headshot":7,"ctfId":7131},"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":7137,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7138,"config":7143,"_id":7144,"_type":33,"title":7139,"_source":35,"_file":7145,"_stem":7146,"_extension":38},"/en-us/blog/authors/shrishti-choudhary",{"name":7139,"config":7140},"Shrishti Choudhary",{"headshot":7141,"ctfId":7142},"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":7148,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7149,"config":7158,"_id":7159,"_type":33,"title":7151,"_source":35,"_file":7160,"_stem":7161,"_extension":38},"/en-us/blog/authors/sid-sijbrandij",{"role":7150,"name":7151,"bio":7152,"config":7153},"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":7154,"twitter":7155,"linkedin":7156,"ctfId":7157},"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":7163,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7164,"config":7169,"_id":7170,"_type":33,"title":7165,"_source":35,"_file":7171,"_stem":7172,"_extension":38},"/en-us/blog/authors/siddharth-mathur",{"name":7165,"config":7166},"Siddharth Mathur",{"headshot":7167,"ctfId":7168},"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":7174,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7175,"config":7179,"_id":7180,"_type":33,"title":7176,"_source":35,"_file":7181,"_stem":7182,"_extension":38},"/en-us/blog/authors/simon-tarchichi",{"name":7176,"config":7177},"Simon Tarchichi",{"headshot":7,"ctfId":7178},"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":7184,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7185,"config":7190,"_id":7191,"_type":33,"title":7186,"_source":35,"_file":7192,"_stem":7193,"_extension":38},"/en-us/blog/authors/sophia-manicor",{"name":7186,"config":7187},"Sophia Manicor",{"headshot":7188,"ctfId":7189},"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":7195,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7196,"config":7201,"_id":7202,"_type":33,"title":7197,"_source":35,"_file":7203,"_stem":7204,"_extension":38},"/en-us/blog/authors/sri-rangan",{"name":7197,"config":7198},"Sri Rangan",{"headshot":7199,"ctfId":7200},"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":7206,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7207,"config":7212,"_id":7213,"_type":33,"title":7208,"_source":35,"_file":7214,"_stem":7215,"_extension":38},"/en-us/blog/authors/stacy-cline",{"name":7208,"config":7209},"Stacy Cline",{"headshot":7210,"ctfId":7211},"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":7217,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7218,"config":7223,"_id":7224,"_type":33,"title":7219,"_source":35,"_file":7225,"_stem":7226,"_extension":38},"/en-us/blog/authors/stan-hu",{"name":7219,"config":7220},"Stan Hu",{"headshot":7221,"ctfId":7222},"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":7228,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7229,"config":7233,"_id":7234,"_type":33,"title":7235,"_source":35,"_file":7236,"_stem":7237,"_extension":38},"/en-us/blog/authors/stephan-hochdrfer",{"name":7230,"config":7231},"Stephan Hochdörfer",{"headshot":728,"ctfId":7232},"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":7239,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7240,"config":7244,"_id":7245,"_type":33,"title":7241,"_source":35,"_file":7246,"_stem":7247,"_extension":38},"/en-us/blog/authors/stephanie-garza",{"name":7241,"config":7242},"Stephanie Garza",{"headshot":7,"ctfId":7243},"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":7249,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7250,"config":7254,"_id":7255,"_type":33,"title":7256,"_source":35,"_file":7257,"_stem":7258,"_extension":38},"/en-us/blog/authors/stephen-mcguinness",{"name":7251,"config":7252},"Stephen McGuinness",{"headshot":7,"ctfId":7253},"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":7260,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7261,"config":7266,"_id":7267,"_type":33,"title":7262,"_source":35,"_file":7268,"_stem":7269,"_extension":38},"/en-us/blog/authors/stephen-walters",{"name":7262,"config":7263},"Stephen Walters",{"headshot":7264,"ctfId":7265},"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":7271,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7272,"config":7277,"_id":7278,"_type":33,"title":7273,"_source":35,"_file":7279,"_stem":7280,"_extension":38},"/en-us/blog/authors/steve-abrams",{"name":7273,"config":7274},"Steve Abrams",{"headshot":7275,"ctfId":7276},"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":7282,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7283,"config":7287,"_id":7288,"_type":33,"title":7284,"_source":35,"_file":7289,"_stem":7290,"_extension":38},"/en-us/blog/authors/steve-azzopardi",{"name":7284,"config":7285},"Steve Azzopardi",{"headshot":7,"ctfId":7286},"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":7292,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7293,"config":7298,"_id":7299,"_type":33,"title":7294,"_source":35,"_file":7300,"_stem":7301,"_extension":38},"/en-us/blog/authors/steve-grossman",{"name":7294,"config":7295},"Steve Grossman",{"headshot":7296,"ctfId":7297},"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":7303,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7304,"config":7308,"_id":7309,"_type":33,"title":7305,"_source":35,"_file":7310,"_stem":7311,"_extension":38},"/en-us/blog/authors/steve-ropa",{"name":7305,"config":7306},"Steve Ropa",{"headshot":728,"ctfId":7307},"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":7313,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7314,"config":7318,"_id":7319,"_type":33,"title":7315,"_source":35,"_file":7320,"_stem":7321,"_extension":38},"/en-us/blog/authors/steve-truong",{"name":7315,"config":7316},"Steve Truong",{"headshot":7,"ctfId":7317},"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":7323,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7324,"config":7328,"_id":7329,"_type":33,"title":7325,"_source":35,"_file":7330,"_stem":7331,"_extension":38},"/en-us/blog/authors/steven-zinck",{"name":7325,"config":7326},"Steven Zinck",{"headshot":728,"ctfId":7327},"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":7333,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7334,"config":7338,"_id":7339,"_type":33,"title":7335,"_source":35,"_file":7340,"_stem":7341,"_extension":38},"/en-us/blog/authors/sunil-kowlgi",{"name":7335,"config":7336},"Sunil Kowlgi",{"headshot":728,"ctfId":7337},"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":7343,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7344,"config":7348,"_id":7349,"_type":33,"title":7345,"_source":35,"_file":7350,"_stem":7351,"_extension":38},"/en-us/blog/authors/suri-patel",{"name":7345,"config":7346},"Suri Patel",{"headshot":728,"ctfId":7347},"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":7353,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7354,"config":7359,"_id":7360,"_type":33,"title":7355,"_source":35,"_file":7361,"_stem":7362,"_extension":38},"/en-us/blog/authors/susan-tacker",{"name":7355,"config":7356},"Susan Tacker",{"headshot":7357,"ctfId":7358},"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":7364,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7365,"config":7371,"_id":7372,"_type":33,"title":7366,"_source":35,"_file":7373,"_stem":7374,"_extension":38},"/en-us/blog/authors/susie-bitters",{"name":7366,"config":7367},"Susie Bitters",{"headshot":7368,"linkedin":7369,"ctfId":7370},"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":7376,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7377,"config":7381,"_id":7382,"_type":33,"title":7378,"_source":35,"_file":7383,"_stem":7384,"_extension":38},"/en-us/blog/authors/suzanne-selhorn",{"name":7378,"config":7379},"Suzanne Selhorn",{"headshot":7380,"ctfId":4546},"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":7386,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7387,"config":7392,"_id":7393,"_type":33,"title":7388,"_source":35,"_file":7394,"_stem":7395,"_extension":38},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7388,"config":7389},"Tanuja Jayarama Raju",{"headshot":7390,"ctfId":7391},"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":7397,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7398,"config":7403,"_id":7404,"_type":33,"title":7399,"_source":35,"_file":7405,"_stem":7406,"_extension":38},"/en-us/blog/authors/taurie-davis",{"name":7399,"config":7400},"Taurie Davis",{"headshot":7401,"ctfId":7402},"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":7408,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7409,"config":7414,"_id":7415,"_type":33,"title":7416,"_source":35,"_file":7417,"_stem":7418,"_extension":38},"/en-us/blog/authors/taylor-mccaslin",{"name":7410,"config":7411},"Taylor McCaslin",{"headshot":7412,"ctfId":7413},"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":7420,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7421,"config":7425,"_id":7426,"_type":33,"title":7422,"_source":35,"_file":7427,"_stem":7428,"_extension":38},"/en-us/blog/authors/taylor-murphy",{"name":7422,"config":7423},"Taylor Murphy",{"headshot":7,"ctfId":7424},"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":7430,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7431,"config":7436,"_id":7437,"_type":33,"title":7432,"_source":35,"_file":7438,"_stem":7439,"_extension":38},"/en-us/blog/authors/ted-gieschen",{"name":7432,"config":7433},"Ted Gieschen",{"headshot":7434,"ctfId":7435},"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":7441,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7442,"config":7446,"_id":7447,"_type":33,"title":7443,"_source":35,"_file":7448,"_stem":7449,"_extension":38},"/en-us/blog/authors/thao-yeager",{"name":7443,"config":7444},"Thao Yeager",{"headshot":7,"ctfId":7445},"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":7451,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7452,"config":7457,"_id":7458,"_type":33,"title":7459,"_source":35,"_file":7460,"_stem":7461,"_extension":38},"/en-us/blog/authors/thiago-figueir",{"name":7453,"config":7454},"Thiago Figueiró",{"headshot":7455,"ctfId":7456},"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":7463,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7464,"config":7469,"_id":7470,"_type":33,"title":7465,"_source":35,"_file":7471,"_stem":7472,"_extension":38},"/en-us/blog/authors/thong-kuah",{"name":7465,"config":7466},"Thong Kuah",{"headshot":7467,"ctfId":7468},"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":7474,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7475,"config":7479,"_id":7480,"_type":33,"title":7476,"_source":35,"_file":7481,"_stem":7482,"_extension":38},"/en-us/blog/authors/tim-davis",{"name":7476,"config":7477},"Tim Davis",{"headshot":728,"ctfId":7478},"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":7484,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7485,"config":7489,"_id":7490,"_type":33,"title":7486,"_source":35,"_file":7491,"_stem":7492,"_extension":38},"/en-us/blog/authors/tim-lehnen",{"name":7486,"config":7487},"Tim Lehnen",{"headshot":7,"ctfId":7488},"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":7494,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7495,"config":7500,"_id":7501,"_type":33,"title":7496,"_source":35,"_file":7502,"_stem":7503,"_extension":38},"/en-us/blog/authors/tim-rizzi",{"name":7496,"config":7497},"Tim Rizzi",{"headshot":7498,"ctfId":7499},"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":7505,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7506,"config":7510,"_id":7512,"_type":33,"title":7507,"_source":35,"_file":7513,"_stem":7514,"_extension":38},"/en-us/blog/authors/tim-zallmann",{"name":7507,"config":7508},"Tim Zallmann",{"headshot":7509},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":697,"gitlabHandle":7511},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7516,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7517,"config":7521,"_id":7522,"_type":33,"title":7518,"_source":35,"_file":7523,"_stem":7524,"_extension":38},"/en-us/blog/authors/tina-sturgis",{"name":7518,"config":7519},"Tina Sturgis",{"headshot":7,"ctfId":7520},"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":7526,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7527,"config":7531,"_id":7532,"_type":33,"title":7533,"_source":35,"_file":7534,"_stem":7535,"_extension":38},"/en-us/blog/authors/tobias-gnther",{"name":7528,"config":7529},"Tobias Günther",{"headshot":728,"ctfId":7530},"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":7537,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7538,"config":7542,"_id":7543,"_type":33,"title":7539,"_source":35,"_file":7544,"_stem":7545,"_extension":38},"/en-us/blog/authors/todd-barr",{"name":7539,"config":7540},"Todd Barr",{"headshot":7,"ctfId":7541},"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":7547,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7548,"config":7552,"_id":7553,"_type":33,"title":7549,"_source":35,"_file":7554,"_stem":7555,"_extension":38},"/en-us/blog/authors/tom-cooney",{"name":7549,"config":7550},"Tom Cooney",{"headshot":7,"ctfId":7551},"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":7557,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7558,"config":7563,"_id":7564,"_type":33,"title":7559,"_source":35,"_file":7565,"_stem":7566,"_extension":38},"/en-us/blog/authors/tomas-vik",{"name":7559,"config":7560},"Tomas Vik",{"headshot":7561,"ctfId":7562},"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":7568,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7569,"config":7574,"_id":7575,"_type":33,"title":7570,"_source":35,"_file":7576,"_stem":7577,"_extension":38},"/en-us/blog/authors/tomasz-maczukin",{"name":7570,"config":7571},"Tomasz Maczukin",{"headshot":7572,"ctfId":7573},"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":7579,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7580,"config":7585,"_id":7586,"_type":33,"title":7581,"_source":35,"_file":7587,"_stem":7588,"_extension":38},"/en-us/blog/authors/toon-claes",{"name":7581,"config":7582},"Toon Claes",{"headshot":7583,"ctfId":7584},"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":7590,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7591,"config":7596,"_id":7597,"_type":33,"title":7592,"_source":35,"_file":7598,"_stem":7599,"_extension":38},"/en-us/blog/authors/torsten-linz",{"name":7592,"config":7593},"Torsten Linz",{"headshot":7594,"ctfId":7595},"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":7601,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7602,"config":7606,"_id":7607,"_type":33,"title":7603,"_source":35,"_file":7608,"_stem":7609,"_extension":38},"/en-us/blog/authors/trevor-knudsen",{"name":7603,"config":7604},"Trevor Knudsen",{"headshot":7,"ctfId":7605},"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":7611,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7612,"config":7617,"_id":7618,"_type":33,"title":7613,"_source":35,"_file":7619,"_stem":7620,"_extension":38},"/en-us/blog/authors/tristan-read",{"name":7613,"config":7614},"Tristan Read",{"headshot":7615,"ctfId":7616},"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":7622,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7623,"config":7628,"_id":7629,"_type":33,"title":7624,"_source":35,"_file":7630,"_stem":7631,"_extension":38},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7624,"config":7625},"Tsukasa Komatsubara",{"headshot":7626,"ctfId":7627},"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":7633,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7634,"config":7638,"_id":7639,"_type":33,"title":7635,"_source":35,"_file":7640,"_stem":7641,"_extension":38},"/en-us/blog/authors/tsvi-zandany",{"name":7635,"config":7636},"Tsvi Zandany",{"headshot":728,"ctfId":7637},"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":7643,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7644,"config":7648,"_id":7649,"_type":33,"title":7645,"_source":35,"_file":7650,"_stem":7651,"_extension":38},"/en-us/blog/authors/tye-davis",{"name":7645,"config":7646},"Tye Davis",{"headshot":7,"ctfId":7647},"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":7653,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7654,"config":7658,"_id":7659,"_type":33,"title":7655,"_source":35,"_file":7660,"_stem":7661,"_extension":38},"/en-us/blog/authors/tyler-williams",{"name":7655,"config":7656},"Tyler Williams",{"headshot":7,"ctfId":7657},"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":7663,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7664,"config":7668,"_id":7669,"_type":33,"title":7670,"_source":35,"_file":7671,"_stem":7672,"_extension":38},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7665,"config":7666},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7667},"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":7674,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7675,"config":7680,"_id":7681,"_type":33,"title":7676,"_source":35,"_file":7682,"_stem":7683,"_extension":38},"/en-us/blog/authors/valentine-mairet",{"name":7676,"config":7677},"Valentine Mairet",{"headshot":7678,"ctfId":7679},"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":7685,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7686,"config":7690,"_id":7691,"_type":33,"title":7687,"_source":35,"_file":7692,"_stem":7693,"_extension":38},"/en-us/blog/authors/valerie-silverthorne",{"name":7687,"config":7688},"Valerie Silverthorne",{"headshot":728,"ctfId":7689},"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":7695,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7696,"config":7700,"_id":7701,"_type":33,"title":7697,"_source":35,"_file":7702,"_stem":7703,"_extension":38},"/en-us/blog/authors/vanessa-wegner",{"name":7697,"config":7698},"Vanessa Wegner",{"headshot":7,"ctfId":7699},"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":7705,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7706,"config":7711,"_id":7712,"_type":33,"title":7707,"_source":35,"_file":7713,"_stem":7714,"_extension":38},"/en-us/blog/authors/veethika-mishra",{"name":7707,"config":7708},"Veethika Mishra",{"headshot":7709,"ctfId":7710},"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":7716,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7717,"config":7722,"_id":7723,"_type":33,"title":7718,"_source":35,"_file":7724,"_stem":7725,"_extension":38},"/en-us/blog/authors/vick-kelkar",{"name":7718,"config":7719},"Vick Kelkar",{"headshot":7720,"ctfId":7721},"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":7727,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7728,"config":7732,"_id":7733,"_type":33,"title":7729,"_source":35,"_file":7734,"_stem":7735,"_extension":38},"/en-us/blog/authors/vicky-steeves",{"name":7729,"config":7730},"Vicky Steeves",{"headshot":7,"ctfId":7731},"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":7737,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7738,"config":7742,"_id":7743,"_type":33,"title":7739,"_source":35,"_file":7744,"_stem":7745,"_extension":38},"/en-us/blog/authors/victor-hernandez",{"name":7739,"config":7740},"Victor Hernandez",{"headshot":728,"ctfId":7741},"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":7747,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7748,"config":7752,"_id":7753,"_type":33,"title":7749,"_source":35,"_file":7754,"_stem":7755,"_extension":38},"/en-us/blog/authors/victor-wu",{"name":7749,"config":7750},"Victor Wu",{"headshot":728,"ctfId":7751},"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":7757,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7758,"config":7763,"_id":7764,"_type":33,"title":7759,"_source":35,"_file":7765,"_stem":7766,"_extension":38},"/en-us/blog/authors/viktor-nagy",{"name":7759,"config":7760},"Viktor Nagy",{"headshot":7761,"ctfId":7762},"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":7768,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7769,"config":7773,"_id":7774,"_type":33,"title":7770,"_source":35,"_file":7775,"_stem":7776,"_extension":38},"/en-us/blog/authors/vincent-jong",{"name":7770,"config":7771},"Vincent Jong",{"headshot":728,"ctfId":7772},"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":7778,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7779,"config":7784,"_id":7785,"_type":33,"title":7780,"_source":35,"_file":7786,"_stem":7787,"_extension":38},"/en-us/blog/authors/vincy-wilson",{"name":7780,"config":7781},"Vincy Wilson",{"headshot":7782,"ctfId":7783},"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":7789,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7790,"config":7795,"_id":7796,"_type":33,"title":7791,"_source":35,"_file":7797,"_stem":7798,"_extension":38},"/en-us/blog/authors/vishal-tak",{"name":7791,"config":7792},"Vishal Tak",{"headshot":7793,"ctfId":7794},"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":7800,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7801,"config":7806,"_id":7807,"_type":33,"title":7802,"_source":35,"_file":7808,"_stem":7809,"_extension":38},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7802,"config":7803},"Vitor Meireles De Sousa",{"headshot":7804,"ctfId":7805},"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":7811,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7812,"config":7816,"_id":7817,"_type":33,"title":7813,"_source":35,"_file":7818,"_stem":7819,"_extension":38},"/en-us/blog/authors/vlad-budica",{"name":7813,"config":7814},"Vlad Budica",{"headshot":728,"ctfId":7815},"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":7821,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7822,"config":7826,"_id":7827,"_type":33,"title":7823,"_source":35,"_file":7828,"_stem":7829,"_extension":38},"/en-us/blog/authors/vlad-stoianovici",{"name":7823,"config":7824},"Vlad Stoianovici",{"headshot":7,"ctfId":7825},"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":7831,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7832,"config":7836,"_id":7837,"_type":33,"title":7833,"_source":35,"_file":7838,"_stem":7839,"_extension":38},"/en-us/blog/authors/wayne-haber",{"name":7833,"config":7834},"Wayne Haber",{"headshot":7,"ctfId":7835},"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":7841,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7842,"config":7846,"_id":7847,"_type":33,"title":7843,"_source":35,"_file":7848,"_stem":7849,"_extension":38},"/en-us/blog/authors/will-chandler",{"name":7843,"config":7844},"Will Chandler",{"headshot":728,"ctfId":7845},"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":7851,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7852,"config":7857,"_id":7858,"_type":33,"title":7853,"_source":35,"_file":7859,"_stem":7860,"_extension":38},"/en-us/blog/authors/will-leidheiser",{"name":7853,"config":7854},"Will Leidheiser",{"headshot":7855,"ctfId":7856},"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":7862,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7863,"config":7868,"_id":7869,"_type":33,"title":7864,"_source":35,"_file":7870,"_stem":7871,"_extension":38},"/en-us/blog/authors/william-arias",{"name":7864,"config":7865},"William Arias",{"headshot":7866,"ctfId":7867},"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":7873,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7874,"config":7878,"_id":7879,"_type":33,"title":7875,"_source":35,"_file":7880,"_stem":7881,"_extension":38},"/en-us/blog/authors/william-chia",{"name":7875,"config":7876},"William Chia",{"headshot":7,"ctfId":7877},"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":7883,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7884,"config":7888,"_id":7889,"_type":33,"title":7885,"_source":35,"_file":7890,"_stem":7891,"_extension":38},"/en-us/blog/authors/yannis-roussos",{"name":7885,"config":7886},"Yannis Roussos",{"headshot":7,"ctfId":7887},"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":7893,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7894,"config":7898,"_id":7899,"_type":33,"title":7895,"_source":35,"_file":7900,"_stem":7901,"_extension":38},"/en-us/blog/authors/yevgeny-pats",{"name":7895,"config":7896},"Yevgeny Pats",{"headshot":7,"ctfId":7897},"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":7903,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7904,"config":7908,"_id":7909,"_type":33,"title":7905,"_source":35,"_file":7910,"_stem":7911,"_extension":38},"/en-us/blog/authors/yorick-peterse",{"name":7905,"config":7906},"Yorick Peterse",{"headshot":728,"ctfId":7907},"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":7913,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7914,"config":7918,"_id":7919,"_type":33,"title":7920,"_source":35,"_file":7921,"_stem":7922,"_extension":38},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7915,"config":7916},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7917},"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":7924,"_dir":690,"_draft":6,"_partial":6,"_locale":7,"content":7925,"config":7930,"_id":7931,"_type":33,"title":7926,"_source":35,"_file":7932,"_stem":7933,"_extension":38},"/en-us/blog/authors/zhaochen-li",{"name":7926,"config":7927},"Zhaochen Li",{"headshot":7928,"ctfId":7929},"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":7935,"_dir":41,"_draft":6,"_partial":6,"_locale":7,"header":7936,"eyebrow":7937,"blurb":7938,"button":7939,"secondaryButton":7943,"_id":7945,"_type":33,"title":7946,"_source":35,"_file":7947,"_stem":7948,"_extension":38},"/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":49,"config":7940},{"href":7941,"dataGaName":52,"dataGaLocation":7942},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":54,"config":7944},{"href":56,"dataGaName":57,"dataGaLocation":7942},"content:shared:fr-fr:next-steps.yml","Next Steps","shared/fr-fr/next-steps.yml","shared/fr-fr/next-steps",1762754855626]