[{"data":1,"prerenderedAt":7934},["ShallowReactive",2],{"/de-de/blog/whats-new-in-git-2-46-0":3,"navigation-de-de":38,"banner-de-de":455,"footer-de-de":468,"blogAuthors-de-de":677,"next-steps-de-de":7913,"footer-source-/de-de/blog/whats-new-in-git-2-46-0/":7928},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":27,"_id":31,"_type":32,"title":33,"_source":34,"_file":35,"_stem":36,"_extension":37},"/de-de/blog/whats-new-in-git-2-46-0","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"Was gibt es Neues in Git 2.46.0?","Hier findest du die Highlights, die das Git-Team von GitLab und die breitere Git-Community zum Release beigetragen haben. Freu dich unter anderem auf Migrationstools für das Referenz-Backend und Unterstützung für symbolische Referenzen in Transaktionen.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660028/Blog/Hero%20Images/blog-image-template-1800x945__25_.png","https://about.gitlab.com/blog/whats-new-in-git-2-46-0","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"Was gibt es Neues in Git 2.46.0?\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Justin Tobler\"}],\n        \"datePublished\": \"2024-07-29\",\n      }\n                  ",{"title":9,"description":10,"authors":17,"heroImage":11,"date":19,"body":20,"category":21,"tags":22,"updatedDate":26},[18],"Justin Tobler","2024-07-29","Das Git-Projekt hat kürzlich [Git v2.46.0](https://lore.kernel.org/git/xmqqzfq0i0qa.fsf@gitster.g/T/#u) veröffentlicht. Werfen wir einen Blick auf die wichtigsten Highlights dieser Version, die Beiträge des Git-Teams von GitLab und der gesamten Git-Community enthält.\n\n## Tools zur Migration von Referenz-Backends\n\nIn der vorherigen [Git 2.45.0](https://gitlab.com/gitlab-org/git/-/raw/master/Documentation/RelNotes/2.45.0.txt?ref_type=heads)-Release wurde das Format „reftables“ als neues Backend zum Speichern von Referenzen eingeführt. Dieses neue Referenzformat behebt einige Schwierigkeiten, die Repositories hatten, wenn die Anzahl der Referenzen stieg. Wenn du mit dem reftables-Backend noch nicht vertraut bist, lies dir unseren letzten [Blogbeitrag zur Git-Release](https://about.gitlab.com/blog/whats-new-in-git-2-45-0/) durch, in dem das Feature vorgestellt wurde. Auch unsere Anfängerleitfaden ist toll, um [mehr darüber zu erfahren, wie reftables funktionieren](https://about.gitlab.com/blog/a-beginners-guide-to-the-git-reftable-format/).\n\nDas reftable-Backend hat ein anderes Festplattenformat als das vorhandene files-Backend. Daher ist bei der Verwendung von reftables in einem bestehenden Repository eine Konvertierung zwischen den verschiedenen Formaten erforderlich. Dazu wurden der neue Befehl git-refs(1) und der Unterbefehl `migrate` eingeführt, um Referenz-Backend-Migrationen auszuführen. Hier findest du ein Beispiel dafür, wie dieser Befehl verwendet werden kann.\n\n```shell\n# Initialisiere ein neues \"bare\" Repository, damit es keine Reflogs enthält.\n$ git init --bare .\n$ git commit --allow-empty -m \"init\"\n# Erstelle ein paar Referencen.\n$ git branch foo\n$ git branch bar\n$ tree .git/refs\n.git/refs\n├── heads\n│   ├── bar\n│   ├── foo\n│   ├── main\n└── tags\n# Migriere Referenzen zum reftable Format.\n$ git refs migrate --ref-format=reftable\n# Überprüfe, ob jetzt das reftable Backend benutzt wird.\n$ tree .git/reftable\n.git/reftable\n├── 0x000000000001-0x000000000001-a3451eed.ref\n└── tables.list\n# Überprüfe die Repository Konfiguration um das neue `refstorage` Format zu sehen.\n$ cat config\n[core]\n        repositoryformatversion = 1\n        filemode = true\n        bare = true\n        ignorecase = true\n        precomposeunicode = true\n[extensions]\n        refstorage = reftable\n```\n\nSobald ein Repository migriert wurde, wird das Festplattenformat geändert, sodass du dann das reftable-Backend nutzen kannst. Git-Abläufe im Repository funktionieren und interagieren wie gewohnt mit Remotes. Die Migration wirkt sich nur darauf aus, wie Referenzen intern für das Repository gespeichert werden. Wenn du zum file-Referenz-Backend zurückkehren möchtest, führe einfach den gleichen Befehl aus und spezifiziere dabei `--ref-format=files`.\n\nDas Migrationstool hat derzeit einige signifikante Einschränkungen. Die Reflogs in einem Repository werden auch über das Referenz-Backend gespeichert und würden ebenfalls eine Migration erfordern. Leider ist das Tool noch nicht in der Lage, Reflogs zwischen den files- und reftables-Backends zu konvertieren. Außerdem hat ein Repository mit Worktrees im Grunde mehrere Ref-Stores, und das Migrationstool kann dieses Szenario derzeit noch nicht bewältigen. Wenn ein Repository also Reflogs oder Worktrees enthält, ist die Migration derzeit nicht verfügbar. Diese Einschränkungen werden voraussichtlich in zukünftigen Versionen behoben.\n\nDa ein “bare” Git-Repository keine Reflogs hat, ist es einfacher zu migrieren. Um ein nicht-”bare” Repository zu migrieren, müssen die Reflogs zuerst gelöscht werden. Es kann also jedes Repository ohne Reflogs oder Worktrees migriert werden. Wenn du diese Einschränkungen im Hinterkopf behältst, kann dieses Tool ein guter Helfer sein, um die Vorteile des reftables-Backends in deinen bestehenden Repositories zu nutzen.\n\nDieses Projekt wurde von [Patrick Steinhardt](https://gitlab.com/pks-gitlab) geleitet.\n\n## Transaktionale symref-Updates\n\nDer Befehl [git-update-ref(1)](https://git-scm.com/docs/git-update-ref)\nerlaubt es, Referenzen in einem Git-Repository zu schreiben. Es können auch mehrere Referenz-Updates atomar mit Transaktionen ausgeführt werden, indem der Befehl `git update-ref --stdin` verwendet wird und die Informationen zum Referenz-Update an stdin übergeben werden. Nachfolgend findest du ein Beispiel dafür, wie dies geschieht.\n\n```shell\n$ git init .\n$ git branch -m main\n$ git commit --allow-empty -m \"foo\" && git commit --allow-empty -m \"bar\"\n# Lese die Objekt ID für die zwei erstellten Commits.\n$ git rev-parse main~ main\n567aac2b3d1fbf0bd2433f669eb0b82a0348775e\n3b13462a9a42e0a3130b9cbc472ab479d3ef0631\n# Starte eine Transaktion mit mehreren Updates und committe diese.\n$ git update-ref --stdin \u003C\u003CEOF\n> start\n> create refs/heads/new-ref 3b13462a9a42e0a3130b9cbc472ab479d3ef0631\n> update refs/heads/main 567aac2b3d1fbf0bd2433f669eb0b82a0348775e\n> commit\n> EOF\n$ git for-each-ref\n567aac2b3d1fbf0bd2433f669eb0b82a0348775e commit refs/heads/main\n3b13462a9a42e0a3130b9cbc472ab479d3ef0631 commit refs/heads/my-ref\n```\n\nIn diesem Beispiel wird nach dem Commit der Transaktion ein neuer Branch erstellt, der auf den Commit „bar“ zeigt, und der Haupt-Branch wird aktualisiert, um auf den vorherigen Commit „foo“ zu zeigen. Durch das Committen der Transaktion werden die angegebenen Referenz-Updates atomar durchgeführt. Wenn ein einzelnes Referenz-Update fehlschlägt, wird die Transaktion abgebrochen und es werden keine Referenz-Updates durchgeführt.\n\nHier ist bemerkenswert, dass es keine Anweisungen zur Unterstützung von symref-Updates bei diesen Transaktionen gibt. Wenn ein(e) Benutzer(in) ein symref zusammen mit anderen Referenzen atomar in derselben Transaktion aktualisieren möchte, gibt es dazu kein Tool. Die in dieser Release eingeführten Anweisungen `symref-create`, `symref-update`, `symref-delete` und `symref-verify` bieten diese Funktion.\n\n```shell\n# Erstelle eine symbolische Referenz, die wir updaten können.\n$ git symbolic-ref refs/heads/symref refs/heads/main\n# Der --no-deref Parameter wird benötigt, damit die symbolische Referenz selbst geupdated wird.\n$ git update-ref --stdin --no-deref \u003C\u003CEOF\n> start\n> symref-create refs/heads/new-symref refs/heads/main\n> symref-update refs/heads/symref refs/heads/new-ref\n> commit\n> EOF\n$ git symbolic-ref refs/heads/symref\nrefs/heads/new-ref\n$ git symbolic-ref refs/heads/new-symref\nrefs/heads/main\n```\n\nIm obigen Beispiel wird eine neue symbolische Referenz erstellt und eine weitere in einer Transaktion aktualisiert. Diese neuen symref-Anweisungen können in Kombination mit den bereits bestehenden Anweisungen verwendet werden, um alle Arten von Referenz-Updates jetzt in einer einzigen Transaktion durchführen zu können. Weitere Informationen zu jeder dieser neuen Anweisungen findest du in der [Dokumentation](https://git-scm.com/docs/git-update-ref).\n\nDieses Projekt wurde von [Karthik Nayak](https://gitlab.com/knayakgl) geleitet.\n\n## UX-Verbesserungen für git-config(1)\n\nMit dem Befehl git-config(1) können Repository-Optionen und globale Optionen angezeigt und konfiguriert werden. Die Modi, die für die Interaktion mit der Konfiguration verwendet werden, können explizit mit Hilfe von Flags ausgewählt oder implizit basierend auf der Anzahl der dem Befehl bereitgestellten Argumente bestimmt werden. Ein Beispiel:\n\n```shell\n$ git config --list\n# Lese den Nutzernamen im expliziten Modus.\n$ git config --get user.name\n# Lese den Nutzernamen im impliziten Modus.\n$ git config user.name\n# Schreibe den Nutzernamen im expliziten Modus.\n$ git config --set user.name \"Sidney Jones\"\n# Schreibe den Nutzernamen im impliziten Modus.\n$ git config user.name \"Sidney Jones\"\n# Man kann auch ein optionales drittes Argument übergeben. Was denkst du, was der Effekt ist?\n$ git config \u003Cname> [\u003Cvalue> [\u003Cvalue-pattern>]]\n```\n\nIm Allgemeinen entspricht die Benutzeroberfläche von [git-config(1)](https://git-scm.com/docs/git-config) nicht den anderen, moderneren Git-Befehlen, bei denen man normalerweise Unterbefehle verwendet. Ein Beispiel ist `git remote list`. In diesem Release werden `list`, `get`, `set`, `unset`, `rename-section`, `remove-section` und `edit` als Unterbefehle eingeführt, die mit dem config-Befehl verwendet werden können, während gleichzeitig die alte Syntax erhalten bleibt. Diese Änderung soll das Erlebnis der Benutzer(innen) verbessern, indem der config-Befehl den UI-Gewohnheiten entspricht und sich mehr an andere Befehle in Git angleicht. Zum Beispiel:\n\n```shell\n$ git config list\n$ git config get user.name\n$ git config set user.name \"Sidney Jones\"\n```\n\nDieses Projekt wurde von [Patrick Steinhardt](https://gitlab.com/pks-gitlab) geleitet.\n\n## Performance-Regression wurde behoben\n\nGit-Operationen, die Attribute nutzen, lesen die `.gitattributes` Dateien im Worktree des Repositorys. Dies ist für reine Git-Repositories problematisch, da diese per Definition keinen Worktree haben. Um dies zu umgehen, gibt es in Git die Konfiguration `attr.tree`, mit der ein Quellbaum definiert werden kann, von dem Attribute ausgelesen werden.\n\nIn der Git Release 2.43.0 hat Git begonnen, bei “bare” Repositories standardmäßig den Baum von `HEAD` als Quelle für Git-Attribute heranzuziehen. Leider führte diese zusätzliche Belastung durch die Suche nach Git-Attributdateien zu schweren Leistungseinbußen. Das liegt daran, dass bei jeder Attributsuche der komplette Quellbaum durchsucht wird, um nach einer zugeordneten `.gitattributes`-Datei zu suchen, wenn `attr.tree` festgelegt ist. Je größer und tiefer der Quellbaum des Repository ist, desto deutlicher wird die Performance-Regression. Benchmarks im linux.git-Repository zeigten beispielsweise, dass git-pack-objects(1) 1,68-mal länger braucht, um durchzulaufen. Dies kann zu Verzögerungen führen, wenn man beispielsweise git-clone(1) oder git-fetch(1) benutzt.\n\n```\n# attr.tree zeigt auf \"HEAD\", wie es in Git 2.43.0 Standard ist.\nBenchmark 1: git -c attr.tree=HEAD pack-objects --all --stdout \u003C/dev/null >/dev/null\n  Time (mean ± σ):     133.807 s ±  4.866 s    [User: 129.034 s, System: 6.671 s]\n  Range (min … max):   128.447 s … 137.945 s    3 runs\n\n# attr.tree zeigt auf einen leeren Baum, wie es in Versionen vor Git 2.43.0 Standard war.\nBenchmark 2: git -c attr.tree=4b825dc642cb6eb9a060e54bf8d69288fbee4904 pack-objects --all --stdout \u003C/dev/null >/dev/null\n  Time (mean ± σ):     79.442 s ±  0.822 s    [User: 77.500 s, System: 6.056 s]\n  Range (min … max):   78.583 s … 80.221 s    3 runs\n```\n\nEinige der wichtigsten Git-Befehle, die betroffen waren, sind `clone`, `pull`, `fetch` und `diff`, wenn diese wie erwähnt in Repositories mit großen oder tiefen Bäumen ausgeführt wurden. Um diese Performance-Regression zu beheben, wurde also die `attr.tree`-Konfiguration teilweise zurückgesetzt, sodass sie nicht mehr standardmäßig auf `HEAD` gesetzt ist. Weitere Informationen findest du in diesem [Thread](https://lore.kernel.org/git/CAKOHPAn1btewYTdLYWpW+fOaXMY+JQZsLCQxUSwoUqnnFN_ohA@mail.gmail.com/) in der Mailingliste.\n\n## Unit-Test-Migration\n\nIn der Vergangenheit wurde das Testen im Git-Projekt über End-to-End-Tests durchgeführt, die als Shell-Skripte implementiert waren. Vor relativ kurzer Zeit hat das Git-Projekt ein Unit-Test-Framework, das in C geschrieben ist, eingeführt. Dieses neue Test-Framework bietet die Möglichkeit für detailliertere Tests von Implementierungsdetails auf niedrigerer Ebene und stellt dadurch eine Ergänzung der bestehenden End-to-End Tests dar. Es gibt einige bestehende End-to-End-Tests, die besser als Unit-Tests und daher gut für die Portierung geeignet sind.\n\nIn diesem Jahr unterstützt GitLab erneut Mitwirkende des [Google Summer of Code (GSoC)](https://summerofcode.withgoogle.com/), die im Git-Projekt arbeiten. Dank dieser laufenden GSoC-Projekte und auch der großen Git-Community werden einige bestehende Tests überarbeitet und in das Unit-Test-Framework migriert. Während dieses letzten Release-Zyklus gab es mehrere Beiträge zur Verbesserung von Tests im Git-Projekt. Den Entwicklungsfortschritt dieser GSoC-Projekte kannst du auf den Blogs von [Chandra](https://chand-ra.github.io/) und [Ghanshyam](https://spectre10.github.io/posts/) verfolgen.\n\n## Bundle-URI-Fixes\n\nWenn ein Client etwas aus einem Remote-Repository abruft, werden normalerweise alle erforderlichen Objekte in einer vom Remote-Server zusammengestellten Packfile gesendet. Um einen Teil dieser Berechnungen einzusparen, können Server vorgefertigte „Bundles“ anbieten, die separat vom Remote-Server gespeichert werden und eine Reihe von Referenzen und Objekten enthalten, die der Client brauchen könnte. Der Client kann diese Pakete zuerst über einen Mechanismus namens [bundle-uri](https://git-scm.com/docs/bundle-uri) abrufen.\n\nDank [Xing Xin](https://lore.kernel.org/git/pull.1730.git.1715742069966.gitgitgadget@gmail.com/) wurde ein Problem identifiziert und behoben, bei dem Git trotz des Herunterladens einiger Bundles immer noch alles vom Remote-Server heruntergeladen hat, als gäbe es keine Bundles. Das Problem war, dass Git nicht alle heruntergeladenen Bundles korrekt erkannte, was dazu führte, dass die aufeinanderfolgenden Bundles vom Remote-Server abgerufen werden mussten. Dank diesem Fix können Remote-Server, die den Mechanismus bundle-uri verwenden, diese redundante Arbeit vermeiden und die Leistung verbessern.\n\n## Weiterlesen\n\nIn diesem Artikel wurden nur einige der Beiträge von GitLab und der breiteren Git-Community für dieses neueste Release vorgestellt. Mehr darüber erfährst du in der [offiziellen Release-Ankündigung](https://lore.kernel.org/git/xmqqzfq0i0qa.fsf@gitster.g/T/#u) des Git-Projekts. Sieh dir auch unsere [letzten Blogbeiträge zu Git-Releases](https://about.gitlab.com/blog/tags/git/) an, um weitere wichtige Beiträge von GitLab-Teammitgliedern zu entdecken.","open-source",[23,24,25],"git","open source","community","2024-08-14",{"slug":28,"featured":29,"template":30},"whats-new-in-git-2-46-0",true,"BlogPost","content:de-de:blog:whats-new-in-git-2-46-0.yml","yaml","Whats New In Git 2 46 0","content","de-de/blog/whats-new-in-git-2-46-0.yml","de-de/blog/whats-new-in-git-2-46-0","yml",{"_path":39,"_dir":40,"_draft":6,"_partial":6,"_locale":7,"data":41,"_id":451,"_type":32,"title":452,"_source":34,"_file":453,"_stem":454,"_extension":37},"/shared/de-de/main-navigation","de-de",{"logo":42,"freeTrial":47,"sales":52,"login":57,"items":62,"search":392,"minimal":428,"duo":442},{"config":43},{"href":44,"dataGaName":45,"dataGaLocation":46},"/de-de/","gitlab logo","header",{"text":48,"config":49},"Kostenlose Testversion anfordern",{"href":50,"dataGaName":51,"dataGaLocation":46},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":53,"config":54},"Vertrieb kontaktieren",{"href":55,"dataGaName":56,"dataGaLocation":46},"/de-de/sales/","sales",{"text":58,"config":59},"Anmelden",{"href":60,"dataGaName":61,"dataGaLocation":46},"https://gitlab.com/users/sign_in/","sign in",[63,107,204,209,313,373],{"text":64,"config":65,"cards":67,"footer":90},"Plattform",{"dataNavLevelOne":66},"platform",[68,74,82],{"title":64,"description":69,"link":70},"Die umfassendste KI-basierte DevSecOps-Plattform",{"text":71,"config":72},"Erkunde unsere Plattform",{"href":73,"dataGaName":66,"dataGaLocation":46},"/de-de/platform/",{"title":75,"description":76,"link":77},"GitLab Duo (KI)","Entwickle Software schneller mit KI in jeder Phase der Entwicklung",{"text":78,"config":79},"Lerne GitLab Duo kennen",{"href":80,"dataGaName":81,"dataGaLocation":46},"/de-de/gitlab-duo/","gitlab duo ai",{"title":83,"description":84,"link":85},"Gründe, die für GitLab sprechen","10 Gründe, warum Unternehmen sich für GitLab entscheiden",{"text":86,"config":87},"Mehr erfahren",{"href":88,"dataGaName":89,"dataGaLocation":46},"/de-de/why-gitlab/","why gitlab",{"title":91,"items":92},"Erste Schritte mit",[93,98,103],{"text":94,"config":95},"Platform Engineering",{"href":96,"dataGaName":97,"dataGaLocation":46},"/de-de/solutions/platform-engineering/","platform engineering",{"text":99,"config":100},"Entwicklererfahrung",{"href":101,"dataGaName":102,"dataGaLocation":46},"/de-de/developer-experience/","Developer experience",{"text":104,"config":105},"MLOps",{"href":106,"dataGaName":104,"dataGaLocation":46},"/de-de/topics/devops/the-role-of-ai-in-devops/",{"text":108,"left":29,"config":109,"link":111,"lists":115,"footer":186},"Produkt",{"dataNavLevelOne":110},"solutions",{"text":112,"config":113},"Alle Lösungen anzeigen",{"href":114,"dataGaName":110,"dataGaLocation":46},"/de-de/solutions/",[116,142,164],{"title":117,"description":118,"link":119,"items":124},"Automatisierung","CI/CD und Automatisierung zur Beschleunigung der Bereitstellung",{"config":120},{"icon":121,"href":122,"dataGaName":123,"dataGaLocation":46},"AutomatedCodeAlt","/de-de/solutions/delivery-automation/","automated software delivery",[125,129,133,138],{"text":126,"config":127},"CI/CD",{"href":128,"dataGaLocation":46,"dataGaName":126},"/de-de/solutions/continuous-integration/",{"text":130,"config":131},"KI-unterstützte Entwicklung",{"href":80,"dataGaLocation":46,"dataGaName":132},"AI assisted development",{"text":134,"config":135},"Quellcodeverwaltung",{"href":136,"dataGaLocation":46,"dataGaName":137},"/de-de/solutions/source-code-management/","Source Code Management",{"text":139,"config":140},"Automatisierte Softwarebereitstellung",{"href":122,"dataGaLocation":46,"dataGaName":141},"Automated software delivery",{"title":143,"description":144,"link":145,"items":150},"Sicherheit","Entwickle schneller, ohne die Sicherheit zu gefährden",{"config":146},{"href":147,"dataGaName":148,"dataGaLocation":46,"icon":149},"/de-de/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[151,155,160],{"text":152,"config":153},"Application Security Testing",{"href":147,"dataGaName":154,"dataGaLocation":46},"Application security testing",{"text":156,"config":157},"Schutz der Software-Lieferkette",{"href":158,"dataGaLocation":46,"dataGaName":159},"/de-de/solutions/supply-chain/","Software supply chain security",{"text":161,"config":162},"Software Compliance",{"href":163,"dataGaName":161,"dataGaLocation":46},"/de-de/solutions/software-compliance/",{"title":165,"link":166,"items":171},"Bewertung",{"config":167},{"icon":168,"href":169,"dataGaName":170,"dataGaLocation":46},"DigitalTransformation","/de-de/solutions/visibility-measurement/","visibility and measurement",[172,176,181],{"text":173,"config":174},"Sichtbarkeit und Bewertung",{"href":169,"dataGaLocation":46,"dataGaName":175},"Visibility and Measurement",{"text":177,"config":178},"Wertstrommanagement",{"href":179,"dataGaLocation":46,"dataGaName":180},"/de-de/solutions/value-stream-management/","Value Stream Management",{"text":182,"config":183},"Analysen und Einblicke",{"href":184,"dataGaLocation":46,"dataGaName":185},"/de-de/solutions/analytics-and-insights/","Analytics and insights",{"title":187,"items":188},"GitLab für",[189,194,199],{"text":190,"config":191},"Enterprise",{"href":192,"dataGaLocation":46,"dataGaName":193},"/de-de/enterprise/","enterprise",{"text":195,"config":196},"Kleinunternehmen",{"href":197,"dataGaLocation":46,"dataGaName":198},"/de-de/small-business/","small business",{"text":200,"config":201},"den öffentlichen Sektor",{"href":202,"dataGaLocation":46,"dataGaName":203},"/de-de/solutions/public-sector/","public sector",{"text":205,"config":206},"Preise",{"href":207,"dataGaName":208,"dataGaLocation":46,"dataNavLevelOne":208},"/de-de/pricing/","pricing",{"text":210,"config":211,"link":213,"lists":217,"feature":300},"Ressourcen",{"dataNavLevelOne":212},"resources",{"text":214,"config":215},"Alle Ressourcen anzeigen",{"href":216,"dataGaName":212,"dataGaLocation":46},"/de-de/resources/",[218,251,273],{"title":219,"items":220},"Erste Schritte",[221,226,231,236,241,246],{"text":222,"config":223},"Installieren",{"href":224,"dataGaName":225,"dataGaLocation":46},"/de-de/install/","install",{"text":227,"config":228},"Kurzanleitungen",{"href":229,"dataGaName":230,"dataGaLocation":46},"/de-de/get-started/","quick setup checklists",{"text":232,"config":233},"Lernen",{"href":234,"dataGaLocation":46,"dataGaName":235},"https://university.gitlab.com/","learn",{"text":237,"config":238},"Produktdokumentation",{"href":239,"dataGaName":240,"dataGaLocation":46},"https://docs.gitlab.com/","product documentation",{"text":242,"config":243},"Best-Practice-Videos",{"href":244,"dataGaName":245,"dataGaLocation":46},"/de-de/getting-started-videos/","best practice videos",{"text":247,"config":248},"Integrationen",{"href":249,"dataGaName":250,"dataGaLocation":46},"/de-de/integrations/","integrations",{"title":252,"items":253},"Entdecken",[254,259,263,268],{"text":255,"config":256},"Kundenerfolge",{"href":257,"dataGaName":258,"dataGaLocation":46},"/de-de/customers/","customer success stories",{"text":260,"config":261},"Blog",{"href":262,"dataGaName":5,"dataGaLocation":46},"/de-de/blog/",{"text":264,"config":265},"Remote",{"href":266,"dataGaName":267,"dataGaLocation":46},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":269,"config":270},"TeamOps",{"href":271,"dataGaName":272,"dataGaLocation":46},"/de-de/teamops/","teamops",{"title":274,"items":275},"Vernetzen",[276,281,285,290,295],{"text":277,"config":278},"GitLab-Services",{"href":279,"dataGaName":280,"dataGaLocation":46},"/de-de/services/","services",{"text":282,"config":283},"Community",{"href":284,"dataGaName":25,"dataGaLocation":46},"/community/",{"text":286,"config":287},"Forum",{"href":288,"dataGaName":289,"dataGaLocation":46},"https://forum.gitlab.com/","forum",{"text":291,"config":292},"Veranstaltungen",{"href":293,"dataGaName":294,"dataGaLocation":46},"/events/","events",{"text":296,"config":297},"Partner",{"href":298,"dataGaName":299,"dataGaLocation":46},"/de-de/partners/","partners",{"backgroundColor":301,"textColor":302,"text":303,"image":304,"link":308},"#2f2a6b","#fff","Perspektiven für die Softwareentwicklung der Zukunft",{"altText":305,"config":306},"the source promo card",{"src":307},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":309,"config":310},"Lies die News",{"href":311,"dataGaName":312,"dataGaLocation":46},"/de-de/the-source/","the source",{"text":314,"config":315,"lists":317},"Unternehmen",{"dataNavLevelOne":316},"company",[318],{"items":319},[320,325,331,333,338,343,348,353,358,363,368],{"text":321,"config":322},"Über",{"href":323,"dataGaName":324,"dataGaLocation":46},"/de-de/company/","about",{"text":326,"config":327,"footerGa":330},"Karriere",{"href":328,"dataGaName":329,"dataGaLocation":46},"/jobs/","jobs",{"dataGaName":329},{"text":291,"config":332},{"href":293,"dataGaName":294,"dataGaLocation":46},{"text":334,"config":335},"Geschäftsführung",{"href":336,"dataGaName":337,"dataGaLocation":46},"/company/team/e-group/","leadership",{"text":339,"config":340},"Team",{"href":341,"dataGaName":342,"dataGaLocation":46},"/company/team/","team",{"text":344,"config":345},"Handbuch",{"href":346,"dataGaName":347,"dataGaLocation":46},"https://handbook.gitlab.com/","handbook",{"text":349,"config":350},"Investor Relations",{"href":351,"dataGaName":352,"dataGaLocation":46},"https://ir.gitlab.com/","investor relations",{"text":354,"config":355},"Trust Center",{"href":356,"dataGaName":357,"dataGaLocation":46},"/de-de/security/","trust center",{"text":359,"config":360},"AI Transparency Center",{"href":361,"dataGaName":362,"dataGaLocation":46},"/de-de/ai-transparency-center/","ai transparency center",{"text":364,"config":365},"Newsletter",{"href":366,"dataGaName":367,"dataGaLocation":46},"/company/contact/","newsletter",{"text":369,"config":370},"Presse",{"href":371,"dataGaName":372,"dataGaLocation":46},"/press/","press",{"text":374,"config":375,"lists":376},"Kontakt",{"dataNavLevelOne":316},[377],{"items":378},[379,382,387],{"text":53,"config":380},{"href":55,"dataGaName":381,"dataGaLocation":46},"talk to sales",{"text":383,"config":384},"Support",{"href":385,"dataGaName":386,"dataGaLocation":46},"/support/","get help",{"text":388,"config":389},"Kundenportal",{"href":390,"dataGaName":391,"dataGaLocation":46},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":393,"login":394,"suggestions":401},"Schließen",{"text":395,"link":396},"Um Repositories und Projekte zu durchsuchen, melde dich an bei",{"text":397,"config":398},"gitlab.com",{"href":60,"dataGaName":399,"dataGaLocation":400},"search login","search",{"text":402,"default":403},"Vorschläge",[404,407,412,414,419,424],{"text":75,"config":405},{"href":80,"dataGaName":406,"dataGaLocation":400},"GitLab Duo (AI)",{"text":408,"config":409},"Code Suggestions (KI)",{"href":410,"dataGaName":411,"dataGaLocation":400},"/de-de/solutions/code-suggestions/","Code Suggestions (AI)",{"text":126,"config":413},{"href":128,"dataGaName":126,"dataGaLocation":400},{"text":415,"config":416},"GitLab auf AWS",{"href":417,"dataGaName":418,"dataGaLocation":400},"/de-de/partners/technology-partners/aws/","GitLab on AWS",{"text":420,"config":421},"GitLab auf Google Cloud",{"href":422,"dataGaName":423,"dataGaLocation":400},"/de-de/partners/technology-partners/google-cloud-platform/","GitLab on Google Cloud",{"text":425,"config":426},"Warum GitLab?",{"href":88,"dataGaName":427,"dataGaLocation":400},"Why GitLab?",{"freeTrial":429,"mobileIcon":434,"desktopIcon":439},{"text":430,"config":431},"Kostenlos testen",{"href":432,"dataGaName":51,"dataGaLocation":433},"https://gitlab.com/-/trials/new/","nav",{"altText":435,"config":436},"GitLab-Symbol",{"src":437,"dataGaName":438,"dataGaLocation":433},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":435,"config":440},{"src":441,"dataGaName":438,"dataGaLocation":433},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":443,"mobileIcon":447,"desktopIcon":449},{"text":444,"config":445},"Erfahre mehr über GitLab Duo",{"href":80,"dataGaName":446,"dataGaLocation":433},"gitlab duo",{"altText":435,"config":448},{"src":437,"dataGaName":438,"dataGaLocation":433},{"altText":435,"config":450},{"src":441,"dataGaName":438,"dataGaLocation":433},"content:shared:de-de:main-navigation.yml","Main Navigation","shared/de-de/main-navigation.yml","shared/de-de/main-navigation",{"_path":456,"_dir":40,"_draft":6,"_partial":6,"_locale":7,"title":457,"button":458,"config":463,"_id":465,"_type":32,"_source":34,"_file":466,"_stem":467,"_extension":37},"/shared/de-de/banner","GitLab Duo Agent Platform ist jetzt in öffentlicher Beta!",{"text":459,"config":460},"Beta testen",{"href":461,"dataGaName":462,"dataGaLocation":46},"/de-de/gitlab-duo/agent-platform/","duo banner",{"layout":464},"release","content:shared:de-de:banner.yml","shared/de-de/banner.yml","shared/de-de/banner",{"_path":469,"_dir":40,"_draft":6,"_partial":6,"_locale":7,"data":470,"_id":673,"_type":32,"title":674,"_source":34,"_file":675,"_stem":676,"_extension":37},"/shared/de-de/main-footer",{"text":471,"source":472,"edit":478,"contribute":483,"config":488,"items":493,"minimal":665},"Git ist eine Marke von Software Freedom Conservancy und unsere Verwendung von „GitLab“ erfolgt unter Lizenz.",{"text":473,"config":474},"Quelltext der Seite anzeigen",{"href":475,"dataGaName":476,"dataGaLocation":477},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":479,"config":480},"Diese Seite bearbeiten",{"href":481,"dataGaName":482,"dataGaLocation":477},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":484,"config":485},"Beteilige dich",{"href":486,"dataGaName":487,"dataGaLocation":477},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":489,"facebook":490,"youtube":491,"linkedin":492},"https://x.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[494,517,572,601,635],{"title":64,"links":495,"subMenu":500},[496],{"text":497,"config":498},"DevSecOps-Plattform",{"href":73,"dataGaName":499,"dataGaLocation":477},"devsecops platform",[501],{"title":205,"links":502},[503,507,512],{"text":504,"config":505},"Tarife anzeigen",{"href":207,"dataGaName":506,"dataGaLocation":477},"view plans",{"text":508,"config":509},"Vorteile von Premium",{"href":510,"dataGaName":511,"dataGaLocation":477},"/de-de/pricing/premium/","why premium",{"text":513,"config":514},"Vorteile von Ultimate",{"href":515,"dataGaName":516,"dataGaLocation":477},"/de-de/pricing/ultimate/","why ultimate",{"title":518,"links":519},"Lösungen",[520,525,528,530,535,540,544,547,550,555,557,559,562,567],{"text":521,"config":522},"Digitale Transformation",{"href":523,"dataGaName":524,"dataGaLocation":477},"/de-de/topics/digital-transformation/","digital transformation",{"text":526,"config":527},"Sicherheit und Compliance",{"href":147,"dataGaName":154,"dataGaLocation":477},{"text":139,"config":529},{"href":122,"dataGaName":123,"dataGaLocation":477},{"text":531,"config":532},"Agile Entwicklung",{"href":533,"dataGaName":534,"dataGaLocation":477},"/de-de/solutions/agile-delivery/","agile delivery",{"text":536,"config":537},"Cloud-Transformation",{"href":538,"dataGaName":539,"dataGaLocation":477},"/de-de/topics/cloud-native/","cloud transformation",{"text":541,"config":542},"SCM",{"href":136,"dataGaName":543,"dataGaLocation":477},"source code management",{"text":126,"config":545},{"href":128,"dataGaName":546,"dataGaLocation":477},"continuous integration & delivery",{"text":177,"config":548},{"href":179,"dataGaName":549,"dataGaLocation":477},"value stream management",{"text":551,"config":552},"GitOps",{"href":553,"dataGaName":554,"dataGaLocation":477},"/de-de/solutions/gitops/","gitops",{"text":190,"config":556},{"href":192,"dataGaName":193,"dataGaLocation":477},{"text":195,"config":558},{"href":197,"dataGaName":198,"dataGaLocation":477},{"text":560,"config":561},"Öffentlicher Sektor",{"href":202,"dataGaName":203,"dataGaLocation":477},{"text":563,"config":564},"Bildungswesen",{"href":565,"dataGaName":566,"dataGaLocation":477},"/de-de/solutions/education/","education",{"text":568,"config":569},"Finanzdienstleistungen",{"href":570,"dataGaName":571,"dataGaLocation":477},"/de-de/solutions/finance/","financial services",{"title":210,"links":573},[574,576,578,580,583,585,587,589,591,593,595,597,599],{"text":222,"config":575},{"href":224,"dataGaName":225,"dataGaLocation":477},{"text":227,"config":577},{"href":229,"dataGaName":230,"dataGaLocation":477},{"text":232,"config":579},{"href":234,"dataGaName":235,"dataGaLocation":477},{"text":237,"config":581},{"href":239,"dataGaName":582,"dataGaLocation":477},"docs",{"text":260,"config":584},{"href":262,"dataGaName":5,"dataGaLocation":477},{"text":255,"config":586},{"href":257,"dataGaName":258,"dataGaLocation":477},{"text":264,"config":588},{"href":266,"dataGaName":267,"dataGaLocation":477},{"text":277,"config":590},{"href":279,"dataGaName":280,"dataGaLocation":477},{"text":269,"config":592},{"href":271,"dataGaName":272,"dataGaLocation":477},{"text":282,"config":594},{"href":284,"dataGaName":25,"dataGaLocation":477},{"text":286,"config":596},{"href":288,"dataGaName":289,"dataGaLocation":477},{"text":291,"config":598},{"href":293,"dataGaName":294,"dataGaLocation":477},{"text":296,"config":600},{"href":298,"dataGaName":299,"dataGaLocation":477},{"title":314,"links":602},[603,605,607,609,611,613,615,619,624,626,628,630],{"text":321,"config":604},{"href":323,"dataGaName":316,"dataGaLocation":477},{"text":326,"config":606},{"href":328,"dataGaName":329,"dataGaLocation":477},{"text":334,"config":608},{"href":336,"dataGaName":337,"dataGaLocation":477},{"text":339,"config":610},{"href":341,"dataGaName":342,"dataGaLocation":477},{"text":344,"config":612},{"href":346,"dataGaName":347,"dataGaLocation":477},{"text":349,"config":614},{"href":351,"dataGaName":352,"dataGaLocation":477},{"text":616,"config":617},"Sustainability",{"href":618,"dataGaName":616,"dataGaLocation":477},"/sustainability/",{"text":620,"config":621},"Vielfalt, Inklusion und Zugehörigkeit",{"href":622,"dataGaName":623,"dataGaLocation":477},"/de-de/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":354,"config":625},{"href":356,"dataGaName":357,"dataGaLocation":477},{"text":364,"config":627},{"href":366,"dataGaName":367,"dataGaLocation":477},{"text":369,"config":629},{"href":371,"dataGaName":372,"dataGaLocation":477},{"text":631,"config":632},"Transparenzerklärung zu moderner Sklaverei",{"href":633,"dataGaName":634,"dataGaLocation":477},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":636,"links":637},"Nimm Kontakt auf",[638,641,643,645,650,655,660],{"text":639,"config":640},"Sprich mit einem Experten/einer Expertin",{"href":55,"dataGaName":56,"dataGaLocation":477},{"text":383,"config":642},{"href":385,"dataGaName":386,"dataGaLocation":477},{"text":388,"config":644},{"href":390,"dataGaName":391,"dataGaLocation":477},{"text":646,"config":647},"Status",{"href":648,"dataGaName":649,"dataGaLocation":477},"https://status.gitlab.com/","status",{"text":651,"config":652},"Nutzungsbedingungen",{"href":653,"dataGaName":654,"dataGaLocation":477},"/terms/","terms of use",{"text":656,"config":657},"Datenschutzerklärung",{"href":658,"dataGaName":659,"dataGaLocation":477},"/de-de/privacy/","privacy statement",{"text":661,"config":662},"Cookie-Einstellungen",{"dataGaName":663,"dataGaLocation":477,"id":664,"isOneTrustButton":29},"cookie preferences","ot-sdk-btn",{"items":666},[667,669,671],{"text":651,"config":668},{"href":653,"dataGaName":654,"dataGaLocation":477},{"text":656,"config":670},{"href":658,"dataGaName":659,"dataGaLocation":477},{"text":661,"config":672},{"dataGaName":663,"dataGaLocation":477,"id":664,"isOneTrustButton":29},"content:shared:de-de:main-footer.yml","Main Footer","shared/de-de/main-footer.yml","shared/de-de/main-footer",[678,691,702,713,724,735,746,757,767,777,788,799,809,820,831,841,851,861,871,882,892,902,912,923,934,944,955,966,976,987,997,1008,1019,1030,1041,1051,1062,1073,1083,1094,1104,1115,1126,1136,1146,1157,1167,1177,1187,1198,1209,1220,1231,1241,1252,1263,1274,1285,1295,1306,1318,1329,1340,1350,1362,1373,1383,1394,1404,1415,1425,1436,1447,1457,1467,1477,1488,1498,1508,1518,1528,1539,1549,1560,1570,1581,1591,1601,1611,1622,1633,1644,1655,1666,1678,1688,1699,1709,1720,1731,1742,1753,1763,1774,1785,1796,1807,1817,1828,1839,1850,1860,1873,1883,1894,1905,1916,1926,1937,1948,1959,1969,1979,1989,1999,2010,2020,2030,2041,2051,2062,2072,2083,2094,2104,2115,2125,2135,2145,2156,2166,2176,2187,2198,2208,2219,2230,2241,2251,2264,2275,2285,2297,2309,2319,2329,2340,2350,2361,2373,2384,2395,2406,2418,2429,2439,2449,2460,2470,2480,2491,2502,2512,2523,2534,2544,2554,2565,2576,2586,2597,2607,2618,2629,2640,2650,2660,2671,2682,2692,2702,2713,2725,2735,2745,2755,2766,2777,2787,2797,2807,2817,2827,2838,2849,2859,2870,2880,2890,2900,2910,2920,2931,2941,2951,2962,2972,2982,2993,3004,3014,3026,3036,3046,3058,3069,3080,3090,3101,3112,3123,3133,3145,3156,3166,3177,3188,3199,3210,3221,3232,3243,3253,3264,3275,3286,3296,3306,3317,3327,3337,3348,3359,3372,3383,3394,3404,3415,3427,3438,3449,3460,3470,3480,3491,3501,3512,3523,3534,3544,3554,3564,3574,3585,3596,3607,3618,3630,3641,3653,3664,3674,3684,3696,3706,3717,3727,3738,3748,3758,3769,3781,3791,3801,3811,3822,3832,3843,3853,3863,3874,3885,3896,3908,3919,3929,3940,3951,3961,3971,3982,3993,4004,4015,4025,4036,4047,4058,4068,4079,4090,4100,4111,4122,4133,4143,4153,4164,4175,4185,4196,4207,4218,4228,4238,4249,4260,4271,4282,4293,4303,4314,4325,4335,4345,4355,4367,4379,4389,4401,4411,4422,4433,4444,4455,4468,4478,4489,4500,4510,4520,4530,4541,4551,4562,4573,4583,4594,4604,4614,4625,4636,4647,4658,4668,4678,4689,4700,4710,4720,4730,4741,4752,4762,4772,4782,4792,4803,4813,4823,4834,4844,4855,4865,4876,4887,4897,4907,4918,4928,4938,4949,4960,4971,4982,4992,5004,5015,5026,5036,5046,5056,5067,5078,5089,5100,5110,5121,5132,5142,5153,5165,5175,5185,5195,5206,5217,5228,5238,5248,5259,5270,5280,5292,5302,5312,5323,5333,5344,5356,5367,5377,5388,5399,5409,5420,5431,5443,5453,5463,5474,5484,5495,5505,5516,5526,5536,5547,5557,5568,5578,5588,5599,5609,5620,5631,5641,5651,5662,5672,5682,5692,5702,5713,5724,5736,5747,5758,5770,5782,5793,5804,5814,5825,5835,5845,5856,5867,5878,5888,5898,5908,5918,5928,5939,5951,5962,5974,5985,5995,6005,6016,6026,6036,6046,6056,6066,6076,6087,6097,6107,6118,6128,6138,6149,6160,6170,6182,6193,6203,6215,6226,6236,6247,6258,6268,6278,6288,6300,6310,6321,6332,6343,6354,6364,6374,6385,6397,6407,6417,6428,6438,6449,6459,6471,6482,6492,6502,6513,6525,6535,6548,6558,6570,6581,6591,6601,6612,6622,6633,6644,6655,6666,6677,6688,6699,6710,6721,6732,6743,6754,6765,6776,6787,6797,6810,6820,6831,6841,6852,6862,6872,6883,6894,6905,6915,6925,6936,6946,6957,6968,6980,6991,7001,7012,7023,7033,7043,7053,7063,7073,7084,7094,7105,7115,7126,7141,7152,7162,7173,7184,7195,7206,7217,7227,7238,7249,7260,7270,7281,7291,7301,7311,7321,7331,7342,7354,7364,7375,7386,7398,7408,7419,7429,7441,7452,7462,7472,7483,7494,7504,7515,7525,7535,7546,7557,7568,7579,7589,7600,7611,7621,7631,7641,7652,7663,7673,7683,7694,7705,7715,7725,7735,7746,7756,7767,7778,7789,7799,7809,7819,7829,7840,7851,7861,7871,7881,7891,7902],{"_path":679,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":681,"config":686,"_id":688,"_type":32,"title":682,"_source":34,"_file":689,"_stem":690,"_extension":37},"/en-us/blog/authors/aakriti-gupta","authors",{"name":682,"config":683},"Aakriti Gupta",{"headshot":684,"ctfId":685},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":687},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":692,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":693,"config":697,"_id":698,"_type":32,"title":699,"_source":34,"_file":700,"_stem":701,"_extension":37},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":694,"config":695},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":696},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":687},"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":703,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":704,"config":709,"_id":710,"_type":32,"title":705,"_source":34,"_file":711,"_stem":712,"_extension":37},"/en-us/blog/authors/aathira-nair",{"name":705,"config":706},"Aathira Nair",{"headshot":707,"ctfId":708},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":687},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":714,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":715,"config":720,"_id":721,"_type":32,"title":716,"_source":34,"_file":722,"_stem":723,"_extension":37},"/en-us/blog/authors/abdulkader-benchi",{"name":716,"config":717},"Abdulkader Benchi",{"headshot":718,"ctfId":719},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":687},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":725,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":726,"config":731,"_id":732,"_type":32,"title":727,"_source":34,"_file":733,"_stem":734,"_extension":37},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":727,"config":728},"Abubakar Siddiq Ango",{"headshot":729,"ctfId":730},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":687},"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":736,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":737,"config":742,"_id":743,"_type":32,"title":738,"_source":34,"_file":744,"_stem":745,"_extension":37},"/en-us/blog/authors/achilleas-pipinellis",{"name":738,"config":739},"Achilleas Pipinellis",{"headshot":740,"ctfId":741},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":687},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":747,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":748,"config":752,"_id":753,"_type":32,"title":754,"_source":34,"_file":755,"_stem":756,"_extension":37},"/en-us/blog/authors/adfinis-sygroup",{"name":749,"config":750},"Adfinis SyGroup",{"headshot":718,"ctfId":751},"Adfinis-SyGroup",{"template":687},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":758,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":759,"config":763,"_id":764,"_type":32,"title":760,"_source":34,"_file":765,"_stem":766,"_extension":37},"/en-us/blog/authors/ahmet-kizilay",{"name":760,"config":761},"Ahmet Kizilay",{"headshot":718,"ctfId":762},"Ahmet-Kizilay",{"template":687},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":768,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":769,"config":773,"_id":774,"_type":32,"title":770,"_source":34,"_file":775,"_stem":776,"_extension":37},"/en-us/blog/authors/akashdeep-dhar",{"name":770,"config":771},"Akashdeep Dhar",{"headshot":7,"ctfId":772},"t0xic0der",{"template":687},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":778,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":779,"config":784,"_id":785,"_type":32,"title":780,"_source":34,"_file":786,"_stem":787,"_extension":37},"/en-us/blog/authors/alana-bellucci",{"name":780,"config":781},"Alana Bellucci",{"headshot":782,"ctfId":783},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":687},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":789,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":790,"config":795,"_id":796,"_type":32,"title":791,"_source":34,"_file":797,"_stem":798,"_extension":37},"/en-us/blog/authors/alex-fracazo",{"name":791,"config":792},"Alex Fracazo",{"headshot":793,"ctfId":794},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":687},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":800,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":801,"config":805,"_id":806,"_type":32,"title":802,"_source":34,"_file":807,"_stem":808,"_extension":37},"/en-us/blog/authors/alex-groleau",{"name":802,"config":803},"Alex Groleau",{"headshot":718,"ctfId":804},"3VVHytQSHu9ehZgsUEJ3qq",{"template":687},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":810,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":811,"config":816,"_id":817,"_type":32,"title":812,"_source":34,"_file":818,"_stem":819,"_extension":37},"/en-us/blog/authors/alex-mark",{"name":812,"config":813},"Alex Mark",{"headshot":814,"ctfId":815},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":687},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":821,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":822,"config":827,"_id":828,"_type":32,"title":823,"_source":34,"_file":829,"_stem":830,"_extension":37},"/en-us/blog/authors/alex-martin",{"name":823,"config":824},"Alex Martin",{"headshot":825,"ctfId":826},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":687},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":832,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":833,"config":837,"_id":838,"_type":32,"title":834,"_source":34,"_file":839,"_stem":840,"_extension":37},"/en-us/blog/authors/alexander-dietrich",{"name":834,"config":835},"Alexander Dietrich",{"headshot":718,"ctfId":836},"2CzeEOPVjjGKpdblIm0JfO",{"template":687},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":842,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":843,"config":847,"_id":848,"_type":32,"title":844,"_source":34,"_file":849,"_stem":850,"_extension":37},"/en-us/blog/authors/alexander-malaev",{"name":844,"config":845},"Alexander Malaev",{"headshot":718,"ctfId":846},"Alexander-Malaev",{"template":687},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":852,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":853,"config":857,"_id":858,"_type":32,"title":854,"_source":34,"_file":859,"_stem":860,"_extension":37},"/en-us/blog/authors/alexander-pereverzevs",{"name":854,"config":855},"Alexander Pereverzevs",{"headshot":7,"ctfId":856},"lokalise",{"template":687},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":862,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":863,"config":867,"_id":868,"_type":32,"title":864,"_source":34,"_file":869,"_stem":870,"_extension":37},"/en-us/blog/authors/alexis-ginsberg",{"name":864,"config":865},"Alexis Ginsberg",{"headshot":718,"ctfId":866},"lmDIchpcDx48jKuke2B4l",{"template":687},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":872,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":873,"config":878,"_id":879,"_type":32,"title":874,"_source":34,"_file":880,"_stem":881,"_extension":37},"/en-us/blog/authors/allie-holland",{"name":874,"config":875},"Allie Holland",{"headshot":876,"ctfId":877},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":687},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":883,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":884,"config":888,"_id":889,"_type":32,"title":885,"_source":34,"_file":890,"_stem":891,"_extension":37},"/en-us/blog/authors/allison-whilden",{"name":885,"config":886},"Allison Whilden",{"headshot":718,"ctfId":887},"Allison-Whilden",{"template":687},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":893,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":894,"config":898,"_id":899,"_type":32,"title":895,"_source":34,"_file":900,"_stem":901,"_extension":37},"/en-us/blog/authors/alyssa-rock",{"name":895,"config":896},"Alyssa Rock",{"headshot":718,"ctfId":897},"4T2hddEfeK0Kp1zF8Ncvej",{"template":687},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":903,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":904,"config":908,"_id":909,"_type":32,"title":905,"_source":34,"_file":910,"_stem":911,"_extension":37},"/en-us/blog/authors/amanda-folson",{"name":905,"config":906},"Amanda Folson",{"headshot":718,"ctfId":907},"Amanda-Folson",{"template":687},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":913,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":914,"config":919,"_id":920,"_type":32,"title":915,"_source":34,"_file":921,"_stem":922,"_extension":37},"/en-us/blog/authors/amanda-rueda",{"name":915,"config":916},"Amanda Rueda",{"headshot":917,"ctfId":918},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":687},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":924,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":925,"config":930,"_id":931,"_type":32,"title":926,"_source":34,"_file":932,"_stem":933,"_extension":37},"/en-us/blog/authors/amar-patel",{"name":926,"config":927},"Amar Patel",{"headshot":928,"ctfId":929},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":687},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":935,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":936,"config":940,"_id":941,"_type":32,"title":937,"_source":34,"_file":942,"_stem":943,"_extension":37},"/en-us/blog/authors/amara-nwaigwe",{"name":937,"config":938},"Amara Nwaigwe",{"headshot":718,"ctfId":939},"Amara-Nwaigwe",{"template":687},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":945,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":946,"config":951,"_id":952,"_type":32,"title":947,"_source":34,"_file":953,"_stem":954,"_extension":37},"/en-us/blog/authors/amelia-bauerly",{"name":947,"config":948},"Amelia Bauerly",{"headshot":949,"ctfId":950},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":687},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":956,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":957,"config":962,"_id":963,"_type":32,"title":958,"_source":34,"_file":964,"_stem":965,"_extension":37},"/en-us/blog/authors/ameya-darshan",{"name":958,"config":959},"Ameya Darshan",{"headshot":960,"ctfId":961},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":687},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":967,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":968,"config":972,"_id":973,"_type":32,"title":969,"_source":34,"_file":974,"_stem":975,"_extension":37},"/en-us/blog/authors/andrea-borga",{"name":969,"config":970},"Andrea Borga",{"headshot":718,"ctfId":971},"6dPpfov6kpNcMdmyHyhKcN",{"template":687},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":977,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":978,"config":983,"_id":984,"_type":32,"title":979,"_source":34,"_file":985,"_stem":986,"_extension":37},"/en-us/blog/authors/andreas-brandl",{"name":979,"config":980},"Andreas Brandl",{"headshot":981,"ctfId":982},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":687},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":988,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":989,"config":993,"_id":994,"_type":32,"title":990,"_source":34,"_file":995,"_stem":996,"_extension":37},"/en-us/blog/authors/andrew-chilton",{"name":990,"config":991},"Andrew Chilton",{"headshot":7,"ctfId":992},"chilts",{"template":687},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":998,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":999,"config":1004,"_id":1005,"_type":32,"title":1000,"_source":34,"_file":1006,"_stem":1007,"_extension":37},"/en-us/blog/authors/andrew-fontaine",{"name":1000,"config":1001},"Andrew Fontaine",{"headshot":1002,"ctfId":1003},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":687},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1009,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1010,"config":1015,"_id":1016,"_type":32,"title":1011,"_source":34,"_file":1017,"_stem":1018,"_extension":37},"/en-us/blog/authors/andrew-kelly",{"name":1011,"config":1012},"Andrew Kelly",{"headshot":1013,"ctfId":1014},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":687},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1020,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1021,"config":1026,"_id":1027,"_type":32,"title":1022,"_source":34,"_file":1028,"_stem":1029,"_extension":37},"/en-us/blog/authors/andrew-newdigate",{"name":1022,"config":1023},"Andrew Newdigate",{"headshot":1024,"ctfId":1025},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":687},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1031,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1032,"config":1037,"_id":1038,"_type":32,"title":1033,"_source":34,"_file":1039,"_stem":1040,"_extension":37},"/en-us/blog/authors/andrew-patterson",{"name":1033,"config":1034},"Andrew Patterson",{"headshot":1035,"ctfId":1036},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":687},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1042,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1043,"config":1047,"_id":1048,"_type":32,"title":1044,"_source":34,"_file":1049,"_stem":1050,"_extension":37},"/en-us/blog/authors/andrew-taylor",{"name":1044,"config":1045},"Andrew Taylor",{"headshot":718,"ctfId":1046},"Andrew-Taylor",{"template":687},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1052,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1053,"config":1058,"_id":1059,"_type":32,"title":1054,"_source":34,"_file":1060,"_stem":1061,"_extension":37},"/en-us/blog/authors/andrew-thomas",{"name":1054,"config":1055},"Andrew Thomas",{"headshot":1056,"ctfId":1057},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":687},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1063,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1064,"config":1069,"_id":1070,"_type":32,"title":1065,"_source":34,"_file":1071,"_stem":1072,"_extension":37},"/en-us/blog/authors/andy-bradfield",{"name":1065,"role":1066,"config":1067},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1068},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":687},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1074,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1075,"config":1079,"_id":1080,"_type":32,"title":1076,"_source":34,"_file":1081,"_stem":1082,"_extension":37},"/en-us/blog/authors/andy-rogers",{"name":1076,"config":1077},"Andy Rogers",{"headshot":718,"ctfId":1078},"Andy-Rogers",{"template":687},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1084,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1085,"config":1090,"_id":1091,"_type":32,"title":1086,"_source":34,"_file":1092,"_stem":1093,"_extension":37},"/en-us/blog/authors/andy-volpe",{"name":1086,"config":1087},"Andy Volpe",{"headshot":1088,"ctfId":1089},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":687},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1095,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1096,"config":1100,"_id":1101,"_type":32,"title":1097,"_source":34,"_file":1102,"_stem":1103,"_extension":37},"/en-us/blog/authors/angelo-stavrow",{"name":1097,"config":1098},"Angelo Stavrow",{"headshot":718,"ctfId":1099},"Angelo-Stavrow",{"template":687},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1105,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1106,"config":1111,"_id":1112,"_type":32,"title":1107,"_source":34,"_file":1113,"_stem":1114,"_extension":37},"/en-us/blog/authors/anna-vovchenko",{"name":1107,"config":1108},"Anna Vovchenko",{"headshot":1109,"ctfId":1110},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":687},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1116,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1117,"config":1122,"_id":1123,"_type":32,"title":1118,"_source":34,"_file":1124,"_stem":1125,"_extension":37},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1118,"config":1119},"Annabel Dunstone Gray",{"headshot":1120,"ctfId":1121},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":687},"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":1127,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1128,"config":1132,"_id":1133,"_type":32,"title":1129,"_source":34,"_file":1134,"_stem":1135,"_extension":37},"/en-us/blog/authors/anshuman-singh",{"name":1129,"config":1130},"Anshuman Singh",{"headshot":718,"ctfId":1131},"4xzrY67JSkxp4j7hlK1DWA",{"template":687},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1137,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1138,"config":1142,"_id":1143,"_type":32,"title":1139,"_source":34,"_file":1144,"_stem":1145,"_extension":37},"/en-us/blog/authors/anthony-davanzo",{"name":1139,"config":1140},"Anthony Davanzo",{"headshot":718,"ctfId":1141},"4KccrB6k5jq46xQRDOdWSb",{"template":687},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1147,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1148,"config":1153,"_id":1154,"_type":32,"title":1149,"_source":34,"_file":1155,"_stem":1156,"_extension":37},"/en-us/blog/authors/anton-smith",{"name":1149,"config":1150},"Anton Smith",{"headshot":1151,"ctfId":1152},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":687},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1158,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1159,"config":1163,"_id":1164,"_type":32,"title":1160,"_source":34,"_file":1165,"_stem":1166,"_extension":37},"/en-us/blog/authors/aricka-flowers",{"name":1160,"config":1161},"Aricka Flowers",{"headshot":7,"ctfId":1162},"atflowers",{"template":687},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1168,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1169,"config":1173,"_id":1174,"_type":32,"title":1170,"_source":34,"_file":1175,"_stem":1176,"_extension":37},"/en-us/blog/authors/ariel-camus",{"name":1170,"config":1171},"Ariel Camus",{"headshot":7,"ctfId":1172},"arielcamus",{"template":687},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1178,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1179,"config":1183,"_id":1184,"_type":32,"title":1180,"_source":34,"_file":1185,"_stem":1186,"_extension":37},"/en-us/blog/authors/arunoda-susiripala",{"name":1180,"config":1181},"Arunoda Susiripala",{"headshot":718,"ctfId":1182},"7kQaq0xFWPi2zRW6NZIDHp",{"template":687},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1188,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1189,"config":1193,"_id":1195,"_type":32,"title":1190,"_source":34,"_file":1196,"_stem":1197,"_extension":37},"/en-us/blog/authors/ashher-syed",{"name":1190,"config":1191},"Ashher Syed",{"headshot":1192},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":687,"gitlabHandle":1194},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1199,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1200,"config":1205,"_id":1206,"_type":32,"title":1201,"_source":34,"_file":1207,"_stem":1208,"_extension":37},"/en-us/blog/authors/ashley-knobloch",{"name":1201,"config":1202},"Ashley Knobloch",{"headshot":1203,"ctfId":1204},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":687},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1210,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1211,"config":1216,"_id":1217,"_type":32,"title":1212,"_source":34,"_file":1218,"_stem":1219,"_extension":37},"/en-us/blog/authors/ashley-kramer",{"name":1212,"config":1213},"Ashley Kramer",{"headshot":1214,"ctfId":1215},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":687},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1221,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1222,"config":1226,"_id":1227,"_type":32,"title":1228,"_source":34,"_file":1229,"_stem":1230,"_extension":37},"/en-us/blog/authors/ashley-mcalpin",{"name":1223,"config":1224},"Ashley McAlpin",{"headshot":718,"ctfId":1225},"Ashley-McAlpin",{"template":687},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1232,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1233,"config":1237,"_id":1238,"_type":32,"title":1234,"_source":34,"_file":1239,"_stem":1240,"_extension":37},"/en-us/blog/authors/ashley-smith",{"name":1234,"config":1235},"Ashley Smith",{"headshot":718,"ctfId":1236},"Ashley-Smith",{"template":687},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1242,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1243,"config":1247,"_id":1248,"_type":32,"title":1249,"_source":34,"_file":1250,"_stem":1251,"_extension":37},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1244,"config":1245},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":718,"ctfId":1246},"Atlassian-Bitbucket-GitHub-GitLab",{"template":687},"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":1253,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1254,"config":1259,"_id":1260,"_type":32,"title":1255,"_source":34,"_file":1261,"_stem":1262,"_extension":37},"/en-us/blog/authors/austin-regnery",{"name":1255,"config":1256},"Austin Regnery",{"headshot":1257,"ctfId":1258},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":687},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1264,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1265,"config":1270,"_id":1271,"_type":32,"title":1266,"_source":34,"_file":1272,"_stem":1273,"_extension":37},"/en-us/blog/authors/ayoub-fandi",{"name":1266,"config":1267},"Ayoub Fandi",{"headshot":1268,"ctfId":1269},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":687},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1275,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1276,"config":1280,"_id":1281,"_type":32,"title":1282,"_source":34,"_file":1283,"_stem":1284,"_extension":37},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1277,"config":1278},"Bahubali (Bill) Shetti",{"headshot":718,"ctfId":1279},"4rFnUJeUt0JNGQwwCZSLMj",{"template":687},"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":1286,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1287,"config":1291,"_id":1292,"_type":32,"title":1288,"_source":34,"_file":1293,"_stem":1294,"_extension":37},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1288,"config":1289},"Baksheesh Singh Ghuman",{"headshot":718,"ctfId":1290},"Baksheesh-Singh-Ghuman",{"template":687},"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":1296,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1297,"config":1302,"_id":1303,"_type":32,"title":1298,"_source":34,"_file":1304,"_stem":1305,"_extension":37},"/en-us/blog/authors/bala-allam",{"name":1298,"config":1299},"Bala Allam",{"headshot":1300,"ctfId":1301},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":687},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1307,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1308,"config":1313,"_id":1314,"_type":32,"title":1315,"_source":34,"_file":1316,"_stem":1317,"_extension":37},"/en-us/blog/authors/balasankar-balu-c",{"name":1309,"config":1310},"Balasankar 'Balu' C",{"headshot":1311,"ctfId":1312},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":687},"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":1319,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1320,"config":1325,"_id":1326,"_type":32,"title":1321,"_source":34,"_file":1327,"_stem":1328,"_extension":37},"/en-us/blog/authors/bart-zhang",{"name":1321,"config":1322},"Bart Zhang",{"headshot":1323,"ctfId":1324},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":687},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1330,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1331,"config":1336,"_id":1337,"_type":32,"title":1332,"_source":34,"_file":1338,"_stem":1339,"_extension":37},"/en-us/blog/authors/beatriz-barbosa",{"name":1332,"config":1333},"Beatriz Barbosa",{"headshot":1334,"ctfId":1335},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":687},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1341,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1342,"config":1346,"_id":1347,"_type":32,"title":1343,"_source":34,"_file":1348,"_stem":1349,"_extension":37},"/en-us/blog/authors/becka-lippert",{"name":1343,"config":1344},"Becka Lippert",{"headshot":718,"ctfId":1345},"7wX6Hbvb3AbKwa6NnClvBX",{"template":687},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1351,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1352,"config":1357,"_id":1358,"_type":32,"title":1359,"_source":34,"_file":1360,"_stem":1361,"_extension":37},"/en-us/blog/authors/ben-leduc-mills",{"name":1353,"config":1354},"Ben Leduc-Mills",{"headshot":1355,"ctfId":1356},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":687},"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":1363,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1364,"config":1369,"_id":1370,"_type":32,"title":1365,"_source":34,"_file":1371,"_stem":1372,"_extension":37},"/en-us/blog/authors/ben-ridley",{"name":1365,"config":1366},"Ben Ridley",{"headshot":1367,"ctfId":1368},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":687},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1374,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1375,"config":1379,"_id":1380,"_type":32,"title":1376,"_source":34,"_file":1381,"_stem":1382,"_extension":37},"/en-us/blog/authors/benedikt-rollik",{"name":1376,"config":1377},"Benedikt Rollik",{"headshot":718,"ctfId":1378},"Benedikt-Rollik",{"template":687},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1384,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1385,"config":1390,"_id":1391,"_type":32,"title":1386,"_source":34,"_file":1392,"_stem":1393,"_extension":37},"/en-us/blog/authors/benjamin-skierlak",{"name":1386,"config":1387},"Benjamin Skierlak",{"headshot":1388,"ctfId":1389},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":687},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1395,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1396,"config":1400,"_id":1401,"_type":32,"title":1397,"_source":34,"_file":1402,"_stem":1403,"_extension":37},"/en-us/blog/authors/bert-van-eyck",{"name":1397,"config":1398},"Bert Van Eyck",{"headshot":7,"ctfId":1399},"bertveproximus",{"template":687},"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":1405,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1406,"config":1411,"_id":1412,"_type":32,"title":1407,"_source":34,"_file":1413,"_stem":1414,"_extension":37},"/en-us/blog/authors/betsy-bula",{"name":1407,"config":1408},"Betsy Bula",{"headshot":1409,"ctfId":1410},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":687},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1416,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1417,"config":1421,"_id":1422,"_type":32,"title":1418,"_source":34,"_file":1423,"_stem":1424,"_extension":37},"/en-us/blog/authors/betsy-church",{"name":1418,"config":1419},"Betsy Church",{"headshot":7,"ctfId":1420},"bchurch",{"template":687},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1426,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1427,"config":1432,"_id":1433,"_type":32,"title":1428,"_source":34,"_file":1434,"_stem":1435,"_extension":37},"/en-us/blog/authors/bill-staples",{"name":1428,"config":1429,"role":1431},"Bill Staples",{"headshot":1430},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":687},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1437,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1438,"config":1443,"_id":1444,"_type":32,"title":1439,"_source":34,"_file":1445,"_stem":1446,"_extension":37},"/en-us/blog/authors/bob-van-landuyt",{"name":1439,"config":1440},"Bob Van Landuyt",{"headshot":1441,"ctfId":1442},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":687},"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":1448,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1449,"config":1453,"_id":1454,"_type":32,"title":1450,"_source":34,"_file":1455,"_stem":1456,"_extension":37},"/en-us/blog/authors/boris-baldassari",{"name":1450,"config":1451},"Boris Baldassari",{"headshot":7,"ctfId":1452},"bbaldassari",{"template":687},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1458,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1459,"config":1463,"_id":1464,"_type":32,"title":1460,"_source":34,"_file":1465,"_stem":1466,"_extension":37},"/en-us/blog/authors/borivoje-tasovac",{"name":1460,"config":1461},"Borivoje Tasovac",{"headshot":7,"ctfId":1462},"borivoje",{"template":687},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1468,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1469,"config":1473,"_id":1474,"_type":32,"title":1470,"_source":34,"_file":1475,"_stem":1476,"_extension":37},"/en-us/blog/authors/brad-downey",{"name":1470,"config":1471},"Brad Downey",{"headshot":718,"ctfId":1472},"6b6RTu6832NFEju2zKJhbE",{"template":687},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1478,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1479,"config":1484,"_id":1485,"_type":32,"title":1480,"_source":34,"_file":1486,"_stem":1487,"_extension":37},"/en-us/blog/authors/bradley-lee",{"name":1480,"config":1481},"Bradley Lee",{"headshot":1482,"ctfId":1483},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":687},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1489,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1490,"config":1494,"_id":1495,"_type":32,"title":1491,"_source":34,"_file":1496,"_stem":1497,"_extension":37},"/en-us/blog/authors/brandon-foo",{"name":1491,"config":1492},"Brandon Foo",{"headshot":718,"ctfId":1493},"Brandon-Foo",{"template":687},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1499,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1500,"config":1504,"_id":1505,"_type":32,"title":1501,"_source":34,"_file":1506,"_stem":1507,"_extension":37},"/en-us/blog/authors/brandon-jung",{"name":1501,"config":1502},"Brandon Jung",{"headshot":718,"ctfId":1503},"Brandon-Jung",{"template":687},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1509,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1510,"config":1514,"_id":1515,"_type":32,"title":1511,"_source":34,"_file":1516,"_stem":1517,"_extension":37},"/en-us/blog/authors/brandon-lyon",{"name":1511,"config":1512},"Brandon Lyon",{"headshot":7,"ctfId":1513},"brandonlyon",{"template":687},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1519,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1520,"config":1524,"_id":1525,"_type":32,"title":1521,"_source":34,"_file":1526,"_stem":1527,"_extension":37},"/en-us/blog/authors/brein-matturro",{"name":1521,"config":1522},"Brein Matturro",{"headshot":7,"ctfId":1523},"bmatturro",{"template":687},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1529,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1530,"config":1534,"_id":1535,"_type":32,"title":1536,"_source":34,"_file":1537,"_stem":1538,"_extension":37},"/en-us/blog/authors/brendan-oleary",{"name":1531,"config":1532},"Brendan O'Leary",{"headshot":7,"ctfId":1533},"brendan",{"template":687},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1540,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1541,"config":1545,"_id":1546,"_type":32,"title":1542,"_source":34,"_file":1547,"_stem":1548,"_extension":37},"/en-us/blog/authors/brendan-regan",{"name":1542,"config":1543},"Brendan Regan",{"headshot":7,"ctfId":1544},"brendanregan11",{"template":687},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1550,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1551,"config":1556,"_id":1557,"_type":32,"title":1552,"_source":34,"_file":1558,"_stem":1559,"_extension":37},"/en-us/blog/authors/brett-walker",{"name":1552,"config":1553},"Brett Walker",{"headshot":1554,"ctfId":1555},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":687},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1561,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1562,"config":1566,"_id":1567,"_type":32,"title":1563,"_source":34,"_file":1568,"_stem":1569,"_extension":37},"/en-us/blog/authors/brian-glanz",{"name":1563,"config":1564},"Brian Glanz",{"headshot":7,"ctfId":1565},"brianglanz",{"template":687},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1571,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1572,"config":1576,"_id":1577,"_type":32,"title":1578,"_source":34,"_file":1579,"_stem":1580,"_extension":37},"/en-us/blog/authors/brian-oconnell",{"name":1573,"config":1574},"Brian O'Connell",{"headshot":718,"ctfId":1575},"Brian-OConnell",{"template":687},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1582,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1583,"config":1587,"_id":1588,"_type":32,"title":1584,"_source":34,"_file":1589,"_stem":1590,"_extension":37},"/en-us/blog/authors/brian-rhea",{"name":1584,"config":1585},"Brian Rhea",{"headshot":7,"ctfId":1586},"brhea",{"template":687},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1592,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1593,"config":1597,"_id":1598,"_type":32,"title":1594,"_source":34,"_file":1599,"_stem":1600,"_extension":37},"/en-us/blog/authors/brian-wald",{"name":1594,"config":1595},"Brian Wald",{"headshot":718,"ctfId":1596},"78qOxgHKlgDY2IxMrBrgCu",{"template":687},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1602,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1603,"config":1607,"_id":1608,"_type":32,"title":1604,"_source":34,"_file":1609,"_stem":1610,"_extension":37},"/en-us/blog/authors/brittany-rohde",{"name":1604,"config":1605},"Brittany Rohde",{"headshot":7,"ctfId":1606},"brittanyr",{"template":687},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1612,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1613,"config":1618,"_id":1619,"_type":32,"title":1614,"_source":34,"_file":1620,"_stem":1621,"_extension":37},"/en-us/blog/authors/bryan-behrenshausen",{"name":1614,"config":1615},"Bryan Behrenshausen",{"headshot":1616,"ctfId":1617},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":687},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1623,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1624,"config":1629,"_id":1630,"_type":32,"title":1625,"_source":34,"_file":1631,"_stem":1632,"_extension":37},"/en-us/blog/authors/bryan-may",{"name":1625,"config":1626},"Bryan May",{"headshot":1627,"ctfId":1628},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":687},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1634,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1635,"config":1640,"_id":1641,"_type":32,"title":1636,"_source":34,"_file":1642,"_stem":1643,"_extension":37},"/en-us/blog/authors/byron-boots",{"name":1636,"config":1637},"Byron Boots",{"headshot":1638,"ctfId":1639},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":687},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1645,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1646,"config":1651,"_id":1652,"_type":32,"title":1647,"_source":34,"_file":1653,"_stem":1654,"_extension":37},"/en-us/blog/authors/camellia-yang",{"name":1647,"config":1648},"Camellia Yang",{"headshot":1649,"ctfId":1650},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":687},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1656,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1657,"config":1662,"_id":1663,"_type":32,"title":1658,"_source":34,"_file":1664,"_stem":1665,"_extension":37},"/en-us/blog/authors/cameron-swords",{"name":1658,"config":1659},"Cameron Swords",{"headshot":1660,"ctfId":1661},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":687},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1667,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1668,"config":1674,"_id":1675,"_type":32,"title":1670,"_source":34,"_file":1676,"_stem":1677,"_extension":37},"/en-us/blog/authors/carl-myers",{"role":1669,"name":1670,"config":1671},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1672,"ctfId":1673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":687},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1679,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1680,"config":1684,"_id":1685,"_type":32,"title":1681,"_source":34,"_file":1686,"_stem":1687,"_extension":37},"/en-us/blog/authors/carol-teskey",{"name":1681,"config":1682},"Carol Teskey",{"headshot":7,"ctfId":1683},"cteskey",{"template":687},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1689,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1690,"config":1695,"_id":1696,"_type":32,"title":1691,"_source":34,"_file":1697,"_stem":1698,"_extension":37},"/en-us/blog/authors/cesar-saavedra",{"name":1691,"config":1692},"Cesar Saavedra",{"headshot":1693,"ctfId":1694},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":687},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1700,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1701,"config":1705,"_id":1706,"_type":32,"title":1702,"_source":34,"_file":1707,"_stem":1708,"_extension":37},"/en-us/blog/authors/chad-malchow",{"name":1702,"config":1703},"Chad Malchow",{"headshot":718,"ctfId":1704},"Chad-Malchow",{"template":687},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1710,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1711,"config":1716,"_id":1717,"_type":32,"title":1712,"_source":34,"_file":1718,"_stem":1719,"_extension":37},"/en-us/blog/authors/chance-feick",{"name":1712,"config":1713},"Chance Feick",{"headshot":1714,"ctfId":1715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666442/Blog/Author%20Headshots/chance_feick_headshot.png","18dtRbXV47xqf5iDrOIduM",{"template":687},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1721,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1722,"config":1727,"_id":1728,"_type":32,"title":1723,"_source":34,"_file":1729,"_stem":1730,"_extension":37},"/en-us/blog/authors/chandler-gibbons",{"name":1723,"config":1724},"Chandler Gibbons",{"headshot":1725,"ctfId":1726},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663276/Blog/Author%20Headshots/chandlergibb-headshot.jpg","chandlergibb",{"template":687},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1732,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1733,"config":1737,"_id":1738,"_type":32,"title":1739,"_source":34,"_file":1740,"_stem":1741,"_extension":37},"/en-us/blog/authors/charl-de-wit",{"name":1734,"config":1735},"Charl de Wit",{"headshot":718,"ctfId":1736},"45mQeypQVLNvvTWMzserbR",{"template":687},"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":1743,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1744,"config":1749,"_id":1750,"_type":32,"title":1745,"_source":34,"_file":1751,"_stem":1752,"_extension":37},"/en-us/blog/authors/charlie-ablett",{"name":1745,"config":1746},"Charlie Ablett",{"headshot":1747,"ctfId":1748},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670131/Blog/Author%20Headshots/cablett-headshot.png","cablett",{"template":687},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1754,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1755,"config":1759,"_id":1760,"_type":32,"title":1756,"_source":34,"_file":1761,"_stem":1762,"_extension":37},"/en-us/blog/authors/charvi-mendiratta",{"name":1756,"config":1757},"Charvi Mendiratta",{"headshot":718,"ctfId":1758},"YV7WvnjPWFS3JhXmSYJLk",{"template":687},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1764,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1765,"config":1770,"_id":1771,"_type":32,"title":1766,"_source":34,"_file":1772,"_stem":1773,"_extension":37},"/en-us/blog/authors/cherry-han",{"name":1766,"config":1767},"Cherry Han",{"headshot":1768,"ctfId":1769},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ehktvdbix2o1t0mmcvll.png","6gkuhRkgzCNP1Ee6J14yLu",{"template":687},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1775,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1776,"config":1780,"_id":1782,"_type":32,"title":1777,"_source":34,"_file":1783,"_stem":1784,"_extension":37},"/en-us/blog/authors/chloe-cartron",{"name":1777,"config":1778},"Chloe Cartron",{"headshot":1779},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":687,"gitlabHandle":1781},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1786,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1787,"config":1792,"_id":1793,"_type":32,"title":1788,"_source":34,"_file":1794,"_stem":1795,"_extension":37},"/en-us/blog/authors/chloe-whitestone",{"name":1788,"config":1789},"Chloe Whitestone",{"headshot":1790,"ctfId":1791},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678693/Blog/Author%20Headshots/chloe-headshot.jpg","chloe",{"template":687},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1797,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1798,"config":1803,"_id":1804,"_type":32,"title":1799,"_source":34,"_file":1805,"_stem":1806,"_extension":37},"/en-us/blog/authors/chris-balane",{"name":1799,"config":1800},"Chris Balane",{"headshot":1801,"ctfId":1802},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667630/Blog/Author%20Headshots/chris_balane_headshot.png","40SOCfTl3frynjL3dbg63o",{"template":687},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1808,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1809,"config":1813,"_id":1814,"_type":32,"title":1810,"_source":34,"_file":1815,"_stem":1816,"_extension":37},"/en-us/blog/authors/chris-baus",{"name":1810,"config":1811},"Chris Baus",{"headshot":7,"ctfId":1812},"chrisbaus",{"template":687},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1818,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1819,"config":1824,"_id":1825,"_type":32,"title":1820,"_source":34,"_file":1826,"_stem":1827,"_extension":37},"/en-us/blog/authors/chris-micek",{"name":1820,"config":1821},"Chris Micek",{"headshot":1822,"ctfId":1823},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666144/Blog/Author%20Headshots/chris_micek_headshot.png","62ZsvfXlttQEQ1tnikgoq9",{"template":687},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1829,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1830,"config":1835,"_id":1836,"_type":32,"title":1831,"_source":34,"_file":1837,"_stem":1838,"_extension":37},"/en-us/blog/authors/chris-moberly",{"name":1831,"config":1832},"Chris Moberly",{"headshot":1833,"ctfId":1834},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664235/Blog/Author%20Headshots/cmoberly-headshot.jpg","cmoberly",{"template":687},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1840,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1841,"config":1845,"_id":1846,"_type":32,"title":1847,"_source":34,"_file":1848,"_stem":1849,"_extension":37},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1842,"config":1843},"Chris Sterry, Dotscience",{"headshot":718,"ctfId":1844},"Chris-Sterry-Dotscience",{"template":687},"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":1851,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1852,"config":1856,"_id":1857,"_type":32,"title":1853,"_source":34,"_file":1858,"_stem":1859,"_extension":37},"/en-us/blog/authors/chris-ward",{"name":1853,"config":1854},"Chris Ward",{"headshot":7,"ctfId":1855},"chrischinchilla",{"template":687},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1861,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1862,"config":1869,"_id":1870,"_type":32,"title":1864,"_source":34,"_file":1871,"_stem":1872,"_extension":37},"/en-us/blog/authors/chris-weber",{"role":1863,"name":1864,"config":1865},"CRO ","Chris Weber",{"headshot":1866,"linkedin":1867,"ctfId":1868},"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":687},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1874,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1875,"config":1879,"_id":1880,"_type":32,"title":1876,"_source":34,"_file":1881,"_stem":1882,"_extension":37},"/en-us/blog/authors/chrissie-buchanan",{"name":1876,"config":1877},"Chrissie Buchanan",{"headshot":718,"ctfId":1878},"cbuchanan",{"template":687},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1884,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1885,"config":1890,"_id":1891,"_type":32,"title":1886,"_source":34,"_file":1892,"_stem":1893,"_extension":37},"/en-us/blog/authors/christen-dybenko",{"name":1886,"config":1887},"Christen Dybenko",{"headshot":1888,"ctfId":1889},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668811/Blog/Author%20Headshots/cdybenko-headshot.jpg","cdybenko",{"template":687},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1895,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1896,"config":1901,"_id":1902,"_type":32,"title":1897,"_source":34,"_file":1903,"_stem":1904,"_extension":37},"/en-us/blog/authors/christian-couder",{"name":1897,"config":1898},"Christian Couder",{"headshot":1899,"ctfId":1900},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool",{"template":687},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1906,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1907,"config":1912,"_id":1913,"_type":32,"title":1908,"_source":34,"_file":1914,"_stem":1915,"_extension":37},"/en-us/blog/authors/christian-nnachi",{"name":1908,"config":1909},"Christian Nnachi",{"headshot":1910,"ctfId":1911},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665343/Blog/Author%20Headshots/christian_nnachi_headshot.png","6pE7HjtzzpRhBFVdwTFjEX",{"template":687},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1917,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1918,"config":1922,"_id":1923,"_type":32,"title":1919,"_source":34,"_file":1924,"_stem":1925,"_extension":37},"/en-us/blog/authors/christian-simko",{"name":1919,"config":1920},"Christian Simko",{"headshot":7,"ctfId":1921},"csimko",{"template":687},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1927,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1928,"config":1933,"_id":1934,"_type":32,"title":1929,"_source":34,"_file":1935,"_stem":1936,"_extension":37},"/en-us/blog/authors/christie-lenneville",{"name":1929,"config":1930},"Christie Lenneville",{"headshot":1931,"ctfId":1932},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670047/Blog/Author%20Headshots/clenneville-headshot.jpg","clenneville",{"template":687},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1938,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1939,"config":1943,"_id":1944,"_type":32,"title":1945,"_source":34,"_file":1946,"_stem":1947,"_extension":37},"/en-us/blog/authors/christina-hupy-phd",{"name":1940,"config":1941},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1942},"chupy",{"template":687},"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":1949,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1950,"config":1955,"_id":1956,"_type":32,"title":1951,"_source":34,"_file":1957,"_stem":1958,"_extension":37},"/en-us/blog/authors/christina-lohr",{"name":1951,"config":1952},"Christina Lohr",{"headshot":1953,"ctfId":1954},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662499/Blog/Author%20Headshots/lohrc-headshot.jpg","lohrc",{"template":687},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":1960,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1961,"config":1965,"_id":1966,"_type":32,"title":1962,"_source":34,"_file":1967,"_stem":1968,"_extension":37},"/en-us/blog/authors/christine-yoshida",{"name":1962,"config":1963},"Christine Yoshida",{"headshot":7,"ctfId":1964},"cyoshida",{"template":687},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":1970,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1971,"config":1975,"_id":1976,"_type":32,"title":1972,"_source":34,"_file":1977,"_stem":1978,"_extension":37},"/en-us/blog/authors/christopher-watson",{"name":1972,"config":1973},"Christopher Watson",{"headshot":718,"ctfId":1974},"Christopher-Watson",{"template":687},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":1980,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1981,"config":1985,"_id":1986,"_type":32,"title":1982,"_source":34,"_file":1987,"_stem":1988,"_extension":37},"/en-us/blog/authors/christos-bacharakis",{"name":1982,"config":1983},"Christos Bacharakis",{"headshot":718,"ctfId":1984},"Christos-Bacharakis",{"template":687},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":1990,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":1991,"config":1995,"_id":1996,"_type":32,"title":1992,"_source":34,"_file":1997,"_stem":1998,"_extension":37},"/en-us/blog/authors/cindy-blake",{"name":1992,"config":1993},"Cindy Blake",{"headshot":718,"ctfId":1994},"cblake",{"template":687},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":2000,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2001,"config":2006,"_id":2007,"_type":32,"title":2002,"_source":34,"_file":2008,"_stem":2009,"_extension":37},"/en-us/blog/authors/claire-champernowne",{"name":2002,"config":2003},"Claire Champernowne",{"headshot":2004,"ctfId":2005},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ",{"template":687},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2011,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2012,"config":2016,"_id":2017,"_type":32,"title":2013,"_source":34,"_file":2018,"_stem":2019,"_extension":37},"/en-us/blog/authors/clement-ho",{"name":2013,"config":2014},"Clement Ho",{"headshot":7,"ctfId":2015},"ClemMakesApps",{"template":687},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2021,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2022,"config":2026,"_id":2027,"_type":32,"title":2023,"_source":34,"_file":2028,"_stem":2029,"_extension":37},"/en-us/blog/authors/colin-fletcher",{"name":2023,"config":2024},"Colin Fletcher",{"headshot":7,"ctfId":2025},"cfletcher1",{"template":687},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2031,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2032,"config":2037,"_id":2038,"_type":32,"title":2033,"_source":34,"_file":2039,"_stem":2040,"_extension":37},"/en-us/blog/authors/connor-gilbert",{"name":2033,"config":2034},"Connor Gilbert",{"headshot":2035,"ctfId":2036},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665913/Blog/Author%20Headshots/connorgilbert-headshot.jpg","connorgilbert",{"template":687},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2042,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2043,"config":2047,"_id":2048,"_type":32,"title":2044,"_source":34,"_file":2049,"_stem":2050,"_extension":37},"/en-us/blog/authors/connor-shea",{"name":2044,"config":2045},"Connor Shea",{"headshot":718,"ctfId":2046},"Connor-Shea",{"template":687},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2052,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2053,"config":2058,"_id":2059,"_type":32,"title":2054,"_source":34,"_file":2060,"_stem":2061,"_extension":37},"/en-us/blog/authors/corey-oas",{"name":2054,"config":2055},"Corey Oas",{"headshot":2056,"ctfId":2057},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667633/Blog/Author%20Headshots/corey_oas_headshot.png","1Dd1lJ4aKCv36YWdlUhlPf",{"template":687},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2063,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2064,"config":2068,"_id":2069,"_type":32,"title":2065,"_source":34,"_file":2070,"_stem":2071,"_extension":37},"/en-us/blog/authors/cormac-foster",{"name":2065,"config":2066},"Cormac Foster",{"headshot":7,"ctfId":2067},"cfoster3",{"template":687},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2073,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2074,"config":2079,"_id":2080,"_type":32,"title":2075,"_source":34,"_file":2081,"_stem":2082,"_extension":37},"/en-us/blog/authors/costel-maxim",{"name":2075,"config":2076},"Costel Maxim",{"headshot":2077,"ctfId":2078},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663173/Blog/Author%20Headshots/costel_maxim_headshot.png","3QzzrMksaRD9ZPytt0SPPL",{"template":687},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2084,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2085,"config":2090,"_id":2091,"_type":32,"title":2086,"_source":34,"_file":2092,"_stem":2093,"_extension":37},"/en-us/blog/authors/courtney-meddaugh",{"name":2086,"config":2087},"Courtney Meddaugh",{"headshot":2088,"ctfId":2089},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665168/Blog/Author%20Headshots/courtney_meddaugh_headshot.png","5avtK3YS9MrDBkaOnB9ZmG",{"template":687},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2095,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2096,"config":2100,"_id":2101,"_type":32,"title":2097,"_source":34,"_file":2102,"_stem":2103,"_extension":37},"/en-us/blog/authors/craig-gomes",{"name":2097,"config":2098},"Craig Gomes",{"headshot":7,"ctfId":2099},"craiggomes",{"template":687},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2105,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2106,"config":2111,"_id":2112,"_type":32,"title":2107,"_source":34,"_file":2113,"_stem":2114,"_extension":37},"/en-us/blog/authors/craig-miskell",{"name":2107,"config":2108},"Craig Miskell",{"headshot":2109,"ctfId":2110},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667372/Blog/Author%20Headshots/cmiskell-headshot.jpg","cmiskell",{"template":687},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2116,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2117,"config":2121,"_id":2122,"_type":32,"title":2118,"_source":34,"_file":2123,"_stem":2124,"_extension":37},"/en-us/blog/authors/creighton-swank",{"name":2118,"config":2119},"Creighton Swank",{"headshot":718,"ctfId":2120},"5uf3k9lutpbelxJQ373eWu",{"template":687},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2126,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2127,"config":2131,"_id":2132,"_type":32,"title":2128,"_source":34,"_file":2133,"_stem":2134,"_extension":37},"/en-us/blog/authors/daisy-miclat",{"name":2128,"config":2129},"Daisy Miclat",{"headshot":718,"ctfId":2130},"IU4zOKoPhWS7hok7qsy7w",{"template":687},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2136,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2137,"config":2141,"_id":2142,"_type":32,"title":2138,"_source":34,"_file":2143,"_stem":2144,"_extension":37},"/en-us/blog/authors/dan-luhring",{"name":2138,"config":2139},"Dan Luhring",{"headshot":7,"ctfId":2140},"danluhring",{"template":687},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2146,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2147,"config":2152,"_id":2153,"_type":32,"title":2148,"_source":34,"_file":2154,"_stem":2155,"_extension":37},"/en-us/blog/authors/dan-rabinovitz",{"name":2148,"config":2149},"Dan Rabinovitz",{"headshot":2150,"ctfId":2151},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664796/Blog/Author%20Headshots/dan_rabinovitz_headshot.png","31AXb267jy94budCWQZQyr",{"template":687},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2157,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2158,"config":2162,"_id":2163,"_type":32,"title":2159,"_source":34,"_file":2164,"_stem":2165,"_extension":37},"/en-us/blog/authors/daniel-berman",{"name":2159,"config":2160},"Daniel Berman",{"headshot":718,"ctfId":2161},"Daniel-Berman",{"template":687},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2167,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2168,"config":2172,"_id":2173,"_type":32,"title":2169,"_source":34,"_file":2174,"_stem":2175,"_extension":37},"/en-us/blog/authors/daniel-gruesso",{"name":2169,"config":2170},"Daniel Gruesso",{"headshot":7,"ctfId":2171},"danielgruesso",{"template":687},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2177,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2178,"config":2183,"_id":2184,"_type":32,"title":2179,"_source":34,"_file":2185,"_stem":2186,"_extension":37},"/en-us/blog/authors/daniel-hauenstein",{"name":2179,"config":2180},"Daniel Hauenstein",{"headshot":2181,"ctfId":2182},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662434/Blog/Author%20Headshots/daniel_hauenstein_headshot.png","2gXGuSmuvZSxv0iCn4sinV",{"template":687},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2188,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2189,"config":2194,"_id":2195,"_type":32,"title":2190,"_source":34,"_file":2196,"_stem":2197,"_extension":37},"/en-us/blog/authors/daniel-helfand",{"name":2190,"config":2191},"Daniel Helfand",{"headshot":2192,"ctfId":2193},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662418/Blog/Author%20Headshots/dhelfand.png","b9sRP0HJhdPsOEruWUfih",{"template":687},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2199,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2200,"config":2204,"_id":2205,"_type":32,"title":2201,"_source":34,"_file":2206,"_stem":2207,"_extension":37},"/en-us/blog/authors/daniel-mora",{"name":2201,"config":2202},"Daniel Mora",{"headshot":7,"ctfId":2203},"dmoraberlin",{"template":687},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2209,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2210,"config":2214,"_id":2216,"_type":32,"title":2211,"_source":34,"_file":2217,"_stem":2218,"_extension":37},"/en-us/blog/authors/daniel-murphy",{"name":2211,"config":2212},"Daniel Murphy",{"headshot":2213},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":687,"gitlabHandle":2215},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2220,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2221,"config":2226,"_id":2227,"_type":32,"title":2222,"_source":34,"_file":2228,"_stem":2229,"_extension":37},"/en-us/blog/authors/darby-frey",{"name":2222,"config":2223},"Darby Frey",{"headshot":2224,"ctfId":2225},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey",{"template":687},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2231,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2232,"config":2237,"_id":2238,"_type":32,"title":2233,"_source":34,"_file":2239,"_stem":2240,"_extension":37},"/en-us/blog/authors/darren-eastman",{"name":2233,"config":2234},"Darren Eastman",{"headshot":2235,"ctfId":2236},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman",{"template":687},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2242,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2243,"config":2247,"_id":2248,"_type":32,"title":2244,"_source":34,"_file":2249,"_stem":2250,"_extension":37},"/en-us/blog/authors/darren-murph",{"name":2244,"config":2245},"Darren Murph",{"headshot":7,"ctfId":2246},"dmurph",{"template":687},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2252,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2253,"config":2260,"_id":2261,"_type":32,"title":2255,"_source":34,"_file":2262,"_stem":2263,"_extension":37},"/en-us/blog/authors/darwin-sanoy",{"role":2254,"name":2255,"config":2256},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2257,"linkedin":2258,"ctfId":2259},"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":687},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2265,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2266,"config":2271,"_id":2272,"_type":32,"title":2267,"_source":34,"_file":2273,"_stem":2274,"_extension":37},"/en-us/blog/authors/dave-steer",{"name":2267,"config":2268},"Dave Steer",{"headshot":2269,"ctfId":2270},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658895/Blog/Author%20Headshots/dsteer-headshot.jpg","dsteer",{"template":687},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2276,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2277,"config":2281,"_id":2282,"_type":32,"title":2278,"_source":34,"_file":2283,"_stem":2284,"_extension":37},"/en-us/blog/authors/dave-wentzel",{"name":2278,"config":2279},"Dave Wentzel",{"headshot":718,"ctfId":2280},"Dave-Wentzel",{"template":687},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2286,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2287,"config":2292,"_id":2293,"_type":32,"title":2294,"_source":34,"_file":2295,"_stem":2296,"_extension":37},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2288,"config":2289},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2290,"ctfId":2291},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660185/Blog/Author%20Headshots/david-headshot.jpg","david",{"template":687},"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":2298,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2299,"config":2304,"_id":2305,"_type":32,"title":2306,"_source":34,"_file":2307,"_stem":2308,"_extension":37},"/en-us/blog/authors/david-oregan",{"name":2300,"config":2301},"David O'Regan",{"headshot":2302,"ctfId":2303},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659853/Blog/Author%20Headshots/oregand-headshot.png","oregand",{"template":687},"content:en-us:blog:authors:david-oregan.yml","David Oregan","en-us/blog/authors/david-oregan.yml","en-us/blog/authors/david-oregan",{"_path":2310,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2311,"config":2315,"_id":2316,"_type":32,"title":2312,"_source":34,"_file":2317,"_stem":2318,"_extension":37},"/en-us/blog/authors/david-planella",{"name":2312,"config":2313},"David Planella",{"headshot":718,"ctfId":2314},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":687},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2320,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2321,"config":2325,"_id":2326,"_type":32,"title":2322,"_source":34,"_file":2327,"_stem":2328,"_extension":37},"/en-us/blog/authors/david-russell",{"name":2322,"config":2323},"David Russell",{"headshot":718,"ctfId":2324},"David-Russell",{"template":687},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2330,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2331,"config":2336,"_id":2337,"_type":32,"title":2332,"_source":34,"_file":2338,"_stem":2339,"_extension":37},"/en-us/blog/authors/david-smith",{"name":2332,"config":2333},"David Smith",{"headshot":2334,"ctfId":2335},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671135/Blog/Author%20Headshots/dawsmith-headshot.jpg","dawsmith",{"template":687},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2341,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2342,"config":2346,"_id":2347,"_type":32,"title":2343,"_source":34,"_file":2348,"_stem":2349,"_extension":37},"/en-us/blog/authors/davis-townsend",{"name":2343,"config":2344},"Davis Townsend",{"headshot":7,"ctfId":2345},"davistownsend",{"template":687},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2351,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2352,"config":2356,"_id":2358,"_type":32,"title":2353,"_source":34,"_file":2359,"_stem":2360,"_extension":37},"/en-us/blog/authors/davoud-tu",{"name":2353,"config":2354},"Davoud Tu",{"headshot":2355},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":687,"gitlabHandle":2357},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2362,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2363,"config":2368,"_id":2369,"_type":32,"title":2370,"_source":34,"_file":2371,"_stem":2372,"_extension":37},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2364,"config":2365},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2366,"ctfId":2367},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671963/Blog/Author%20Headshots/Dean_Photo__1_.jpg","6wQ0QwFZdbzAtYGZgnALkw",{"template":687},"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":2374,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2375,"config":2380,"_id":2381,"_type":32,"title":2376,"_source":34,"_file":2382,"_stem":2383,"_extension":37},"/en-us/blog/authors/deepa-mahalingam",{"name":2376,"config":2377},"Deepa Mahalingam",{"headshot":2378,"ctfId":2379},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662019/Blog/Author%20Headshots/deepa-headshot.jpg","M54z9AWDuU7L9nBR9gRF4",{"template":687},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2385,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2386,"config":2391,"_id":2392,"_type":32,"title":2387,"_source":34,"_file":2393,"_stem":2394,"_extension":37},"/en-us/blog/authors/dennis-appelt",{"name":2387,"config":2388},"Dennis Appelt",{"headshot":2389,"ctfId":2390},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt",{"template":687},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2396,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2397,"config":2402,"_id":2403,"_type":32,"title":2398,"_source":34,"_file":2404,"_stem":2405,"_extension":37},"/en-us/blog/authors/dennis-tang",{"name":2398,"config":2399},"Dennis Tang",{"headshot":2400,"ctfId":2401},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672189/Blog/Author%20Headshots/dennis-headshot.jpg","dennis",{"template":687},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2407,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2408,"config":2412,"_id":2414,"_type":32,"title":2415,"_source":34,"_file":2416,"_stem":2417,"_extension":37},"/en-us/blog/authors/dennis-van-rooijen",{"name":2409,"config":2410},"Dennis van Rooijen",{"headshot":2411},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":687,"gitlabHandle":2413},"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":2419,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2420,"config":2425,"_id":2426,"_type":32,"title":2421,"_source":34,"_file":2427,"_stem":2428,"_extension":37},"/en-us/blog/authors/devin-sylva",{"name":2421,"config":2422},"Devin Sylva",{"headshot":2423,"ctfId":2424},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679087/Blog/Author%20Headshots/devin-headshot.jpg","devin",{"template":687},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2430,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2431,"config":2435,"_id":2436,"_type":32,"title":2432,"_source":34,"_file":2437,"_stem":2438,"_extension":37},"/en-us/blog/authors/dhruv-jain",{"name":2432,"config":2433},"Dhruv Jain",{"headshot":718,"ctfId":2434},"2wyibk9HBKn6PjgaEuzXuZ",{"template":687},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2440,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2441,"config":2445,"_id":2446,"_type":32,"title":2442,"_source":34,"_file":2447,"_stem":2448,"_extension":37},"/en-us/blog/authors/diana-logan",{"name":2442,"config":2443},"Diana Logan",{"headshot":718,"ctfId":2444},"6poIwhQe6W9ysm5rBuSPXX",{"template":687},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2450,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2451,"config":2456,"_id":2457,"_type":32,"title":2452,"_source":34,"_file":2458,"_stem":2459,"_extension":37},"/en-us/blog/authors/dilan-orrino",{"name":2452,"config":2453},"Dilan Orrino",{"headshot":2454,"ctfId":2455},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666180/Blog/Author%20Headshots/dorrino-headshot.png","dorrino",{"template":687},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2461,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2462,"config":2466,"_id":2467,"_type":32,"title":2463,"_source":34,"_file":2468,"_stem":2469,"_extension":37},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2463,"config":2464},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2465},"dimitrieh",{"template":687},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2471,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2472,"config":2476,"_id":2477,"_type":32,"title":2473,"_source":34,"_file":2478,"_stem":2479,"_extension":37},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2473,"config":2474},"Dinesh Bolkensteyn",{"headshot":718,"ctfId":2475},"EpylYWgjPmFOL5NX3Zxmk",{"template":687},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2481,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2482,"config":2486,"_id":2487,"_type":32,"title":2488,"_source":34,"_file":2489,"_stem":2490,"_extension":37},"/en-us/blog/authors/dj-mountney",{"name":2483,"config":2484},"DJ Mountney",{"headshot":718,"ctfId":2485},"DJ-Mountney",{"template":687},"content:en-us:blog:authors:dj-mountney.yml","Dj Mountney","en-us/blog/authors/dj-mountney.yml","en-us/blog/authors/dj-mountney",{"_path":2492,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2493,"config":2497,"_id":2498,"_type":32,"title":2499,"_source":34,"_file":2500,"_stem":2501,"_extension":37},"/en-us/blog/authors/dmitriy-job",{"name":2494,"config":2495},"Dmitriy, Job",{"headshot":718,"ctfId":2496},"Dmitriy-Job",{"template":687},"content:en-us:blog:authors:dmitriy-job.yml","Dmitriy Job","en-us/blog/authors/dmitriy-job.yml","en-us/blog/authors/dmitriy-job",{"_path":2503,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2504,"config":2508,"_id":2509,"_type":32,"title":2505,"_source":34,"_file":2510,"_stem":2511,"_extension":37},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2505,"config":2506},"Dmitriy Zaporozhets",{"headshot":718,"ctfId":2507},"Dmitriy-Zaporozhets",{"template":687},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2513,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2514,"config":2519,"_id":2520,"_type":32,"title":2515,"_source":34,"_file":2521,"_stem":2522,"_extension":37},"/en-us/blog/authors/dmitry-gruzd",{"name":2515,"config":2516},"Dmitry Gruzd",{"headshot":2517,"ctfId":2518},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682014/Blog/Author%20Headshots/dgruzd-headshot.jpg","dgruzd",{"template":687},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2524,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2525,"config":2530,"_id":2531,"_type":32,"title":2526,"_source":34,"_file":2532,"_stem":2533,"_extension":37},"/en-us/blog/authors/dominic-couture",{"name":2526,"config":2527},"Dominic Couture",{"headshot":2528,"ctfId":2529},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683783/Blog/Author%20Headshots/dominic.png","3K2DmuMWV5isBeVtKsplia",{"template":687},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2535,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2536,"config":2540,"_id":2541,"_type":32,"title":2537,"_source":34,"_file":2542,"_stem":2543,"_extension":37},"/en-us/blog/authors/douglas-alexandre",{"name":2537,"config":2538},"Douglas Alexandre",{"headshot":718,"ctfId":2539},"Douglas-Alexandre",{"template":687},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2545,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2546,"config":2550,"_id":2551,"_type":32,"title":2547,"_source":34,"_file":2552,"_stem":2553,"_extension":37},"/en-us/blog/authors/douwe-maan",{"name":2547,"config":2548},"Douwe Maan",{"headshot":7,"ctfId":2549},"DouweM",{"template":687},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2555,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2556,"config":2561,"_id":2562,"_type":32,"title":2557,"_source":34,"_file":2563,"_stem":2564,"_extension":37},"/en-us/blog/authors/dov-hershkovitch",{"name":2557,"config":2558},"Dov Hershkovitch",{"headshot":2559,"ctfId":2560},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665628/Blog/Author%20Headshots/dhershkovitch-headshot.png","dhershkovitch",{"template":687},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2566,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2567,"config":2571,"_id":2572,"_type":32,"title":2573,"_source":34,"_file":2574,"_stem":2575,"_extension":37},"/en-us/blog/authors/dr-elle-obrien",{"name":2568,"config":2569},"Dr. Elle O'Brien",{"headshot":718,"ctfId":2570},"Dr-Elle-OBrien",{"template":687},"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":2577,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2578,"config":2582,"_id":2583,"_type":32,"title":2579,"_source":34,"_file":2584,"_stem":2585,"_extension":37},"/en-us/blog/authors/drew-blessing",{"name":2579,"config":2580},"Drew Blessing",{"headshot":718,"ctfId":2581},"Drew-Blessing",{"template":687},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2587,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2588,"config":2593,"_id":2594,"_type":32,"title":2589,"_source":34,"_file":2595,"_stem":2596,"_extension":37},"/en-us/blog/authors/dylan-griffith",{"name":2589,"config":2590},"Dylan Griffith",{"headshot":2591,"ctfId":2592},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672822/Blog/Author%20Headshots/DylanGriffith-headshot.jpg","DylanGriffith",{"template":687},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2598,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2599,"config":2603,"_id":2604,"_type":32,"title":2600,"_source":34,"_file":2605,"_stem":2606,"_extension":37},"/en-us/blog/authors/eddie-glenn",{"name":2600,"config":2601},"Eddie Glenn",{"headshot":7,"ctfId":2602},"eglenn",{"template":687},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2608,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2609,"config":2614,"_id":2615,"_type":32,"title":2610,"_source":34,"_file":2616,"_stem":2617,"_extension":37},"/en-us/blog/authors/eduardo-bonet",{"name":2610,"config":2611},"Eduardo Bonet",{"headshot":2612,"ctfId":2613},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682722/Blog/Author%20Headshots/eduardobonet-headshot.jpg","eduardobonet",{"template":687},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2619,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2620,"config":2625,"_id":2626,"_type":32,"title":2621,"_source":34,"_file":2627,"_stem":2628,"_extension":37},"/en-us/blog/authors/eliran-mesika",{"name":2621,"config":2622},"Eliran Mesika",{"headshot":2623,"ctfId":2624},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670111/Blog/Author%20Headshots/eliran.jpg","eliranmesika",{"template":687},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2630,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2631,"config":2636,"_id":2637,"_type":32,"title":2632,"_source":34,"_file":2638,"_stem":2639,"_extension":37},"/en-us/blog/authors/elisabeth-burrows",{"name":2632,"config":2633},"Elisabeth Burrows",{"headshot":2634,"ctfId":2635},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659535/Blog/Author%20Headshots/liz_burrows_headshot.png","6Nj2Lio5W7HdeNYoysVgCf",{"template":687},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2641,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2642,"config":2646,"_id":2647,"_type":32,"title":2643,"_source":34,"_file":2648,"_stem":2649,"_extension":37},"/en-us/blog/authors/elliot-rushton",{"name":2643,"config":2644},"Elliot Rushton",{"headshot":7,"ctfId":2645},"erushton",{"template":687},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2651,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2652,"config":2656,"_id":2657,"_type":32,"title":2653,"_source":34,"_file":2658,"_stem":2659,"_extension":37},"/en-us/blog/authors/emilie-schario",{"name":2653,"config":2654},"Emilie Schario",{"headshot":7,"ctfId":2655},"emilie",{"template":687},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2661,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2662,"config":2667,"_id":2668,"_type":32,"title":2663,"_source":34,"_file":2669,"_stem":2670,"_extension":37},"/en-us/blog/authors/emilio-salvador",{"name":2663,"config":2664},"Emilio Salvador",{"headshot":2665,"ctfId":2666},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660161/Blog/Author%20Headshots/esalvadorp-headshot.png","esalvadorp",{"template":687},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2672,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2673,"config":2678,"_id":2679,"_type":32,"title":2674,"_source":34,"_file":2680,"_stem":2681,"_extension":37},"/en-us/blog/authors/emily-bauman",{"name":2674,"config":2675},"Emily Bauman",{"headshot":2676,"ctfId":2677},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664145/Blog/Author%20Headshots/emilybauman-headshot.jpg","emilybauman",{"template":687},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2683,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2684,"config":2688,"_id":2689,"_type":32,"title":2685,"_source":34,"_file":2690,"_stem":2691,"_extension":37},"/en-us/blog/authors/emily-chin",{"name":2685,"config":2686},"Emily Chin",{"headshot":7,"ctfId":2687},"echin",{"template":687},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2693,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2694,"config":2698,"_id":2699,"_type":32,"title":2695,"_source":34,"_file":2700,"_stem":2701,"_extension":37},"/en-us/blog/authors/emily-kyle",{"name":2695,"config":2696},"Emily Kyle",{"headshot":718,"ctfId":2697},"Emily-Kyle",{"template":687},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2703,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2704,"config":2708,"_id":2709,"_type":32,"title":2710,"_source":34,"_file":2711,"_stem":2712,"_extension":37},"/en-us/blog/authors/emily-von-hoffmann",{"name":2705,"config":2706},"Emily von Hoffmann",{"headshot":718,"ctfId":2707},"evhoffmann",{"template":687},"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":2714,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2715,"config":2720,"_id":2721,"_type":32,"title":2722,"_source":34,"_file":2723,"_stem":2724,"_extension":37},"/en-us/blog/authors/enrique-alcntara",{"name":2716,"config":2717},"Enrique Alcántara",{"headshot":2718,"ctfId":2719},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669746/Blog/Author%20Headshots/ealcantara-headshot.jpg","3E3c30ZWRUTq6rlFiYrjtq",{"template":687},"content:en-us:blog:authors:enrique-alcntara.yml","Enrique Alcntara","en-us/blog/authors/enrique-alcntara.yml","en-us/blog/authors/enrique-alcntara",{"_path":2726,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2727,"config":2731,"_id":2732,"_type":32,"title":2728,"_source":34,"_file":2733,"_stem":2734,"_extension":37},"/en-us/blog/authors/eric-brinkman",{"name":2728,"config":2729},"Eric Brinkman",{"headshot":7,"ctfId":2730},"ebrinkman",{"template":687},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2736,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2737,"config":2741,"_id":2742,"_type":32,"title":2738,"_source":34,"_file":2743,"_stem":2744,"_extension":37},"/en-us/blog/authors/eric-eastwood",{"name":2738,"config":2739},"Eric Eastwood",{"headshot":7,"ctfId":2740},"MadLittleMods",{"template":687},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2746,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2747,"config":2751,"_id":2752,"_type":32,"title":2748,"_source":34,"_file":2753,"_stem":2754,"_extension":37},"/en-us/blog/authors/eric-rosenberg",{"name":2748,"config":2749},"Eric Rosenberg",{"headshot":7,"ctfId":2750},"ericrosenberg88",{"template":687},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2756,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2757,"config":2762,"_id":2763,"_type":32,"title":2758,"_source":34,"_file":2764,"_stem":2765,"_extension":37},"/en-us/blog/authors/eric-rubin",{"name":2758,"config":2759},"Eric Rubin",{"headshot":2760,"ctfId":2761},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682494/Blog/Author%20Headshots/ericrubin-headshot.png","ericrubin",{"template":687},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2767,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2768,"config":2773,"_id":2774,"_type":32,"title":2769,"_source":34,"_file":2775,"_stem":2776,"_extension":37},"/en-us/blog/authors/eric-schurter",{"name":2769,"config":2770},"Eric Schurter",{"headshot":2771,"ctfId":2772},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679281/Blog/Author%20Headshots/ericschurter-headshot.jpg","ericschurter",{"template":687},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2778,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2779,"config":2783,"_id":2784,"_type":32,"title":2780,"_source":34,"_file":2785,"_stem":2786,"_extension":37},"/en-us/blog/authors/erica-huang",{"name":2780,"config":2781},"Erica Huang",{"headshot":7,"ctfId":2782},"exhuang",{"template":687},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2788,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2789,"config":2793,"_id":2794,"_type":32,"title":2790,"_source":34,"_file":2795,"_stem":2796,"_extension":37},"/en-us/blog/authors/erica-lindberg",{"name":2790,"config":2791},"Erica Lindberg",{"headshot":718,"ctfId":2792},"Erica-Lindberg",{"template":687},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2798,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2799,"config":2803,"_id":2804,"_type":32,"title":2800,"_source":34,"_file":2805,"_stem":2806,"_extension":37},"/en-us/blog/authors/erich-wegscheider",{"name":2800,"config":2801},"Erich Wegscheider",{"headshot":7,"ctfId":2802},"ewegscheider",{"template":687},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2808,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2809,"config":2813,"_id":2814,"_type":32,"title":2810,"_source":34,"_file":2815,"_stem":2816,"_extension":37},"/en-us/blog/authors/erick-banks",{"name":2810,"config":2811},"Erick Banks",{"headshot":718,"ctfId":2812},"4CGXhAxudTq69aZOtPnLfu",{"template":687},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2818,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2819,"config":2823,"_id":2824,"_type":32,"title":2820,"_source":34,"_file":2825,"_stem":2826,"_extension":37},"/en-us/blog/authors/erika-feldman",{"name":2820,"config":2821},"Erika Feldman",{"headshot":718,"ctfId":2822},"78oCat8vvbl6mzXsLawd9d",{"template":687},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2828,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2829,"config":2833,"_id":2834,"_type":32,"title":2835,"_source":34,"_file":2836,"_stem":2837,"_extension":37},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2830,"config":2831},"Erin Krengel, Pulumi",{"headshot":718,"ctfId":2832},"Erin-Krengel-Pulumi",{"template":687},"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":2839,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2840,"config":2844,"_id":2845,"_type":32,"title":2846,"_source":34,"_file":2847,"_stem":2848,"_extension":37},"/en-us/blog/authors/ernst-van-nierop",{"name":2841,"config":2842},"Ernst van Nierop",{"headshot":7,"ctfId":2843},"ernstvn",{"template":687},"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":2850,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2851,"config":2855,"_id":2856,"_type":32,"title":2852,"_source":34,"_file":2857,"_stem":2858,"_extension":37},"/en-us/blog/authors/esther-shein",{"name":2852,"config":2853},"Esther Shein",{"headshot":718,"ctfId":2854},"Esther-Shein",{"template":687},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2860,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2861,"config":2866,"_id":2867,"_type":32,"title":2862,"_source":34,"_file":2868,"_stem":2869,"_extension":37},"/en-us/blog/authors/ethan-strike",{"name":2862,"config":2863},"Ethan Strike",{"headshot":2864,"ctfId":2865},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679067/Blog/Author%20Headshots/estrike-headshot.png","estrike",{"template":687},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2871,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2872,"config":2876,"_id":2877,"_type":32,"title":2873,"_source":34,"_file":2878,"_stem":2879,"_extension":37},"/en-us/blog/authors/ethan-urie",{"name":2873,"config":2874},"Ethan Urie",{"headshot":718,"ctfId":2875},"mJhtQw4TY9ZRNF7dfitIF",{"template":687},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2881,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2882,"config":2886,"_id":2887,"_type":32,"title":2883,"_source":34,"_file":2888,"_stem":2889,"_extension":37},"/en-us/blog/authors/eugene-lim",{"name":2883,"config":2884},"Eugene Lim",{"headshot":718,"ctfId":2885},"6KHdIdghkUfSTzV2MzxNcj",{"template":687},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2891,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2892,"config":2896,"_id":2897,"_type":32,"title":2893,"_source":34,"_file":2898,"_stem":2899,"_extension":37},"/en-us/blog/authors/eugenia-hannon",{"name":2893,"config":2894},"Eugenia Hannon",{"headshot":7,"ctfId":2895},"eugeniah",{"template":687},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2901,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2902,"config":2906,"_id":2907,"_type":32,"title":2903,"_source":34,"_file":2908,"_stem":2909,"_extension":37},"/en-us/blog/authors/ev-kontsevoy",{"name":2903,"config":2904},"Ev Kontsevoy",{"headshot":7,"ctfId":2905},"ekontsevoy",{"template":687},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2911,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2912,"config":2916,"_id":2917,"_type":32,"title":2913,"_source":34,"_file":2918,"_stem":2919,"_extension":37},"/en-us/blog/authors/eva-sasson",{"name":2913,"config":2914},"Eva Sasson",{"headshot":718,"ctfId":2915},"Eva-Sasson",{"template":687},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2921,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2922,"config":2927,"_id":2928,"_type":32,"title":2923,"_source":34,"_file":2929,"_stem":2930,"_extension":37},"/en-us/blog/authors/fabian-zimmer",{"name":2923,"config":2924},"Fabian Zimmer",{"headshot":2925,"ctfId":2926},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/q6awwqbxtg0a4x9gtmhs.png","3TK88UogcX5lx83kWMVuvI",{"template":687},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2932,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2933,"config":2937,"_id":2938,"_type":32,"title":2934,"_source":34,"_file":2939,"_stem":2940,"_extension":37},"/en-us/blog/authors/fabio-akita",{"name":2934,"config":2935},"Fabio Akita",{"headshot":718,"ctfId":2936},"Fabio-Akita",{"template":687},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2942,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2943,"config":2947,"_id":2948,"_type":32,"title":2944,"_source":34,"_file":2949,"_stem":2950,"_extension":37},"/en-us/blog/authors/fabio-busatto",{"name":2944,"config":2945},"Fabio Busatto",{"headshot":7,"ctfId":2946},"bikebilly",{"template":687},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":2952,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2953,"config":2958,"_id":2959,"_type":32,"title":2954,"_source":34,"_file":2960,"_stem":2961,"_extension":37},"/en-us/blog/authors/fabio-pitino",{"name":2954,"config":2955},"Fabio Pitino",{"headshot":2956,"ctfId":2957},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659958/Blog/Author%20Headshots/fabiopitino-headshot.jpg","fabiopitino",{"template":687},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":2963,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2964,"config":2968,"_id":2969,"_type":32,"title":2965,"_source":34,"_file":2970,"_stem":2971,"_extension":37},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2965,"config":2966},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2967},"fseifoddini",{"template":687},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":2973,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2974,"config":2978,"_id":2979,"_type":32,"title":2975,"_source":34,"_file":2980,"_stem":2981,"_extension":37},"/en-us/blog/authors/fatih-acet",{"name":2975,"config":2976},"Fatih Acet",{"headshot":7,"ctfId":2977},"fatihacet",{"template":687},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":2983,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2984,"config":2989,"_id":2990,"_type":32,"title":2985,"_source":34,"_file":2991,"_stem":2992,"_extension":37},"/en-us/blog/authors/fatima-sarah-khalid",{"name":2985,"config":2986},"Fatima Sarah Khalid",{"headshot":2987,"ctfId":2988},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663337/Blog/Author%20Headshots/sugaroverflow-headshot.jpg","sugaroverflow",{"template":687},"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":2994,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":2995,"config":3000,"_id":3001,"_type":32,"title":2996,"_source":34,"_file":3002,"_stem":3003,"_extension":37},"/en-us/blog/authors/fernando-diaz",{"name":2996,"config":2997},"Fernando Diaz",{"headshot":2998,"ctfId":2999},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659556/Blog/Author%20Headshots/fern_diaz.png","fjdiaz",{"template":687},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3005,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3006,"config":3010,"_id":3011,"_type":32,"title":3007,"_source":34,"_file":3012,"_stem":3013,"_extension":37},"/en-us/blog/authors/filipa-lacerda",{"name":3007,"config":3008},"Filipa Lacerda",{"headshot":7,"ctfId":3009},"filipa",{"template":687},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3015,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3016,"config":3021,"_id":3022,"_type":32,"title":3023,"_source":34,"_file":3024,"_stem":3025,"_extension":37},"/en-us/blog/authors/flix-veillette-potvin",{"name":3017,"config":3018}," Félix Veillette-Potvin",{"headshot":3019,"ctfId":3020},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662606/Blog/Author%20Headshots/_F%C3%A9lix_Veillette-Potvin_headshot.png","3nkwcdE5K3Uw9nrovEngxW",{"template":687},"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":3027,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3028,"config":3032,"_id":3033,"_type":32,"title":3029,"_source":34,"_file":3034,"_stem":3035,"_extension":37},"/en-us/blog/authors/forrest-brazeal",{"name":3029,"config":3030},"Forrest Brazeal",{"headshot":7,"ctfId":3031},"fbrazeal",{"template":687},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3037,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3038,"config":3042,"_id":3043,"_type":32,"title":3039,"_source":34,"_file":3044,"_stem":3045,"_extension":37},"/en-us/blog/authors/francis-ofungwu",{"name":3039,"config":3040},"Francis Ofungwu",{"headshot":718,"ctfId":3041},"fofungwu",{"template":687},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3047,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3048,"config":3053,"_id":3054,"_type":32,"title":3055,"_source":34,"_file":3056,"_stem":3057,"_extension":37},"/en-us/blog/authors/frdric-caplette",{"name":3049,"config":3050},"Frédéric Caplette",{"headshot":3051,"ctfId":3052},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661878/Blog/Author%20Headshots/frederic_caplette_headshot.png","6nMRwNMwciKSX03zmbBbPF",{"template":687},"content:en-us:blog:authors:frdric-caplette.yml","Frdric Caplette","en-us/blog/authors/frdric-caplette.yml","en-us/blog/authors/frdric-caplette",{"_path":3059,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3060,"config":3065,"_id":3066,"_type":32,"title":3061,"_source":34,"_file":3067,"_stem":3068,"_extension":37},"/en-us/blog/authors/gabe-weaver",{"name":3061,"config":3062},"Gabe Weaver",{"headshot":3063,"ctfId":3064},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667605/Blog/Author%20Headshots/gweaver-headshot.jpg","gweaver",{"template":687},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3070,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3071,"config":3076,"_id":3077,"_type":32,"title":3072,"_source":34,"_file":3078,"_stem":3079,"_extension":37},"/en-us/blog/authors/gabriel-engel",{"name":3072,"config":3073},"Gabriel Engel",{"headshot":3074,"ctfId":3075},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664747/Blog/Author%20Headshots/gabrielengel_gl-headshot.jpg","gabrielengelgl",{"template":687},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3081,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3082,"config":3086,"_id":3087,"_type":32,"title":3083,"_source":34,"_file":3088,"_stem":3089,"_extension":37},"/en-us/blog/authors/gabriel-le-breton",{"name":3083,"config":3084},"Gabriel Le Breton",{"headshot":718,"ctfId":3085},"Gabriel-Le-Breton",{"template":687},"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":3091,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3092,"config":3097,"_id":3098,"_type":32,"title":3093,"_source":34,"_file":3099,"_stem":3100,"_extension":37},"/en-us/blog/authors/gabriel-mazetto",{"name":3093,"config":3094},"Gabriel Mazetto",{"headshot":3095,"ctfId":3096},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678982/Blog/Author%20Headshots/brodock-headshot.jpg","brodock",{"template":687},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3102,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3103,"config":3108,"_id":3109,"_type":32,"title":3104,"_source":34,"_file":3110,"_stem":3111,"_extension":37},"/en-us/blog/authors/gavin-peltz",{"name":3104,"config":3105},"Gavin Peltz",{"headshot":3106,"ctfId":3107},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662831/Blog/Author%20Headshots/gavin_peltz.png","27UwgXDMqa0oBWV93rXTgN",{"template":687},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3113,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3114,"config":3119,"_id":3120,"_type":32,"title":3115,"_source":34,"_file":3121,"_stem":3122,"_extension":37},"/en-us/blog/authors/george-kichukov",{"name":3115,"config":3116},"George Kichukov",{"headshot":3117,"ctfId":3118},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664866/Blog/Author%20Headshots/george_kichukov.png","7e8bn05u4pXwYjkRrqdprE",{"template":687},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3124,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3125,"config":3129,"_id":3130,"_type":32,"title":3126,"_source":34,"_file":3131,"_stem":3132,"_extension":37},"/en-us/blog/authors/gerard-hickey",{"name":3126,"config":3127},"Gerard Hickey",{"headshot":7,"ctfId":3128},"ghickey",{"template":687},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3134,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3135,"config":3140,"_id":3141,"_type":32,"title":3142,"_source":34,"_file":3143,"_stem":3144,"_extension":37},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3136,"config":3137},"Gerardo Lopez-Fernandez",{"headshot":3138,"ctfId":3139},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679925/Blog/Author%20Headshots/glopezfernandez-headshot.jpg","glopezfernandez",{"template":687},"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":3146,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3147,"config":3152,"_id":3153,"_type":32,"title":3148,"_source":34,"_file":3154,"_stem":3155,"_extension":37},"/en-us/blog/authors/gina-doyle",{"name":3148,"config":3149},"Gina Doyle",{"headshot":3150,"ctfId":3151},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679201/Blog/Author%20Headshots/gdoyle-headshot.png","gdoyle",{"template":687},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3157,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3158,"config":3161,"_id":3162,"_type":32,"title":3163,"_source":34,"_file":3164,"_stem":3165,"_extension":37},"/en-us/blog/authors/gitlab",{"name":3159,"config":3160},"GitLab",{"headshot":718,"ctfId":3159},{"template":687},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3167,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3168,"config":3172,"_id":3173,"_type":32,"title":3174,"_source":34,"_file":3175,"_stem":3176,"_extension":37},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3169,"config":3170},"GitLab AI Assisted Group",{"headshot":718,"ctfId":3171},"GitLab-AI-Assisted-Group",{"template":687},"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":3178,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3179,"config":3183,"_id":3184,"_type":32,"title":3185,"_source":34,"_file":3186,"_stem":3187,"_extension":37},"/en-us/blog/authors/gitlab-france-team",{"name":3180,"config":3181},"GitLab France Team",{"headshot":718,"ctfId":3182},"1gfblqN0ibYIuWGk7MOTny",{"template":687},"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":3189,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3190,"config":3194,"_id":3195,"_type":32,"title":3196,"_source":34,"_file":3197,"_stem":3198,"_extension":37},"/en-us/blog/authors/gitlab-germany-team",{"name":3191,"config":3192},"GitLab Germany Team",{"headshot":718,"ctfId":3193},"6tNquF8jQeRRRi8k3ZXpvS",{"template":687},"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":3200,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3201,"config":3205,"_id":3206,"_type":32,"title":3207,"_source":34,"_file":3208,"_stem":3209,"_extension":37},"/en-us/blog/authors/gitlab-japan-team",{"name":3202,"config":3203},"GitLab Japan Team",{"headshot":718,"ctfId":3204},"5YWHF8vG80rluQ41QjgP7V",{"template":687},"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":3211,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3212,"config":3216,"_id":3217,"_type":32,"title":3218,"_source":34,"_file":3219,"_stem":3220,"_extension":37},"/en-us/blog/authors/gitlab-security-team",{"name":3213,"config":3214},"GitLab Security Team",{"headshot":718,"ctfId":3215},"GitLab-Security-Team",{"template":687},"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":3222,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3223,"config":3227,"_id":3228,"_type":32,"title":3229,"_source":34,"_file":3230,"_stem":3231,"_extension":37},"/en-us/blog/authors/gitlab-team",{"name":3224,"config":3225},"GitLab Team",{"headshot":718,"ctfId":3226},"GitLab-Team",{"template":687},"content:en-us:blog:authors:gitlab-team.yml","Gitlab Team","en-us/blog/authors/gitlab-team.yml","en-us/blog/authors/gitlab-team",{"_path":3233,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3234,"config":3238,"_id":3239,"_type":32,"title":3240,"_source":34,"_file":3241,"_stem":3242,"_extension":37},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3235,"config":3236},"GitLab Vulnerability Research Team",{"headshot":718,"ctfId":3237},"GitLab-Vulnerability-Research-Team",{"template":687},"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":3244,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3245,"config":3249,"_id":3250,"_type":32,"title":3246,"_source":34,"_file":3251,"_stem":3252,"_extension":37},"/en-us/blog/authors/goetz-buerkle",{"name":3246,"config":3247},"Goetz Buerkle",{"headshot":718,"ctfId":3248},"Goetz-Buerkle",{"template":687},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3254,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3255,"config":3260,"_id":3261,"_type":32,"title":3256,"_source":34,"_file":3262,"_stem":3263,"_extension":37},"/en-us/blog/authors/gosia-ksionek",{"name":3256,"config":3257},"Gosia Ksionek",{"headshot":3258,"ctfId":3259},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680521/Blog/Author%20Headshots/mksionek-headshot.jpg","mksionek",{"template":687},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3265,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3266,"config":3271,"_id":3272,"_type":32,"title":3267,"_source":34,"_file":3273,"_stem":3274,"_extension":37},"/en-us/blog/authors/grant-hickman",{"name":3267,"config":3268},"Grant Hickman",{"headshot":3269,"ctfId":3270},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682570/Blog/Author%20Headshots/g.png","ghickman",{"template":687},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3276,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3277,"config":3282,"_id":3283,"_type":32,"title":3278,"_source":34,"_file":3284,"_stem":3285,"_extension":37},"/en-us/blog/authors/grant-young",{"name":3278,"config":3279},"Grant Young",{"headshot":3280,"ctfId":3281},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666346/Blog/Author%20Headshots/grantyoung-headshot.jpg","grantyoung",{"template":687},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3287,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3288,"config":3292,"_id":3293,"_type":32,"title":3289,"_source":34,"_file":3294,"_stem":3295,"_extension":37},"/en-us/blog/authors/greg-alfaro",{"name":3289,"config":3290},"Greg Alfaro",{"headshot":7,"ctfId":3291},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":687},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3297,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3298,"config":3302,"_id":3303,"_type":32,"title":3299,"_source":34,"_file":3304,"_stem":3305,"_extension":37},"/en-us/blog/authors/greg-johnson",{"name":3299,"config":3300},"Greg Johnson",{"headshot":7,"ctfId":3301},"codeEmitter",{"template":687},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3307,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3308,"config":3313,"_id":3314,"_type":32,"title":3309,"_source":34,"_file":3315,"_stem":3316,"_extension":37},"/en-us/blog/authors/greg-myers",{"name":3309,"config":3310},"Greg Myers",{"headshot":3311,"ctfId":3312},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665570/Blog/Author%20Headshots/greg_myers_headshot.png","2uUYKgdtszyGfoOHbakiQX",{"template":687},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3318,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3319,"config":3323,"_id":3324,"_type":32,"title":3320,"_source":34,"_file":3325,"_stem":3326,"_extension":37},"/en-us/blog/authors/grzegorz-bizon",{"name":3320,"config":3321},"Grzegorz Bizon",{"headshot":718,"ctfId":3322},"Grzegorz-Bizon",{"template":687},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3328,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3329,"config":3333,"_id":3334,"_type":32,"title":3330,"_source":34,"_file":3335,"_stem":3336,"_extension":37},"/en-us/blog/authors/guenjun-yoo",{"name":3330,"config":3331},"Guenjun Yoo",{"headshot":7,"ctfId":3332},"gyoo",{"template":687},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3338,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3339,"config":3343,"_id":3344,"_type":32,"title":3345,"_source":34,"_file":3346,"_stem":3347,"_extension":37},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3340,"config":3341},"Guest author André Arko of Ruby Together",{"headshot":718,"ctfId":3342},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":687},"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":3349,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3350,"config":3354,"_id":3355,"_type":32,"title":3356,"_source":34,"_file":3357,"_stem":3358,"_extension":37},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3351,"config":3352},"Guest author André Miranda",{"headshot":718,"ctfId":3353},"Guest-author-Andr-Miranda",{"template":687},"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":3360,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3361,"config":3367,"_id":3368,"_type":32,"title":3369,"_source":34,"_file":3370,"_stem":3371,"_extension":37},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3362,"config":3363},"Gufran Yeşilyurt, OBSS",{"headshot":3364,"linkedin":3365,"ctfId":3366},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666380/Blog/Author%20Headshots/1643972670650.jpg","https://www.linkedin.com/in/gufran-yesilyurt/","2ydYMU86my71BUASual2EI",{"template":687},"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":3373,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3374,"config":3378,"_id":3379,"_type":32,"title":3380,"_source":34,"_file":3381,"_stem":3382,"_extension":37},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3375,"config":3376},"Gustaw Fit of Zoopla",{"headshot":718,"ctfId":3377},"Gustaw-Fit-of-Zoopla",{"template":687},"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":3384,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3385,"config":3389,"_id":3390,"_type":32,"title":3391,"_source":34,"_file":3392,"_stem":3393,"_extension":37},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3386,"config":3387},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":718,"ctfId":3388},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":687},"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":3395,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3396,"config":3400,"_id":3401,"_type":32,"title":3397,"_source":34,"_file":3402,"_stem":3403,"_extension":37},"/en-us/blog/authors/gyan-chawdhary",{"name":3397,"config":3398},"Gyan Chawdhary",{"headshot":718,"ctfId":3399},"Gyan-Chawdhary",{"template":687},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3405,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3406,"config":3411,"_id":3412,"_type":32,"title":3407,"_source":34,"_file":3413,"_stem":3414,"_extension":37},"/en-us/blog/authors/haim-snir",{"name":3407,"config":3408},"Haim Snir",{"headshot":3409,"ctfId":3410},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664386/Blog/Author%20Headshots/hsnir1-headshot.jpg","hsnir1",{"template":687},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3416,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3417,"config":3422,"_id":3423,"_type":32,"title":3424,"_source":34,"_file":3425,"_stem":3426,"_extension":37},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3418,"config":3419},"Hakeem Abdul-Razak",{"headshot":3420,"ctfId":3421},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662077/Blog/Author%20Headshots/Hakeem_Abdul-Razak_headshot.png","7H6nuZfVCK5mqJBK4fuaDH",{"template":687},"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":3428,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3429,"config":3433,"_id":3435,"_type":32,"title":3430,"_source":34,"_file":3436,"_stem":3437,"_extension":37},"/en-us/blog/authors/halil-coban",{"name":3430,"config":3431},"Halil Coban",{"headshot":3432},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":687,"gitlabHandle":3434},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3439,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3440,"config":3445,"_id":3446,"_type":32,"title":3441,"_source":34,"_file":3447,"_stem":3448,"_extension":37},"/en-us/blog/authors/hannah-sutor",{"name":3441,"config":3442},"Hannah Sutor",{"headshot":3443,"ctfId":3444},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665588/Blog/Author%20Headshots/hsutor-headshot.png","hsutor",{"template":687},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3450,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3451,"config":3456,"_id":3457,"_type":32,"title":3452,"_source":34,"_file":3458,"_stem":3459,"_extension":37},"/en-us/blog/authors/harjeet-sharma",{"name":3452,"config":3453},"Harjeet Sharma",{"headshot":3454,"ctfId":3455},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665497/Blog/Author%20Headshots/harjeet_sharma_headshot.png","723O6GGQQEu75MCuhw6lqh",{"template":687},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3461,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3462,"config":3466,"_id":3467,"_type":32,"title":3463,"_source":34,"_file":3468,"_stem":3469,"_extension":37},"/en-us/blog/authors/haydn-mackay",{"name":3463,"config":3464},"Haydn Mackay",{"headshot":718,"ctfId":3465},"Haydn-Mackay",{"template":687},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3471,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3472,"config":3476,"_id":3477,"_type":32,"title":3473,"_source":34,"_file":3478,"_stem":3479,"_extension":37},"/en-us/blog/authors/hazel-yang",{"name":3473,"config":3474},"Hazel Yang",{"headshot":7,"ctfId":3475},"hazelyang",{"template":687},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3481,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3482,"config":3486,"_id":3487,"_type":32,"title":3488,"_source":34,"_file":3489,"_stem":3490,"_extension":37},"/en-us/blog/authors/heather-mcnamee",{"name":3483,"config":3484},"Heather McNamee",{"headshot":718,"ctfId":3485},"Heather-McNamee",{"template":687},"content:en-us:blog:authors:heather-mcnamee.yml","Heather Mcnamee","en-us/blog/authors/heather-mcnamee.yml","en-us/blog/authors/heather-mcnamee",{"_path":3492,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3493,"config":3497,"_id":3498,"_type":32,"title":3494,"_source":34,"_file":3499,"_stem":3500,"_extension":37},"/en-us/blog/authors/heather-simpson",{"name":3494,"config":3495},"Heather Simpson",{"headshot":718,"ctfId":3496},"hsimpson",{"template":687},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3502,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3503,"config":3508,"_id":3509,"_type":32,"title":3504,"_source":34,"_file":3510,"_stem":3511,"_extension":37},"/en-us/blog/authors/hillary-benson",{"name":3504,"config":3505},"Hillary Benson",{"headshot":3506,"ctfId":3507},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683387/Blog/Author%20Headshots/hillarybensonheadshot.png","45VEFoISCoOhRXzyPyAf1x",{"template":687},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3513,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3514,"config":3518,"_id":3520,"_type":32,"title":3515,"_source":34,"_file":3521,"_stem":3522,"_extension":37},"/en-us/blog/authors/himanshu-kapoor",{"name":3515,"config":3516},"Himanshu Kapoor",{"headshot":3517},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":687,"gitlabHandle":3519},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3524,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3525,"config":3530,"_id":3531,"_type":32,"title":3526,"_source":34,"_file":3532,"_stem":3533,"_extension":37},"/en-us/blog/authors/hiroki-suezawa",{"name":3526,"config":3527},"Hiroki Suezawa",{"headshot":3528,"ctfId":3529},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662370/Blog/Author%20Headshots/hiroki_suezawa.png","cw6ZIj0yjr1uw2LAFr23h",{"template":687},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3535,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3536,"config":3540,"_id":3541,"_type":32,"title":3537,"_source":34,"_file":3542,"_stem":3543,"_extension":37},"/en-us/blog/authors/holly-reynolds",{"name":3537,"config":3538},"Holly Reynolds",{"headshot":7,"ctfId":3539},"hollyreynolds",{"template":687},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3545,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3546,"config":3550,"_id":3551,"_type":32,"title":3547,"_source":34,"_file":3552,"_stem":3553,"_extension":37},"/en-us/blog/authors/huldra",{"name":3547,"config":3548},"Huldra",{"headshot":7,"ctfId":3549},"huldra",{"template":687},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3555,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3556,"config":3560,"_id":3561,"_type":32,"title":3557,"_source":34,"_file":3562,"_stem":3563,"_extension":37},"/en-us/blog/authors/iain-camacho",{"name":3557,"config":3558},"Iain Camacho",{"headshot":7,"ctfId":3559},"icamacho",{"template":687},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3565,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3566,"config":3570,"_id":3571,"_type":32,"title":3567,"_source":34,"_file":3572,"_stem":3573,"_extension":37},"/en-us/blog/authors/ian-bartholomew",{"name":3567,"config":3568},"Ian Bartholomew",{"headshot":718,"ctfId":3569},"7D4PE43CXfi8pgOSCmipH0",{"template":687},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3575,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3576,"config":3581,"_id":3582,"_type":32,"title":3577,"_source":34,"_file":3583,"_stem":3584,"_extension":37},"/en-us/blog/authors/ian-khor",{"name":3577,"config":3578},"Ian Khor",{"headshot":3579,"ctfId":3580},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662933/Blog/Author%20Headshots/ian_khor_headshot.png","nSk8fzDwtG3LVFWwg8HrF",{"template":687},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3586,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3587,"config":3592,"_id":3593,"_type":32,"title":3588,"_source":34,"_file":3594,"_stem":3595,"_extension":37},"/en-us/blog/authors/ian-pedowitz",{"name":3588,"config":3589},"Ian Pedowitz",{"headshot":3590,"ctfId":3591},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683040/Blog/Author%20Headshots/ipedowitz-headshot.jpg","ipedowitz",{"template":687},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3597,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3598,"config":3603,"_id":3604,"_type":32,"title":3599,"_source":34,"_file":3605,"_stem":3606,"_extension":37},"/en-us/blog/authors/igor-drozdov",{"name":3599,"config":3600},"Igor Drozdov",{"headshot":3601,"ctfId":3602},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672455/Blog/Author%20Headshots/igor.png","igordrozdov",{"template":687},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3608,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3609,"config":3614,"_id":3615,"_type":32,"title":3610,"_source":34,"_file":3616,"_stem":3617,"_extension":37},"/en-us/blog/authors/igor-wiedler",{"name":3610,"config":3611},"Igor Wiedler",{"headshot":3612,"ctfId":3613},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681841/Blog/Author%20Headshots/igorwwwwwwwwwwwwwwwwwwww-headshot.png","igorwwwwwwwwwwwwwwwwwwww",{"template":687},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3619,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3620,"config":3625,"_id":3626,"_type":32,"title":3627,"_source":34,"_file":3628,"_stem":3629,"_extension":37},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3621,"config":3622},"Inchul Yoo, Sunjung Park",{"headshot":3623,"ctfId":3624},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669731/Blog/Author%20Headshots/sunjungp-headshot.png","sunjungp",{"template":687},"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":3631,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3632,"config":3637,"_id":3638,"_type":32,"title":3633,"_source":34,"_file":3639,"_stem":3640,"_extension":37},"/en-us/blog/authors/isaac-dawson",{"name":3633,"config":3634},"Isaac Dawson",{"headshot":3635,"ctfId":3636},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669814/Blog/Author%20Headshots/idawson-headshot.jpg","idawson",{"template":687},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3642,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3643,"config":3647,"_id":3649,"_type":32,"title":3650,"_source":34,"_file":3651,"_stem":3652,"_extension":37},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3644,"name":3646},{"headshot":3645},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":687,"gitlabHandle":3648},"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":3654,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3655,"config":3660,"_id":3661,"_type":32,"title":3656,"_source":34,"_file":3662,"_stem":3663,"_extension":37},"/en-us/blog/authors/itzik-gan-baruch",{"name":3656,"config":3657},"Itzik Gan Baruch",{"headshot":3658,"ctfId":3659},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch",{"template":687},"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":3665,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3666,"config":3670,"_id":3671,"_type":32,"title":3667,"_source":34,"_file":3672,"_stem":3673,"_extension":37},"/en-us/blog/authors/ivan-lychev",{"name":3667,"config":3668},"Ivan Lychev",{"headshot":7,"ctfId":3669},"iLychevAD",{"template":687},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3675,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3676,"config":3680,"_id":3681,"_type":32,"title":3677,"_source":34,"_file":3682,"_stem":3683,"_extension":37},"/en-us/blog/authors/ivan-nemytchenko",{"name":3677,"config":3678},"Ivan Nemytchenko",{"headshot":718,"ctfId":3679},"Ivan-Nemytchenko",{"template":687},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3685,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3686,"config":3692,"_id":3693,"_type":32,"title":3688,"_source":34,"_file":3694,"_stem":3695,"_extension":37},"/en-us/blog/authors/ivanha-paz",{"role":3687,"name":3688,"config":3689},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3690,"ctfId":3691},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":687},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3697,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3698,"config":3702,"_id":3703,"_type":32,"title":3699,"_source":34,"_file":3704,"_stem":3705,"_extension":37},"/en-us/blog/authors/jacie-bandur",{"name":3699,"config":3700},"Jacie Bandur",{"headshot":7,"ctfId":3701},"jbandur",{"template":687},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3707,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3708,"config":3713,"_id":3714,"_type":32,"title":3709,"_source":34,"_file":3715,"_stem":3716,"_extension":37},"/en-us/blog/authors/jacki-bauer",{"name":3709,"config":3710},"Jacki Bauer",{"headshot":3711,"ctfId":3712},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":687},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3718,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3719,"config":3723,"_id":3724,"_type":32,"title":3720,"_source":34,"_file":3725,"_stem":3726,"_extension":37},"/en-us/blog/authors/jackie-meshell",{"name":3720,"config":3721},"Jackie Meshell",{"headshot":7,"ctfId":3722},"jmeshell",{"template":687},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3728,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3729,"config":3734,"_id":3735,"_type":32,"title":3730,"_source":34,"_file":3736,"_stem":3737,"_extension":37},"/en-us/blog/authors/jackie-porter",{"name":3730,"config":3731},"Jackie Porter",{"headshot":3732,"ctfId":3733},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":687},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3739,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3740,"config":3744,"_id":3745,"_type":32,"title":3741,"_source":34,"_file":3746,"_stem":3747,"_extension":37},"/en-us/blog/authors/jacob-schatz",{"name":3741,"config":3742},"Jacob Schatz",{"headshot":7,"ctfId":3743},"jschatz1",{"template":687},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3749,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3750,"config":3754,"_id":3755,"_type":32,"title":3751,"_source":34,"_file":3756,"_stem":3757,"_extension":37},"/en-us/blog/authors/jacob-vosmaer",{"name":3751,"config":3752},"Jacob Vosmaer",{"headshot":718,"ctfId":3753},"Jacob-Vosmaer",{"template":687},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3759,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3760,"config":3765,"_id":3766,"_type":32,"title":3761,"_source":34,"_file":3767,"_stem":3768,"_extension":37},"/en-us/blog/authors/jacques-erasmus",{"name":3761,"config":3762},"Jacques Erasmus",{"headshot":3763,"ctfId":3764},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":687},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3770,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3771,"config":3776,"_id":3777,"_type":32,"title":3778,"_source":34,"_file":3779,"_stem":3780,"_extension":37},"/en-us/blog/authors/jaime-martnez",{"name":3772,"config":3773},"Jaime Martínez",{"headshot":3774,"ctfId":3775},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":687},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3782,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3783,"config":3787,"_id":3788,"_type":32,"title":3784,"_source":34,"_file":3789,"_stem":3790,"_extension":37},"/en-us/blog/authors/jake-foster",{"name":3784,"config":3785},"Jake Foster",{"headshot":718,"ctfId":3786},"jakefoster1",{"template":687},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3792,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3793,"config":3797,"_id":3798,"_type":32,"title":3794,"_source":34,"_file":3799,"_stem":3800,"_extension":37},"/en-us/blog/authors/jake-stein",{"name":3794,"config":3795},"Jake Stein",{"headshot":718,"ctfId":3796},"Jake-Stein",{"template":687},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3802,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3803,"config":3807,"_id":3808,"_type":32,"title":3804,"_source":34,"_file":3809,"_stem":3810,"_extension":37},"/en-us/blog/authors/james-dang",{"name":3804,"config":3805},"James Dang",{"headshot":718,"ctfId":3806},"James-Dang",{"template":687},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3812,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3813,"config":3818,"_id":3819,"_type":32,"title":3814,"_source":34,"_file":3820,"_stem":3821,"_extension":37},"/en-us/blog/authors/james-heimbuck",{"name":3814,"config":3815},"James Heimbuck",{"headshot":3816,"ctfId":3817},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":687},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3823,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3824,"config":3828,"_id":3829,"_type":32,"title":3825,"_source":34,"_file":3830,"_stem":3831,"_extension":37},"/en-us/blog/authors/james-ramsay",{"name":3825,"config":3826},"James Ramsay",{"headshot":7,"ctfId":3827},"jramsay",{"template":687},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3833,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3834,"config":3839,"_id":3840,"_type":32,"title":3835,"_source":34,"_file":3841,"_stem":3842,"_extension":37},"/en-us/blog/authors/james-wormwell",{"name":3835,"config":3836},"James Wormwell",{"headshot":3837,"ctfId":3838},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":687},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3844,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3845,"config":3849,"_id":3850,"_type":32,"title":3846,"_source":34,"_file":3851,"_stem":3852,"_extension":37},"/en-us/blog/authors/jamie-hurewitz",{"name":3846,"config":3847},"Jamie Hurewitz",{"headshot":718,"ctfId":3848},"Jamie-Hurewitz",{"template":687},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3854,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3855,"config":3859,"_id":3860,"_type":32,"title":3856,"_source":34,"_file":3861,"_stem":3862,"_extension":37},"/en-us/blog/authors/jamie-rachel",{"name":3856,"config":3857},"Jamie Rachel",{"headshot":7,"ctfId":3858},"jrachel1",{"template":687},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3864,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3865,"config":3870,"_id":3871,"_type":32,"title":3866,"_source":34,"_file":3872,"_stem":3873,"_extension":37},"/en-us/blog/authors/jan-provaznik",{"name":3866,"config":3867},"Jan Provaznik",{"headshot":3868,"ctfId":3869},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":687},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3875,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3876,"config":3881,"_id":3882,"_type":32,"title":3877,"_source":34,"_file":3883,"_stem":3884,"_extension":37},"/en-us/blog/authors/janis-altherr",{"name":3877,"config":3878},"Janis Altherr",{"headshot":3879,"ctfId":3880},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":687},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3886,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3887,"config":3892,"_id":3893,"_type":32,"title":3888,"_source":34,"_file":3894,"_stem":3895,"_extension":37},"/en-us/blog/authors/jannik-lehmann",{"name":3888,"config":3889},"Jannik Lehmann",{"headshot":3890,"ctfId":3891},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":687},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3897,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3898,"config":3903,"_id":3904,"_type":32,"title":3905,"_source":34,"_file":3906,"_stem":3907,"_extension":37},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3899,"config":3900},"Jarka Košanová et al",{"headshot":3901,"ctfId":3902},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":687},"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":3909,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3910,"config":3914,"_id":3915,"_type":32,"title":3916,"_source":34,"_file":3917,"_stem":3918,"_extension":37},"/en-us/blog/authors/jason-blais-mattermost",{"name":3911,"config":3912},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3913},"jasonblais",{"template":687},"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":3920,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3921,"config":3925,"_id":3926,"_type":32,"title":3922,"_source":34,"_file":3927,"_stem":3928,"_extension":37},"/en-us/blog/authors/jason-chen",{"name":3922,"config":3923},"Jason Chen",{"headshot":718,"ctfId":3924},"Jason-Chen",{"template":687},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3930,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3931,"config":3936,"_id":3937,"_type":32,"title":3932,"_source":34,"_file":3938,"_stem":3939,"_extension":37},"/en-us/blog/authors/jason-colyer",{"name":3932,"config":3933},"Jason Colyer",{"headshot":3934,"ctfId":3935},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":687},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3941,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3942,"config":3947,"_id":3948,"_type":32,"title":3943,"_source":34,"_file":3949,"_stem":3950,"_extension":37},"/en-us/blog/authors/jason-plum",{"name":3943,"config":3944},"Jason Plum",{"headshot":3945,"ctfId":3946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":687},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":3952,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3953,"config":3957,"_id":3958,"_type":32,"title":3954,"_source":34,"_file":3959,"_stem":3960,"_extension":37},"/en-us/blog/authors/jason-yavorska",{"name":3954,"config":3955},"Jason Yavorska",{"headshot":7,"ctfId":3956},"jyavorska",{"template":687},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":3962,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3963,"config":3967,"_id":3968,"_type":32,"title":3964,"_source":34,"_file":3969,"_stem":3970,"_extension":37},"/en-us/blog/authors/jay-newman",{"name":3964,"config":3965},"Jay Newman",{"headshot":718,"ctfId":3966},"Jay-Newman",{"template":687},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":3972,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3973,"config":3978,"_id":3979,"_type":32,"title":3974,"_source":34,"_file":3980,"_stem":3981,"_extension":37},"/en-us/blog/authors/jayson-salazar",{"name":3974,"config":3975},"Jayson Salazar",{"headshot":3976,"ctfId":3977},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":687},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":3983,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3984,"config":3988,"_id":3989,"_type":32,"title":3990,"_source":34,"_file":3991,"_stem":3992,"_extension":37},"/en-us/blog/authors/jd-alex",{"name":3985,"config":3986},"JD Alex",{"headshot":7,"ctfId":3987},"jalex1",{"template":687},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":3994,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":3995,"config":3999,"_id":4000,"_type":32,"title":4001,"_source":34,"_file":4002,"_stem":4003,"_extension":37},"/en-us/blog/authors/jean-philippe-baconnais",{"name":3996,"config":3997},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":3998},"jeanphibaconnais",{"template":687},"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":4005,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4006,"config":4011,"_id":4012,"_type":32,"title":4007,"_source":34,"_file":4013,"_stem":4014,"_extension":37},"/en-us/blog/authors/jeff-burrows",{"name":4007,"config":4008},"Jeff Burrows",{"headshot":4009,"ctfId":4010},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":687},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4016,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4017,"config":4021,"_id":4022,"_type":32,"title":4018,"_source":34,"_file":4023,"_stem":4024,"_extension":37},"/en-us/blog/authors/jeff-kelsey",{"name":4018,"config":4019},"Jeff Kelsey",{"headshot":718,"ctfId":4020},"Jeff-Kelsey",{"template":687},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4026,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4027,"config":4032,"_id":4033,"_type":32,"title":4028,"_source":34,"_file":4034,"_stem":4035,"_extension":37},"/en-us/blog/authors/jeff-park",{"name":4028,"config":4029},"Jeff Park",{"headshot":4030,"ctfId":4031},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":687},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4037,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4038,"config":4043,"_id":4044,"_type":32,"title":4039,"_source":34,"_file":4045,"_stem":4046,"_extension":37},"/en-us/blog/authors/jeff-tucker",{"name":4039,"config":4040},"Jeff Tucker",{"headshot":4041,"ctfId":4042},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":687},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4048,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4049,"config":4054,"_id":4055,"_type":32,"title":4050,"_source":34,"_file":4056,"_stem":4057,"_extension":37},"/en-us/blog/authors/jensen-stava",{"name":4050,"config":4051},"Jensen Stava",{"headshot":4052,"ctfId":4053},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":687},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4059,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4060,"config":4064,"_id":4065,"_type":32,"title":4061,"_source":34,"_file":4066,"_stem":4067,"_extension":37},"/en-us/blog/authors/jeremy-cooper",{"name":4061,"config":4062},"Jeremy Cooper",{"headshot":718,"ctfId":4063},"6sXs62l8jODDcUlS9OPgTu",{"template":687},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4069,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4070,"config":4075,"_id":4076,"_type":32,"title":4071,"_source":34,"_file":4077,"_stem":4078,"_extension":37},"/en-us/blog/authors/jeremy-elder",{"name":4071,"config":4072},"Jeremy Elder",{"headshot":4073,"ctfId":4074},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":687},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4080,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4081,"config":4086,"_id":4087,"_type":32,"title":4082,"_source":34,"_file":4088,"_stem":4089,"_extension":37},"/en-us/blog/authors/jeremy-wagner",{"name":4082,"config":4083},"Jeremy Wagner",{"headshot":4084,"ctfId":4085},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":687},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4091,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4092,"config":4096,"_id":4097,"_type":32,"title":4093,"_source":34,"_file":4098,"_stem":4099,"_extension":37},"/en-us/blog/authors/jeremy-watson",{"name":4093,"config":4094},"Jeremy Watson",{"headshot":7,"ctfId":4095},"jeremy",{"template":687},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4101,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4102,"config":4107,"_id":4108,"_type":32,"title":4103,"_source":34,"_file":4109,"_stem":4110,"_extension":37},"/en-us/blog/authors/jerez-solis",{"name":4103,"config":4104},"Jerez Solis",{"headshot":4105,"ctfId":4106},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":687},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4112,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4113,"config":4117,"_id":4118,"_type":32,"title":4119,"_source":34,"_file":4120,"_stem":4121,"_extension":37},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4114,"config":4115},"Jeroen van Baarsen",{"headshot":718,"ctfId":4116},"Jeroen-van-Baarsen",{"template":687},"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":4123,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4124,"config":4129,"_id":4130,"_type":32,"title":4125,"_source":34,"_file":4131,"_stem":4132,"_extension":37},"/en-us/blog/authors/jessica-hurwitz",{"name":4125,"config":4126},"Jessica Hurwitz",{"headshot":4127,"ctfId":4128},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":687},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4134,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4135,"config":4139,"_id":4140,"_type":32,"title":4136,"_source":34,"_file":4141,"_stem":4142,"_extension":37},"/en-us/blog/authors/jim-riley",{"name":4136,"config":4137},"Jim Riley",{"headshot":7,"ctfId":4138},"GitLabcom-username-jrileyinva",{"template":687},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4144,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4145,"config":4149,"_id":4150,"_type":32,"title":4146,"_source":34,"_file":4151,"_stem":4152,"_extension":37},"/en-us/blog/authors/jim-thavisouk",{"name":4146,"config":4147},"Jim Thavisouk",{"headshot":718,"ctfId":4148},"jimthavisouk",{"template":687},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4154,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4155,"config":4159,"_id":4160,"_type":32,"title":4161,"_source":34,"_file":4162,"_stem":4163,"_extension":37},"/en-us/blog/authors/job-van-der-voort",{"name":4156,"config":4157},"Job van der Voort",{"headshot":718,"ctfId":4158},"Job-van-der-Voort",{"template":687},"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":4165,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4166,"config":4171,"_id":4172,"_type":32,"title":4167,"_source":34,"_file":4173,"_stem":4174,"_extension":37},"/en-us/blog/authors/jocelyn-eillis",{"name":4167,"config":4168},"Jocelyn Eillis",{"headshot":4169,"ctfId":4170},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":687},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4176,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4177,"config":4181,"_id":4182,"_type":32,"title":4178,"_source":34,"_file":4183,"_stem":4184,"_extension":37},"/en-us/blog/authors/jochen-roth",{"name":4178,"config":4179},"Jochen Roth",{"headshot":7,"ctfId":4180},"ochorocho",{"template":687},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4186,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4187,"config":4192,"_id":4193,"_type":32,"title":4188,"_source":34,"_file":4194,"_stem":4195,"_extension":37},"/en-us/blog/authors/joe-randazzo",{"name":4188,"config":4189},"Joe Randazzo",{"headshot":4190,"ctfId":4191},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":687},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4197,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4198,"config":4203,"_id":4204,"_type":32,"title":4199,"_source":34,"_file":4205,"_stem":4206,"_extension":37},"/en-us/blog/authors/joel-krooswyk",{"name":4199,"config":4200},"Joel Krooswyk",{"headshot":4201,"ctfId":4202},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":687},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4208,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4209,"config":4214,"_id":4215,"_type":32,"title":4210,"_source":34,"_file":4216,"_stem":4217,"_extension":37},"/en-us/blog/authors/joern-schneeweisz",{"name":4210,"config":4211},"Joern Schneeweisz",{"headshot":4212,"ctfId":4213},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":687},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4219,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4220,"config":4224,"_id":4225,"_type":32,"title":4221,"_source":34,"_file":4226,"_stem":4227,"_extension":37},"/en-us/blog/authors/joey-salazar",{"name":4221,"config":4222},"Joey Salazar",{"headshot":718,"ctfId":4223},"4LgUP4bzQV6kuhoZNFID9r",{"template":687},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4229,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4230,"config":4234,"_id":4235,"_type":32,"title":4231,"_source":34,"_file":4236,"_stem":4237,"_extension":37},"/en-us/blog/authors/johanna-ambrosio",{"name":4231,"config":4232},"Johanna Ambrosio",{"headshot":718,"ctfId":4233},"Johanna-Ambrosio",{"template":687},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4239,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4240,"config":4245,"_id":4246,"_type":32,"title":4241,"_source":34,"_file":4247,"_stem":4248,"_extension":37},"/en-us/blog/authors/johannes-bauer",{"name":4241,"config":4242},"Johannes Bauer",{"headshot":4243,"ctfId":4244},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":687},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4250,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4251,"config":4256,"_id":4257,"_type":32,"title":4252,"_source":34,"_file":4258,"_stem":4259,"_extension":37},"/en-us/blog/authors/john-cai",{"name":4252,"config":4253},"John Cai",{"headshot":4254,"ctfId":4255},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":687},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4261,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4262,"config":4267,"_id":4268,"_type":32,"title":4263,"_source":34,"_file":4269,"_stem":4270,"_extension":37},"/en-us/blog/authors/john-coghlan",{"name":4263,"config":4264},"John Coghlan",{"headshot":4265,"ctfId":4266},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":687},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4272,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4273,"config":4278,"_id":4279,"_type":32,"title":4274,"_source":34,"_file":4280,"_stem":4281,"_extension":37},"/en-us/blog/authors/john-crowley",{"name":4274,"config":4275},"John Crowley",{"headshot":4276,"ctfId":4277},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":687},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4283,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4284,"config":4289,"_id":4290,"_type":32,"title":4285,"_source":34,"_file":4291,"_stem":4292,"_extension":37},"/en-us/blog/authors/john-jarvis",{"name":4285,"config":4286},"John Jarvis",{"headshot":4287,"ctfId":4288},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":687},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4294,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4295,"config":4299,"_id":4300,"_type":32,"title":4296,"_source":34,"_file":4301,"_stem":4302,"_extension":37},"/en-us/blog/authors/john-jeremiah",{"name":4296,"config":4297},"John Jeremiah",{"headshot":718,"ctfId":4298},"johnjeremiah",{"template":687},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4304,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4305,"config":4309,"_id":4310,"_type":32,"title":4311,"_source":34,"_file":4312,"_stem":4313,"_extension":37},"/en-us/blog/authors/john-mcguire",{"name":4306,"config":4307},"John McGuire",{"headshot":718,"ctfId":4308},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":687},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4315,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4316,"config":4320,"_id":4322,"_type":32,"title":4317,"_source":34,"_file":4323,"_stem":4324,"_extension":37},"/en-us/blog/authors/john-skarbek",{"name":4317,"config":4318},"John Skarbek",{"headshot":4319},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":687,"gitlabHandle":4321},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4326,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4327,"config":4331,"_id":4332,"_type":32,"title":4328,"_source":34,"_file":4333,"_stem":4334,"_extension":37},"/en-us/blog/authors/john-sparrow",{"name":4328,"config":4329},"John Sparrow",{"headshot":718,"ctfId":4330},"John-Sparrow",{"template":687},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4336,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4337,"config":4341,"_id":4342,"_type":32,"title":4338,"_source":34,"_file":4343,"_stem":4344,"_extension":37},"/en-us/blog/authors/johnathan-hunt",{"name":4338,"config":4339},"Johnathan Hunt",{"headshot":718,"ctfId":4340},"JohnathanHunt",{"template":687},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4346,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4347,"config":4351,"_id":4352,"_type":32,"title":4348,"_source":34,"_file":4353,"_stem":4354,"_extension":37},"/en-us/blog/authors/joni-klippert",{"name":4348,"config":4349},"Joni Klippert",{"headshot":718,"ctfId":4350},"Joni-Klippert",{"template":687},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4356,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4357,"config":4362,"_id":4363,"_type":32,"title":4364,"_source":34,"_file":4365,"_stem":4366,"_extension":37},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4358,"config":4359},"João Alexandre Prado Tavares Cunha",{"headshot":4360,"ctfId":4361},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":687},"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":4368,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4369,"config":4374,"_id":4375,"_type":32,"title":4376,"_source":34,"_file":4377,"_stem":4378,"_extension":37},"/en-us/blog/authors/joo-pereira",{"name":4370,"config":4371},"João Pereira",{"headshot":4372,"ctfId":4373},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":687},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4380,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4381,"config":4385,"_id":4386,"_type":32,"title":4382,"_source":34,"_file":4387,"_stem":4388,"_extension":37},"/en-us/blog/authors/jordi-mon",{"name":4382,"config":4383},"Jordi Mon",{"headshot":7,"ctfId":4384},"jordimon",{"template":687},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4390,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4391,"config":4396,"_id":4397,"_type":32,"title":4398,"_source":34,"_file":4399,"_stem":4400,"_extension":37},"/en-us/blog/authors/jos-ivn-vargas",{"name":4392,"config":4393},"José Iván Vargas",{"headshot":4394,"ctfId":4395},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":687},"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":4402,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4403,"config":4407,"_id":4408,"_type":32,"title":4404,"_source":34,"_file":4409,"_stem":4410,"_extension":37},"/en-us/blog/authors/jose-finotto",{"name":4404,"config":4405},"Jose Finotto",{"headshot":7,"ctfId":4406},"finotto",{"template":687},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4412,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4413,"config":4417,"_id":4419,"_type":32,"title":4416,"_source":34,"_file":4420,"_stem":4421,"_extension":37},"/en-us/blog/authors/joseph-burnett",{"config":4414,"name":4416},{"headshot":4415},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":687,"gitlabHandle":4418},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4423,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4424,"config":4429,"_id":4430,"_type":32,"title":4425,"_source":34,"_file":4431,"_stem":4432,"_extension":37},"/en-us/blog/authors/joseph-longo",{"name":4425,"config":4426},"Joseph Longo",{"headshot":4427,"ctfId":4428},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":687},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4434,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4435,"config":4439,"_id":4440,"_type":32,"title":4441,"_source":34,"_file":4442,"_stem":4443,"_extension":37},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4436,"config":4437},"Joseph Schorr from CoreOS",{"headshot":718,"ctfId":4438},"Joseph-Schorr-from-CoreOS",{"template":687},"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":4445,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4446,"config":4451,"_id":4452,"_type":32,"title":4447,"_source":34,"_file":4453,"_stem":4454,"_extension":37},"/en-us/blog/authors/josh-feehs",{"name":4447,"config":4448},"Josh Feehs",{"headshot":4449,"ctfId":4450},"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":687},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4456,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4457,"config":4463,"_id":4464,"_type":32,"title":4465,"_source":34,"_file":4466,"_stem":4467,"_extension":37},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4458,"name":4459,"config":4460},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4461,"ctfId":4462},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":687},"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":4469,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4470,"config":4474,"_id":4475,"_type":32,"title":4471,"_source":34,"_file":4476,"_stem":4477,"_extension":37},"/en-us/blog/authors/josh-zimmerman",{"name":4471,"config":4472},"Josh Zimmerman",{"headshot":7,"ctfId":4473},"JoshZimmerman",{"template":687},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4479,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4480,"config":4485,"_id":4486,"_type":32,"title":4481,"_source":34,"_file":4487,"_stem":4488,"_extension":37},"/en-us/blog/authors/joshua-carroll",{"name":4481,"config":4482},"Joshua Carroll",{"headshot":4483,"ctfId":4484},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":687},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4490,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4491,"config":4496,"_id":4497,"_type":32,"title":4492,"_source":34,"_file":4498,"_stem":4499,"_extension":37},"/en-us/blog/authors/joshua-lambert",{"name":4492,"config":4493},"Joshua Lambert",{"headshot":4494,"ctfId":4495},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":687},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4501,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4502,"config":4506,"_id":4507,"_type":32,"title":4503,"_source":34,"_file":4508,"_stem":4509,"_extension":37},"/en-us/blog/authors/joyce-tompsett",{"name":4503,"config":4504},"Joyce Tompsett",{"headshot":7,"ctfId":4505},"Tompsett",{"template":687},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4511,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4512,"config":4516,"_id":4517,"_type":32,"title":4513,"_source":34,"_file":4518,"_stem":4519,"_extension":37},"/en-us/blog/authors/juan-broullon",{"name":4513,"config":4514},"Juan Broullon",{"headshot":7,"ctfId":4515},"jbroullon",{"template":687},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4521,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4522,"config":4526,"_id":4527,"_type":32,"title":4523,"_source":34,"_file":4528,"_stem":4529,"_extension":37},"/en-us/blog/authors/julia-lake",{"name":4523,"config":4524},"Julia Lake",{"headshot":718,"ctfId":4525},"5i9IDwCDDg3lfkiu9T3edZ",{"template":687},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4531,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4532,"config":4537,"_id":4538,"_type":32,"title":4533,"_source":34,"_file":4539,"_stem":4540,"_extension":37},"/en-us/blog/authors/julia-miocene",{"name":4533,"config":4534},"Julia Miocene",{"headshot":4535,"ctfId":4536},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":687},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4542,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4543,"config":4547,"_id":4548,"_type":32,"title":4544,"_source":34,"_file":4549,"_stem":4550,"_extension":37},"/en-us/blog/authors/julian-thome",{"name":4544,"config":4545},"Julian Thome",{"headshot":7,"ctfId":4546},"jthome",{"template":687},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4552,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4553,"config":4558,"_id":4559,"_type":32,"title":4554,"_source":34,"_file":4560,"_stem":4561,"_extension":37},"/en-us/blog/authors/julie-byrne",{"name":4554,"config":4555},"Julie Byrne",{"headshot":4556,"ctfId":4557},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":687},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4563,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4564,"config":4569,"_id":4570,"_type":32,"title":4565,"_source":34,"_file":4571,"_stem":4572,"_extension":37},"/en-us/blog/authors/julie-griffin",{"name":4565,"config":4566},"Julie Griffin",{"headshot":4567,"ctfId":4568},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":687},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4574,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4575,"config":4579,"_id":4580,"_type":32,"title":4576,"_source":34,"_file":4581,"_stem":4582,"_extension":37},"/en-us/blog/authors/julien-andrieux",{"name":4576,"config":4577},"Julien Andrieux",{"headshot":718,"ctfId":4578},"Julien-Andrieux",{"template":687},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4584,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4585,"config":4590,"_id":4591,"_type":32,"title":4586,"_source":34,"_file":4592,"_stem":4593,"_extension":37},"/en-us/blog/authors/juliet-wanjohi",{"name":4586,"config":4587},"Juliet Wanjohi",{"headshot":4588,"ctfId":4589},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":687},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4595,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4596,"config":4600,"_id":4601,"_type":32,"title":4597,"_source":34,"_file":4602,"_stem":4603,"_extension":37},"/en-us/blog/authors/justin-farris",{"name":4597,"config":4598},"Justin Farris",{"headshot":718,"ctfId":4599},"5RHYudAlWLmSj5U7AOIcbG",{"template":687},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4605,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4606,"config":4610,"_id":4611,"_type":32,"title":18,"_source":34,"_file":4612,"_stem":4613,"_extension":37},"/en-us/blog/authors/justin-tobler",{"name":18,"config":4607},{"headshot":4608,"ctfId":4609},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":687},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4615,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4616,"config":4621,"_id":4622,"_type":32,"title":4617,"_source":34,"_file":4623,"_stem":4624,"_extension":37},"/en-us/blog/authors/kai-armstrong",{"name":4617,"config":4618},"Kai Armstrong",{"headshot":4619,"ctfId":4620},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":687},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4626,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4627,"config":4631,"_id":4632,"_type":32,"title":4633,"_source":34,"_file":4634,"_stem":4635,"_extension":37},"/en-us/blog/authors/kamil-trzciski",{"name":4628,"config":4629},"Kamil Trzciński",{"headshot":718,"ctfId":4630},"Kamil-Trzciski",{"template":687},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4637,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4638,"config":4642,"_id":4643,"_type":32,"title":4644,"_source":34,"_file":4645,"_stem":4646,"_extension":37},"/en-us/blog/authors/karen-caras",{"name":4639,"config":4640},"Karen Carías",{"headshot":718,"ctfId":4641},"Karen-Caras",{"template":687},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4648,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4649,"config":4654,"_id":4655,"_type":32,"title":4650,"_source":34,"_file":4656,"_stem":4657,"_extension":37},"/en-us/blog/authors/karthik-nayak",{"name":4650,"config":4651},"Karthik Nayak",{"headshot":4652,"ctfId":4653},"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":687},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4659,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4660,"config":4664,"_id":4665,"_type":32,"title":4661,"_source":34,"_file":4666,"_stem":4667,"_extension":37},"/en-us/blog/authors/katherine-okpara",{"name":4661,"config":4662},"Katherine Okpara",{"headshot":7,"ctfId":4663},"katokpara",{"template":687},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4669,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4670,"config":4674,"_id":4675,"_type":32,"title":4671,"_source":34,"_file":4676,"_stem":4677,"_extension":37},"/en-us/blog/authors/kathy-wang",{"name":4671,"config":4672},"Kathy Wang",{"headshot":7,"ctfId":4673},"kathyw",{"template":687},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4679,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4680,"config":4684,"_id":4685,"_type":32,"title":4686,"_source":34,"_file":4687,"_stem":4688,"_extension":37},"/en-us/blog/authors/keanon-okeefe",{"name":4681,"config":4682},"Keanon O’Keefe",{"headshot":7,"ctfId":4683},"kokeefe",{"template":687},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4690,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4691,"config":4696,"_id":4697,"_type":32,"title":4692,"_source":34,"_file":4698,"_stem":4699,"_extension":37},"/en-us/blog/authors/kees-valkhof",{"name":4692,"role":4693,"config":4694},"Kees Valkhof","Configuration manager at Lely",{"headshot":4695},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":687},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4701,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4702,"config":4706,"_id":4707,"_type":32,"title":4703,"_source":34,"_file":4708,"_stem":4709,"_extension":37},"/en-us/blog/authors/kelly-hair",{"name":4703,"config":4704},"Kelly Hair",{"headshot":718,"ctfId":4705},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":687},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4711,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4712,"config":4716,"_id":4717,"_type":32,"title":4713,"_source":34,"_file":4718,"_stem":4719,"_extension":37},"/en-us/blog/authors/kendra-marquart",{"name":4713,"config":4714},"Kendra Marquart",{"headshot":7,"ctfId":4715},"kmarquart",{"template":687},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4721,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4722,"config":4726,"_id":4727,"_type":32,"title":4723,"_source":34,"_file":4728,"_stem":4729,"_extension":37},"/en-us/blog/authors/kenny-johnston",{"name":4723,"config":4724},"Kenny Johnston",{"headshot":7,"ctfId":4725},"kencjohnston",{"template":687},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4731,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4732,"config":4737,"_id":4738,"_type":32,"title":4733,"_source":34,"_file":4739,"_stem":4740,"_extension":37},"/en-us/blog/authors/kevin-chu",{"name":4733,"config":4734},"Kevin Chu",{"headshot":4735,"ctfId":4736},"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":687},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4742,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4743,"config":4748,"_id":4749,"_type":32,"title":4744,"_source":34,"_file":4750,"_stem":4751,"_extension":37},"/en-us/blog/authors/kevin-morrison",{"name":4744,"config":4745},"Kevin Morrison",{"headshot":4746,"ctfId":4747},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":687},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4753,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4754,"config":4758,"_id":4759,"_type":32,"title":4755,"_source":34,"_file":4760,"_stem":4761,"_extension":37},"/en-us/blog/authors/khrystyna-humenna",{"name":4755,"config":4756},"Khrystyna Humenna",{"headshot":718,"ctfId":4757},"Khrystyna-Humenna",{"template":687},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4763,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4764,"config":4768,"_id":4769,"_type":32,"title":4765,"_source":34,"_file":4770,"_stem":4771,"_extension":37},"/en-us/blog/authors/kim-lock",{"name":4765,"config":4766},"Kim Lock",{"headshot":7,"ctfId":4767},"KimLock",{"template":687},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4773,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4774,"config":4778,"_id":4779,"_type":32,"title":4775,"_source":34,"_file":4780,"_stem":4781,"_extension":37},"/en-us/blog/authors/kirsten-abma",{"name":4775,"config":4776},"Kirsten Abma",{"headshot":718,"ctfId":4777},"Kirsten-Abma",{"template":687},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4783,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4784,"config":4788,"_id":4789,"_type":32,"title":4785,"_source":34,"_file":4790,"_stem":4791,"_extension":37},"/en-us/blog/authors/kristian-larsson",{"name":4785,"config":4786},"Kristian Larsson",{"headshot":718,"ctfId":4787},"Kristian-Larsson",{"template":687},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4793,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4794,"config":4799,"_id":4800,"_type":32,"title":4795,"_source":34,"_file":4801,"_stem":4802,"_extension":37},"/en-us/blog/authors/kristina-weis",{"name":4795,"config":4796},"Kristina Weis",{"headshot":4797,"ctfId":4798},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":687},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4804,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4805,"config":4809,"_id":4810,"_type":32,"title":4806,"_source":34,"_file":4811,"_stem":4812,"_extension":37},"/en-us/blog/authors/kurt-dusek",{"name":4806,"config":4807},"Kurt Dusek",{"headshot":7,"ctfId":4808},"kdusek",{"template":687},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4814,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4815,"config":4819,"_id":4820,"_type":32,"title":4816,"_source":34,"_file":4821,"_stem":4822,"_extension":37},"/en-us/blog/authors/kushal-koolwal",{"name":4816,"config":4817},"Kushal Koolwal",{"headshot":718,"ctfId":4818},"Kushal-Koolwal",{"template":687},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4824,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4825,"config":4830,"_id":4831,"_type":32,"title":4826,"_source":34,"_file":4832,"_stem":4833,"_extension":37},"/en-us/blog/authors/kushal-pandya",{"name":4826,"config":4827},"Kushal Pandya",{"headshot":4828,"ctfId":4829},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":687},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4835,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4836,"config":4840,"_id":4841,"_type":32,"title":4837,"_source":34,"_file":4842,"_stem":4843,"_extension":37},"/en-us/blog/authors/kwan-lee",{"name":4837,"config":4838},"Kwan Lee",{"headshot":718,"ctfId":4839},"Kwan-Lee",{"template":687},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4845,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4846,"config":4851,"_id":4852,"_type":32,"title":4847,"_source":34,"_file":4853,"_stem":4854,"_extension":37},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4847,"config":4848},"Kyla Gradin Dahl",{"headshot":4849,"ctfId":4850},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":687},"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":4856,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4857,"config":4861,"_id":4862,"_type":32,"title":4858,"_source":34,"_file":4863,"_stem":4864,"_extension":37},"/en-us/blog/authors/kyle-mann",{"name":4858,"config":4859},"Kyle Mann",{"headshot":718,"ctfId":4860},"44YiW1r6sTpbC9wKBeHGgE",{"template":687},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4866,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4867,"config":4872,"_id":4873,"_type":32,"title":4868,"_source":34,"_file":4874,"_stem":4875,"_extension":37},"/en-us/blog/authors/kyle-smith",{"name":4868,"config":4869},"Kyle Smith",{"headshot":4870,"ctfId":4871},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":687},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4877,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4878,"config":4882,"_id":4884,"_type":32,"title":4879,"_source":34,"_file":4885,"_stem":4886,"_extension":37},"/en-us/blog/authors/kymberlee-price",{"name":4879,"config":4880},"Kymberlee Price",{"headshot":4881},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":687,"gitlabHandle":4883},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4888,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4889,"config":4893,"_id":4894,"_type":32,"title":4890,"_source":34,"_file":4895,"_stem":4896,"_extension":37},"/en-us/blog/authors/lasse-schuirmann",{"name":4890,"config":4891},"Lasse Schuirmann",{"headshot":718,"ctfId":4892},"5vpo2ZOrPIS8PBp3k47S6w",{"template":687},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4898,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4899,"config":4903,"_id":4904,"_type":32,"title":4900,"_source":34,"_file":4905,"_stem":4906,"_extension":37},"/en-us/blog/authors/laura-montemayor",{"name":4900,"config":4901},"Laura Montemayor",{"headshot":7,"ctfId":4902},"lauraMon",{"template":687},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4908,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4909,"config":4914,"_id":4915,"_type":32,"title":4910,"_source":34,"_file":4916,"_stem":4917,"_extension":37},"/en-us/blog/authors/lauren-barker",{"name":4910,"config":4911},"Lauren Barker",{"headshot":4912,"ctfId":4913},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":687},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4919,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4920,"config":4924,"_id":4925,"_type":32,"title":4921,"_source":34,"_file":4926,"_stem":4927,"_extension":37},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4921,"config":4922},"Lauren Gibbons Paul",{"headshot":718,"ctfId":4923},"Lauren-Gibbons-Paul",{"template":687},"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":4929,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4930,"config":4934,"_id":4935,"_type":32,"title":4931,"_source":34,"_file":4936,"_stem":4937,"_extension":37},"/en-us/blog/authors/lauren-minning",{"name":4931,"config":4932},"Lauren Minning",{"headshot":7,"ctfId":4933},"lminning",{"template":687},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":4939,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4940,"config":4945,"_id":4946,"_type":32,"title":4941,"_source":34,"_file":4947,"_stem":4948,"_extension":37},"/en-us/blog/authors/laurena-alves",{"name":4941,"config":4942},"Laurena Alves",{"headshot":4943,"ctfId":4944},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":687},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":4950,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4951,"config":4956,"_id":4957,"_type":32,"title":4952,"_source":34,"_file":4958,"_stem":4959,"_extension":37},"/en-us/blog/authors/lee-faus",{"name":4952,"config":4953},"Lee Faus",{"headshot":4954,"ctfId":4955},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":687},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":4961,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4962,"config":4967,"_id":4968,"_type":32,"title":4963,"_source":34,"_file":4969,"_stem":4970,"_extension":37},"/en-us/blog/authors/lee-matos",{"name":4963,"config":4964},"Lee Matos",{"headshot":4965,"ctfId":4966},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":687},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":4972,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4973,"config":4978,"_id":4979,"_type":32,"title":4974,"_source":34,"_file":4980,"_stem":4981,"_extension":37},"/en-us/blog/authors/lee-tickett",{"name":4974,"config":4975},"Lee Tickett",{"headshot":4976,"ctfId":4977},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":687},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":4983,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4984,"config":4988,"_id":4989,"_type":32,"title":4985,"_source":34,"_file":4990,"_stem":4991,"_extension":37},"/en-us/blog/authors/levente-polyak",{"name":4985,"config":4986},"Levente Polyak",{"headshot":7,"ctfId":4987},"anthraxx",{"template":687},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":4993,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":4994,"config":4999,"_id":5000,"_type":32,"title":5001,"_source":34,"_file":5002,"_stem":5003,"_extension":37},"/en-us/blog/authors/lin-jen-shin",{"name":4995,"config":4996},"Lin Jen-Shin",{"headshot":4997,"ctfId":4998},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":687},"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":5005,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5006,"config":5011,"_id":5012,"_type":32,"title":5007,"_source":34,"_file":5013,"_stem":5014,"_extension":37},"/en-us/blog/authors/liz-coleman",{"name":5007,"config":5008},"Liz Coleman",{"headshot":5009,"ctfId":5010},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":687},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5016,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5017,"config":5022,"_id":5023,"_type":32,"title":5018,"_source":34,"_file":5024,"_stem":5025,"_extension":37},"/en-us/blog/authors/loryn-bortins",{"name":5018,"config":5019},"Loryn Bortins",{"headshot":5020,"ctfId":5021},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":687},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5027,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5028,"config":5032,"_id":5033,"_type":32,"title":5029,"_source":34,"_file":5034,"_stem":5035,"_extension":37},"/en-us/blog/authors/lucas-charles",{"name":5029,"config":5030},"Lucas Charles",{"headshot":718,"ctfId":5031},"01OUkmRJImMowxMk3YHGNS",{"template":687},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5037,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5038,"config":5042,"_id":5043,"_type":32,"title":5039,"_source":34,"_file":5044,"_stem":5045,"_extension":37},"/en-us/blog/authors/luka-trbojevic",{"name":5039,"config":5040},"Luka Trbojevic",{"headshot":7,"ctfId":5041},"ltrbojevic",{"template":687},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5047,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5048,"config":5052,"_id":5053,"_type":32,"title":5049,"_source":34,"_file":5054,"_stem":5055,"_extension":37},"/en-us/blog/authors/lukas-eipert",{"name":5049,"config":5050},"Lukas Eipert",{"headshot":718,"ctfId":5051},"37PO8stm7JUQgglr4tWcmw",{"template":687},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5057,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5058,"config":5063,"_id":5064,"_type":32,"title":5059,"_source":34,"_file":5065,"_stem":5066,"_extension":37},"/en-us/blog/authors/lyle-kozloff",{"name":5059,"config":5060},"Lyle Kozloff",{"headshot":5061,"ctfId":5062},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":687},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5068,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5069,"config":5074,"_id":5075,"_type":32,"title":5070,"_source":34,"_file":5076,"_stem":5077,"_extension":37},"/en-us/blog/authors/madeline-lake",{"name":5070,"config":5071},"Madeline Lake",{"headshot":5072,"ctfId":5073},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":687},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5079,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5080,"config":5085,"_id":5086,"_type":32,"title":5081,"_source":34,"_file":5087,"_stem":5088,"_extension":37},"/en-us/blog/authors/madou-coulibaly",{"name":5081,"config":5082},"Madou Coulibaly",{"headshot":5083,"ctfId":5084},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":687},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5090,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5091,"config":5096,"_id":5097,"_type":32,"title":5092,"_source":34,"_file":5098,"_stem":5099,"_extension":37},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5092,"config":5093},"Magdalena Frankiewicz",{"headshot":5094,"ctfId":5095},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":687},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5101,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5102,"config":5106,"_id":5107,"_type":32,"title":5103,"_source":34,"_file":5108,"_stem":5109,"_extension":37},"/en-us/blog/authors/mahesh-kumar",{"name":5103,"config":5104},"Mahesh Kumar",{"headshot":718,"ctfId":5105},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":687},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5111,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5112,"config":5117,"_id":5118,"_type":32,"title":5113,"_source":34,"_file":5119,"_stem":5120,"_extension":37},"/en-us/blog/authors/manav-khurana",{"name":5113,"config":5114,"role":5116},"Manav Khurana",{"headshot":5115},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":687,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5122,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5123,"config":5128,"_id":5129,"_type":32,"title":5124,"_source":34,"_file":5130,"_stem":5131,"_extension":37},"/en-us/blog/authors/manuel-kraft",{"name":5124,"config":5125},"Manuel Kraft",{"headshot":5126,"ctfId":5127},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":687},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5133,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5134,"config":5138,"_id":5139,"_type":32,"title":5135,"_source":34,"_file":5140,"_stem":5141,"_extension":37},"/en-us/blog/authors/marc-radulescu",{"name":5135,"config":5136},"Marc Radulescu",{"headshot":718,"ctfId":5137},"Marc-Radulescu",{"template":687},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5143,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5144,"config":5149,"_id":5150,"_type":32,"title":5145,"_source":34,"_file":5151,"_stem":5152,"_extension":37},"/en-us/blog/authors/marc-shaw",{"name":5145,"config":5146},"Marc Shaw",{"headshot":5147,"ctfId":5148},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":687},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5154,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5155,"config":5160,"_id":5161,"_type":32,"title":5162,"_source":34,"_file":5163,"_stem":5164,"_extension":37},"/en-us/blog/authors/marcel-van-remmerden",{"name":5156,"config":5157},"Marcel van Remmerden",{"headshot":5158,"ctfId":5159},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":687},"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":5166,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5167,"config":5171,"_id":5172,"_type":32,"title":5168,"_source":34,"_file":5173,"_stem":5174,"_extension":37},"/en-us/blog/authors/marcia-ramos",{"name":5168,"config":5169},"Marcia Ramos",{"headshot":718,"ctfId":5170},"Marcia-Ramos",{"template":687},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5176,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5177,"config":5181,"_id":5182,"_type":32,"title":5178,"_source":34,"_file":5183,"_stem":5184,"_extension":37},"/en-us/blog/authors/marco-lenzo",{"name":5178,"config":5179},"Marco Lenzo",{"headshot":718,"ctfId":5180},"Marco-Lenzo",{"template":687},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5186,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5187,"config":5191,"_id":5192,"_type":32,"title":5188,"_source":34,"_file":5193,"_stem":5194,"_extension":37},"/en-us/blog/authors/marie-hargitt",{"name":5188,"config":5189},"Marie Hargitt",{"headshot":718,"ctfId":5190},"Marie-Hargitt",{"template":687},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5196,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5197,"config":5202,"_id":5203,"_type":32,"title":5198,"_source":34,"_file":5204,"_stem":5205,"_extension":37},"/en-us/blog/authors/marin-jankovski",{"name":5198,"config":5199},"Marin Jankovski",{"headshot":5200,"ctfId":5201},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":687},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5207,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5208,"config":5212,"_id":5213,"_type":32,"title":5214,"_source":34,"_file":5215,"_stem":5216,"_extension":37},"/en-us/blog/authors/marin-job",{"name":5209,"config":5210},"Marin, Job",{"headshot":718,"ctfId":5211},"Marin-Job",{"template":687},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5218,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5219,"config":5223,"_id":5224,"_type":32,"title":5225,"_source":34,"_file":5226,"_stem":5227,"_extension":37},"/en-us/blog/authors/mario-de-la-ossa",{"name":5220,"config":5221},"Mario de la Ossa",{"headshot":7,"ctfId":5222},"mdelaossa",{"template":687},"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":5229,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5230,"config":5234,"_id":5235,"_type":32,"title":5231,"_source":34,"_file":5236,"_stem":5237,"_extension":37},"/en-us/blog/authors/mark-art",{"name":5231,"config":5232},"Mark Art",{"headshot":718,"ctfId":5233},"55KCfyNmgPaJRmBZhiN7k5",{"template":687},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5239,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5240,"config":5244,"_id":5245,"_type":32,"title":5241,"_source":34,"_file":5246,"_stem":5247,"_extension":37},"/en-us/blog/authors/mark-fletcher",{"name":5241,"config":5242},"Mark Fletcher",{"headshot":7,"ctfId":5243},"markglenfletcher",{"template":687},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5249,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5250,"config":5255,"_id":5256,"_type":32,"title":5251,"_source":34,"_file":5257,"_stem":5258,"_extension":37},"/en-us/blog/authors/mark-lapierre",{"name":5251,"config":5252},"Mark Lapierre",{"headshot":5253,"ctfId":5254},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":687},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5260,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5261,"config":5266,"_id":5267,"_type":32,"title":5262,"_source":34,"_file":5268,"_stem":5269,"_extension":37},"/en-us/blog/authors/mark-loveless",{"name":5262,"config":5263},"Mark Loveless",{"headshot":5264,"ctfId":5265},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":687},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5271,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5272,"config":5276,"_id":5277,"_type":32,"title":5273,"_source":34,"_file":5278,"_stem":5279,"_extension":37},"/en-us/blog/authors/mark-pundsack",{"name":5273,"config":5274},"Mark Pundsack",{"headshot":718,"ctfId":5275},"markpundsack",{"template":687},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5281,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5282,"config":5287,"_id":5288,"_type":32,"title":5289,"_source":34,"_file":5290,"_stem":5291,"_extension":37},"/en-us/blog/authors/martin-brmmer",{"name":5283,"config":5284},"Martin Brümmer",{"headshot":5285,"ctfId":5286},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":687},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5293,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5294,"config":5298,"_id":5299,"_type":32,"title":5295,"_source":34,"_file":5300,"_stem":5301,"_extension":37},"/en-us/blog/authors/martynas-krupskis",{"name":5295,"config":5296},"Martynas Krupskis",{"headshot":718,"ctfId":5297},"3tK5S0f4QshGFGRrdEl7rn",{"template":687},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5303,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5304,"config":5308,"_id":5309,"_type":32,"title":5305,"_source":34,"_file":5310,"_stem":5311,"_extension":37},"/en-us/blog/authors/matej-latin",{"name":5305,"config":5306},"Matej Latin",{"headshot":7,"ctfId":5307},"matejlatin",{"template":687},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5313,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5314,"config":5319,"_id":5320,"_type":32,"title":5315,"_source":34,"_file":5321,"_stem":5322,"_extension":37},"/en-us/blog/authors/mathias-ewald",{"name":5315,"config":5316},"Mathias Ewald",{"headshot":5317,"ctfId":5318},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":687},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5324,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5325,"config":5329,"_id":5330,"_type":32,"title":5326,"_source":34,"_file":5331,"_stem":5332,"_extension":37},"/en-us/blog/authors/matt-baldwin",{"name":5326,"config":5327},"Matt Baldwin",{"headshot":718,"ctfId":5328},"Matt-Baldwin",{"template":687},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5334,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5335,"config":5340,"_id":5341,"_type":32,"title":5336,"_source":34,"_file":5342,"_stem":5343,"_extension":37},"/en-us/blog/authors/matt-coons",{"name":5336,"config":5337},"Matt Coons",{"headshot":5338,"ctfId":5339},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":687},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5345,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5346,"config":5351,"_id":5352,"_type":32,"title":5353,"_source":34,"_file":5354,"_stem":5355,"_extension":37},"/en-us/blog/authors/matt-delaney",{"name":5347,"config":5348},"Matt DeLaney",{"headshot":5349,"ctfId":5350},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":687},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5357,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5358,"config":5363,"_id":5364,"_type":32,"title":5359,"_source":34,"_file":5365,"_stem":5366,"_extension":37},"/en-us/blog/authors/matt-genelin",{"name":5359,"config":5360},"Matt Genelin",{"headshot":5361,"ctfId":5362},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":687},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5368,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5369,"config":5373,"_id":5374,"_type":32,"title":5370,"_source":34,"_file":5375,"_stem":5376,"_extension":37},"/en-us/blog/authors/matt-nguyen",{"name":5370,"config":5371},"Matt Nguyen",{"headshot":718,"ctfId":5372},"Matt-Nguyen",{"template":687},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5378,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5379,"config":5384,"_id":5385,"_type":32,"title":5380,"_source":34,"_file":5386,"_stem":5387,"_extension":37},"/en-us/blog/authors/matt-nohr",{"name":5380,"config":5381},"Matt Nohr",{"headshot":5382,"ctfId":5383},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":687},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5389,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5390,"config":5395,"_id":5396,"_type":32,"title":5391,"_source":34,"_file":5397,"_stem":5398,"_extension":37},"/en-us/blog/authors/matt-smiley",{"name":5391,"config":5392},"Matt Smiley",{"headshot":5393,"ctfId":5394},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":687},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5400,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5401,"config":5405,"_id":5406,"_type":32,"title":5402,"_source":34,"_file":5407,"_stem":5408,"_extension":37},"/en-us/blog/authors/matt-wilson",{"name":5402,"config":5403},"Matt Wilson",{"headshot":718,"ctfId":5404},"mattwilson",{"template":687},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5410,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5411,"config":5416,"_id":5417,"_type":32,"title":5412,"_source":34,"_file":5418,"_stem":5419,"_extension":37},"/en-us/blog/authors/matthew-macfarlane",{"name":5412,"config":5413},"Matthew Macfarlane",{"headshot":5414,"ctfId":5415},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":687},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5421,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5422,"config":5427,"_id":5428,"_type":32,"title":5423,"_source":34,"_file":5429,"_stem":5430,"_extension":37},"/en-us/blog/authors/matthew-nearents",{"name":5423,"config":5424},"Matthew Nearents",{"headshot":5425,"ctfId":5426},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":687},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5432,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5433,"config":5438,"_id":5439,"_type":32,"title":5440,"_source":34,"_file":5441,"_stem":5442,"_extension":37},"/en-us/blog/authors/matthias-kppler",{"name":5434,"config":5435},"Matthias Käppler",{"headshot":5436,"ctfId":5437},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":687},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5444,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5445,"config":5449,"_id":5450,"_type":32,"title":5446,"_source":34,"_file":5451,"_stem":5452,"_extension":37},"/en-us/blog/authors/matthieu-fronton",{"name":5446,"config":5447},"Matthieu Fronton",{"headshot":7,"ctfId":5448},"frntn",{"template":687},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5454,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5455,"config":5459,"_id":5460,"_type":32,"title":5456,"_source":34,"_file":5461,"_stem":5462,"_extension":37},"/en-us/blog/authors/max-woolf",{"name":5456,"config":5457},"Max Woolf",{"headshot":718,"ctfId":5458},"Max-Woolf",{"template":687},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5464,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5465,"config":5470,"_id":5471,"_type":32,"title":5466,"_source":34,"_file":5472,"_stem":5473,"_extension":37},"/en-us/blog/authors/maximilien-belinga",{"name":5466,"config":5467},"Maximilien Belinga",{"headshot":5468,"ctfId":5469},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":687},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5475,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5476,"config":5480,"_id":5481,"_type":32,"title":5477,"_source":34,"_file":5482,"_stem":5483,"_extension":37},"/en-us/blog/authors/mayank-tahilramani",{"name":5477,"config":5478},"Mayank Tahilramani",{"headshot":7,"ctfId":5479},"mayanktahil",{"template":687},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5485,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5486,"config":5491,"_id":5492,"_type":32,"title":5487,"_source":34,"_file":5493,"_stem":5494,"_extension":37},"/en-us/blog/authors/mayra-cabrera",{"name":5487,"config":5488},"Mayra Cabrera",{"headshot":5489,"ctfId":5490},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":687},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5496,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5497,"config":5501,"_id":5502,"_type":32,"title":5498,"_source":34,"_file":5503,"_stem":5504,"_extension":37},"/en-us/blog/authors/meghan-maneval",{"name":5498,"config":5499},"Meghan Maneval",{"headshot":7,"ctfId":5500},"mmaneval20",{"template":687},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5506,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5507,"config":5512,"_id":5513,"_type":32,"title":5508,"_source":34,"_file":5514,"_stem":5515,"_extension":37},"/en-us/blog/authors/mek-stittri",{"name":5508,"config":5509},"Mek Stittri",{"headshot":5510,"ctfId":5511},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":687},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5517,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5518,"config":5522,"_id":5523,"_type":32,"title":5519,"_source":34,"_file":5524,"_stem":5525,"_extension":37},"/en-us/blog/authors/melissa-farber",{"name":5519,"config":5520},"Melissa Farber",{"headshot":7,"ctfId":5521},"mfarber",{"template":687},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5527,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5528,"config":5532,"_id":5533,"_type":32,"title":5529,"_source":34,"_file":5534,"_stem":5535,"_extension":37},"/en-us/blog/authors/melissa-smolensky",{"name":5529,"config":5530},"Melissa Smolensky",{"headshot":7,"ctfId":5531},"melsmo",{"template":687},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5537,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5538,"config":5543,"_id":5544,"_type":32,"title":5539,"_source":34,"_file":5545,"_stem":5546,"_extension":37},"/en-us/blog/authors/melissa-ushakov",{"name":5539,"config":5540},"Melissa Ushakov",{"headshot":5541,"ctfId":5542},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":687},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5548,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5549,"config":5553,"_id":5554,"_type":32,"title":5550,"_source":34,"_file":5555,"_stem":5556,"_extension":37},"/en-us/blog/authors/michael-fahey",{"name":5550,"config":5551},"Michael Fahey",{"headshot":7,"ctfId":5552},"mfahey",{"template":687},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5558,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5559,"config":5564,"_id":5565,"_type":32,"title":5560,"_source":34,"_file":5566,"_stem":5567,"_extension":37},"/en-us/blog/authors/michael-friedrich",{"name":5560,"config":5561},"Michael Friedrich",{"headshot":5562,"ctfId":5563},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":687},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5569,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5570,"config":5574,"_id":5575,"_type":32,"title":5571,"_source":34,"_file":5576,"_stem":5577,"_extension":37},"/en-us/blog/authors/michael-henriksen",{"name":5571,"config":5572},"Michael Henriksen",{"headshot":718,"ctfId":5573},"3DmojnawcJFqAgoNMCpFTX",{"template":687},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5579,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5580,"config":5584,"_id":5585,"_type":32,"title":5581,"_source":34,"_file":5586,"_stem":5587,"_extension":37},"/en-us/blog/authors/michael-karampalas",{"name":5581,"config":5582},"Michael Karampalas",{"headshot":7,"ctfId":5583},"mkarampalas",{"template":687},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5589,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5590,"config":5595,"_id":5596,"_type":32,"title":5591,"_source":34,"_file":5597,"_stem":5598,"_extension":37},"/en-us/blog/authors/michael-kozono",{"name":5591,"config":5592},"Michael Kozono",{"headshot":5593,"ctfId":5594},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":687},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5600,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5601,"config":5605,"_id":5606,"_type":32,"title":5602,"_source":34,"_file":5607,"_stem":5608,"_extension":37},"/en-us/blog/authors/michael-miranda",{"name":5602,"config":5603},"Michael Miranda",{"headshot":7,"ctfId":5604},"mikemiranda",{"template":687},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5610,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5611,"config":5616,"_id":5617,"_type":32,"title":5612,"_source":34,"_file":5618,"_stem":5619,"_extension":37},"/en-us/blog/authors/michelle-gill",{"name":5612,"config":5613},"Michelle Gill",{"headshot":5614,"ctfId":5615},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":687},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5621,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5622,"config":5627,"_id":5628,"_type":32,"title":5623,"_source":34,"_file":5629,"_stem":5630,"_extension":37},"/en-us/blog/authors/miguel-rincon",{"name":5623,"config":5624},"Miguel Rincon",{"headshot":5625,"ctfId":5626},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":687},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5632,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5633,"config":5637,"_id":5638,"_type":32,"title":5634,"_source":34,"_file":5639,"_stem":5640,"_extension":37},"/en-us/blog/authors/mike-bartlett",{"name":5634,"config":5635},"Mike Bartlett",{"headshot":7,"ctfId":5636},"mydigitalself",{"template":687},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5642,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5643,"config":5647,"_id":5648,"_type":32,"title":5644,"_source":34,"_file":5649,"_stem":5650,"_extension":37},"/en-us/blog/authors/mike-eddington",{"name":5644,"config":5645},"Mike Eddington",{"headshot":718,"ctfId":5646},"q5tK0TgB1ZovSwShKSvOJ",{"template":687},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5652,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5653,"config":5658,"_id":5659,"_type":32,"title":5654,"_source":34,"_file":5660,"_stem":5661,"_extension":37},"/en-us/blog/authors/mike-flouton",{"name":5654,"config":5655},"Mike Flouton",{"headshot":5656,"ctfId":5657},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":687},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5663,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5664,"config":5668,"_id":5669,"_type":32,"title":5665,"_source":34,"_file":5670,"_stem":5671,"_extension":37},"/en-us/blog/authors/mike-gerwitz",{"name":5665,"config":5666},"Mike Gerwitz",{"headshot":718,"ctfId":5667},"Mike-Gerwitz",{"template":687},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5673,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5674,"config":5678,"_id":5679,"_type":32,"title":5675,"_source":34,"_file":5680,"_stem":5681,"_extension":37},"/en-us/blog/authors/mike-greiling",{"name":5675,"config":5676},"Mike Greiling",{"headshot":7,"ctfId":5677},"mikegreiling",{"template":687},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5683,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5684,"config":5688,"_id":5689,"_type":32,"title":5685,"_source":34,"_file":5690,"_stem":5691,"_extension":37},"/en-us/blog/authors/mike-vanbuskirk",{"name":5685,"config":5686},"Mike Vanbuskirk",{"headshot":718,"ctfId":5687},"Mike-Vanbuskirk",{"template":687},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5693,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5694,"config":5698,"_id":5699,"_type":32,"title":5695,"_source":34,"_file":5700,"_stem":5701,"_extension":37},"/en-us/blog/authors/miranda-carter",{"name":5695,"config":5696},"Miranda Carter",{"headshot":718,"ctfId":5697},"4xT4dbRh6N9i7jW5xuPhVp",{"template":687},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5703,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5704,"config":5709,"_id":5710,"_type":32,"title":5705,"_source":34,"_file":5711,"_stem":5712,"_extension":37},"/en-us/blog/authors/mitra-jozenazemian",{"name":5705,"config":5706},"Mitra Jozenazemian",{"headshot":5707,"ctfId":5708},"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":687},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5714,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5715,"config":5720,"_id":5721,"_type":32,"title":5716,"_source":34,"_file":5722,"_stem":5723,"_extension":37},"/en-us/blog/authors/monmayuri-ray",{"name":5716,"config":5717},"Monmayuri Ray",{"headshot":5718,"ctfId":5719},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":687},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5725,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5726,"config":5731,"_id":5733,"_type":32,"title":5727,"_source":34,"_file":5734,"_stem":5735,"_extension":37},"/en-us/blog/authors/naoharu-sasaki",{"name":5727,"config":5728,"role":5730},"Naoharu Sasaki",{"headshot":5729},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":687,"gitlabHandle":5732},"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":5737,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5738,"config":5743,"_id":5744,"_type":32,"title":5739,"_source":34,"_file":5745,"_stem":5746,"_extension":37},"/en-us/blog/authors/nate-rosandich",{"name":5739,"config":5740},"Nate Rosandich",{"headshot":5741,"ctfId":5742},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":687},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5748,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5749,"config":5754,"_id":5755,"_type":32,"title":5750,"_source":34,"_file":5756,"_stem":5757,"_extension":37},"/en-us/blog/authors/neha-khalwadekar",{"name":5750,"config":5751},"Neha Khalwadekar",{"headshot":5752,"ctfId":5753},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":687},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5759,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5760,"config":5765,"_id":5766,"_type":32,"title":5767,"_source":34,"_file":5768,"_stem":5769,"_extension":37},"/en-us/blog/authors/neil-mccorrison",{"name":5761,"config":5762},"Neil McCorrison",{"headshot":5763,"ctfId":5764},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":687},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5771,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5772,"config":5777,"_id":5778,"_type":32,"title":5779,"_source":34,"_file":5780,"_stem":5781,"_extension":37},"/en-us/blog/authors/neil-mcdonald",{"name":5773,"config":5774},"Neil McDonald",{"headshot":5775,"ctfId":5776},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":687},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5783,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5784,"config":5788,"_id":5790,"_type":32,"title":5785,"_source":34,"_file":5791,"_stem":5792,"_extension":37},"/en-us/blog/authors/nick-cayou",{"name":5785,"config":5786,"role":7},"Nick Cayou",{"headshot":5787},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":687,"gitlabHandle":5789},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5794,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5795,"config":5800,"_id":5801,"_type":32,"title":5796,"_source":34,"_file":5802,"_stem":5803,"_extension":37},"/en-us/blog/authors/nick-malcolm",{"name":5796,"config":5797},"Nick Malcolm",{"headshot":5798,"ctfId":5799},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":687},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5805,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5806,"config":5810,"_id":5811,"_type":32,"title":5807,"_source":34,"_file":5812,"_stem":5813,"_extension":37},"/en-us/blog/authors/nick-thomas",{"name":5807,"config":5808},"Nick Thomas",{"headshot":7,"ctfId":5809},"nickthomas",{"template":687},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5815,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5816,"config":5821,"_id":5822,"_type":32,"title":5817,"_source":34,"_file":5823,"_stem":5824,"_extension":37},"/en-us/blog/authors/nick-veenhof",{"name":5817,"config":5818},"Nick Veenhof",{"headshot":5819,"ctfId":5820},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":687},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5826,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5827,"config":5831,"_id":5832,"_type":32,"title":5828,"_source":34,"_file":5833,"_stem":5834,"_extension":37},"/en-us/blog/authors/nico-meisenzahl",{"name":5828,"config":5829},"Nico Meisenzahl",{"headshot":7,"ctfId":5830},"nicomeisenzahl",{"template":687},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5836,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5837,"config":5841,"_id":5842,"_type":32,"title":5838,"_source":34,"_file":5843,"_stem":5844,"_extension":37},"/en-us/blog/authors/nicole-schwartz",{"name":5838,"config":5839},"Nicole Schwartz",{"headshot":7,"ctfId":5840},"nicoleschwartz",{"template":687},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5846,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5847,"config":5852,"_id":5853,"_type":32,"title":5848,"_source":34,"_file":5854,"_stem":5855,"_extension":37},"/en-us/blog/authors/nikhil-george",{"name":5848,"config":5849},"Nikhil George",{"headshot":5850,"ctfId":5851},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":687},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5857,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5858,"config":5863,"_id":5864,"_type":32,"title":5859,"_source":34,"_file":5865,"_stem":5866,"_extension":37},"/en-us/blog/authors/nima-badiey",{"name":5859,"config":5860},"Nima Badiey",{"headshot":5861,"ctfId":5862},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":687},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5868,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5869,"config":5874,"_id":5875,"_type":32,"title":5870,"_source":34,"_file":5876,"_stem":5877,"_extension":37},"/en-us/blog/authors/noah-ing",{"name":5870,"config":5871},"Noah Ing",{"headshot":5872,"ctfId":5873},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":687},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5879,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5880,"config":5884,"_id":5885,"_type":32,"title":5881,"_source":34,"_file":5886,"_stem":5887,"_extension":37},"/en-us/blog/authors/noah-manger",{"name":5881,"config":5882},"Noah Manger",{"headshot":718,"ctfId":5883},"Noah-Manger",{"template":687},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5889,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5890,"config":5894,"_id":5895,"_type":32,"title":5891,"_source":34,"_file":5896,"_stem":5897,"_extension":37},"/en-us/blog/authors/noah-zoschke",{"name":5891,"config":5892},"Noah Zoschke",{"headshot":718,"ctfId":5893},"Noah-Zoschke",{"template":687},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5899,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5900,"config":5904,"_id":5905,"_type":32,"title":5901,"_source":34,"_file":5906,"_stem":5907,"_extension":37},"/en-us/blog/authors/nolan-myers",{"name":5901,"config":5902},"Nolan Myers",{"headshot":718,"ctfId":5903},"Nolan-Myers",{"template":687},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5909,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5910,"config":5914,"_id":5915,"_type":32,"title":5911,"_source":34,"_file":5916,"_stem":5917,"_extension":37},"/en-us/blog/authors/nupur-sharma",{"name":5911,"config":5912},"Nupur Sharma",{"headshot":718,"ctfId":5913},"6p7RQDl0cDWnAxU8yu2vVK",{"template":687},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5919,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5920,"config":5924,"_id":5925,"_type":32,"title":5921,"_source":34,"_file":5926,"_stem":5927,"_extension":37},"/en-us/blog/authors/nuritzi-sanchez",{"name":5921,"config":5922},"Nuritzi Sanchez",{"headshot":7,"ctfId":5923},"nuritzi",{"template":687},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5929,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5930,"config":5935,"_id":5936,"_type":32,"title":5931,"_source":34,"_file":5937,"_stem":5938,"_extension":37},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5931,"config":5932},"Oleksandr Pysaryuk",{"headshot":5933,"ctfId":5934},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":687},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":5940,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5941,"config":5946,"_id":5947,"_type":32,"title":5948,"_source":34,"_file":5949,"_stem":5950,"_extension":37},"/en-us/blog/authors/olena-horal-koretska",{"name":5942,"config":5943},"Olena Horal-Koretska",{"headshot":5944,"ctfId":5945},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":687},"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":5952,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5953,"config":5957,"_id":5959,"_type":32,"title":5954,"_source":34,"_file":5960,"_stem":5961,"_extension":37},"/en-us/blog/authors/olivier-campeau",{"name":5954,"config":5955},"Olivier Campeau",{"headshot":5956},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":687,"gitlabHandle":5958},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5963,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5964,"config":5969,"_id":5970,"_type":32,"title":5971,"_source":34,"_file":5972,"_stem":5973,"_extension":37},"/en-us/blog/authors/olivier-dupr",{"name":5965,"config":5966},"Olivier Dupré",{"headshot":5967,"ctfId":5968},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":687},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":5975,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5976,"config":5981,"_id":5982,"_type":32,"title":5977,"_source":34,"_file":5983,"_stem":5984,"_extension":37},"/en-us/blog/authors/omar-fernandez",{"name":5977,"config":5978},"Omar Fernandez",{"headshot":5979,"ctfId":5980},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":687},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":5986,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5987,"config":5991,"_id":5992,"_type":32,"title":5988,"_source":34,"_file":5993,"_stem":5994,"_extension":37},"/en-us/blog/authors/opher-vishnia",{"name":5988,"config":5989},"Opher Vishnia",{"headshot":718,"ctfId":5990},"O0F3sw3av9pRAxeP9iR7N",{"template":687},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":5996,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":5997,"config":6001,"_id":6002,"_type":32,"title":5998,"_source":34,"_file":6003,"_stem":6004,"_extension":37},"/en-us/blog/authors/orit-golowinski",{"name":5998,"config":5999},"Orit Golowinski",{"headshot":7,"ctfId":6000},"ogolowinski",{"template":687},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6006,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6007,"config":6012,"_id":6013,"_type":32,"title":6008,"_source":34,"_file":6014,"_stem":6015,"_extension":37},"/en-us/blog/authors/ottilia-westerlund",{"name":6008,"config":6009},"Ottilia Westerlund",{"headshot":6010,"ctfId":6011},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":687},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6017,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6018,"config":6022,"_id":6023,"_type":32,"title":6019,"_source":34,"_file":6024,"_stem":6025,"_extension":37},"/en-us/blog/authors/owen-williams",{"name":6019,"config":6020},"Owen Williams",{"headshot":718,"ctfId":6021},"Owen-Williams",{"template":687},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6027,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6028,"config":6032,"_id":6033,"_type":32,"title":6029,"_source":34,"_file":6034,"_stem":6035,"_extension":37},"/en-us/blog/authors/pablo-carranza",{"name":6029,"config":6030},"Pablo Carranza",{"headshot":718,"ctfId":6031},"Pablo-Carranza",{"template":687},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6037,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6038,"config":6042,"_id":6043,"_type":32,"title":6039,"_source":34,"_file":6044,"_stem":6045,"_extension":37},"/en-us/blog/authors/parker-ennis",{"name":6039,"config":6040},"Parker Ennis",{"headshot":7,"ctfId":6041},"parkerennis",{"template":687},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6047,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6048,"config":6052,"_id":6053,"_type":32,"title":6049,"_source":34,"_file":6054,"_stem":6055,"_extension":37},"/en-us/blog/authors/patricio-cano",{"name":6049,"config":6050},"Patricio Cano",{"headshot":718,"ctfId":6051},"Patricio-Cano",{"template":687},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6057,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6058,"config":6062,"_id":6063,"_type":32,"title":6059,"_source":34,"_file":6064,"_stem":6065,"_extension":37},"/en-us/blog/authors/patrick-deuley",{"name":6059,"config":6060},"Patrick Deuley",{"headshot":718,"ctfId":6061},"4YYemtKKpxKC4yukyFavai",{"template":687},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6067,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6068,"config":6072,"_id":6073,"_type":32,"title":6069,"_source":34,"_file":6074,"_stem":6075,"_extension":37},"/en-us/blog/authors/patrick-foster",{"name":6069,"config":6070},"Patrick Foster",{"headshot":718,"ctfId":6071},"Patrick-Foster",{"template":687},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6077,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6078,"config":6083,"_id":6084,"_type":32,"title":6079,"_source":34,"_file":6085,"_stem":6086,"_extension":37},"/en-us/blog/authors/patrick-steinhardt",{"name":6079,"config":6080},"Patrick Steinhardt",{"headshot":6081,"ctfId":6082},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":687},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6088,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6089,"config":6093,"_id":6094,"_type":32,"title":6090,"_source":34,"_file":6095,"_stem":6096,"_extension":37},"/en-us/blog/authors/patty-cheung",{"name":6090,"config":6091},"Patty Cheung",{"headshot":718,"ctfId":6092},"pattycheung",{"template":687},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6098,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6099,"config":6103,"_id":6104,"_type":32,"title":6100,"_source":34,"_file":6105,"_stem":6106,"_extension":37},"/en-us/blog/authors/paul-badcock",{"name":6100,"config":6101},"Paul Badcock",{"headshot":718,"ctfId":6102},"TbNQIdiD4vlFB7XYXeArb",{"template":687},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6108,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6109,"config":6113,"_id":6114,"_type":32,"title":6115,"_source":34,"_file":6116,"_stem":6117,"_extension":37},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6110,"config":6111},"Paul Gascou-Vaillancourt",{"headshot":718,"ctfId":6112},"6Yg7HWPoy2E5vwudH0EZja",{"template":687},"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":6119,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6120,"config":6124,"_id":6125,"_type":32,"title":6121,"_source":34,"_file":6126,"_stem":6127,"_extension":37},"/en-us/blog/authors/paul-hibbitts",{"name":6121,"config":6122},"Paul Hibbitts",{"headshot":718,"ctfId":6123},"Paul-Hibbitts",{"template":687},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6129,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6130,"config":6134,"_id":6135,"_type":32,"title":6131,"_source":34,"_file":6136,"_stem":6137,"_extension":37},"/en-us/blog/authors/paul-machle",{"name":6131,"config":6132},"Paul Machle",{"headshot":718,"ctfId":6133},"Paul-Machle",{"template":687},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6139,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6140,"config":6144,"_id":6146,"_type":32,"title":6141,"_source":34,"_file":6147,"_stem":6148,"_extension":37},"/en-us/blog/authors/paul-meresanu",{"name":6141,"role":7,"config":6142},"Paul Meresanu",{"headshot":6143},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":687,"gitlabHandle":6145},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6150,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6151,"config":6156,"_id":6157,"_type":32,"title":6152,"_source":34,"_file":6158,"_stem":6159,"_extension":37},"/en-us/blog/authors/payton-burdette",{"name":6152,"config":6153},"Payton Burdette",{"headshot":6154,"ctfId":6155},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":687},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6161,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6162,"config":6166,"_id":6167,"_type":32,"title":6163,"_source":34,"_file":6168,"_stem":6169,"_extension":37},"/en-us/blog/authors/pedro-fortuna",{"name":6163,"config":6164},"Pedro Fortuna",{"headshot":718,"ctfId":6165},"7JwB4WZYF19OKwOo4yk5n4",{"template":687},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6171,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6172,"config":6177,"_id":6178,"_type":32,"title":6179,"_source":34,"_file":6180,"_stem":6181,"_extension":37},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6173,"config":6174},"Pedro Moreira da Silva",{"headshot":6175,"ctfId":6176},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":687},"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":6183,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6184,"config":6189,"_id":6190,"_type":32,"title":6185,"_source":34,"_file":6191,"_stem":6192,"_extension":37},"/en-us/blog/authors/phil-hughes",{"name":6185,"config":6186},"Phil Hughes",{"headshot":6187,"ctfId":6188},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":687},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6194,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6195,"config":6199,"_id":6200,"_type":32,"title":6196,"_source":34,"_file":6201,"_stem":6202,"_extension":37},"/en-us/blog/authors/philip-welz",{"name":6196,"config":6197},"Philip Welz",{"headshot":7,"ctfId":6198},"philxx",{"template":687},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6204,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6205,"config":6210,"_id":6211,"_type":32,"title":6212,"_source":34,"_file":6213,"_stem":6214,"_extension":37},"/en-us/blog/authors/philippe-lafoucrire",{"name":6206,"config":6207},"Philippe Lafoucrière",{"headshot":6208,"ctfId":6209},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":687},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6216,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6217,"config":6221,"_id":6222,"_type":32,"title":6223,"_source":34,"_file":6224,"_stem":6225,"_extension":37},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6218,"config":6219},"Pierre de La Morinerie",{"headshot":718,"ctfId":6220},"Pierre-de-La-Morinerie",{"template":687},"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":6227,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6228,"config":6232,"_id":6233,"_type":32,"title":6229,"_source":34,"_file":6234,"_stem":6235,"_extension":37},"/en-us/blog/authors/pierre-smeyers",{"name":6229,"config":6230},"Pierre Smeyers",{"headshot":7,"ctfId":6231},"pismy",{"template":687},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6237,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6238,"config":6243,"_id":6244,"_type":32,"title":6239,"_source":34,"_file":6245,"_stem":6246,"_extension":37},"/en-us/blog/authors/pini-wietchner",{"name":6239,"config":6240},"Pini Wietchner",{"headshot":6241,"ctfId":6242},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":687},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6248,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6249,"config":6253,"_id":6254,"_type":32,"title":6255,"_source":34,"_file":6256,"_stem":6257,"_extension":37},"/en-us/blog/authors/pj-metz",{"name":6250,"config":6251},"PJ Metz",{"headshot":718,"ctfId":6252},"PjMetz",{"template":687},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6259,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6260,"config":6263,"_id":6264,"_type":32,"title":6265,"_source":34,"_file":6266,"_stem":6267,"_extension":37},"/en-us/blog/authors/plapadoo",{"name":6261,"config":6262},"plapadoo",{"headshot":718,"ctfId":6261},{"template":687},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6269,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6270,"config":6274,"_id":6275,"_type":32,"title":6271,"_source":34,"_file":6276,"_stem":6277,"_extension":37},"/en-us/blog/authors/pranay-bakre",{"name":6271,"config":6272},"Pranay Bakre",{"headshot":7,"ctfId":6273},"Darren-Eastman",{"template":687},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6279,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6280,"config":6284,"_id":6285,"_type":32,"title":6281,"_source":34,"_file":6286,"_stem":6287,"_extension":37},"/en-us/blog/authors/priyanka-sharma",{"name":6281,"config":6282},"Priyanka Sharma",{"headshot":7,"ctfId":6283},"pritianka",{"template":687},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6289,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6290,"config":6295,"_id":6296,"_type":32,"title":6297,"_source":34,"_file":6298,"_stem":6299,"_extension":37},"/en-us/blog/authors/pter-bozs",{"name":6291,"config":6292},"Péter Bozsó",{"headshot":6293,"ctfId":6294},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":687},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6301,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6302,"config":6306,"_id":6307,"_type":32,"title":6303,"_source":34,"_file":6308,"_stem":6309,"_extension":37},"/en-us/blog/authors/quan-to",{"name":6303,"config":6304},"Quan To",{"headshot":718,"ctfId":6305},"5dswLnpCobgICjM0RpHMU2",{"template":687},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6311,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6312,"config":6317,"_id":6318,"_type":32,"title":6313,"_source":34,"_file":6319,"_stem":6320,"_extension":37},"/en-us/blog/authors/rachel-nienaber",{"name":6313,"config":6314},"Rachel Nienaber",{"headshot":6315,"ctfId":6316},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":687},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6322,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6323,"config":6327,"_id":6329,"_type":32,"title":6324,"_source":34,"_file":6330,"_stem":6331,"_extension":37},"/en-us/blog/authors/radovan-bacovic",{"name":6324,"config":6325},"Radovan Bacovic",{"headshot":6326},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":687,"gitlabHandle":6328},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6333,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6334,"config":6338,"_id":6339,"_type":32,"title":6340,"_source":34,"_file":6341,"_stem":6342,"_extension":37},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6335,"config":6336},"Rahul Bhargava, CTO, Evolphin",{"headshot":718,"ctfId":6337},"Rahul-Bhargava-CTO-Evolphin",{"template":687},"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":6344,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6345,"config":6350,"_id":6351,"_type":32,"title":6346,"_source":34,"_file":6352,"_stem":6353,"_extension":37},"/en-us/blog/authors/raimund-hook",{"name":6346,"config":6347},"Raimund Hook",{"headshot":6348,"ctfId":6349},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":687},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6355,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6356,"config":6360,"_id":6361,"_type":32,"title":6357,"_source":34,"_file":6362,"_stem":6363,"_extension":37},"/en-us/blog/authors/raquel-campuzano",{"name":6357,"config":6358},"Raquel Campuzano",{"headshot":718,"ctfId":6359},"Raquel-Campuzano",{"template":687},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6365,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6366,"config":6370,"_id":6371,"_type":32,"title":6367,"_source":34,"_file":6372,"_stem":6373,"_extension":37},"/en-us/blog/authors/ray-paik",{"name":6367,"config":6368},"Ray Paik",{"headshot":7,"ctfId":6369},"rpaik",{"template":687},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6375,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6376,"config":6381,"_id":6382,"_type":32,"title":6377,"_source":34,"_file":6383,"_stem":6384,"_extension":37},"/en-us/blog/authors/rayana-verissimo",{"name":6377,"config":6378},"Rayana Verissimo",{"headshot":6379,"ctfId":6380},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":687},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6386,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6387,"config":6391,"_id":6393,"_type":32,"title":6394,"_source":34,"_file":6395,"_stem":6396,"_extension":37},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6388,"config":6389},"Rebeca Fenoy-Anthony",{"headshot":6390},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":687,"gitlabHandle":6392},"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":6398,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6399,"config":6403,"_id":6404,"_type":32,"title":6400,"_source":34,"_file":6405,"_stem":6406,"_extension":37},"/en-us/blog/authors/rebecca-dodd",{"name":6400,"config":6401},"Rebecca Dodd",{"headshot":718,"ctfId":6402},"Rebecca-Dodd",{"template":687},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6408,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6409,"config":6413,"_id":6414,"_type":32,"title":6410,"_source":34,"_file":6415,"_stem":6416,"_extension":37},"/en-us/blog/authors/regis-freyd",{"name":6410,"config":6411},"Regis Freyd",{"headshot":718,"ctfId":6412},"Regis-Freyd",{"template":687},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6418,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6419,"config":6424,"_id":6425,"_type":32,"title":6420,"_source":34,"_file":6426,"_stem":6427,"_extension":37},"/en-us/blog/authors/regnard-raquedan",{"name":6420,"config":6421},"Regnard Raquedan",{"headshot":6422,"ctfId":6423},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":687},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6429,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6430,"config":6434,"_id":6435,"_type":32,"title":6431,"_source":34,"_file":6436,"_stem":6437,"_extension":37},"/en-us/blog/authors/renato-stanic",{"name":6431,"config":6432},"Renato Stanic",{"headshot":7,"ctfId":6433},"rstanic12",{"template":687},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6439,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6440,"config":6445,"_id":6446,"_type":32,"title":6441,"_source":34,"_file":6447,"_stem":6448,"_extension":37},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6441,"config":6442},"Ricardo Amarilla Villalba",{"headshot":6443,"ctfId":6444},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":687},"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":6450,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6451,"config":6455,"_id":6456,"_type":32,"title":6452,"_source":34,"_file":6457,"_stem":6458,"_extension":37},"/en-us/blog/authors/riccardo-padovani",{"name":6452,"config":6453},"Riccardo Padovani",{"headshot":718,"ctfId":6454},"Riccardo-Padovani",{"template":687},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6460,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6461,"config":6466,"_id":6467,"_type":32,"title":6468,"_source":34,"_file":6469,"_stem":6470,"_extension":37},"/en-us/blog/authors/rmy-coutable",{"name":6462,"config":6463},"Rémy Coutable",{"headshot":6464,"ctfId":6465},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":687},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6472,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6473,"config":6478,"_id":6479,"_type":32,"title":6474,"_source":34,"_file":6480,"_stem":6481,"_extension":37},"/en-us/blog/authors/rob-jackson",{"name":6474,"config":6475},"Rob Jackson",{"headshot":6476,"ctfId":6477},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":687},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6483,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6484,"config":6488,"_id":6489,"_type":32,"title":6485,"_source":34,"_file":6490,"_stem":6491,"_extension":37},"/en-us/blog/authors/rob-ribeiro",{"name":6485,"config":6486},"Rob Ribeiro",{"headshot":718,"ctfId":6487},"Rob-Ribeiro",{"template":687},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6493,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6494,"config":6498,"_id":6499,"_type":32,"title":6495,"_source":34,"_file":6500,"_stem":6501,"_extension":37},"/en-us/blog/authors/robert-speicher",{"name":6495,"config":6496},"Robert Speicher",{"headshot":7,"ctfId":6497},"rspeicher",{"template":687},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6503,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6504,"config":6509,"_id":6510,"_type":32,"title":6505,"_source":34,"_file":6511,"_stem":6512,"_extension":37},"/en-us/blog/authors/robert-williams",{"name":6505,"config":6506},"Robert Williams",{"headshot":6507,"ctfId":6508},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":687},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6514,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6515,"config":6521,"_id":6522,"_type":32,"title":6516,"_source":34,"_file":6523,"_stem":6524,"_extension":37},"/en-us/blog/authors/robin-schulman",{"name":6516,"config":6517,"role":6520},"Robin Schulman",{"headshot":6518,"ctfId":6519},"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":687},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6526,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6527,"config":6531,"_id":6532,"_type":32,"title":6528,"_source":34,"_file":6533,"_stem":6534,"_extension":37},"/en-us/blog/authors/roger-woo",{"name":6528,"config":6529},"Roger Woo",{"headshot":718,"ctfId":6530},"rogerwoo",{"template":687},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6536,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6537,"config":6543,"_id":6544,"_type":32,"title":6545,"_source":34,"_file":6546,"_stem":6547,"_extension":37},"/en-us/blog/authors/rohit-shambhuni",{"role":6538,"name":6539,"config":6540},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6541,"ctfId":6542},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":687},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6549,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6550,"config":6554,"_id":6555,"_type":32,"title":6551,"_source":34,"_file":6556,"_stem":6557,"_extension":37},"/en-us/blog/authors/roman-kuba",{"name":6551,"config":6552},"Roman Kuba",{"headshot":7,"ctfId":6553},"rkuba",{"template":687},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6559,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6560,"config":6565,"_id":6566,"_type":32,"title":6567,"_source":34,"_file":6568,"_stem":6569,"_extension":37},"/en-us/blog/authors/romuald-atchad",{"name":6561,"config":6562},"Romuald Atchadé",{"headshot":6563,"ctfId":6564},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":687},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6571,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6572,"config":6576,"_id":6577,"_type":32,"title":6578,"_source":34,"_file":6579,"_stem":6580,"_extension":37},"/en-us/blog/authors/ronald-van-zon",{"name":6573,"config":6574},"Ronald van Zon",{"headshot":7,"ctfId":6575},"Eagllus",{"template":687},"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":6582,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6583,"config":6587,"_id":6588,"_type":32,"title":6584,"_source":34,"_file":6589,"_stem":6590,"_extension":37},"/en-us/blog/authors/ross-fuhrman",{"name":6584,"config":6585},"Ross Fuhrman",{"headshot":718,"ctfId":6586},"7dkuWBvIc0AQanUclt3pOk",{"template":687},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6592,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6593,"config":6597,"_id":6598,"_type":32,"title":6594,"_source":34,"_file":6599,"_stem":6600,"_extension":37},"/en-us/blog/authors/roy-taragan",{"name":6594,"config":6595},"Roy Taragan",{"headshot":718,"ctfId":6596},"3pnwP9gqELfda3DCOQJQCL",{"template":687},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6602,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6603,"config":6608,"_id":6609,"_type":32,"title":6604,"_source":34,"_file":6610,"_stem":6611,"_extension":37},"/en-us/blog/authors/ruby-nealon",{"name":6604,"config":6605},"Ruby Nealon",{"headshot":6606,"ctfId":6607},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":687},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6613,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6614,"config":6618,"_id":6619,"_type":32,"title":6615,"_source":34,"_file":6620,"_stem":6621,"_extension":37},"/en-us/blog/authors/rupert-douglas",{"name":6615,"config":6616},"Rupert Douglas",{"headshot":7,"ctfId":6617},"rdouglasgitlab",{"template":687},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6623,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6624,"config":6628,"_id":6629,"_type":32,"title":6630,"_source":34,"_file":6631,"_stem":6632,"_extension":37},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6625,"config":6626},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6627},"3PShSyZ6DJXnkDa5xrQs7V",{"template":687},"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":6634,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6635,"config":6640,"_id":6641,"_type":32,"title":6636,"_source":34,"_file":6642,"_stem":6643,"_extension":37},"/en-us/blog/authors/rutvik-shah",{"name":6636,"config":6637},"Rutvik Shah",{"headshot":6638,"ctfId":6639},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":687},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6645,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6646,"config":6651,"_id":6652,"_type":32,"title":6647,"_source":34,"_file":6653,"_stem":6654,"_extension":37},"/en-us/blog/authors/sacha-guyon",{"name":6647,"config":6648},"Sacha Guyon",{"headshot":6649,"ctfId":6650},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":687},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6656,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6657,"config":6662,"_id":6663,"_type":32,"title":6658,"_source":34,"_file":6664,"_stem":6665,"_extension":37},"/en-us/blog/authors/safwan-ahmed",{"name":6658,"config":6659},"Safwan Ahmed",{"headshot":6660,"ctfId":6661},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":687},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6667,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6668,"config":6672,"_id":6674,"_type":32,"title":6669,"_source":34,"_file":6675,"_stem":6676,"_extension":37},"/en-us/blog/authors/salahddine-aberkan",{"name":6669,"config":6670},"Salahddine Aberkan",{"headshot":6671},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":687,"gitlabHandle":6673},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6678,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6679,"config":6684,"_id":6685,"_type":32,"title":6680,"_source":34,"_file":6686,"_stem":6687,"_extension":37},"/en-us/blog/authors/salman-ladha",{"name":6680,"config":6681},"Salman Ladha",{"headshot":6682,"ctfId":6683},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":687},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6689,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6690,"config":6695,"_id":6696,"_type":32,"title":6691,"_source":34,"_file":6697,"_stem":6698,"_extension":37},"/en-us/blog/authors/sam-beckham",{"name":6691,"config":6692},"Sam Beckham",{"headshot":6693,"ctfId":6694},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":687},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6700,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6701,"config":6706,"_id":6707,"_type":32,"title":6702,"_source":34,"_file":6708,"_stem":6709,"_extension":37},"/en-us/blog/authors/sam-kerr",{"name":6702,"config":6703},"Sam Kerr",{"headshot":6704,"ctfId":6705},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":687},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6711,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6712,"config":6717,"_id":6718,"_type":32,"title":6713,"_source":34,"_file":6719,"_stem":6720,"_extension":37},"/en-us/blog/authors/sam-morris",{"name":6713,"config":6714},"Sam Morris",{"headshot":6715,"ctfId":6716},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":687},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6722,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6723,"config":6728,"_id":6729,"_type":32,"title":6724,"_source":34,"_file":6730,"_stem":6731,"_extension":37},"/en-us/blog/authors/sam-white",{"name":6724,"config":6725},"Sam White",{"headshot":6726,"ctfId":6727},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":687},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6733,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6734,"config":6739,"_id":6740,"_type":32,"title":6735,"_source":34,"_file":6741,"_stem":6742,"_extension":37},"/en-us/blog/authors/sam-wiskow",{"name":6735,"config":6736},"Sam Wiskow",{"headshot":6737,"ctfId":6738},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":687},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6744,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6745,"config":6750,"_id":6751,"_type":32,"title":6746,"_source":34,"_file":6752,"_stem":6753,"_extension":37},"/en-us/blog/authors/samantha-lee",{"name":6746,"config":6747},"Samantha Lee",{"headshot":6748,"ctfId":6749},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":687},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6755,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6756,"config":6760,"_id":6761,"_type":32,"title":6762,"_source":34,"_file":6763,"_stem":6764,"_extension":37},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6757,"config":6758},"Sameer Farooqui, OctoML",{"headshot":718,"ctfId":6759},"Sameer-Farooqui-OctoML",{"template":687},"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":6766,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6767,"config":6772,"_id":6773,"_type":32,"title":6768,"_source":34,"_file":6774,"_stem":6775,"_extension":37},"/en-us/blog/authors/sameer-kamani",{"name":6768,"config":6769},"Sameer Kamani",{"headshot":6770,"ctfId":6771},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":687},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6777,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6778,"config":6783,"_id":6784,"_type":32,"title":6779,"_source":34,"_file":6785,"_stem":6786,"_extension":37},"/en-us/blog/authors/samer-akkoub",{"name":6779,"config":6780},"Samer Akkoub",{"headshot":6781,"ctfId":6782},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":687},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6788,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6789,"config":6793,"_id":6794,"_type":32,"title":6790,"_source":34,"_file":6795,"_stem":6796,"_extension":37},"/en-us/blog/authors/samuel-alfageme",{"name":6790,"config":6791},"Samuel Alfageme",{"headshot":718,"ctfId":6792},"Samuel-Alfageme",{"template":687},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6798,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6799,"config":6806,"_id":6807,"_type":32,"title":6801,"_source":34,"_file":6808,"_stem":6809,"_extension":37},"/en-us/blog/authors/sandra-gittlen",{"role":6800,"name":6801,"config":6802},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6803,"linkedin":6804,"ctfId":6805},"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":687},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6811,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6812,"config":6816,"_id":6817,"_type":32,"title":6813,"_source":34,"_file":6818,"_stem":6819,"_extension":37},"/en-us/blog/authors/sandra-salerno",{"name":6813,"config":6814},"Sandra Salerno",{"headshot":718,"ctfId":6815},"Sandra-Salerno",{"template":687},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6821,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6822,"config":6826,"_id":6827,"_type":32,"title":6828,"_source":34,"_file":6829,"_stem":6830,"_extension":37},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6823,"config":6824},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6825},"topodelapradera",{"template":687},"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":6832,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6833,"config":6837,"_id":6838,"_type":32,"title":6834,"_source":34,"_file":6839,"_stem":6840,"_extension":37},"/en-us/blog/authors/sara-kassabian",{"name":6834,"config":6835},"Sara Kassabian",{"headshot":7,"ctfId":6836},"skassabian",{"template":687},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6842,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6843,"config":6848,"_id":6849,"_type":32,"title":6844,"_source":34,"_file":6850,"_stem":6851,"_extension":37},"/en-us/blog/authors/sara-meadzinger",{"name":6844,"config":6845},"Sara Meadzinger",{"headshot":6846,"ctfId":6847},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":687},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6853,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6854,"config":6858,"_id":6859,"_type":32,"title":6855,"_source":34,"_file":6860,"_stem":6861,"_extension":37},"/en-us/blog/authors/sarah-daily",{"name":6855,"config":6856},"Sarah Daily",{"headshot":718,"ctfId":6857},"2YhqRPG08HF0FCF1l7oeZL",{"template":687},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6863,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6864,"config":6868,"_id":6869,"_type":32,"title":6865,"_source":34,"_file":6870,"_stem":6871,"_extension":37},"/en-us/blog/authors/sarah-german",{"name":6865,"config":6866},"Sarah German",{"headshot":6867,"ctfId":4536},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":687},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6873,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6874,"config":6879,"_id":6880,"_type":32,"title":6875,"_source":34,"_file":6881,"_stem":6882,"_extension":37},"/en-us/blog/authors/sarah-matthies",{"name":6875,"config":6876},"Sarah Matthies",{"headshot":6877,"ctfId":6878},"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":687},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6884,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6885,"config":6889,"_id":6890,"_type":32,"title":6891,"_source":34,"_file":6892,"_stem":6893,"_extension":37},"/en-us/blog/authors/sarah-odonnell",{"name":6886,"config":6887},"Sarah O’Donnell",{"headshot":7,"ctfId":6888},"sarahod",{"template":687},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6895,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6896,"config":6901,"_id":6902,"_type":32,"title":6897,"_source":34,"_file":6903,"_stem":6904,"_extension":37},"/en-us/blog/authors/sarah-waldner",{"name":6897,"config":6898},"Sarah Waldner",{"headshot":6899,"ctfId":6900},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":687},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6906,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6907,"config":6911,"_id":6912,"_type":32,"title":6908,"_source":34,"_file":6913,"_stem":6914,"_extension":37},"/en-us/blog/authors/sarrah-vesselov",{"name":6908,"config":6909},"Sarrah Vesselov",{"headshot":7,"ctfId":6910},"sarrahvesselov",{"template":687},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6916,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6917,"config":6921,"_id":6922,"_type":32,"title":6918,"_source":34,"_file":6923,"_stem":6924,"_extension":37},"/en-us/blog/authors/sarup-banskota",{"name":6918,"config":6919},"Sarup Banskota",{"headshot":718,"ctfId":6920},"3sY2Ef0sXxaJKCmArdSLsA",{"template":687},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6926,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6927,"config":6932,"_id":6933,"_type":32,"title":6928,"_source":34,"_file":6934,"_stem":6935,"_extension":37},"/en-us/blog/authors/sascha-eggenberger",{"name":6928,"config":6929},"Sascha Eggenberger",{"headshot":6930,"ctfId":6931},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":687},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":6937,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6938,"config":6942,"_id":6943,"_type":32,"title":6939,"_source":34,"_file":6944,"_stem":6945,"_extension":37},"/en-us/blog/authors/sasha-bannister",{"name":6939,"config":6940},"Sasha Bannister",{"headshot":718,"ctfId":6941},"Sasha-Bannister",{"template":687},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":6947,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6948,"config":6953,"_id":6954,"_type":32,"title":6949,"_source":34,"_file":6955,"_stem":6956,"_extension":37},"/en-us/blog/authors/sasha-gazlay",{"name":6949,"config":6950},"Sasha Gazlay",{"headshot":6951,"ctfId":6952},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":687},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":6958,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6959,"config":6964,"_id":6965,"_type":32,"title":6960,"_source":34,"_file":6966,"_stem":6967,"_extension":37},"/en-us/blog/authors/saumya-upadhyaya",{"name":6960,"config":6961},"Saumya Upadhyaya",{"headshot":6962,"ctfId":6963},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":687},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":6969,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6970,"config":6975,"_id":6976,"_type":32,"title":6977,"_source":34,"_file":6978,"_stem":6979,"_extension":37},"/en-us/blog/authors/scott-de-jonge",{"name":6971,"config":6972},"Scott de Jonge",{"headshot":6973,"ctfId":6974},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":687},"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":6981,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6982,"config":6987,"_id":6988,"_type":32,"title":6983,"_source":34,"_file":6989,"_stem":6990,"_extension":37},"/en-us/blog/authors/scott-hampton",{"name":6983,"config":6984},"Scott Hampton",{"headshot":6985,"ctfId":6986},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":687},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":6992,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":6993,"config":6997,"_id":6998,"_type":32,"title":6994,"_source":34,"_file":6999,"_stem":7000,"_extension":37},"/en-us/blog/authors/scott-williamson",{"name":6994,"config":6995},"Scott Williamson",{"headshot":7,"ctfId":6996},"sfwgitlab",{"template":687},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":7002,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7003,"config":7008,"_id":7009,"_type":32,"title":7004,"_source":34,"_file":7010,"_stem":7011,"_extension":37},"/en-us/blog/authors/sean-arnold",{"name":7004,"config":7005},"Sean Arnold",{"headshot":7006,"ctfId":7007},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":687},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7013,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7014,"config":7018,"_id":7019,"_type":32,"title":7020,"_source":34,"_file":7021,"_stem":7022,"_extension":37},"/en-us/blog/authors/sean-mcgivern",{"name":7015,"config":7016},"Sean McGivern",{"headshot":718,"ctfId":7017},"Sean-McGivern",{"template":687},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7024,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7025,"config":7029,"_id":7030,"_type":32,"title":7026,"_source":34,"_file":7031,"_stem":7032,"_extension":37},"/en-us/blog/authors/sean-packham",{"name":7026,"config":7027},"Sean Packham",{"headshot":718,"ctfId":7028},"Sean-Packham",{"template":687},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7034,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7035,"config":7039,"_id":7040,"_type":32,"title":7036,"_source":34,"_file":7041,"_stem":7042,"_extension":37},"/en-us/blog/authors/sebastian-latacz",{"name":7036,"config":7037},"Sebastian Latacz",{"headshot":718,"ctfId":7038},"4DoWSQV719HEWt2rbDIoQR",{"template":687},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7044,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7045,"config":7049,"_id":7050,"_type":32,"title":7046,"_source":34,"_file":7051,"_stem":7052,"_extension":37},"/en-us/blog/authors/sergey-nuzhdin",{"name":7046,"config":7047},"Sergey Nuzhdin",{"headshot":718,"ctfId":7048},"Sergey-Nuzhdin",{"template":687},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7054,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7055,"config":7059,"_id":7060,"_type":32,"title":7056,"_source":34,"_file":7061,"_stem":7062,"_extension":37},"/en-us/blog/authors/seth-berger",{"name":7056,"config":7057},"Seth Berger",{"headshot":7,"ctfId":7058},"sethgitlab",{"template":687},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7064,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7065,"config":7069,"_id":7070,"_type":32,"title":7066,"_source":34,"_file":7071,"_stem":7072,"_extension":37},"/en-us/blog/authors/shane-rice",{"name":7066,"config":7067},"Shane Rice",{"headshot":718,"ctfId":7068},"3uVL7xMsEf13JzpbXYTCbM",{"template":687},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7074,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7075,"config":7080,"_id":7081,"_type":32,"title":7076,"_source":34,"_file":7082,"_stem":7083,"_extension":37},"/en-us/blog/authors/sharon-gaudin",{"name":7076,"config":7077},"Sharon Gaudin",{"headshot":7078,"ctfId":7079},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":687},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7085,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7086,"config":7090,"_id":7091,"_type":32,"title":7087,"_source":34,"_file":7092,"_stem":7093,"_extension":37},"/en-us/blog/authors/shawn-winters",{"name":7087,"config":7088},"Shawn Winters",{"headshot":7,"ctfId":7089},"ShawnWinters",{"template":687},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7095,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7096,"config":7100,"_id":7101,"_type":32,"title":7102,"_source":34,"_file":7103,"_stem":7104,"_extension":37},"/en-us/blog/authors/sherida-mcmullan",{"name":7097,"config":7098},"Sherida McMullan",{"headshot":718,"ctfId":7099},"BpqiUFXm6aUxjXJdAeKuL",{"template":687},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7106,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7107,"config":7111,"_id":7112,"_type":32,"title":7108,"_source":34,"_file":7113,"_stem":7114,"_extension":37},"/en-us/blog/authors/shinya-maeda",{"name":7108,"config":7109},"Shinya Maeda",{"headshot":7,"ctfId":7110},"dosuken123",{"template":687},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7116,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7117,"config":7122,"_id":7123,"_type":32,"title":7118,"_source":34,"_file":7124,"_stem":7125,"_extension":37},"/en-us/blog/authors/shrishti-choudhary",{"name":7118,"config":7119},"Shrishti Choudhary",{"headshot":7120,"ctfId":7121},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":687},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7127,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7128,"config":7137,"_id":7138,"_type":32,"title":7130,"_source":34,"_file":7139,"_stem":7140,"_extension":37},"/en-us/blog/authors/sid-sijbrandij",{"role":7129,"name":7130,"bio":7131,"config":7132},"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":7133,"twitter":7134,"linkedin":7135,"ctfId":7136},"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":687},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7142,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7143,"config":7148,"_id":7149,"_type":32,"title":7144,"_source":34,"_file":7150,"_stem":7151,"_extension":37},"/en-us/blog/authors/siddharth-mathur",{"name":7144,"config":7145},"Siddharth Mathur",{"headshot":7146,"ctfId":7147},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":687},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7153,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7154,"config":7158,"_id":7159,"_type":32,"title":7155,"_source":34,"_file":7160,"_stem":7161,"_extension":37},"/en-us/blog/authors/simon-tarchichi",{"name":7155,"config":7156},"Simon Tarchichi",{"headshot":7,"ctfId":7157},"kartsims",{"template":687},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7163,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7164,"config":7169,"_id":7170,"_type":32,"title":7165,"_source":34,"_file":7171,"_stem":7172,"_extension":37},"/en-us/blog/authors/sophia-manicor",{"name":7165,"config":7166},"Sophia Manicor",{"headshot":7167,"ctfId":7168},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":687},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7174,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7175,"config":7180,"_id":7181,"_type":32,"title":7176,"_source":34,"_file":7182,"_stem":7183,"_extension":37},"/en-us/blog/authors/sri-rangan",{"name":7176,"config":7177},"Sri Rangan",{"headshot":7178,"ctfId":7179},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":687},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7185,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7186,"config":7191,"_id":7192,"_type":32,"title":7187,"_source":34,"_file":7193,"_stem":7194,"_extension":37},"/en-us/blog/authors/stacy-cline",{"name":7187,"config":7188},"Stacy Cline",{"headshot":7189,"ctfId":7190},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":687},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7196,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7197,"config":7202,"_id":7203,"_type":32,"title":7198,"_source":34,"_file":7204,"_stem":7205,"_extension":37},"/en-us/blog/authors/stan-hu",{"name":7198,"config":7199},"Stan Hu",{"headshot":7200,"ctfId":7201},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":687},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7207,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7208,"config":7212,"_id":7213,"_type":32,"title":7214,"_source":34,"_file":7215,"_stem":7216,"_extension":37},"/en-us/blog/authors/stephan-hochdrfer",{"name":7209,"config":7210},"Stephan Hochdörfer",{"headshot":718,"ctfId":7211},"Stephan-Hochdrfer",{"template":687},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7218,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7219,"config":7223,"_id":7224,"_type":32,"title":7220,"_source":34,"_file":7225,"_stem":7226,"_extension":37},"/en-us/blog/authors/stephanie-garza",{"name":7220,"config":7221},"Stephanie Garza",{"headshot":7,"ctfId":7222},"StephanieGarza",{"template":687},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7228,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7229,"config":7233,"_id":7234,"_type":32,"title":7235,"_source":34,"_file":7236,"_stem":7237,"_extension":37},"/en-us/blog/authors/stephen-mcguinness",{"name":7230,"config":7231},"Stephen McGuinness",{"headshot":7,"ctfId":7232},"smcguinness1",{"template":687},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7239,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7240,"config":7245,"_id":7246,"_type":32,"title":7241,"_source":34,"_file":7247,"_stem":7248,"_extension":37},"/en-us/blog/authors/stephen-walters",{"name":7241,"config":7242},"Stephen Walters",{"headshot":7243,"ctfId":7244},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":687},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7250,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7251,"config":7256,"_id":7257,"_type":32,"title":7252,"_source":34,"_file":7258,"_stem":7259,"_extension":37},"/en-us/blog/authors/steve-abrams",{"name":7252,"config":7253},"Steve Abrams",{"headshot":7254,"ctfId":7255},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":687},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7261,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7262,"config":7266,"_id":7267,"_type":32,"title":7263,"_source":34,"_file":7268,"_stem":7269,"_extension":37},"/en-us/blog/authors/steve-azzopardi",{"name":7263,"config":7264},"Steve Azzopardi",{"headshot":7,"ctfId":7265},"steveazz",{"template":687},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7271,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7272,"config":7277,"_id":7278,"_type":32,"title":7273,"_source":34,"_file":7279,"_stem":7280,"_extension":37},"/en-us/blog/authors/steve-grossman",{"name":7273,"config":7274},"Steve Grossman",{"headshot":7275,"ctfId":7276},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":687},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7282,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7283,"config":7287,"_id":7288,"_type":32,"title":7284,"_source":34,"_file":7289,"_stem":7290,"_extension":37},"/en-us/blog/authors/steve-ropa",{"name":7284,"config":7285},"Steve Ropa",{"headshot":718,"ctfId":7286},"Steve-Ropa",{"template":687},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7292,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7293,"config":7297,"_id":7298,"_type":32,"title":7294,"_source":34,"_file":7299,"_stem":7300,"_extension":37},"/en-us/blog/authors/steve-truong",{"name":7294,"config":7295},"Steve Truong",{"headshot":7,"ctfId":7296},"sttruong",{"template":687},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7302,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7303,"config":7307,"_id":7308,"_type":32,"title":7304,"_source":34,"_file":7309,"_stem":7310,"_extension":37},"/en-us/blog/authors/steven-zinck",{"name":7304,"config":7305},"Steven Zinck",{"headshot":718,"ctfId":7306},"49JllsB7PFUrjj2Wi4Wa2O",{"template":687},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7312,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7313,"config":7317,"_id":7318,"_type":32,"title":7314,"_source":34,"_file":7319,"_stem":7320,"_extension":37},"/en-us/blog/authors/sunil-kowlgi",{"name":7314,"config":7315},"Sunil Kowlgi",{"headshot":718,"ctfId":7316},"Sunil-Kowlgi",{"template":687},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7322,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7323,"config":7327,"_id":7328,"_type":32,"title":7324,"_source":34,"_file":7329,"_stem":7330,"_extension":37},"/en-us/blog/authors/suri-patel",{"name":7324,"config":7325},"Suri Patel",{"headshot":718,"ctfId":7326},"suripatel",{"template":687},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7332,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7333,"config":7338,"_id":7339,"_type":32,"title":7334,"_source":34,"_file":7340,"_stem":7341,"_extension":37},"/en-us/blog/authors/susan-tacker",{"name":7334,"config":7335},"Susan Tacker",{"headshot":7336,"ctfId":7337},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":687},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7343,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7344,"config":7350,"_id":7351,"_type":32,"title":7345,"_source":34,"_file":7352,"_stem":7353,"_extension":37},"/en-us/blog/authors/susie-bitters",{"name":7345,"config":7346},"Susie Bitters",{"headshot":7347,"linkedin":7348,"ctfId":7349},"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":687},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7355,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7356,"config":7360,"_id":7361,"_type":32,"title":7357,"_source":34,"_file":7362,"_stem":7363,"_extension":37},"/en-us/blog/authors/suzanne-selhorn",{"name":7357,"config":7358},"Suzanne Selhorn",{"headshot":7359,"ctfId":4536},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":687},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7365,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7366,"config":7371,"_id":7372,"_type":32,"title":7367,"_source":34,"_file":7373,"_stem":7374,"_extension":37},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7367,"config":7368},"Tanuja Jayarama Raju",{"headshot":7369,"ctfId":7370},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":687},"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":7376,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7377,"config":7382,"_id":7383,"_type":32,"title":7378,"_source":34,"_file":7384,"_stem":7385,"_extension":37},"/en-us/blog/authors/taurie-davis",{"name":7378,"config":7379},"Taurie Davis",{"headshot":7380,"ctfId":7381},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":687},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7387,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7388,"config":7393,"_id":7394,"_type":32,"title":7395,"_source":34,"_file":7396,"_stem":7397,"_extension":37},"/en-us/blog/authors/taylor-mccaslin",{"name":7389,"config":7390},"Taylor McCaslin",{"headshot":7391,"ctfId":7392},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":687},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7399,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7400,"config":7404,"_id":7405,"_type":32,"title":7401,"_source":34,"_file":7406,"_stem":7407,"_extension":37},"/en-us/blog/authors/taylor-murphy",{"name":7401,"config":7402},"Taylor Murphy",{"headshot":7,"ctfId":7403},"tayloramurphy",{"template":687},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7409,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7410,"config":7415,"_id":7416,"_type":32,"title":7411,"_source":34,"_file":7417,"_stem":7418,"_extension":37},"/en-us/blog/authors/ted-gieschen",{"name":7411,"config":7412},"Ted Gieschen",{"headshot":7413,"ctfId":7414},"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":687},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7420,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7421,"config":7425,"_id":7426,"_type":32,"title":7422,"_source":34,"_file":7427,"_stem":7428,"_extension":37},"/en-us/blog/authors/thao-yeager",{"name":7422,"config":7423},"Thao Yeager",{"headshot":7,"ctfId":7424},"thaoyeager",{"template":687},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7430,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7431,"config":7436,"_id":7437,"_type":32,"title":7438,"_source":34,"_file":7439,"_stem":7440,"_extension":37},"/en-us/blog/authors/thiago-figueir",{"name":7432,"config":7433},"Thiago Figueiró",{"headshot":7434,"ctfId":7435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":687},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7442,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7443,"config":7448,"_id":7449,"_type":32,"title":7444,"_source":34,"_file":7450,"_stem":7451,"_extension":37},"/en-us/blog/authors/thong-kuah",{"name":7444,"config":7445},"Thong Kuah",{"headshot":7446,"ctfId":7447},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":687},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7453,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7454,"config":7458,"_id":7459,"_type":32,"title":7455,"_source":34,"_file":7460,"_stem":7461,"_extension":37},"/en-us/blog/authors/tim-davis",{"name":7455,"config":7456},"Tim Davis",{"headshot":718,"ctfId":7457},"6PksqjEtq1Y8goFUvAUcIn",{"template":687},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7463,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7464,"config":7468,"_id":7469,"_type":32,"title":7465,"_source":34,"_file":7470,"_stem":7471,"_extension":37},"/en-us/blog/authors/tim-lehnen",{"name":7465,"config":7466},"Tim Lehnen",{"headshot":7,"ctfId":7467},"hestenet",{"template":687},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7473,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7474,"config":7479,"_id":7480,"_type":32,"title":7475,"_source":34,"_file":7481,"_stem":7482,"_extension":37},"/en-us/blog/authors/tim-rizzi",{"name":7475,"config":7476},"Tim Rizzi",{"headshot":7477,"ctfId":7478},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":687},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7484,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7485,"config":7489,"_id":7491,"_type":32,"title":7486,"_source":34,"_file":7492,"_stem":7493,"_extension":37},"/en-us/blog/authors/tim-zallmann",{"name":7486,"config":7487},"Tim Zallmann",{"headshot":7488},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":687,"gitlabHandle":7490},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7495,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7496,"config":7500,"_id":7501,"_type":32,"title":7497,"_source":34,"_file":7502,"_stem":7503,"_extension":37},"/en-us/blog/authors/tina-sturgis",{"name":7497,"config":7498},"Tina Sturgis",{"headshot":7,"ctfId":7499},"TinaS",{"template":687},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7505,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7506,"config":7510,"_id":7511,"_type":32,"title":7512,"_source":34,"_file":7513,"_stem":7514,"_extension":37},"/en-us/blog/authors/tobias-gnther",{"name":7507,"config":7508},"Tobias Günther",{"headshot":718,"ctfId":7509},"Tobias-Gnther",{"template":687},"content:en-us:blog:authors:tobias-gnther.yml","Tobias Gnther","en-us/blog/authors/tobias-gnther.yml","en-us/blog/authors/tobias-gnther",{"_path":7516,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7517,"config":7521,"_id":7522,"_type":32,"title":7518,"_source":34,"_file":7523,"_stem":7524,"_extension":37},"/en-us/blog/authors/todd-barr",{"name":7518,"config":7519},"Todd Barr",{"headshot":7,"ctfId":7520},"twbarr",{"template":687},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7526,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7527,"config":7531,"_id":7532,"_type":32,"title":7528,"_source":34,"_file":7533,"_stem":7534,"_extension":37},"/en-us/blog/authors/tom-cooney",{"name":7528,"config":7529},"Tom Cooney",{"headshot":7,"ctfId":7530},"tomcooney",{"template":687},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7536,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7537,"config":7542,"_id":7543,"_type":32,"title":7538,"_source":34,"_file":7544,"_stem":7545,"_extension":37},"/en-us/blog/authors/tomas-vik",{"name":7538,"config":7539},"Tomas Vik",{"headshot":7540,"ctfId":7541},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681785/Blog/Author%20Headshots/viktomas-headshot.jpg","viktomas",{"template":687},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7547,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7548,"config":7553,"_id":7554,"_type":32,"title":7549,"_source":34,"_file":7555,"_stem":7556,"_extension":37},"/en-us/blog/authors/tomasz-maczukin",{"name":7549,"config":7550},"Tomasz Maczukin",{"headshot":7551,"ctfId":7552},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682116/Blog/Author%20Headshots/tmaczukin-headshot.jpg","tmaczukin",{"template":687},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7558,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7559,"config":7564,"_id":7565,"_type":32,"title":7560,"_source":34,"_file":7566,"_stem":7567,"_extension":37},"/en-us/blog/authors/toon-claes",{"name":7560,"config":7561},"Toon Claes",{"headshot":7562,"ctfId":7563},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663082/Blog/Author%20Headshots/toon_claes_headshot.png","toon",{"template":687},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7569,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7570,"config":7575,"_id":7576,"_type":32,"title":7571,"_source":34,"_file":7577,"_stem":7578,"_extension":37},"/en-us/blog/authors/torsten-linz",{"name":7571,"config":7572},"Torsten Linz",{"headshot":7573,"ctfId":7574},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658907/Blog/Author%20Headshots/tlinz-headshot.jpg","tlinz",{"template":687},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7580,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7581,"config":7585,"_id":7586,"_type":32,"title":7582,"_source":34,"_file":7587,"_stem":7588,"_extension":37},"/en-us/blog/authors/trevor-knudsen",{"name":7582,"config":7583},"Trevor Knudsen",{"headshot":7,"ctfId":7584},"Tknudsen",{"template":687},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7590,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7591,"config":7596,"_id":7597,"_type":32,"title":7592,"_source":34,"_file":7598,"_stem":7599,"_extension":37},"/en-us/blog/authors/tristan-read",{"name":7592,"config":7593},"Tristan Read",{"headshot":7594,"ctfId":7595},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679131/Blog/Author%20Headshots/tristan.png","tristanread",{"template":687},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7601,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7602,"config":7607,"_id":7608,"_type":32,"title":7603,"_source":34,"_file":7609,"_stem":7610,"_extension":37},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7603,"config":7604},"Tsukasa Komatsubara",{"headshot":7605,"ctfId":7606},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659784/Blog/Author%20Headshots/gitlab_tsukasa.jpg","31YQLiBRrJPn35BBhY69ly",{"template":687},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7612,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7613,"config":7617,"_id":7618,"_type":32,"title":7614,"_source":34,"_file":7619,"_stem":7620,"_extension":37},"/en-us/blog/authors/tsvi-zandany",{"name":7614,"config":7615},"Tsvi Zandany",{"headshot":718,"ctfId":7616},"Tsvi-Zandany",{"template":687},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7622,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7623,"config":7627,"_id":7628,"_type":32,"title":7624,"_source":34,"_file":7629,"_stem":7630,"_extension":37},"/en-us/blog/authors/tye-davis",{"name":7624,"config":7625},"Tye Davis",{"headshot":7,"ctfId":7626},"davistye",{"template":687},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7632,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7633,"config":7637,"_id":7638,"_type":32,"title":7634,"_source":34,"_file":7639,"_stem":7640,"_extension":37},"/en-us/blog/authors/tyler-williams",{"name":7634,"config":7635},"Tyler Williams",{"headshot":7,"ctfId":7636},"tywilliams",{"template":687},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7642,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7643,"config":7647,"_id":7648,"_type":32,"title":7649,"_source":34,"_file":7650,"_stem":7651,"_extension":37},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7644,"config":7645},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7646},"ulrica1",{"template":687},"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":7653,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7654,"config":7659,"_id":7660,"_type":32,"title":7655,"_source":34,"_file":7661,"_stem":7662,"_extension":37},"/en-us/blog/authors/valentine-mairet",{"name":7655,"config":7656},"Valentine Mairet",{"headshot":7657,"ctfId":7658},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665455/Blog/Author%20Headshots/valentine_mairet_headshot.png","1AQjHTpq6sBauRMdCibxQX",{"template":687},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7664,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7665,"config":7669,"_id":7670,"_type":32,"title":7666,"_source":34,"_file":7671,"_stem":7672,"_extension":37},"/en-us/blog/authors/valerie-silverthorne",{"name":7666,"config":7667},"Valerie Silverthorne",{"headshot":718,"ctfId":7668},"vsilverthorne",{"template":687},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7674,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7675,"config":7679,"_id":7680,"_type":32,"title":7676,"_source":34,"_file":7681,"_stem":7682,"_extension":37},"/en-us/blog/authors/vanessa-wegner",{"name":7676,"config":7677},"Vanessa Wegner",{"headshot":7,"ctfId":7678},"vwegner",{"template":687},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7684,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7685,"config":7690,"_id":7691,"_type":32,"title":7686,"_source":34,"_file":7692,"_stem":7693,"_extension":37},"/en-us/blog/authors/veethika-mishra",{"name":7686,"config":7687},"Veethika Mishra",{"headshot":7688,"ctfId":7689},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664676/Blog/Author%20Headshots/veethika-headshot.jpg","veethika",{"template":687},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7695,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7696,"config":7701,"_id":7702,"_type":32,"title":7697,"_source":34,"_file":7703,"_stem":7704,"_extension":37},"/en-us/blog/authors/vick-kelkar",{"name":7697,"config":7698},"Vick Kelkar",{"headshot":7699,"ctfId":7700},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668508/Blog/Author%20Headshots/vkelkar-headshot.jpg","vkelkar",{"template":687},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7706,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7707,"config":7711,"_id":7712,"_type":32,"title":7708,"_source":34,"_file":7713,"_stem":7714,"_extension":37},"/en-us/blog/authors/vicky-steeves",{"name":7708,"config":7709},"Vicky Steeves",{"headshot":7,"ctfId":7710},"vickysteeves",{"template":687},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7716,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7717,"config":7721,"_id":7722,"_type":32,"title":7718,"_source":34,"_file":7723,"_stem":7724,"_extension":37},"/en-us/blog/authors/victor-hernandez",{"name":7718,"config":7719},"Victor Hernandez",{"headshot":718,"ctfId":7720},"KVTkvySIqkAu34p2jsXZz",{"template":687},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7726,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7727,"config":7731,"_id":7732,"_type":32,"title":7728,"_source":34,"_file":7733,"_stem":7734,"_extension":37},"/en-us/blog/authors/victor-wu",{"name":7728,"config":7729},"Victor Wu",{"headshot":718,"ctfId":7730},"victorwu",{"template":687},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7736,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7737,"config":7742,"_id":7743,"_type":32,"title":7738,"_source":34,"_file":7744,"_stem":7745,"_extension":37},"/en-us/blog/authors/viktor-nagy",{"name":7738,"config":7739},"Viktor Nagy",{"headshot":7740,"ctfId":7741},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662918/Blog/Author%20Headshots/nagy-headshot.jpg","nagyvgitlab",{"template":687},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7747,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7748,"config":7752,"_id":7753,"_type":32,"title":7749,"_source":34,"_file":7754,"_stem":7755,"_extension":37},"/en-us/blog/authors/vincent-jong",{"name":7749,"config":7750},"Vincent Jong",{"headshot":718,"ctfId":7751},"Vincent-Jong",{"template":687},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7757,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7758,"config":7763,"_id":7764,"_type":32,"title":7759,"_source":34,"_file":7765,"_stem":7766,"_extension":37},"/en-us/blog/authors/vincy-wilson",{"name":7759,"config":7760},"Vincy Wilson",{"headshot":7761,"ctfId":7762},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669069/Blog/Author%20Headshots/vincy.jpg","1iyKndVlbE3dQnxOJoSY0q",{"template":687},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7768,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7769,"config":7774,"_id":7775,"_type":32,"title":7770,"_source":34,"_file":7776,"_stem":7777,"_extension":37},"/en-us/blog/authors/vishal-tak",{"name":7770,"config":7771},"Vishal Tak",{"headshot":7772,"ctfId":7773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663854/Blog/Author%20Headshots/vishal_tak_headshot.png","6BalO1YQUIuDdhUP80bFra",{"template":687},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7779,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7780,"config":7785,"_id":7786,"_type":32,"title":7781,"_source":34,"_file":7787,"_stem":7788,"_extension":37},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7781,"config":7782},"Vitor Meireles De Sousa",{"headshot":7783,"ctfId":7784},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682001/Blog/Author%20Headshots/vdesousa-headshot.png","vdesousa",{"template":687},"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":7790,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7791,"config":7795,"_id":7796,"_type":32,"title":7792,"_source":34,"_file":7797,"_stem":7798,"_extension":37},"/en-us/blog/authors/vlad-budica",{"name":7792,"config":7793},"Vlad Budica",{"headshot":718,"ctfId":7794},"Vlad-Budica",{"template":687},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7800,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7801,"config":7805,"_id":7806,"_type":32,"title":7802,"_source":34,"_file":7807,"_stem":7808,"_extension":37},"/en-us/blog/authors/vlad-stoianovici",{"name":7802,"config":7803},"Vlad Stoianovici",{"headshot":7,"ctfId":7804},"vstoianovici",{"template":687},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7810,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7811,"config":7815,"_id":7816,"_type":32,"title":7812,"_source":34,"_file":7817,"_stem":7818,"_extension":37},"/en-us/blog/authors/wayne-haber",{"name":7812,"config":7813},"Wayne Haber",{"headshot":7,"ctfId":7814},"whaber",{"template":687},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7820,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7821,"config":7825,"_id":7826,"_type":32,"title":7822,"_source":34,"_file":7827,"_stem":7828,"_extension":37},"/en-us/blog/authors/will-chandler",{"name":7822,"config":7823},"Will Chandler",{"headshot":718,"ctfId":7824},"DKiIGSSRIyO6QdTQkRkjs",{"template":687},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7830,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7831,"config":7836,"_id":7837,"_type":32,"title":7832,"_source":34,"_file":7838,"_stem":7839,"_extension":37},"/en-us/blog/authors/will-leidheiser",{"name":7832,"config":7833},"Will Leidheiser",{"headshot":7834,"ctfId":7835},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679335/Blog/Author%20Headshots/wleidheiser-headshot.jpg","wleidheiser",{"template":687},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7841,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7842,"config":7847,"_id":7848,"_type":32,"title":7843,"_source":34,"_file":7849,"_stem":7850,"_extension":37},"/en-us/blog/authors/william-arias",{"name":7843,"config":7844},"William Arias",{"headshot":7845,"ctfId":7846},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667549/Blog/Author%20Headshots/warias-headshot.jpg","warias",{"template":687},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7852,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7853,"config":7857,"_id":7858,"_type":32,"title":7854,"_source":34,"_file":7859,"_stem":7860,"_extension":37},"/en-us/blog/authors/william-chia",{"name":7854,"config":7855},"William Chia",{"headshot":7,"ctfId":7856},"williamchia",{"template":687},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7862,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7863,"config":7867,"_id":7868,"_type":32,"title":7864,"_source":34,"_file":7869,"_stem":7870,"_extension":37},"/en-us/blog/authors/yannis-roussos",{"name":7864,"config":7865},"Yannis Roussos",{"headshot":7,"ctfId":7866},"iroussos",{"template":687},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7872,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7873,"config":7877,"_id":7878,"_type":32,"title":7874,"_source":34,"_file":7879,"_stem":7880,"_extension":37},"/en-us/blog/authors/yevgeny-pats",{"name":7874,"config":7875},"Yevgeny Pats",{"headshot":7,"ctfId":7876},"ypats",{"template":687},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7882,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7883,"config":7887,"_id":7888,"_type":32,"title":7884,"_source":34,"_file":7889,"_stem":7890,"_extension":37},"/en-us/blog/authors/yorick-peterse",{"name":7884,"config":7885},"Yorick Peterse",{"headshot":718,"ctfId":7886},"Yorick-Peterse",{"template":687},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7892,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7893,"config":7897,"_id":7898,"_type":32,"title":7899,"_source":34,"_file":7900,"_stem":7901,"_extension":37},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7894,"config":7895},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7896},"zjgitlab",{"template":687},"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":7903,"_dir":680,"_draft":6,"_partial":6,"_locale":7,"content":7904,"config":7909,"_id":7910,"_type":32,"title":7905,"_source":34,"_file":7911,"_stem":7912,"_extension":37},"/en-us/blog/authors/zhaochen-li",{"name":7905,"config":7906},"Zhaochen Li",{"headshot":7907,"ctfId":7908},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664331/Blog/Author%20Headshots/Zhaochen_Li_headshot.png","D67XqgLJdlpOsrG3ivCGT",{"template":687},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7914,"_dir":40,"_draft":6,"_partial":6,"_locale":7,"header":7915,"eyebrow":7916,"blurb":7917,"button":7918,"secondaryButton":7922,"_id":7924,"_type":32,"title":7925,"_source":34,"_file":7926,"_stem":7927,"_extension":37},"/shared/de-de/next-steps","Stelle jetzt bessere Software schneller bereit","Mehr als 50 % der Fortune-100-Unternehmen vertrauen GitLab","Erlebe, was dein Team mit der intelligenten\n\n\nDevSecOps-Plattform erreichen kann.\n",{"text":48,"config":7919},{"href":7920,"dataGaName":51,"dataGaLocation":7921},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":53,"config":7923},{"href":55,"dataGaName":56,"dataGaLocation":7921},"content:shared:de-de:next-steps.yml","Next Steps","shared/de-de/next-steps.yml","shared/de-de/next-steps",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":7929,"content":7930,"config":7933,"_id":31,"_type":32,"title":33,"_source":34,"_file":35,"_stem":36,"_extension":37},{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},{"title":9,"description":10,"authors":7931,"heroImage":11,"date":19,"body":20,"category":21,"tags":7932,"updatedDate":26},[18],[23,24,25],{"slug":28,"featured":29,"template":30},1761852395958]