[{"data":1,"prerenderedAt":7930},["ShallowReactive",2],{"/ja-jp/blog/whats-new-in-git-2-49-0":3,"navigation-ja-jp":37,"banner-ja-jp":450,"footer-ja-jp":463,"blogAuthors-ja-jp":673,"next-steps-ja-jp":7909,"footer-source-/ja-jp/blog/whats-new-in-git-2-49-0/":7924},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":26,"_id":30,"_type":31,"title":32,"_source":33,"_file":34,"_stem":35,"_extension":36},"/ja-jp/blog/whats-new-in-git-2-49-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},"Git 2.49.0の新機能","このリリースでは、zlib-ngによるパフォーマンス向上、新しい名前ハッシュアルゴリズム、そして新しいコマンドgit-backfill(1)の導入などが行われています。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663087/Blog/Hero%20Images/git3-cover.png","https://about.gitlab.com/blog/whats-new-in-git-2-49-0","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"Git 2.49.0の新機能\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Toon Claes\"}],\n        \"datePublished\": \"2025-03-14\",\n      }",{"title":9,"description":10,"authors":17,"heroImage":11,"date":19,"body":20,"category":21,"tags":22},[18],"Toon Claes","2025-03-14","Gitプロジェクトは最近、[Git 2.49.0](https://lore.kernel.org/git/xmqqfrjfilc8.fsf@gitster.g/)をリリースしました。このリリースには、GitLabのGitチームや、より広範なGitコミュニティからのコントリビュートが含まれます。注目すべきハイライトを見てみましょう。\n\nこの記事では以下の変更点についてご紹介します。\n- [git-backfill(1)と新しいpath-walk API](#git-backfill(1)-and-the-new-path-walk-api)\n- [zlib-ngの導入](#introduction-of-zlib-ng)\n- [Mesonの継続的なイテレーション](#continued-iteration-on-meson)\n- [.git/branches/および.git/remotes/の非推奨化](#deprecation-of-.gitbranches%2F-and-.git%2Fremotes%2F)\n- [libgitに対するRustバインディング](#rust-bindings-for-libgit)\n- [新しい名前ハッシュアルゴリズム](#new-name-hashing-algorithm)\n- [プロミサーリモート機能](#promisor-remote-capability)\n- [`--revision`を使用した軽量なクローン](#thin-clone-using---revision)\n\n## git-backfill(1)と新しいpath-walk API\n\n[`git-clone(1)`](https://git-scm.com/docs/git-clone)コマンドでGitリポジトリをクローンする際に、\n[`--filter`](https://git-scm.com/docs/git-clone#Documentation/git-clone.txt-code--filterltfilter-specgtcode)オプションを指定することができます。\nこのオプションを使用すると、部分クローンを作成できます。部分クローンでは、指定されたオブジェクトフィルターに従って、サーバーから到達可能なオブジェクトの一部のみが送信されます。\n例えば、`--filter=blob:none`を指定してクローンを作成すると、サーバーからblob（ファイルの中身）が一切フェッチされず、_ブロブを含まないクローン_が作成されます。\n\nブロブを含まないクローンには、すべての到達可能なコミットとツリーは含まれますが、blobは含まれていません。そのため、[`git-checkout(1)`](https://git-scm.com/docs/git-checkout)のような操作を行うと、\nGitは必要なblobをサーバーからダウンロードして、その操作を完了させます。ただし、[`git-blame(1)`](https://git-scm.com/docs/git-blame)のような一部の操作では、\n必要なオブジェクトが1つずつダウンロードされることになり、この処理が非常に遅くなります。\nこれは、`git-blame(1)`がコミット履歴をたどって必要なblobを特定し、\n不足している各blobを個別にサーバーへリクエストする必要があるためです。\n\nGit 2.49では、新たに`git-backfill(1)`というサブコマンドが導入されました。これは、ブロブを含まない部分クローンに対して、不足しているblobをダウンロードするために使用できます。\n\n内部的には、`git-backfill(1)`は新しいパスウォークAPIを利用しています。これはGitが通常行うコミットのイテレーション処理とは異なります。従来の方法では、コミットを1つずつイテレーションし、それぞれに関連するツリーやblobに再帰的にアクセスしていました。一方、パスウォークAPIはパスごとに処理を行います。各パスについて関連するツリーオブジェクトのリストをスタックに追加し、そのスタックを深さ優先で処理します。つまり、コミット`1`のすべてのオブジェクトを処理してからコミット`2`へ進むのではなく、ファイル`A`のすべてのバージョンを全コミットにわたって処理してからファイル`B`に進む、という方式です。このアプローチは、パスごとにグループ化して処理する必要がある場合に、大幅なパフォーマンス向上をもたらします。\n\n[`gitlab-org/git`](https://gitlab.com/gitlab-org/git)リポジトリのブロブを含まないクローンを作成し、その使い方をお見せします。\n\n```shell\n$ git clone --filter=blob:none --bare --no-tags git@gitlab.com:gitlab-org/git.git\nCloning into bare repository 'git.git'...\nremote: Enumerating objects: 245904, done.\nremote: Counting objects: 100% (1736/1736), done.\nremote: Compressing objects: 100% (276/276), done.\nremote: Total 245904 (delta 1591), reused 1547 (delta 1459), pack-reused 244168 (from 1)\nReceiving objects: 100% (245904/245904), 59.35 MiB | 15.96 MiB/s, done.\nResolving deltas: 100% (161482/161482), done.\n```\n\n上の例では、Gitが初期ブランチをチェックアウトするためにblobをダウンロードする必要がないよう、`--bare`オプションを使用しています。このクローンにblobが含まれていないことは、次のコマンドで確認できます。\n\n```sh\n$ git cat-file --batch-all-objects --batch-check='%(objecttype)' | sort | uniq -c\n  83977 commit\n 161927 tree\n```\n\nもしこのリポジトリ内のファイル内容を確認したい場合、Gitはそのファイルをダウンロードする必要があります。\n\n```sh\n$ git cat-file -p HEAD:README.md\nremote: Enumerating objects: 1, done.\nremote: Total 1 (delta 0), reused 0 (delta 0), pack-reused 1 (from 1)\nReceiving objects: 100% (1/1), 1.64 KiB | 1.64 MiB/s, done.\n\n[![Build status](https://github.com/git/git/workflows/CI/badge.svg)](https://github.com/git/git/actions?query=branch%3Amaster+event%3Apush)\n\nGit - fast, scalable, distributed revision control system\n=========================================================\n\nGit is a fast, scalable, distributed revision control system with an\nunusually rich command set that provides both high-level operations\nand full access to internals.\n\n[中略]\n```\n\nご覧のとおり、Gitはまずリモートリポジトリにアクセスし、blobをダウンロードしてから内容を表示しています。\n\nこのファイルに対して`git-blame(1)`を実行したい場合は、さらに多くのデータをダウンロードする必要があります。\n\n```sh\n$ git blame HEAD README.md\nremote: Enumerating objects: 1, done.\nremote: Counting objects: 100% (1/1), done.\nremote: Total 1 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)\nReceiving objects: 100% (1/1), 1.64 KiB | 1.64 MiB/s, done.\nremote: Enumerating objects: 1, done.\nremote: Counting objects: 100% (1/1), done.\nremote: Total 1 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)\nReceiving objects: 100% (1/1), 1.64 KiB | 1.64 MiB/s, done.\nremote: Enumerating objects: 1, done.\nremote: Counting objects: 100% (1/1), done.\nremote: Total 1 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)\nReceiving objects: 100% (1/1), 1.64 KiB | 1.64 MiB/s, done.\nremote: Enumerating objects: 1, done.\n\n[中略]\n\ndf7375d772 README.md (Ævar Arnfjörð Bjarmason 2021-11-23 17:29:09 +0100  1) [![Build status](https://github.com/git/git/workflows/CI/badge.svg)](https://github.com/git/git/actions?query=branch%3Amaster+event%3Apush)\n5f7864663b README.md (Johannes Schindelin \t2019-01-29 06:19:32 -0800  2)\n28513c4f56 README.md (Matthieu Moy        \t2016-02-25 09:37:29 +0100  3) Git - fast, scalable, distributed revision control system\n28513c4f56 README.md (Matthieu Moy        \t2016-02-25 09:37:29 +0100  4) =========================================================\n556b6600b2 README\t(Nicolas Pitre       \t2007-01-17 13:04:39 -0500  5)\n556b6600b2 README\t(Nicolas Pitre       \t2007-01-17 13:04:39 -0500  6) Git is a fast, scalable, distributed revision control system with an\n556b6600b2 README\t(Nicolas Pitre       \t2007-01-17 13:04:39 -0500  7) unusually rich command set that provides both high-level operations\n556b6600b2 README\t(Nicolas Pitre       \t2007-01-17 13:04:39 -0500  8) and full access to internals.\n556b6600b2 README\t(Nicolas Pitre       \t2007-01-17 13:04:39 -0500  9)\n\n[中略]\n```\n\n出力は省略していますが、ご覧のように、Gitはそのファイルの各リビジョンについて個別にサーバーへアクセスしています。これはとても非効率的です。そこで`git-backfill(1)`を使えば、Gitに対してすべてのblobを一括でダウンロードするよう指示できます。\n\n```shell\n$ git backfill\nremote: Enumerating objects: 50711, done.\nremote: Counting objects: 100% (15438/15438), done.\nremote: Compressing objects: 100% (708/708), done.\nremote: Total 50711 (delta 15154), reused 14730 (delta 14730), pack-reused 35273 (from 1)\nReceiving objects: 100% (50711/50711), 11.62 MiB | 12.28 MiB/s, done.\nResolving deltas: 100% (49154/49154), done.\nremote: Enumerating objects: 50017, done.\nremote: Counting objects: 100% (10826/10826), done.\nremote: Compressing objects: 100% (634/634), done.\nremote: Total 50017 (delta 10580), reused 10192 (delta 10192), pack-reused 39191 (from 1)\nReceiving objects: 100% (50017/50017), 12.17 MiB | 12.33 MiB/s, done.\nResolving deltas: 100% (48301/48301), done.\nremote: Enumerating objects: 47303, done.\nremote: Counting objects: 100% (7311/7311), done.\nremote: Compressing objects: 100% (618/618), done.\nremote: Total 47303 (delta 7021), reused 6693 (delta 6693), pack-reused 39992 (from 1)\nReceiving objects: 100% (47303/47303), 40.84 MiB | 15.26 MiB/s, done.\nResolving deltas: 100% (43788/43788), done.\n```\n\nこれにより、すべてのblobが補完され、ブロブを含まないクローンが完全なクローンになります。\n\n```shell\n$ git cat-file --batch-all-objects --batch-check='%(objecttype)' | sort | uniq -c\n 148031 blob\n  83977 commit\n 161927 tree\n```\n\nこの[プロジェクト](https://lore.kernel.org/git/pull.1820.v3.git.1738602667.gitgitgadget@gmail.com/)は[Derrick Stolee](https://stolee.dev/)によって主導され、[e565f37553](https://gitlab.com/gitlab-org/git/-/commit/e565f3755342caf1d21e22359eaf09ec11d8c0ae)でマージされました。\n\n## zlib-ngの導入\n\n`.git/`フォルダ内のすべてのオブジェクトは、Gitによって[`zlib`](https://zlib.net/)を使って圧縮されています。`zlib`は[RFC\n1950](https://datatracker.ietf.org/doc/html/rfc1950)（ZLIB圧縮データフォーマット）のリファレンス実装であり、1995年に作られました。`zlib`は長い歴史を持ち、非常に高い移植性があり、\nインターネット以前の多くのシステムもサポートしています。このように幅広いアーキテクチャやコンパイラをサポートしている一方で、\nzlibには機能面での制限もあります。\n\nその制限に対応するために生まれたのが[`zlib-ng`](https://github.com/zlib-ng/zlib-ng)というフォークです。\n`zlib-ng`は、現代的なシステム向けに最適化されることを目指しており、レガシーシステムのサポートを廃止する代わりに、\nIntel向けの最適化パッチや、Cloudflareによる最適化、その他いくつかの小規模なパッチが取り込まれています。\n\n`zlib-ng`ライブラリ自体は`zlib`との互換レイヤーを提供しており、この互換性により、`zlib-ng`を`zlib`の代替としてそのまま差し替えて使うことが可能です。\nただし、この互換レイヤーはすべてのLinuxディストリビューションで利用できるわけではありません。Git 2.49では以下の変更が加えられました。\n\n- Gitプロジェクトへのzlib-ng互換レイヤーの追加\n- [`Makefile`](https://gitlab.com/gitlab-org/git/-/blob/b9d6f64393275b505937a8621a6cc4875adde8e0/Makefile#L186-187)および[Mesonビルドファイル](https://gitlab.com/gitlab-org/git/-/blob/b9d6f64393275b505937a8621a6cc4875adde8e0/meson.build#L795-811)へのビルドオプションの追加\n\nこれらの追加により、`zlib-ng`によるパフォーマンス向上の恩恵を受けやすくなりました。\n\nローカルでのベンチマークでは、`zlib`ではなく`zlib-ng`を使用することで約25%の高速化が確認されています。現在、これらの変更をGitLab.comにも順次導入中です。\n\n`zlib-ng`によるパフォーマンス向上の恩恵を受けたい場合は、まず`git version --build-options`コマンドを実行して、お使いのマシンでGitがすでに`zlib-ng`を使用しているかどうかを確認してください。\n\n```shell\n$ git version --build-options\ngit version 2.47.1\ncpu: x86_64\nno commit associated with this build\nsizeof-long: 8\nsizeof-size_t: 8\nshell-path: /bin/sh\nlibcurl: 8.6.0\nOpenSSL: OpenSSL 3.2.2 4 Jun 2024\nzlib: 1.3.1.zlib-ng\n```\n\n出力の一番下の行に`zlib-ng`と表示されていれば、すでにGitは高速な`zlib`のバリアントでビルドされています。表示されていない場合は、以下のいずれかの方法で対応できます。\n\n- お使いのGitパッケージのメンテナーに、`zlib-ng`のサポートを有効にしてもらうよう依頼する\n- Gitをソースコードから自分でビルドする\n\nなお、これらの[変更](https://gitlab.com/gitlab-org/git/-/commit/9d0e81e2ae3bd7f6d8a655be53c2396d7af3d2b0)\nは[Patrick Steinhardt](https://gitlab.com/pks-gitlab)によって[導入](https://lore.kernel.org/git/20250128-b4-pks-compat-drop-uncompress2-v4-0-129bc36ae8f5@pks.im/)されました。\n\n## Mesonの継続的なイテレーション\n\nGit 2.48のリリースについて紹介した記事では、[Mesonビルドシステムの導入](https://about.gitlab.com/ja-jp/blog/whats-new-in-git-2-48-0/#meson%E3%83%93%E3%83%AB%E3%83%89%E3%82%B7%E3%82%B9%E3%83%86%E3%83%A0)について触れました。[Meson](https://ja.wikipedia.org/wiki/Meson_(%E3%82%BD%E3%83%95%E3%83%88%E3%82%A6%E3%82%A7%E3%82%A2))は、Gitプロジェクトで使用されるビルド自動化ツールで、将来的には[Autoconf](https://ja.wikipedia.org/wiki/Autoconf),\n[CMake](https://ja.wikipedia.org/wiki/CMake)さらには\n[Make](https://ja.wikipedia.org/wiki/Make_(UNIX))に取って代わる可能性もあります。\n\n今回のリリースサイクルでも、Mesonの利用に関する作業が引き続き進められ、不足していた機能の追加や安定性向上のための以下の修正が行われました。\n\n  - [CIのテストカバレッジ改善](https://lore.kernel.org/git/20250122-b4-pks-meson-additions-v3-0-5a51eb5d3dcd@pks.im/)が、コミット[72f1ddfbc9](https://gitlab.com/gitlab-org/git/-/commit/72f1ddfbc95b47c6011bb423e6947418d1d72709)でマージされました\n- [`contrib/`ディレクトリでMesonを使えるようにする作業の一部](https://lore.kernel.org/git/20250219-b4-pks-meson-contrib-v2-0-1ba5d7fde0b9@pks.im/)が、コミット[2a1530a953](https://gitlab.com/gitlab-org/git/-/commit/2a1530a953cc4d2ae62416db86c545c7ccb73ace)でマージされました\n  - [Mesonベースのビルド手順に関する修正や改善](https://lore.kernel.org/git/20250226-b4-pks-meson-improvements-v3-0-60c77cf673ae@pks.im/)が、コミット[ab09eddf60](https://gitlab.com/gitlab-org/git/-/commit/ab09eddf601501290b5c719574fbe6c02314631f)でマージされました\n  - [git-subtree(1)のビルドにMesonを対応させる変更](https://lore.kernel.org/git/20250117-b4-pks-build-subtree-v1-0-03c2ed6cc42e@pks.im/)が、コミット[3ddeb7f337](https://gitlab.com/gitlab-org/git/-/commit/3ddeb7f3373ae0e309d9df62ada24375afa456c7)でマージされました\n  - [MesonにHTMLドキュメントページの生成を学習させる変更](https://lore.kernel.org/git/20241227-b4-pks-meson-docs-v2-0-f61e63edbfa1@pks.im/)が、コミット[1b4e9a5f8b](https://gitlab.com/gitlab-org/git/-/commit/1b4e9a5f8b5f048972c21fe8acafe0404096f694)でマージされました\n\nこれらの作業はすべて[Patrick Steinhardt](https://gitlab.com/pks-gitlab)によって行われました。\n\n## .git/branches/および.git/remotes/の非推奨化\n\nおそらく、 `.git`ディレクトリやその中身についてはご存じかと思います。\nしかし、 `.git/branches/`や`.git/remotes/`というサブディレクトリの存在についてはどうでしょうか？\nご存じの通り、ブランチへの参照は`.git/refs/heads/`に保存されているため、`.git/branches/`はそのための場所ではありません。そして、`.git/remotes/`の用途は何でしょうか？\n\n2005年、[`.git/branches/`](https://git-scm.com/docs/git-fetch#_named_file_in_git_dirbranches)はリモートの短縮名を保存するために導入されました。そしてその数か月後に、それらは[`.git/remotes/`](https://git-scm.com/docs/git-fetch#_named_file_in_git_dirremotes)に移動されました。\n[2006年](https://lore.kernel.org/git/Pine.LNX.4.63.0604301520460.2646@wbgn013.biozentrum.uni-wuerzburg.de/)には、[`git-config(1)`](https://git-scm.com/docs/git-config)に[リモート](https://git-scm.com/docs/git-config#Documentation/git-config.txt-remoteltnamegturl)設定を保存する機能が追加され、\nこれがリモートを設定する標準的な方法として定着しました。\nその後2011年には、`.git/branches/`と`.git/remotes/`は「レガシー」であることが[文書化](https://gitlab.com/git-scm/git/-/commit/3d3d282146e13f2d7f055ad056956fd8e5d7ed29#e615263aaf131d42be8b0d0888ebd3fec954c6c9_132_124)され、現代のリポジトリでは使用されなくなりました。\n\nそして2024年、Gitの次のメジャーバージョン（v3.0）の破壊的な変更の概要をまとめるドキュメント[破壊的な変更](https://git-scm.com/docs/BreakingChanges)が作成されました。\nこのリリースはすぐに行われる予定はありませんが、このドキュメントにはそのリリースに含まれると予想される変更点について記載されています。\nコミット[8ccc75c245](https://gitlab.com/git-scm/git/-/commit/8ccc75c2452b5814d2445d60d54266293ca48674)では、`.git/branches/`および`.git/remotes/`ディレクトリの使用に関する内容がこのドキュメントに追加され、これにより公式に非推奨とされ、Git 3.0で削除予定であることが明示されました。\n\n[この非推奨化を正式に文書化](https://lore.kernel.org/git/20250122-pks-remote-branches-deprecation-v4-5-5cbf5b28afd5@pks.im/)した[Patrick Steinhardt](https://gitlab.com/pks-gitlab)に感謝します。\n\n## libgitに対するRustバインディング\n\nGitをコンパイルすると、内部ライブラリ`libgit.a`が生成されます。このライブラリには、Gitの中核となる機能の一部が含まれています。\n\nこのライブラリ（およびGitの大部分）はC言語で書かれていますが、Git 2.49では一部の関数をRustから使えるようにするためのバインディングが追加されました。この実現のために、2つの新しいCargoパッケージ、`libgit-sys`と`libgit-rs`が作成されました。これらのパッケージは、GitのSourceTree内の[`contrib/`](https://gitlab.com/gitlab-org/git/-/tree/master/contrib)サブディレクトリに配置されています。\n\n[他言語関数インターフェイス](https://ja.wikipedia.org/wiki/Foreign_function_interface)を使う場合、ライブラリを2つのパッケージに分けるのは[一般的](https://doc.rust-lang.org/cargo/reference/build-scripts.html#-sys-packages)な手法です。\n`libgit-sys`パッケージは、C関数への純粋なインターフェースを提供し、ネイティブの`libgit.a`にリンクします。一方、`libgit-rs`パッケージは、`libgit-sys`の関数をRustらしいスタイルで扱える高レベルなインターフェースを提供します。\n\n現時点では、これらのRustパッケージで使える機能は非常に限定的で、対応しているのは`git-config(1)`とやり取りするためのインターフェースのみです。\n\nこの取り組みは[Josh Steadmon](https://lore.kernel.org/git/8793ff64a7f6c4c04dd03b71162a85849feda944.1738187176.git.steadmon@google.com/)さんによって主導され、コミット[a4af0b6288](https://gitlab.com/gitlab-org/git/-/commit/a4af0b6288e25eb327ae9018cee09def9e43f1cd)でマージされました。\n\n## 新しい名前ハッシュアルゴリズム\n\n`.git/`にあるGitのオブジェクトデータベースは、その大部分のデータを パックファイルに保存しています。また、このパックファイルは、Gitのサーバーとクライアント間でオブジェクトをやり取りする際にも使われます。\n\nパックファイルのフォーマットについては、[`gitformat-pack(5)`](https://git-scm.com/docs/gitformat-pack)に詳しく書かれていますが、その中でも重要なのが差分圧縮です。差分圧縮では、すべてのオブジェクトがそのまま保存されるわけではなく、一部のオブジェクトは他のオブジェクトとの_差分_として保存されます。つまり、オブジェクトの内容全体を保存するのではなく、他のオブジェクトと比較した変更点だけを記録します。\n\n差分の計算や保存方法についてはここでは詳しく触れませんが、\n非常に似ているファイルをグループ化しておくことが重要なのは想像できるかと思います。Git v2.48以前では、Gitは「ファイルパスの最後の16文字」をもとに、blobが似ているかどうかを判断していました。このアルゴリズムはバージョン`1`と呼ばれています。\n\nGit 2.49では、バージョン`2`のアルゴリズムが追加されました。これはバージョン`1`のイテレーションで、親ディレクトリの影響を減らすように調整されたバージョンです。どちらのアルゴリズムを使用するかは、[`git-repack(1)`](https://git-scm.com/docs/git-repack)の`--name-hash-version`オプションで指定できます。\n\n以下は、このプロジェクトを推進した[Derrick Stolee](https://stolee.dev/)さんによる、`git repack -adf --name-hash-version=\u003Cn>`を実行した際のパックファイルサイズの比較です。\n\n| リポジトリ                                          \t| バージョン1のサイズ   | バージョン2のサイズ |\n|---------------------------------------------------|-----------|---------|\n| [fluentui](https://github.com/microsoft/fluentui) | 440 MB \t| 161 MB   |\n| Repo B                                        \t| 6,248 MB   | 856 MB   |\n| Repo C                                        \t| 37,278 MB  | 6,921 MB |\n| Repo D                                        \t| 131,204 MB | 7,463 MB |\n\nこの件に関する詳細は、コミット[aae91a86fb](https://gitlab.com/gitlab-org/git/-/commit/aae91a86fb2a71ff89a71b63ccec3a947b26ca51)にマージされた[パッチセット](https://lore.kernel.org/git/pull.1823.v4.git.1738004554.gitgitgadget@gmail.com/)にて確認できます。\n\n## プロミサーリモート機能\n\nGitが大きなファイルを扱うのに向いていないことは、よく知られています。この問題に対する解決策として、[Git LFS](https://git-lfs.com/)のようなツールがありますが、依然として以下のような欠点が残っています。\n\n- Git LFSでは、どのファイルをLFSに入れるかをユーザーが自分で設定する必要があり、サーバー側ではそれについて制御できず、すべてのファイルを提供する必要があります。\n- リポジトリにファイルがコミットされると、履歴を書き換えない限り、それを取り除く方法がありません。これは特に大きなファイルでは厄介で、一度入れると永遠に残ってしまいます。\n- ユーザーは、Git LFSに入れるファイルを後から変更することはできません。\n- Git LFS のようなツールは、導入・学習・運用すべてにそれなりの労力が必要です。\n\n以前からGitにはプロミサーリモートという概念が存在しており、この機能を大きなファイルに対処するための手段として利用できます。そしてGit 2.49では、この機能がさらに一歩前進しました。\n\n新しい「プロミサーリモート」機能の考え方は比較的シンプルです。Gitサーバーがすべてのオブジェクトを自ら送信する代わりに、「これらのオブジェクトは_XYZ_からダウンロードしてね」とGitクライアントに伝えます。この_XYZ_がプロミサーリモートです。\n\nGit 2.49では、サーバーがプロミサーリモートの情報をクライアントに通知できるようになりました。この変更は、[`gitprotocol-v2`](https://git-scm.com/docs/gitprotocol-v2)の拡張として行われています。サーバーとクライアントがデータを送受信している間に、サーバーは自分が知っているプロミサーリモートの名前やURLをクライアントに送信します。\n\n現時点では、Gitクライアントはクローン時にサーバーから受け取ったプロミサーリモートの情報をまだ利用していません。つまり、今のところは、クローン元のリモートからすべてのオブジェクトを取得しています。しかし今後は、サーバーから受け取ったプロミサーリモート情報を活用できるように開発を進め、より簡単に使える仕組みにしていく予定です。\n\nこの[パッチセット](https://lore.kernel.org/git/20250218113204.2847463-1-christian.couder@gmail.com/)は[Christian Couder](https://gitlab.com/chriscool)さんによって提出され、コミット[2c6fd30198](https://gitlab.com/gitlab-org/git/-/commit/2c6fd30198187c928cbf927802556908c381799c)でマージされました。\n\n## `--revision`を使用した軽量なクローン\n\n[`git-clone(1)`](https://git-scm.com/docs/git-clone)に新しく`--revision`オプションが追加されました。このオプションを使うことで、指定されたリビジョンの履歴のみを含む、軽量なクローンを作成できます。このオプションは`--branch`に似ていますが、`refs/heads/main`、`refs/tags/v1.0`、`refs/merge-requests/123`のような リファレンス名や、16進数のコミットオブジェクトIDを受け取る点が異なります。`--branch`との違いは、このオプションでは追跡ブランチが作られず、`HEAD`がデタッチ状態になる点です。そのため、このクローンを使ってブランチにコントリビュートするといった用途には向いていません。\n\n`--revision`と`--depth`を組み合わせて使うことで、非常にミニマルなクローンを作成できます。おすすめの用途は、自動テストです。たとえば、CIシステムが特定のブランチ（またはリファレンス）をチェックアウトして、ソースコードのテストを行うだけでいい場合、この最小限のクローンで十分です。\n\nこの[変更](https://gitlab.com/gitlab-org/git/-/commit/5785d9143bcb3ef19452a83bc2e870ff3d5ed95a)は[Toon Claes](https://gitlab.com/toon)さんによって[推進](https://lore.kernel.org/git/20250206-toon-clone-refs-v7-0-4622b7392202@iotcl.com/)されました。\n\n# もっと詳しく\n- [Git 2.48.0の新機能](https://about.gitlab.com/ja-jp/blog/whats-new-in-git-2-48-0/)\n- [Git 2.47.0の新機能](https://about.gitlab.com/blog/whats-new-in-git-2-47-0/)\n- [Git 2.46.0の新機能](https://about.gitlab.com/blog/whats-new-in-git-2-46-0/)","open-source",[23,24,25],"community","open source","git",{"slug":27,"featured":28,"template":29},"whats-new-in-git-2-49-0",true,"BlogPost","content:ja-jp:blog:whats-new-in-git-2-49-0.yml","yaml","Whats New In Git 2 49 0","content","ja-jp/blog/whats-new-in-git-2-49-0.yml","ja-jp/blog/whats-new-in-git-2-49-0","yml",{"_path":38,"_dir":39,"_draft":6,"_partial":6,"_locale":7,"data":40,"_id":446,"_type":31,"title":447,"_source":33,"_file":448,"_stem":449,"_extension":36},"/shared/ja-jp/main-navigation","ja-jp",{"logo":41,"freeTrial":46,"sales":51,"login":56,"items":61,"search":390,"minimal":424,"duo":437},{"config":42},{"href":43,"dataGaName":44,"dataGaLocation":45},"/ja-jp/","gitlab logo","header",{"text":47,"config":48},"無料トライアルを開始",{"href":49,"dataGaName":50,"dataGaLocation":45},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":52,"config":53},"お問い合わせ",{"href":54,"dataGaName":55,"dataGaLocation":45},"/ja-jp/sales/","sales",{"text":57,"config":58},"サインイン",{"href":59,"dataGaName":60,"dataGaLocation":45},"https://gitlab.com/users/sign_in/","sign in",[62,106,203,208,312,372],{"text":63,"config":64,"cards":66,"footer":89},"プラットフォーム",{"dataNavLevelOne":65},"platform",[67,73,81],{"title":63,"description":68,"link":69},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":70,"config":71},"プラットフォームを詳しく見る",{"href":72,"dataGaName":65,"dataGaLocation":45},"/ja-jp/platform/",{"title":74,"description":75,"link":76},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":77,"config":78},"GitLab Duoのご紹介",{"href":79,"dataGaName":80,"dataGaLocation":45},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":82,"description":83,"link":84},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":85,"config":86},"詳細はこちら",{"href":87,"dataGaName":88,"dataGaLocation":45},"/ja-jp/why-gitlab/","why gitlab",{"title":90,"items":91},"利用を開始：",[92,97,102],{"text":93,"config":94},"プラットフォームエンジニアリング",{"href":95,"dataGaName":96,"dataGaLocation":45},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":98,"config":99},"開発者の経験",{"href":100,"dataGaName":101,"dataGaLocation":45},"/ja-jp/developer-experience/","Developer experience",{"text":103,"config":104},"MLOps",{"href":105,"dataGaName":103,"dataGaLocation":45},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":107,"left":28,"config":108,"link":110,"lists":114,"footer":185},"製品",{"dataNavLevelOne":109},"solutions",{"text":111,"config":112},"すべてのソリューションを表示",{"href":113,"dataGaName":109,"dataGaLocation":45},"/ja-jp/solutions/",[115,141,163],{"title":116,"description":117,"link":118,"items":123},"自動化","CI/CDと自動化でデプロイを加速",{"config":119},{"icon":120,"href":121,"dataGaName":122,"dataGaLocation":45},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[124,128,132,137],{"text":125,"config":126},"CI/CD",{"href":127,"dataGaLocation":45,"dataGaName":125},"/ja-jp/solutions/continuous-integration/",{"text":129,"config":130},"AIアシストによる開発",{"href":79,"dataGaLocation":45,"dataGaName":131},"AI assisted development",{"text":133,"config":134},"ソースコード管理",{"href":135,"dataGaLocation":45,"dataGaName":136},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":138,"config":139},"自動化されたソフトウェアデリバリー",{"href":121,"dataGaLocation":45,"dataGaName":140},"Automated software delivery",{"title":142,"description":143,"link":144,"items":149},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":145},{"href":146,"dataGaName":147,"dataGaLocation":45,"icon":148},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[150,154,159],{"text":151,"config":152},"Application Security Testing",{"href":146,"dataGaName":153,"dataGaLocation":45},"Application security testing",{"text":155,"config":156},"ソフトウェアサプライチェーンの安全性",{"href":157,"dataGaLocation":45,"dataGaName":158},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":160,"config":161},"Software Compliance",{"href":162,"dataGaName":160,"dataGaLocation":45},"/ja-jp/solutions/software-compliance/",{"title":164,"link":165,"items":170},"測定",{"config":166},{"icon":167,"href":168,"dataGaName":169,"dataGaLocation":45},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[171,175,180],{"text":172,"config":173},"可視性と測定",{"href":168,"dataGaLocation":45,"dataGaName":174},"Visibility and Measurement",{"text":176,"config":177},"バリューストリーム管理",{"href":178,"dataGaLocation":45,"dataGaName":179},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":181,"config":182},"分析とインサイト",{"href":183,"dataGaLocation":45,"dataGaName":184},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":186,"items":187},"GitLabが活躍する場所",[188,193,198],{"text":189,"config":190},"Enterprise",{"href":191,"dataGaLocation":45,"dataGaName":192},"/ja-jp/enterprise/","enterprise",{"text":194,"config":195},"スモールビジネス",{"href":196,"dataGaLocation":45,"dataGaName":197},"/ja-jp/small-business/","small business",{"text":199,"config":200},"公共機関",{"href":201,"dataGaLocation":45,"dataGaName":202},"/ja-jp/solutions/public-sector/","public sector",{"text":204,"config":205},"価格",{"href":206,"dataGaName":207,"dataGaLocation":45,"dataNavLevelOne":207},"/ja-jp/pricing/","pricing",{"text":209,"config":210,"link":212,"lists":216,"feature":299},"関連リソース",{"dataNavLevelOne":211},"resources",{"text":213,"config":214},"すべてのリソースを表示",{"href":215,"dataGaName":211,"dataGaLocation":45},"/ja-jp/resources/",[217,250,272],{"title":218,"items":219},"はじめに",[220,225,230,235,240,245],{"text":221,"config":222},"インストール",{"href":223,"dataGaName":224,"dataGaLocation":45},"/ja-jp/install/","install",{"text":226,"config":227},"クイックスタートガイド",{"href":228,"dataGaName":229,"dataGaLocation":45},"/ja-jp/get-started/","quick setup checklists",{"text":231,"config":232},"学ぶ",{"href":233,"dataGaLocation":45,"dataGaName":234},"https://university.gitlab.com/","learn",{"text":236,"config":237},"製品ドキュメント",{"href":238,"dataGaName":239,"dataGaLocation":45},"https://docs.gitlab.com/","product documentation",{"text":241,"config":242},"ベストプラクティスビデオ",{"href":243,"dataGaName":244,"dataGaLocation":45},"/ja-jp/getting-started-videos/","best practice videos",{"text":246,"config":247},"インテグレーション",{"href":248,"dataGaName":249,"dataGaLocation":45},"/ja-jp/integrations/","integrations",{"title":251,"items":252},"検索する",[253,258,262,267],{"text":254,"config":255},"お客様成功事例",{"href":256,"dataGaName":257,"dataGaLocation":45},"/ja-jp/customers/","customer success stories",{"text":259,"config":260},"ブログ",{"href":261,"dataGaName":5,"dataGaLocation":45},"/ja-jp/blog/",{"text":263,"config":264},"リモート",{"href":265,"dataGaName":266,"dataGaLocation":45},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":268,"config":269},"TeamOps",{"href":270,"dataGaName":271,"dataGaLocation":45},"/ja-jp/teamops/","teamops",{"title":273,"items":274},"つなげる",[275,280,284,289,294],{"text":276,"config":277},"GitLabサービス",{"href":278,"dataGaName":279,"dataGaLocation":45},"/ja-jp/services/","services",{"text":281,"config":282},"コミュニティ",{"href":283,"dataGaName":23,"dataGaLocation":45},"/community/",{"text":285,"config":286},"フォーラム",{"href":287,"dataGaName":288,"dataGaLocation":45},"https://forum.gitlab.com/","forum",{"text":290,"config":291},"イベント",{"href":292,"dataGaName":293,"dataGaLocation":45},"/events/","events",{"text":295,"config":296},"パートナー",{"href":297,"dataGaName":298,"dataGaLocation":45},"/ja-jp/partners/","partners",{"backgroundColor":300,"textColor":301,"text":302,"image":303,"link":307},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":304,"config":305},"ソースプロモカード",{"src":306},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":308,"config":309},"最新情報を読む",{"href":310,"dataGaName":311,"dataGaLocation":45},"/ja-jp/the-source/","the source",{"text":313,"config":314,"lists":316},"会社情報",{"dataNavLevelOne":315},"company",[317],{"items":318},[319,324,330,332,337,342,347,352,357,362,367],{"text":320,"config":321},"GitLabについて",{"href":322,"dataGaName":323,"dataGaLocation":45},"/ja-jp/company/","about",{"text":325,"config":326,"footerGa":329},"採用情報",{"href":327,"dataGaName":328,"dataGaLocation":45},"/jobs/","jobs",{"dataGaName":328},{"text":290,"config":331},{"href":292,"dataGaName":293,"dataGaLocation":45},{"text":333,"config":334},"経営陣",{"href":335,"dataGaName":336,"dataGaLocation":45},"/company/team/e-group/","leadership",{"text":338,"config":339},"チーム",{"href":340,"dataGaName":341,"dataGaLocation":45},"/company/team/","team",{"text":343,"config":344},"ハンドブック",{"href":345,"dataGaName":346,"dataGaLocation":45},"https://handbook.gitlab.com/","handbook",{"text":348,"config":349},"投資家向け情報",{"href":350,"dataGaName":351,"dataGaLocation":45},"https://ir.gitlab.com/","investor relations",{"text":353,"config":354},"トラストセンター",{"href":355,"dataGaName":356,"dataGaLocation":45},"/ja-jp/security/","trust center",{"text":358,"config":359},"AI Transparency Center",{"href":360,"dataGaName":361,"dataGaLocation":45},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":363,"config":364},"ニュースレター",{"href":365,"dataGaName":366,"dataGaLocation":45},"/company/contact/","newsletter",{"text":368,"config":369},"プレス",{"href":370,"dataGaName":371,"dataGaLocation":45},"/press/","press",{"text":52,"config":373,"lists":374},{"dataNavLevelOne":315},[375],{"items":376},[377,380,385],{"text":52,"config":378},{"href":54,"dataGaName":379,"dataGaLocation":45},"talk to sales",{"text":381,"config":382},"サポートを受ける",{"href":383,"dataGaName":384,"dataGaLocation":45},"/support/","get help",{"text":386,"config":387},"カスタマーポータル",{"href":388,"dataGaName":389,"dataGaLocation":45},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":391,"login":392,"suggestions":399},"閉じる",{"text":393,"link":394},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":395,"config":396},"GitLab.com",{"href":59,"dataGaName":397,"dataGaLocation":398},"search login","search",{"text":400,"default":401},"提案",[402,405,410,412,416,420],{"text":74,"config":403},{"href":79,"dataGaName":404,"dataGaLocation":398},"GitLab Duo (AI)",{"text":406,"config":407},"コード提案（AI）",{"href":408,"dataGaName":409,"dataGaLocation":398},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":125,"config":411},{"href":127,"dataGaName":125,"dataGaLocation":398},{"text":413,"config":414},"GitLab on AWS",{"href":415,"dataGaName":413,"dataGaLocation":398},"/ja-jp/partners/technology-partners/aws/",{"text":417,"config":418},"GitLab on Google Cloud",{"href":419,"dataGaName":417,"dataGaLocation":398},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":421,"config":422},"GitLabを選ぶ理由",{"href":87,"dataGaName":423,"dataGaLocation":398},"Why GitLab?",{"freeTrial":425,"mobileIcon":429,"desktopIcon":434},{"text":47,"config":426},{"href":427,"dataGaName":50,"dataGaLocation":428},"https://gitlab.com/-/trials/new/","nav",{"altText":430,"config":431},"GitLabアイコン",{"src":432,"dataGaName":433,"dataGaLocation":428},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":430,"config":435},{"src":436,"dataGaName":433,"dataGaLocation":428},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":438,"mobileIcon":442,"desktopIcon":444},{"text":439,"config":440},"GitLab Duoの詳細について",{"href":79,"dataGaName":441,"dataGaLocation":428},"gitlab duo",{"altText":430,"config":443},{"src":432,"dataGaName":433,"dataGaLocation":428},{"altText":430,"config":445},{"src":436,"dataGaName":433,"dataGaLocation":428},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":451,"_dir":39,"_draft":6,"_partial":6,"_locale":7,"title":452,"button":453,"config":458,"_id":460,"_type":31,"_source":33,"_file":461,"_stem":462,"_extension":36},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":454,"config":455},"ベータ版を試す",{"href":456,"dataGaName":457,"dataGaLocation":45},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":459},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":464,"_dir":39,"_draft":6,"_partial":6,"_locale":7,"data":465,"_id":669,"_type":31,"title":670,"_source":33,"_file":671,"_stem":672,"_extension":36},"/shared/ja-jp/main-footer",{"text":466,"source":467,"edit":473,"contribute":478,"config":483,"items":488,"minimal":661},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":468,"config":469},"ページのソースを表示",{"href":470,"dataGaName":471,"dataGaLocation":472},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":474,"config":475},"このページを編集",{"href":476,"dataGaName":477,"dataGaLocation":472},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":479,"config":480},"ご協力をお願いします",{"href":481,"dataGaName":482,"dataGaLocation":472},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":484,"facebook":485,"youtube":486,"linkedin":487},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[489,512,566,598,633],{"title":63,"links":490,"subMenu":495},[491],{"text":492,"config":493},"DevSecOpsプラットフォーム",{"href":72,"dataGaName":494,"dataGaLocation":472},"devsecops platform",[496],{"title":204,"links":497},[498,502,507],{"text":499,"config":500},"プランの表示",{"href":206,"dataGaName":501,"dataGaLocation":472},"view plans",{"text":503,"config":504},"Premiumを選ぶ理由",{"href":505,"dataGaName":506,"dataGaLocation":472},"/ja-jp/pricing/premium/","why premium",{"text":508,"config":509},"Ultimateを選ぶ理由",{"href":510,"dataGaName":511,"dataGaLocation":472},"/ja-jp/pricing/ultimate/","why ultimate",{"title":513,"links":514},"ソリューション",[515,520,523,525,530,535,539,542,545,550,552,554,556,561],{"text":516,"config":517},"デジタルトランスフォーメーション",{"href":518,"dataGaName":519,"dataGaLocation":472},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":521,"config":522},"セキュリティとコンプライアンス",{"href":146,"dataGaName":153,"dataGaLocation":472},{"text":138,"config":524},{"href":121,"dataGaName":122,"dataGaLocation":472},{"text":526,"config":527},"アジャイル開発",{"href":528,"dataGaName":529,"dataGaLocation":472},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":531,"config":532},"クラウドトランスフォーメーション",{"href":533,"dataGaName":534,"dataGaLocation":472},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":536,"config":537},"SCM",{"href":135,"dataGaName":538,"dataGaLocation":472},"source code management",{"text":125,"config":540},{"href":127,"dataGaName":541,"dataGaLocation":472},"continuous integration & delivery",{"text":176,"config":543},{"href":178,"dataGaName":544,"dataGaLocation":472},"value stream management",{"text":546,"config":547},"GitOps",{"href":548,"dataGaName":549,"dataGaLocation":472},"/ja-jp/solutions/gitops/","gitops",{"text":189,"config":551},{"href":191,"dataGaName":192,"dataGaLocation":472},{"text":194,"config":553},{"href":196,"dataGaName":197,"dataGaLocation":472},{"text":199,"config":555},{"href":201,"dataGaName":202,"dataGaLocation":472},{"text":557,"config":558},"教育",{"href":559,"dataGaName":560,"dataGaLocation":472},"/ja-jp/solutions/education/","education",{"text":562,"config":563},"金融サービス",{"href":564,"dataGaName":565,"dataGaLocation":472},"/ja-jp/solutions/finance/","financial services",{"title":209,"links":567},[568,570,572,574,577,579,582,584,586,588,590,592,594,596],{"text":221,"config":569},{"href":223,"dataGaName":224,"dataGaLocation":472},{"text":226,"config":571},{"href":228,"dataGaName":229,"dataGaLocation":472},{"text":231,"config":573},{"href":233,"dataGaName":234,"dataGaLocation":472},{"text":236,"config":575},{"href":238,"dataGaName":576,"dataGaLocation":472},"docs",{"text":259,"config":578},{"href":261,"dataGaName":5},{"text":580,"config":581},"お客様の成功事例",{"href":256,"dataGaLocation":472},{"text":254,"config":583},{"href":256,"dataGaName":257,"dataGaLocation":472},{"text":263,"config":585},{"href":265,"dataGaName":266,"dataGaLocation":472},{"text":276,"config":587},{"href":278,"dataGaName":279,"dataGaLocation":472},{"text":268,"config":589},{"href":270,"dataGaName":271,"dataGaLocation":472},{"text":281,"config":591},{"href":283,"dataGaName":23,"dataGaLocation":472},{"text":285,"config":593},{"href":287,"dataGaName":288,"dataGaLocation":472},{"text":290,"config":595},{"href":292,"dataGaName":293,"dataGaLocation":472},{"text":295,"config":597},{"href":297,"dataGaName":298,"dataGaLocation":472},{"title":599,"links":600},"Company",[601,603,605,607,609,611,613,617,622,624,626,628],{"text":320,"config":602},{"href":322,"dataGaName":315,"dataGaLocation":472},{"text":325,"config":604},{"href":327,"dataGaName":328,"dataGaLocation":472},{"text":333,"config":606},{"href":335,"dataGaName":336,"dataGaLocation":472},{"text":338,"config":608},{"href":340,"dataGaName":341,"dataGaLocation":472},{"text":343,"config":610},{"href":345,"dataGaName":346,"dataGaLocation":472},{"text":348,"config":612},{"href":350,"dataGaName":351,"dataGaLocation":472},{"text":614,"config":615},"Sustainability",{"href":616,"dataGaName":614,"dataGaLocation":472},"/sustainability/",{"text":618,"config":619},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":620,"dataGaName":621,"dataGaLocation":472},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":353,"config":623},{"href":355,"dataGaName":356,"dataGaLocation":472},{"text":363,"config":625},{"href":365,"dataGaName":366,"dataGaLocation":472},{"text":368,"config":627},{"href":370,"dataGaName":371,"dataGaLocation":472},{"text":629,"config":630},"現代奴隷制の透明性に関する声明",{"href":631,"dataGaName":632,"dataGaLocation":472},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":52,"links":634},[635,637,639,641,646,651,656],{"text":52,"config":636},{"href":54,"dataGaName":55,"dataGaLocation":472},{"text":381,"config":638},{"href":383,"dataGaName":384,"dataGaLocation":472},{"text":386,"config":640},{"href":388,"dataGaName":389,"dataGaLocation":472},{"text":642,"config":643},"ステータス",{"href":644,"dataGaName":645,"dataGaLocation":472},"https://status.gitlab.com/","status",{"text":647,"config":648},"利用規約",{"href":649,"dataGaName":650,"dataGaLocation":472},"/terms/","terms of use",{"text":652,"config":653},"プライバシーに関する声明",{"href":654,"dataGaName":655,"dataGaLocation":472},"/ja-jp/privacy/","privacy statement",{"text":657,"config":658},"Cookieの設定",{"dataGaName":659,"dataGaLocation":472,"id":660,"isOneTrustButton":28},"cookie preferences","ot-sdk-btn",{"items":662},[663,665,667],{"text":647,"config":664},{"href":649,"dataGaName":650,"dataGaLocation":472},{"text":652,"config":666},{"href":654,"dataGaName":655,"dataGaLocation":472},{"text":657,"config":668},{"dataGaName":659,"dataGaLocation":472,"id":660,"isOneTrustButton":28},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",[674,687,698,709,720,731,742,753,763,773,784,795,805,816,827,837,847,857,867,878,888,898,908,919,930,940,951,962,972,983,993,1004,1015,1026,1037,1047,1058,1069,1079,1090,1100,1111,1122,1132,1142,1153,1163,1173,1183,1194,1205,1216,1227,1237,1248,1259,1270,1281,1291,1302,1314,1325,1336,1346,1358,1369,1379,1390,1400,1411,1421,1432,1443,1453,1463,1473,1484,1494,1504,1514,1524,1535,1545,1556,1566,1577,1587,1597,1607,1618,1629,1640,1651,1662,1674,1684,1695,1705,1716,1727,1738,1749,1759,1770,1781,1792,1803,1813,1824,1835,1846,1856,1869,1879,1890,1901,1912,1922,1933,1944,1955,1965,1975,1985,1995,2006,2016,2026,2037,2047,2058,2068,2079,2090,2100,2111,2121,2131,2141,2152,2162,2172,2183,2194,2204,2215,2226,2237,2247,2260,2271,2281,2293,2305,2315,2325,2336,2346,2357,2369,2380,2391,2402,2414,2425,2435,2445,2456,2466,2476,2487,2498,2508,2519,2530,2540,2550,2561,2572,2582,2593,2603,2614,2625,2636,2646,2656,2667,2678,2688,2698,2709,2721,2731,2741,2751,2762,2773,2783,2793,2803,2813,2823,2834,2845,2855,2866,2876,2886,2896,2906,2916,2927,2937,2947,2958,2968,2978,2989,3000,3010,3022,3032,3042,3054,3065,3076,3086,3097,3108,3119,3129,3141,3152,3162,3173,3184,3195,3206,3217,3228,3239,3249,3260,3271,3282,3292,3302,3313,3323,3333,3344,3355,3368,3379,3390,3400,3411,3423,3434,3445,3456,3466,3476,3487,3497,3508,3519,3530,3540,3550,3560,3570,3581,3592,3603,3614,3626,3637,3649,3660,3670,3680,3692,3702,3713,3723,3734,3744,3754,3765,3777,3787,3797,3807,3818,3828,3839,3849,3859,3870,3881,3892,3904,3915,3925,3936,3947,3957,3967,3978,3989,4000,4011,4021,4032,4043,4054,4064,4075,4086,4096,4107,4118,4129,4139,4149,4160,4171,4181,4192,4203,4214,4224,4234,4245,4256,4267,4278,4289,4299,4310,4321,4331,4341,4351,4363,4375,4385,4397,4407,4418,4429,4440,4451,4464,4474,4485,4496,4506,4516,4526,4537,4547,4558,4569,4579,4590,4600,4611,4622,4633,4644,4655,4665,4675,4686,4697,4707,4717,4727,4738,4749,4759,4769,4779,4789,4800,4810,4820,4831,4841,4852,4862,4873,4884,4894,4904,4915,4925,4935,4946,4957,4968,4979,4989,5001,5012,5023,5033,5043,5053,5064,5075,5086,5097,5107,5118,5129,5139,5150,5162,5172,5182,5192,5203,5214,5225,5235,5245,5256,5267,5277,5289,5299,5309,5320,5330,5341,5353,5364,5374,5385,5396,5406,5417,5428,5440,5450,5460,5471,5481,5492,5502,5513,5523,5533,5544,5554,5565,5575,5585,5596,5606,5617,5628,5638,5648,5659,5669,5679,5689,5699,5710,5721,5733,5744,5755,5767,5779,5790,5801,5811,5822,5832,5842,5853,5864,5875,5885,5895,5905,5915,5925,5936,5948,5959,5971,5982,5992,6002,6013,6023,6033,6043,6053,6063,6073,6084,6094,6104,6115,6125,6135,6146,6157,6167,6179,6190,6200,6212,6223,6233,6244,6255,6265,6275,6285,6297,6307,6318,6329,6340,6351,6361,6371,6382,6394,6404,6414,6425,6435,6446,6456,6468,6479,6489,6499,6510,6522,6532,6545,6555,6567,6578,6588,6598,6609,6619,6630,6641,6652,6663,6674,6685,6696,6707,6718,6729,6740,6751,6762,6773,6784,6794,6807,6817,6828,6838,6849,6859,6869,6880,6891,6902,6912,6922,6933,6943,6954,6965,6977,6988,6998,7009,7020,7030,7040,7050,7060,7070,7081,7091,7102,7112,7123,7138,7149,7159,7170,7181,7192,7203,7214,7224,7235,7246,7257,7267,7278,7288,7298,7308,7318,7328,7339,7351,7361,7372,7383,7395,7405,7416,7426,7438,7449,7459,7469,7480,7491,7501,7512,7522,7532,7543,7554,7564,7575,7585,7596,7607,7617,7627,7637,7648,7659,7669,7679,7690,7701,7711,7721,7731,7742,7752,7763,7774,7785,7795,7805,7815,7825,7836,7847,7857,7867,7877,7887,7898],{"_path":675,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":677,"config":682,"_id":684,"_type":31,"title":678,"_source":33,"_file":685,"_stem":686,"_extension":36},"/en-us/blog/authors/aakriti-gupta","authors",{"name":678,"config":679},"Aakriti Gupta",{"headshot":680,"ctfId":681},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":683},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":688,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":689,"config":693,"_id":694,"_type":31,"title":695,"_source":33,"_file":696,"_stem":697,"_extension":36},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":690,"config":691},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":692},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":683},"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":699,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":700,"config":705,"_id":706,"_type":31,"title":701,"_source":33,"_file":707,"_stem":708,"_extension":36},"/en-us/blog/authors/aathira-nair",{"name":701,"config":702},"Aathira Nair",{"headshot":703,"ctfId":704},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":683},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":710,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":711,"config":716,"_id":717,"_type":31,"title":712,"_source":33,"_file":718,"_stem":719,"_extension":36},"/en-us/blog/authors/abdulkader-benchi",{"name":712,"config":713},"Abdulkader Benchi",{"headshot":714,"ctfId":715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":683},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":721,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":722,"config":727,"_id":728,"_type":31,"title":723,"_source":33,"_file":729,"_stem":730,"_extension":36},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":723,"config":724},"Abubakar Siddiq Ango",{"headshot":725,"ctfId":726},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":683},"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":732,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":733,"config":738,"_id":739,"_type":31,"title":734,"_source":33,"_file":740,"_stem":741,"_extension":36},"/en-us/blog/authors/achilleas-pipinellis",{"name":734,"config":735},"Achilleas Pipinellis",{"headshot":736,"ctfId":737},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":683},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":743,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":744,"config":748,"_id":749,"_type":31,"title":750,"_source":33,"_file":751,"_stem":752,"_extension":36},"/en-us/blog/authors/adfinis-sygroup",{"name":745,"config":746},"Adfinis SyGroup",{"headshot":714,"ctfId":747},"Adfinis-SyGroup",{"template":683},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":754,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":755,"config":759,"_id":760,"_type":31,"title":756,"_source":33,"_file":761,"_stem":762,"_extension":36},"/en-us/blog/authors/ahmet-kizilay",{"name":756,"config":757},"Ahmet Kizilay",{"headshot":714,"ctfId":758},"Ahmet-Kizilay",{"template":683},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":764,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":765,"config":769,"_id":770,"_type":31,"title":766,"_source":33,"_file":771,"_stem":772,"_extension":36},"/en-us/blog/authors/akashdeep-dhar",{"name":766,"config":767},"Akashdeep Dhar",{"headshot":7,"ctfId":768},"t0xic0der",{"template":683},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":774,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":775,"config":780,"_id":781,"_type":31,"title":776,"_source":33,"_file":782,"_stem":783,"_extension":36},"/en-us/blog/authors/alana-bellucci",{"name":776,"config":777},"Alana Bellucci",{"headshot":778,"ctfId":779},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":683},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":785,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":786,"config":791,"_id":792,"_type":31,"title":787,"_source":33,"_file":793,"_stem":794,"_extension":36},"/en-us/blog/authors/alex-fracazo",{"name":787,"config":788},"Alex Fracazo",{"headshot":789,"ctfId":790},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":683},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":796,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":797,"config":801,"_id":802,"_type":31,"title":798,"_source":33,"_file":803,"_stem":804,"_extension":36},"/en-us/blog/authors/alex-groleau",{"name":798,"config":799},"Alex Groleau",{"headshot":714,"ctfId":800},"3VVHytQSHu9ehZgsUEJ3qq",{"template":683},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":806,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":807,"config":812,"_id":813,"_type":31,"title":808,"_source":33,"_file":814,"_stem":815,"_extension":36},"/en-us/blog/authors/alex-mark",{"name":808,"config":809},"Alex Mark",{"headshot":810,"ctfId":811},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":683},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":817,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":818,"config":823,"_id":824,"_type":31,"title":819,"_source":33,"_file":825,"_stem":826,"_extension":36},"/en-us/blog/authors/alex-martin",{"name":819,"config":820},"Alex Martin",{"headshot":821,"ctfId":822},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":683},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":828,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":829,"config":833,"_id":834,"_type":31,"title":830,"_source":33,"_file":835,"_stem":836,"_extension":36},"/en-us/blog/authors/alexander-dietrich",{"name":830,"config":831},"Alexander Dietrich",{"headshot":714,"ctfId":832},"2CzeEOPVjjGKpdblIm0JfO",{"template":683},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":838,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":839,"config":843,"_id":844,"_type":31,"title":840,"_source":33,"_file":845,"_stem":846,"_extension":36},"/en-us/blog/authors/alexander-malaev",{"name":840,"config":841},"Alexander Malaev",{"headshot":714,"ctfId":842},"Alexander-Malaev",{"template":683},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":848,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":849,"config":853,"_id":854,"_type":31,"title":850,"_source":33,"_file":855,"_stem":856,"_extension":36},"/en-us/blog/authors/alexander-pereverzevs",{"name":850,"config":851},"Alexander Pereverzevs",{"headshot":7,"ctfId":852},"lokalise",{"template":683},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":858,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":859,"config":863,"_id":864,"_type":31,"title":860,"_source":33,"_file":865,"_stem":866,"_extension":36},"/en-us/blog/authors/alexis-ginsberg",{"name":860,"config":861},"Alexis Ginsberg",{"headshot":714,"ctfId":862},"lmDIchpcDx48jKuke2B4l",{"template":683},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":868,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":869,"config":874,"_id":875,"_type":31,"title":870,"_source":33,"_file":876,"_stem":877,"_extension":36},"/en-us/blog/authors/allie-holland",{"name":870,"config":871},"Allie Holland",{"headshot":872,"ctfId":873},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":683},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":879,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":880,"config":884,"_id":885,"_type":31,"title":881,"_source":33,"_file":886,"_stem":887,"_extension":36},"/en-us/blog/authors/allison-whilden",{"name":881,"config":882},"Allison Whilden",{"headshot":714,"ctfId":883},"Allison-Whilden",{"template":683},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":889,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":890,"config":894,"_id":895,"_type":31,"title":891,"_source":33,"_file":896,"_stem":897,"_extension":36},"/en-us/blog/authors/alyssa-rock",{"name":891,"config":892},"Alyssa Rock",{"headshot":714,"ctfId":893},"4T2hddEfeK0Kp1zF8Ncvej",{"template":683},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":899,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":900,"config":904,"_id":905,"_type":31,"title":901,"_source":33,"_file":906,"_stem":907,"_extension":36},"/en-us/blog/authors/amanda-folson",{"name":901,"config":902},"Amanda Folson",{"headshot":714,"ctfId":903},"Amanda-Folson",{"template":683},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":909,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":910,"config":915,"_id":916,"_type":31,"title":911,"_source":33,"_file":917,"_stem":918,"_extension":36},"/en-us/blog/authors/amanda-rueda",{"name":911,"config":912},"Amanda Rueda",{"headshot":913,"ctfId":914},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":683},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":920,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":921,"config":926,"_id":927,"_type":31,"title":922,"_source":33,"_file":928,"_stem":929,"_extension":36},"/en-us/blog/authors/amar-patel",{"name":922,"config":923},"Amar Patel",{"headshot":924,"ctfId":925},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":683},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":931,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":932,"config":936,"_id":937,"_type":31,"title":933,"_source":33,"_file":938,"_stem":939,"_extension":36},"/en-us/blog/authors/amara-nwaigwe",{"name":933,"config":934},"Amara Nwaigwe",{"headshot":714,"ctfId":935},"Amara-Nwaigwe",{"template":683},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":941,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":942,"config":947,"_id":948,"_type":31,"title":943,"_source":33,"_file":949,"_stem":950,"_extension":36},"/en-us/blog/authors/amelia-bauerly",{"name":943,"config":944},"Amelia Bauerly",{"headshot":945,"ctfId":946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":683},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":952,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":953,"config":958,"_id":959,"_type":31,"title":954,"_source":33,"_file":960,"_stem":961,"_extension":36},"/en-us/blog/authors/ameya-darshan",{"name":954,"config":955},"Ameya Darshan",{"headshot":956,"ctfId":957},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":683},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":963,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":964,"config":968,"_id":969,"_type":31,"title":965,"_source":33,"_file":970,"_stem":971,"_extension":36},"/en-us/blog/authors/andrea-borga",{"name":965,"config":966},"Andrea Borga",{"headshot":714,"ctfId":967},"6dPpfov6kpNcMdmyHyhKcN",{"template":683},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":973,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":974,"config":979,"_id":980,"_type":31,"title":975,"_source":33,"_file":981,"_stem":982,"_extension":36},"/en-us/blog/authors/andreas-brandl",{"name":975,"config":976},"Andreas Brandl",{"headshot":977,"ctfId":978},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":683},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":984,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":985,"config":989,"_id":990,"_type":31,"title":986,"_source":33,"_file":991,"_stem":992,"_extension":36},"/en-us/blog/authors/andrew-chilton",{"name":986,"config":987},"Andrew Chilton",{"headshot":7,"ctfId":988},"chilts",{"template":683},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":994,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":995,"config":1000,"_id":1001,"_type":31,"title":996,"_source":33,"_file":1002,"_stem":1003,"_extension":36},"/en-us/blog/authors/andrew-fontaine",{"name":996,"config":997},"Andrew Fontaine",{"headshot":998,"ctfId":999},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":683},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1005,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1006,"config":1011,"_id":1012,"_type":31,"title":1007,"_source":33,"_file":1013,"_stem":1014,"_extension":36},"/en-us/blog/authors/andrew-kelly",{"name":1007,"config":1008},"Andrew Kelly",{"headshot":1009,"ctfId":1010},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":683},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1016,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1017,"config":1022,"_id":1023,"_type":31,"title":1018,"_source":33,"_file":1024,"_stem":1025,"_extension":36},"/en-us/blog/authors/andrew-newdigate",{"name":1018,"config":1019},"Andrew Newdigate",{"headshot":1020,"ctfId":1021},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":683},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1027,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1028,"config":1033,"_id":1034,"_type":31,"title":1029,"_source":33,"_file":1035,"_stem":1036,"_extension":36},"/en-us/blog/authors/andrew-patterson",{"name":1029,"config":1030},"Andrew Patterson",{"headshot":1031,"ctfId":1032},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":683},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1038,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1039,"config":1043,"_id":1044,"_type":31,"title":1040,"_source":33,"_file":1045,"_stem":1046,"_extension":36},"/en-us/blog/authors/andrew-taylor",{"name":1040,"config":1041},"Andrew Taylor",{"headshot":714,"ctfId":1042},"Andrew-Taylor",{"template":683},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1048,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1049,"config":1054,"_id":1055,"_type":31,"title":1050,"_source":33,"_file":1056,"_stem":1057,"_extension":36},"/en-us/blog/authors/andrew-thomas",{"name":1050,"config":1051},"Andrew Thomas",{"headshot":1052,"ctfId":1053},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":683},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1059,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1060,"config":1065,"_id":1066,"_type":31,"title":1061,"_source":33,"_file":1067,"_stem":1068,"_extension":36},"/en-us/blog/authors/andy-bradfield",{"name":1061,"role":1062,"config":1063},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1064},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":683},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1070,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1071,"config":1075,"_id":1076,"_type":31,"title":1072,"_source":33,"_file":1077,"_stem":1078,"_extension":36},"/en-us/blog/authors/andy-rogers",{"name":1072,"config":1073},"Andy Rogers",{"headshot":714,"ctfId":1074},"Andy-Rogers",{"template":683},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1080,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1081,"config":1086,"_id":1087,"_type":31,"title":1082,"_source":33,"_file":1088,"_stem":1089,"_extension":36},"/en-us/blog/authors/andy-volpe",{"name":1082,"config":1083},"Andy Volpe",{"headshot":1084,"ctfId":1085},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":683},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1091,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1092,"config":1096,"_id":1097,"_type":31,"title":1093,"_source":33,"_file":1098,"_stem":1099,"_extension":36},"/en-us/blog/authors/angelo-stavrow",{"name":1093,"config":1094},"Angelo Stavrow",{"headshot":714,"ctfId":1095},"Angelo-Stavrow",{"template":683},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1101,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1102,"config":1107,"_id":1108,"_type":31,"title":1103,"_source":33,"_file":1109,"_stem":1110,"_extension":36},"/en-us/blog/authors/anna-vovchenko",{"name":1103,"config":1104},"Anna Vovchenko",{"headshot":1105,"ctfId":1106},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":683},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1112,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1113,"config":1118,"_id":1119,"_type":31,"title":1114,"_source":33,"_file":1120,"_stem":1121,"_extension":36},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1114,"config":1115},"Annabel Dunstone Gray",{"headshot":1116,"ctfId":1117},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":683},"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":1123,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1124,"config":1128,"_id":1129,"_type":31,"title":1125,"_source":33,"_file":1130,"_stem":1131,"_extension":36},"/en-us/blog/authors/anshuman-singh",{"name":1125,"config":1126},"Anshuman Singh",{"headshot":714,"ctfId":1127},"4xzrY67JSkxp4j7hlK1DWA",{"template":683},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1133,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1134,"config":1138,"_id":1139,"_type":31,"title":1135,"_source":33,"_file":1140,"_stem":1141,"_extension":36},"/en-us/blog/authors/anthony-davanzo",{"name":1135,"config":1136},"Anthony Davanzo",{"headshot":714,"ctfId":1137},"4KccrB6k5jq46xQRDOdWSb",{"template":683},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1143,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1144,"config":1149,"_id":1150,"_type":31,"title":1145,"_source":33,"_file":1151,"_stem":1152,"_extension":36},"/en-us/blog/authors/anton-smith",{"name":1145,"config":1146},"Anton Smith",{"headshot":1147,"ctfId":1148},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":683},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1154,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1155,"config":1159,"_id":1160,"_type":31,"title":1156,"_source":33,"_file":1161,"_stem":1162,"_extension":36},"/en-us/blog/authors/aricka-flowers",{"name":1156,"config":1157},"Aricka Flowers",{"headshot":7,"ctfId":1158},"atflowers",{"template":683},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1164,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1165,"config":1169,"_id":1170,"_type":31,"title":1166,"_source":33,"_file":1171,"_stem":1172,"_extension":36},"/en-us/blog/authors/ariel-camus",{"name":1166,"config":1167},"Ariel Camus",{"headshot":7,"ctfId":1168},"arielcamus",{"template":683},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1174,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1175,"config":1179,"_id":1180,"_type":31,"title":1176,"_source":33,"_file":1181,"_stem":1182,"_extension":36},"/en-us/blog/authors/arunoda-susiripala",{"name":1176,"config":1177},"Arunoda Susiripala",{"headshot":714,"ctfId":1178},"7kQaq0xFWPi2zRW6NZIDHp",{"template":683},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1184,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1185,"config":1189,"_id":1191,"_type":31,"title":1186,"_source":33,"_file":1192,"_stem":1193,"_extension":36},"/en-us/blog/authors/ashher-syed",{"name":1186,"config":1187},"Ashher Syed",{"headshot":1188},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":683,"gitlabHandle":1190},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1195,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1196,"config":1201,"_id":1202,"_type":31,"title":1197,"_source":33,"_file":1203,"_stem":1204,"_extension":36},"/en-us/blog/authors/ashley-knobloch",{"name":1197,"config":1198},"Ashley Knobloch",{"headshot":1199,"ctfId":1200},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":683},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1206,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1207,"config":1212,"_id":1213,"_type":31,"title":1208,"_source":33,"_file":1214,"_stem":1215,"_extension":36},"/en-us/blog/authors/ashley-kramer",{"name":1208,"config":1209},"Ashley Kramer",{"headshot":1210,"ctfId":1211},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":683},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1217,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1218,"config":1222,"_id":1223,"_type":31,"title":1224,"_source":33,"_file":1225,"_stem":1226,"_extension":36},"/en-us/blog/authors/ashley-mcalpin",{"name":1219,"config":1220},"Ashley McAlpin",{"headshot":714,"ctfId":1221},"Ashley-McAlpin",{"template":683},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1228,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1229,"config":1233,"_id":1234,"_type":31,"title":1230,"_source":33,"_file":1235,"_stem":1236,"_extension":36},"/en-us/blog/authors/ashley-smith",{"name":1230,"config":1231},"Ashley Smith",{"headshot":714,"ctfId":1232},"Ashley-Smith",{"template":683},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1238,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1239,"config":1243,"_id":1244,"_type":31,"title":1245,"_source":33,"_file":1246,"_stem":1247,"_extension":36},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1240,"config":1241},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":714,"ctfId":1242},"Atlassian-Bitbucket-GitHub-GitLab",{"template":683},"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":1249,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1250,"config":1255,"_id":1256,"_type":31,"title":1251,"_source":33,"_file":1257,"_stem":1258,"_extension":36},"/en-us/blog/authors/austin-regnery",{"name":1251,"config":1252},"Austin Regnery",{"headshot":1253,"ctfId":1254},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":683},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1260,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1261,"config":1266,"_id":1267,"_type":31,"title":1262,"_source":33,"_file":1268,"_stem":1269,"_extension":36},"/en-us/blog/authors/ayoub-fandi",{"name":1262,"config":1263},"Ayoub Fandi",{"headshot":1264,"ctfId":1265},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":683},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1271,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1272,"config":1276,"_id":1277,"_type":31,"title":1278,"_source":33,"_file":1279,"_stem":1280,"_extension":36},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1273,"config":1274},"Bahubali (Bill) Shetti",{"headshot":714,"ctfId":1275},"4rFnUJeUt0JNGQwwCZSLMj",{"template":683},"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":1282,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1283,"config":1287,"_id":1288,"_type":31,"title":1284,"_source":33,"_file":1289,"_stem":1290,"_extension":36},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1284,"config":1285},"Baksheesh Singh Ghuman",{"headshot":714,"ctfId":1286},"Baksheesh-Singh-Ghuman",{"template":683},"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":1292,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1293,"config":1298,"_id":1299,"_type":31,"title":1294,"_source":33,"_file":1300,"_stem":1301,"_extension":36},"/en-us/blog/authors/bala-allam",{"name":1294,"config":1295},"Bala Allam",{"headshot":1296,"ctfId":1297},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":683},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1303,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1304,"config":1309,"_id":1310,"_type":31,"title":1311,"_source":33,"_file":1312,"_stem":1313,"_extension":36},"/en-us/blog/authors/balasankar-balu-c",{"name":1305,"config":1306},"Balasankar 'Balu' C",{"headshot":1307,"ctfId":1308},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":683},"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":1315,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1316,"config":1321,"_id":1322,"_type":31,"title":1317,"_source":33,"_file":1323,"_stem":1324,"_extension":36},"/en-us/blog/authors/bart-zhang",{"name":1317,"config":1318},"Bart Zhang",{"headshot":1319,"ctfId":1320},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":683},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1326,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1327,"config":1332,"_id":1333,"_type":31,"title":1328,"_source":33,"_file":1334,"_stem":1335,"_extension":36},"/en-us/blog/authors/beatriz-barbosa",{"name":1328,"config":1329},"Beatriz Barbosa",{"headshot":1330,"ctfId":1331},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":683},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1337,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1338,"config":1342,"_id":1343,"_type":31,"title":1339,"_source":33,"_file":1344,"_stem":1345,"_extension":36},"/en-us/blog/authors/becka-lippert",{"name":1339,"config":1340},"Becka Lippert",{"headshot":714,"ctfId":1341},"7wX6Hbvb3AbKwa6NnClvBX",{"template":683},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1347,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1348,"config":1353,"_id":1354,"_type":31,"title":1355,"_source":33,"_file":1356,"_stem":1357,"_extension":36},"/en-us/blog/authors/ben-leduc-mills",{"name":1349,"config":1350},"Ben Leduc-Mills",{"headshot":1351,"ctfId":1352},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":683},"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":1359,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1360,"config":1365,"_id":1366,"_type":31,"title":1361,"_source":33,"_file":1367,"_stem":1368,"_extension":36},"/en-us/blog/authors/ben-ridley",{"name":1361,"config":1362},"Ben Ridley",{"headshot":1363,"ctfId":1364},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":683},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1370,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1371,"config":1375,"_id":1376,"_type":31,"title":1372,"_source":33,"_file":1377,"_stem":1378,"_extension":36},"/en-us/blog/authors/benedikt-rollik",{"name":1372,"config":1373},"Benedikt Rollik",{"headshot":714,"ctfId":1374},"Benedikt-Rollik",{"template":683},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1380,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1381,"config":1386,"_id":1387,"_type":31,"title":1382,"_source":33,"_file":1388,"_stem":1389,"_extension":36},"/en-us/blog/authors/benjamin-skierlak",{"name":1382,"config":1383},"Benjamin Skierlak",{"headshot":1384,"ctfId":1385},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":683},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1391,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1392,"config":1396,"_id":1397,"_type":31,"title":1393,"_source":33,"_file":1398,"_stem":1399,"_extension":36},"/en-us/blog/authors/bert-van-eyck",{"name":1393,"config":1394},"Bert Van Eyck",{"headshot":7,"ctfId":1395},"bertveproximus",{"template":683},"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":1401,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1402,"config":1407,"_id":1408,"_type":31,"title":1403,"_source":33,"_file":1409,"_stem":1410,"_extension":36},"/en-us/blog/authors/betsy-bula",{"name":1403,"config":1404},"Betsy Bula",{"headshot":1405,"ctfId":1406},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":683},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1412,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1413,"config":1417,"_id":1418,"_type":31,"title":1414,"_source":33,"_file":1419,"_stem":1420,"_extension":36},"/en-us/blog/authors/betsy-church",{"name":1414,"config":1415},"Betsy Church",{"headshot":7,"ctfId":1416},"bchurch",{"template":683},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1422,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1423,"config":1428,"_id":1429,"_type":31,"title":1424,"_source":33,"_file":1430,"_stem":1431,"_extension":36},"/en-us/blog/authors/bill-staples",{"name":1424,"config":1425,"role":1427},"Bill Staples",{"headshot":1426},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":683},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1433,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1434,"config":1439,"_id":1440,"_type":31,"title":1435,"_source":33,"_file":1441,"_stem":1442,"_extension":36},"/en-us/blog/authors/bob-van-landuyt",{"name":1435,"config":1436},"Bob Van Landuyt",{"headshot":1437,"ctfId":1438},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":683},"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":1444,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1445,"config":1449,"_id":1450,"_type":31,"title":1446,"_source":33,"_file":1451,"_stem":1452,"_extension":36},"/en-us/blog/authors/boris-baldassari",{"name":1446,"config":1447},"Boris Baldassari",{"headshot":7,"ctfId":1448},"bbaldassari",{"template":683},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1454,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1455,"config":1459,"_id":1460,"_type":31,"title":1456,"_source":33,"_file":1461,"_stem":1462,"_extension":36},"/en-us/blog/authors/borivoje-tasovac",{"name":1456,"config":1457},"Borivoje Tasovac",{"headshot":7,"ctfId":1458},"borivoje",{"template":683},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1464,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1465,"config":1469,"_id":1470,"_type":31,"title":1466,"_source":33,"_file":1471,"_stem":1472,"_extension":36},"/en-us/blog/authors/brad-downey",{"name":1466,"config":1467},"Brad Downey",{"headshot":714,"ctfId":1468},"6b6RTu6832NFEju2zKJhbE",{"template":683},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1474,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1475,"config":1480,"_id":1481,"_type":31,"title":1476,"_source":33,"_file":1482,"_stem":1483,"_extension":36},"/en-us/blog/authors/bradley-lee",{"name":1476,"config":1477},"Bradley Lee",{"headshot":1478,"ctfId":1479},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":683},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1485,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1486,"config":1490,"_id":1491,"_type":31,"title":1487,"_source":33,"_file":1492,"_stem":1493,"_extension":36},"/en-us/blog/authors/brandon-foo",{"name":1487,"config":1488},"Brandon Foo",{"headshot":714,"ctfId":1489},"Brandon-Foo",{"template":683},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1495,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1496,"config":1500,"_id":1501,"_type":31,"title":1497,"_source":33,"_file":1502,"_stem":1503,"_extension":36},"/en-us/blog/authors/brandon-jung",{"name":1497,"config":1498},"Brandon Jung",{"headshot":714,"ctfId":1499},"Brandon-Jung",{"template":683},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1505,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1506,"config":1510,"_id":1511,"_type":31,"title":1507,"_source":33,"_file":1512,"_stem":1513,"_extension":36},"/en-us/blog/authors/brandon-lyon",{"name":1507,"config":1508},"Brandon Lyon",{"headshot":7,"ctfId":1509},"brandonlyon",{"template":683},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1515,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1516,"config":1520,"_id":1521,"_type":31,"title":1517,"_source":33,"_file":1522,"_stem":1523,"_extension":36},"/en-us/blog/authors/brein-matturro",{"name":1517,"config":1518},"Brein Matturro",{"headshot":7,"ctfId":1519},"bmatturro",{"template":683},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1525,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1526,"config":1530,"_id":1531,"_type":31,"title":1532,"_source":33,"_file":1533,"_stem":1534,"_extension":36},"/en-us/blog/authors/brendan-oleary",{"name":1527,"config":1528},"Brendan O'Leary",{"headshot":7,"ctfId":1529},"brendan",{"template":683},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1536,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1537,"config":1541,"_id":1542,"_type":31,"title":1538,"_source":33,"_file":1543,"_stem":1544,"_extension":36},"/en-us/blog/authors/brendan-regan",{"name":1538,"config":1539},"Brendan Regan",{"headshot":7,"ctfId":1540},"brendanregan11",{"template":683},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1546,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1547,"config":1552,"_id":1553,"_type":31,"title":1548,"_source":33,"_file":1554,"_stem":1555,"_extension":36},"/en-us/blog/authors/brett-walker",{"name":1548,"config":1549},"Brett Walker",{"headshot":1550,"ctfId":1551},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":683},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1557,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1558,"config":1562,"_id":1563,"_type":31,"title":1559,"_source":33,"_file":1564,"_stem":1565,"_extension":36},"/en-us/blog/authors/brian-glanz",{"name":1559,"config":1560},"Brian Glanz",{"headshot":7,"ctfId":1561},"brianglanz",{"template":683},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1567,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1568,"config":1572,"_id":1573,"_type":31,"title":1574,"_source":33,"_file":1575,"_stem":1576,"_extension":36},"/en-us/blog/authors/brian-oconnell",{"name":1569,"config":1570},"Brian O'Connell",{"headshot":714,"ctfId":1571},"Brian-OConnell",{"template":683},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1578,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1579,"config":1583,"_id":1584,"_type":31,"title":1580,"_source":33,"_file":1585,"_stem":1586,"_extension":36},"/en-us/blog/authors/brian-rhea",{"name":1580,"config":1581},"Brian Rhea",{"headshot":7,"ctfId":1582},"brhea",{"template":683},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1588,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1589,"config":1593,"_id":1594,"_type":31,"title":1590,"_source":33,"_file":1595,"_stem":1596,"_extension":36},"/en-us/blog/authors/brian-wald",{"name":1590,"config":1591},"Brian Wald",{"headshot":714,"ctfId":1592},"78qOxgHKlgDY2IxMrBrgCu",{"template":683},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1598,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1599,"config":1603,"_id":1604,"_type":31,"title":1600,"_source":33,"_file":1605,"_stem":1606,"_extension":36},"/en-us/blog/authors/brittany-rohde",{"name":1600,"config":1601},"Brittany Rohde",{"headshot":7,"ctfId":1602},"brittanyr",{"template":683},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1608,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1609,"config":1614,"_id":1615,"_type":31,"title":1610,"_source":33,"_file":1616,"_stem":1617,"_extension":36},"/en-us/blog/authors/bryan-behrenshausen",{"name":1610,"config":1611},"Bryan Behrenshausen",{"headshot":1612,"ctfId":1613},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":683},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1619,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1620,"config":1625,"_id":1626,"_type":31,"title":1621,"_source":33,"_file":1627,"_stem":1628,"_extension":36},"/en-us/blog/authors/bryan-may",{"name":1621,"config":1622},"Bryan May",{"headshot":1623,"ctfId":1624},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":683},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1630,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1631,"config":1636,"_id":1637,"_type":31,"title":1632,"_source":33,"_file":1638,"_stem":1639,"_extension":36},"/en-us/blog/authors/byron-boots",{"name":1632,"config":1633},"Byron Boots",{"headshot":1634,"ctfId":1635},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":683},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1641,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1642,"config":1647,"_id":1648,"_type":31,"title":1643,"_source":33,"_file":1649,"_stem":1650,"_extension":36},"/en-us/blog/authors/camellia-yang",{"name":1643,"config":1644},"Camellia Yang",{"headshot":1645,"ctfId":1646},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":683},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1652,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1653,"config":1658,"_id":1659,"_type":31,"title":1654,"_source":33,"_file":1660,"_stem":1661,"_extension":36},"/en-us/blog/authors/cameron-swords",{"name":1654,"config":1655},"Cameron Swords",{"headshot":1656,"ctfId":1657},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":683},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1663,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1664,"config":1670,"_id":1671,"_type":31,"title":1666,"_source":33,"_file":1672,"_stem":1673,"_extension":36},"/en-us/blog/authors/carl-myers",{"role":1665,"name":1666,"config":1667},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1668,"ctfId":1669},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":683},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1675,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1676,"config":1680,"_id":1681,"_type":31,"title":1677,"_source":33,"_file":1682,"_stem":1683,"_extension":36},"/en-us/blog/authors/carol-teskey",{"name":1677,"config":1678},"Carol Teskey",{"headshot":7,"ctfId":1679},"cteskey",{"template":683},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1685,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1686,"config":1691,"_id":1692,"_type":31,"title":1687,"_source":33,"_file":1693,"_stem":1694,"_extension":36},"/en-us/blog/authors/cesar-saavedra",{"name":1687,"config":1688},"Cesar Saavedra",{"headshot":1689,"ctfId":1690},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":683},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1696,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1697,"config":1701,"_id":1702,"_type":31,"title":1698,"_source":33,"_file":1703,"_stem":1704,"_extension":36},"/en-us/blog/authors/chad-malchow",{"name":1698,"config":1699},"Chad Malchow",{"headshot":714,"ctfId":1700},"Chad-Malchow",{"template":683},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1706,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1707,"config":1712,"_id":1713,"_type":31,"title":1708,"_source":33,"_file":1714,"_stem":1715,"_extension":36},"/en-us/blog/authors/chance-feick",{"name":1708,"config":1709},"Chance Feick",{"headshot":1710,"ctfId":1711},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666442/Blog/Author%20Headshots/chance_feick_headshot.png","18dtRbXV47xqf5iDrOIduM",{"template":683},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1717,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1718,"config":1723,"_id":1724,"_type":31,"title":1719,"_source":33,"_file":1725,"_stem":1726,"_extension":36},"/en-us/blog/authors/chandler-gibbons",{"name":1719,"config":1720},"Chandler Gibbons",{"headshot":1721,"ctfId":1722},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663276/Blog/Author%20Headshots/chandlergibb-headshot.jpg","chandlergibb",{"template":683},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1728,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1729,"config":1733,"_id":1734,"_type":31,"title":1735,"_source":33,"_file":1736,"_stem":1737,"_extension":36},"/en-us/blog/authors/charl-de-wit",{"name":1730,"config":1731},"Charl de Wit",{"headshot":714,"ctfId":1732},"45mQeypQVLNvvTWMzserbR",{"template":683},"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":1739,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1740,"config":1745,"_id":1746,"_type":31,"title":1741,"_source":33,"_file":1747,"_stem":1748,"_extension":36},"/en-us/blog/authors/charlie-ablett",{"name":1741,"config":1742},"Charlie Ablett",{"headshot":1743,"ctfId":1744},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670131/Blog/Author%20Headshots/cablett-headshot.png","cablett",{"template":683},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1750,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1751,"config":1755,"_id":1756,"_type":31,"title":1752,"_source":33,"_file":1757,"_stem":1758,"_extension":36},"/en-us/blog/authors/charvi-mendiratta",{"name":1752,"config":1753},"Charvi Mendiratta",{"headshot":714,"ctfId":1754},"YV7WvnjPWFS3JhXmSYJLk",{"template":683},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1760,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1761,"config":1766,"_id":1767,"_type":31,"title":1762,"_source":33,"_file":1768,"_stem":1769,"_extension":36},"/en-us/blog/authors/cherry-han",{"name":1762,"config":1763},"Cherry Han",{"headshot":1764,"ctfId":1765},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ehktvdbix2o1t0mmcvll.png","6gkuhRkgzCNP1Ee6J14yLu",{"template":683},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1771,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1772,"config":1776,"_id":1778,"_type":31,"title":1773,"_source":33,"_file":1779,"_stem":1780,"_extension":36},"/en-us/blog/authors/chloe-cartron",{"name":1773,"config":1774},"Chloe Cartron",{"headshot":1775},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":683,"gitlabHandle":1777},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1782,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1783,"config":1788,"_id":1789,"_type":31,"title":1784,"_source":33,"_file":1790,"_stem":1791,"_extension":36},"/en-us/blog/authors/chloe-whitestone",{"name":1784,"config":1785},"Chloe Whitestone",{"headshot":1786,"ctfId":1787},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678693/Blog/Author%20Headshots/chloe-headshot.jpg","chloe",{"template":683},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1793,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1794,"config":1799,"_id":1800,"_type":31,"title":1795,"_source":33,"_file":1801,"_stem":1802,"_extension":36},"/en-us/blog/authors/chris-balane",{"name":1795,"config":1796},"Chris Balane",{"headshot":1797,"ctfId":1798},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667630/Blog/Author%20Headshots/chris_balane_headshot.png","40SOCfTl3frynjL3dbg63o",{"template":683},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1804,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1805,"config":1809,"_id":1810,"_type":31,"title":1806,"_source":33,"_file":1811,"_stem":1812,"_extension":36},"/en-us/blog/authors/chris-baus",{"name":1806,"config":1807},"Chris Baus",{"headshot":7,"ctfId":1808},"chrisbaus",{"template":683},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1814,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1815,"config":1820,"_id":1821,"_type":31,"title":1816,"_source":33,"_file":1822,"_stem":1823,"_extension":36},"/en-us/blog/authors/chris-micek",{"name":1816,"config":1817},"Chris Micek",{"headshot":1818,"ctfId":1819},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666144/Blog/Author%20Headshots/chris_micek_headshot.png","62ZsvfXlttQEQ1tnikgoq9",{"template":683},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1825,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1826,"config":1831,"_id":1832,"_type":31,"title":1827,"_source":33,"_file":1833,"_stem":1834,"_extension":36},"/en-us/blog/authors/chris-moberly",{"name":1827,"config":1828},"Chris Moberly",{"headshot":1829,"ctfId":1830},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664235/Blog/Author%20Headshots/cmoberly-headshot.jpg","cmoberly",{"template":683},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1836,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1837,"config":1841,"_id":1842,"_type":31,"title":1843,"_source":33,"_file":1844,"_stem":1845,"_extension":36},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1838,"config":1839},"Chris Sterry, Dotscience",{"headshot":714,"ctfId":1840},"Chris-Sterry-Dotscience",{"template":683},"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":1847,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1848,"config":1852,"_id":1853,"_type":31,"title":1849,"_source":33,"_file":1854,"_stem":1855,"_extension":36},"/en-us/blog/authors/chris-ward",{"name":1849,"config":1850},"Chris Ward",{"headshot":7,"ctfId":1851},"chrischinchilla",{"template":683},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1857,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1858,"config":1865,"_id":1866,"_type":31,"title":1860,"_source":33,"_file":1867,"_stem":1868,"_extension":36},"/en-us/blog/authors/chris-weber",{"role":1859,"name":1860,"config":1861},"CRO ","Chris Weber",{"headshot":1862,"linkedin":1863,"ctfId":1864},"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":683},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1870,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1871,"config":1875,"_id":1876,"_type":31,"title":1872,"_source":33,"_file":1877,"_stem":1878,"_extension":36},"/en-us/blog/authors/chrissie-buchanan",{"name":1872,"config":1873},"Chrissie Buchanan",{"headshot":714,"ctfId":1874},"cbuchanan",{"template":683},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1880,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1881,"config":1886,"_id":1887,"_type":31,"title":1882,"_source":33,"_file":1888,"_stem":1889,"_extension":36},"/en-us/blog/authors/christen-dybenko",{"name":1882,"config":1883},"Christen Dybenko",{"headshot":1884,"ctfId":1885},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668811/Blog/Author%20Headshots/cdybenko-headshot.jpg","cdybenko",{"template":683},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1891,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1892,"config":1897,"_id":1898,"_type":31,"title":1893,"_source":33,"_file":1899,"_stem":1900,"_extension":36},"/en-us/blog/authors/christian-couder",{"name":1893,"config":1894},"Christian Couder",{"headshot":1895,"ctfId":1896},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool",{"template":683},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1902,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1903,"config":1908,"_id":1909,"_type":31,"title":1904,"_source":33,"_file":1910,"_stem":1911,"_extension":36},"/en-us/blog/authors/christian-nnachi",{"name":1904,"config":1905},"Christian Nnachi",{"headshot":1906,"ctfId":1907},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665343/Blog/Author%20Headshots/christian_nnachi_headshot.png","6pE7HjtzzpRhBFVdwTFjEX",{"template":683},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1913,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1914,"config":1918,"_id":1919,"_type":31,"title":1915,"_source":33,"_file":1920,"_stem":1921,"_extension":36},"/en-us/blog/authors/christian-simko",{"name":1915,"config":1916},"Christian Simko",{"headshot":7,"ctfId":1917},"csimko",{"template":683},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1923,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1924,"config":1929,"_id":1930,"_type":31,"title":1925,"_source":33,"_file":1931,"_stem":1932,"_extension":36},"/en-us/blog/authors/christie-lenneville",{"name":1925,"config":1926},"Christie Lenneville",{"headshot":1927,"ctfId":1928},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670047/Blog/Author%20Headshots/clenneville-headshot.jpg","clenneville",{"template":683},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1934,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1935,"config":1939,"_id":1940,"_type":31,"title":1941,"_source":33,"_file":1942,"_stem":1943,"_extension":36},"/en-us/blog/authors/christina-hupy-phd",{"name":1936,"config":1937},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1938},"chupy",{"template":683},"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":1945,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1946,"config":1951,"_id":1952,"_type":31,"title":1947,"_source":33,"_file":1953,"_stem":1954,"_extension":36},"/en-us/blog/authors/christina-lohr",{"name":1947,"config":1948},"Christina Lohr",{"headshot":1949,"ctfId":1950},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662499/Blog/Author%20Headshots/lohrc-headshot.jpg","lohrc",{"template":683},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":1956,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1957,"config":1961,"_id":1962,"_type":31,"title":1958,"_source":33,"_file":1963,"_stem":1964,"_extension":36},"/en-us/blog/authors/christine-yoshida",{"name":1958,"config":1959},"Christine Yoshida",{"headshot":7,"ctfId":1960},"cyoshida",{"template":683},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":1966,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1967,"config":1971,"_id":1972,"_type":31,"title":1968,"_source":33,"_file":1973,"_stem":1974,"_extension":36},"/en-us/blog/authors/christopher-watson",{"name":1968,"config":1969},"Christopher Watson",{"headshot":714,"ctfId":1970},"Christopher-Watson",{"template":683},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":1976,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1977,"config":1981,"_id":1982,"_type":31,"title":1978,"_source":33,"_file":1983,"_stem":1984,"_extension":36},"/en-us/blog/authors/christos-bacharakis",{"name":1978,"config":1979},"Christos Bacharakis",{"headshot":714,"ctfId":1980},"Christos-Bacharakis",{"template":683},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":1986,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1987,"config":1991,"_id":1992,"_type":31,"title":1988,"_source":33,"_file":1993,"_stem":1994,"_extension":36},"/en-us/blog/authors/cindy-blake",{"name":1988,"config":1989},"Cindy Blake",{"headshot":714,"ctfId":1990},"cblake",{"template":683},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":1996,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":1997,"config":2002,"_id":2003,"_type":31,"title":1998,"_source":33,"_file":2004,"_stem":2005,"_extension":36},"/en-us/blog/authors/claire-champernowne",{"name":1998,"config":1999},"Claire Champernowne",{"headshot":2000,"ctfId":2001},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ",{"template":683},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2007,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2008,"config":2012,"_id":2013,"_type":31,"title":2009,"_source":33,"_file":2014,"_stem":2015,"_extension":36},"/en-us/blog/authors/clement-ho",{"name":2009,"config":2010},"Clement Ho",{"headshot":7,"ctfId":2011},"ClemMakesApps",{"template":683},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2017,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2018,"config":2022,"_id":2023,"_type":31,"title":2019,"_source":33,"_file":2024,"_stem":2025,"_extension":36},"/en-us/blog/authors/colin-fletcher",{"name":2019,"config":2020},"Colin Fletcher",{"headshot":7,"ctfId":2021},"cfletcher1",{"template":683},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2027,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2028,"config":2033,"_id":2034,"_type":31,"title":2029,"_source":33,"_file":2035,"_stem":2036,"_extension":36},"/en-us/blog/authors/connor-gilbert",{"name":2029,"config":2030},"Connor Gilbert",{"headshot":2031,"ctfId":2032},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665913/Blog/Author%20Headshots/connorgilbert-headshot.jpg","connorgilbert",{"template":683},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2038,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2039,"config":2043,"_id":2044,"_type":31,"title":2040,"_source":33,"_file":2045,"_stem":2046,"_extension":36},"/en-us/blog/authors/connor-shea",{"name":2040,"config":2041},"Connor Shea",{"headshot":714,"ctfId":2042},"Connor-Shea",{"template":683},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2048,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2049,"config":2054,"_id":2055,"_type":31,"title":2050,"_source":33,"_file":2056,"_stem":2057,"_extension":36},"/en-us/blog/authors/corey-oas",{"name":2050,"config":2051},"Corey Oas",{"headshot":2052,"ctfId":2053},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667633/Blog/Author%20Headshots/corey_oas_headshot.png","1Dd1lJ4aKCv36YWdlUhlPf",{"template":683},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2059,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2060,"config":2064,"_id":2065,"_type":31,"title":2061,"_source":33,"_file":2066,"_stem":2067,"_extension":36},"/en-us/blog/authors/cormac-foster",{"name":2061,"config":2062},"Cormac Foster",{"headshot":7,"ctfId":2063},"cfoster3",{"template":683},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2069,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2070,"config":2075,"_id":2076,"_type":31,"title":2071,"_source":33,"_file":2077,"_stem":2078,"_extension":36},"/en-us/blog/authors/costel-maxim",{"name":2071,"config":2072},"Costel Maxim",{"headshot":2073,"ctfId":2074},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663173/Blog/Author%20Headshots/costel_maxim_headshot.png","3QzzrMksaRD9ZPytt0SPPL",{"template":683},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2080,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2081,"config":2086,"_id":2087,"_type":31,"title":2082,"_source":33,"_file":2088,"_stem":2089,"_extension":36},"/en-us/blog/authors/courtney-meddaugh",{"name":2082,"config":2083},"Courtney Meddaugh",{"headshot":2084,"ctfId":2085},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665168/Blog/Author%20Headshots/courtney_meddaugh_headshot.png","5avtK3YS9MrDBkaOnB9ZmG",{"template":683},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2091,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2092,"config":2096,"_id":2097,"_type":31,"title":2093,"_source":33,"_file":2098,"_stem":2099,"_extension":36},"/en-us/blog/authors/craig-gomes",{"name":2093,"config":2094},"Craig Gomes",{"headshot":7,"ctfId":2095},"craiggomes",{"template":683},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2101,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2102,"config":2107,"_id":2108,"_type":31,"title":2103,"_source":33,"_file":2109,"_stem":2110,"_extension":36},"/en-us/blog/authors/craig-miskell",{"name":2103,"config":2104},"Craig Miskell",{"headshot":2105,"ctfId":2106},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667372/Blog/Author%20Headshots/cmiskell-headshot.jpg","cmiskell",{"template":683},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2112,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2113,"config":2117,"_id":2118,"_type":31,"title":2114,"_source":33,"_file":2119,"_stem":2120,"_extension":36},"/en-us/blog/authors/creighton-swank",{"name":2114,"config":2115},"Creighton Swank",{"headshot":714,"ctfId":2116},"5uf3k9lutpbelxJQ373eWu",{"template":683},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2122,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2123,"config":2127,"_id":2128,"_type":31,"title":2124,"_source":33,"_file":2129,"_stem":2130,"_extension":36},"/en-us/blog/authors/daisy-miclat",{"name":2124,"config":2125},"Daisy Miclat",{"headshot":714,"ctfId":2126},"IU4zOKoPhWS7hok7qsy7w",{"template":683},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2132,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2133,"config":2137,"_id":2138,"_type":31,"title":2134,"_source":33,"_file":2139,"_stem":2140,"_extension":36},"/en-us/blog/authors/dan-luhring",{"name":2134,"config":2135},"Dan Luhring",{"headshot":7,"ctfId":2136},"danluhring",{"template":683},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2142,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2143,"config":2148,"_id":2149,"_type":31,"title":2144,"_source":33,"_file":2150,"_stem":2151,"_extension":36},"/en-us/blog/authors/dan-rabinovitz",{"name":2144,"config":2145},"Dan Rabinovitz",{"headshot":2146,"ctfId":2147},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664796/Blog/Author%20Headshots/dan_rabinovitz_headshot.png","31AXb267jy94budCWQZQyr",{"template":683},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2153,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2154,"config":2158,"_id":2159,"_type":31,"title":2155,"_source":33,"_file":2160,"_stem":2161,"_extension":36},"/en-us/blog/authors/daniel-berman",{"name":2155,"config":2156},"Daniel Berman",{"headshot":714,"ctfId":2157},"Daniel-Berman",{"template":683},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2163,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2164,"config":2168,"_id":2169,"_type":31,"title":2165,"_source":33,"_file":2170,"_stem":2171,"_extension":36},"/en-us/blog/authors/daniel-gruesso",{"name":2165,"config":2166},"Daniel Gruesso",{"headshot":7,"ctfId":2167},"danielgruesso",{"template":683},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2173,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2174,"config":2179,"_id":2180,"_type":31,"title":2175,"_source":33,"_file":2181,"_stem":2182,"_extension":36},"/en-us/blog/authors/daniel-hauenstein",{"name":2175,"config":2176},"Daniel Hauenstein",{"headshot":2177,"ctfId":2178},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662434/Blog/Author%20Headshots/daniel_hauenstein_headshot.png","2gXGuSmuvZSxv0iCn4sinV",{"template":683},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2184,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2185,"config":2190,"_id":2191,"_type":31,"title":2186,"_source":33,"_file":2192,"_stem":2193,"_extension":36},"/en-us/blog/authors/daniel-helfand",{"name":2186,"config":2187},"Daniel Helfand",{"headshot":2188,"ctfId":2189},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662418/Blog/Author%20Headshots/dhelfand.png","b9sRP0HJhdPsOEruWUfih",{"template":683},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2195,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2196,"config":2200,"_id":2201,"_type":31,"title":2197,"_source":33,"_file":2202,"_stem":2203,"_extension":36},"/en-us/blog/authors/daniel-mora",{"name":2197,"config":2198},"Daniel Mora",{"headshot":7,"ctfId":2199},"dmoraberlin",{"template":683},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2205,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2206,"config":2210,"_id":2212,"_type":31,"title":2207,"_source":33,"_file":2213,"_stem":2214,"_extension":36},"/en-us/blog/authors/daniel-murphy",{"name":2207,"config":2208},"Daniel Murphy",{"headshot":2209},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":683,"gitlabHandle":2211},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2216,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2217,"config":2222,"_id":2223,"_type":31,"title":2218,"_source":33,"_file":2224,"_stem":2225,"_extension":36},"/en-us/blog/authors/darby-frey",{"name":2218,"config":2219},"Darby Frey",{"headshot":2220,"ctfId":2221},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey",{"template":683},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2227,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2228,"config":2233,"_id":2234,"_type":31,"title":2229,"_source":33,"_file":2235,"_stem":2236,"_extension":36},"/en-us/blog/authors/darren-eastman",{"name":2229,"config":2230},"Darren Eastman",{"headshot":2231,"ctfId":2232},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman",{"template":683},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2238,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2239,"config":2243,"_id":2244,"_type":31,"title":2240,"_source":33,"_file":2245,"_stem":2246,"_extension":36},"/en-us/blog/authors/darren-murph",{"name":2240,"config":2241},"Darren Murph",{"headshot":7,"ctfId":2242},"dmurph",{"template":683},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2248,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2249,"config":2256,"_id":2257,"_type":31,"title":2251,"_source":33,"_file":2258,"_stem":2259,"_extension":36},"/en-us/blog/authors/darwin-sanoy",{"role":2250,"name":2251,"config":2252},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2253,"linkedin":2254,"ctfId":2255},"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":683},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2261,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2262,"config":2267,"_id":2268,"_type":31,"title":2263,"_source":33,"_file":2269,"_stem":2270,"_extension":36},"/en-us/blog/authors/dave-steer",{"name":2263,"config":2264},"Dave Steer",{"headshot":2265,"ctfId":2266},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658895/Blog/Author%20Headshots/dsteer-headshot.jpg","dsteer",{"template":683},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2272,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2273,"config":2277,"_id":2278,"_type":31,"title":2274,"_source":33,"_file":2279,"_stem":2280,"_extension":36},"/en-us/blog/authors/dave-wentzel",{"name":2274,"config":2275},"Dave Wentzel",{"headshot":714,"ctfId":2276},"Dave-Wentzel",{"template":683},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2282,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2283,"config":2288,"_id":2289,"_type":31,"title":2290,"_source":33,"_file":2291,"_stem":2292,"_extension":36},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2284,"config":2285},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2286,"ctfId":2287},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660185/Blog/Author%20Headshots/david-headshot.jpg","david",{"template":683},"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":2294,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2295,"config":2300,"_id":2301,"_type":31,"title":2302,"_source":33,"_file":2303,"_stem":2304,"_extension":36},"/en-us/blog/authors/david-oregan",{"name":2296,"config":2297},"David O'Regan",{"headshot":2298,"ctfId":2299},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659853/Blog/Author%20Headshots/oregand-headshot.png","oregand",{"template":683},"content:en-us:blog:authors:david-oregan.yml","David Oregan","en-us/blog/authors/david-oregan.yml","en-us/blog/authors/david-oregan",{"_path":2306,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2307,"config":2311,"_id":2312,"_type":31,"title":2308,"_source":33,"_file":2313,"_stem":2314,"_extension":36},"/en-us/blog/authors/david-planella",{"name":2308,"config":2309},"David Planella",{"headshot":714,"ctfId":2310},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":683},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2316,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2317,"config":2321,"_id":2322,"_type":31,"title":2318,"_source":33,"_file":2323,"_stem":2324,"_extension":36},"/en-us/blog/authors/david-russell",{"name":2318,"config":2319},"David Russell",{"headshot":714,"ctfId":2320},"David-Russell",{"template":683},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2326,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2327,"config":2332,"_id":2333,"_type":31,"title":2328,"_source":33,"_file":2334,"_stem":2335,"_extension":36},"/en-us/blog/authors/david-smith",{"name":2328,"config":2329},"David Smith",{"headshot":2330,"ctfId":2331},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671135/Blog/Author%20Headshots/dawsmith-headshot.jpg","dawsmith",{"template":683},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2337,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2338,"config":2342,"_id":2343,"_type":31,"title":2339,"_source":33,"_file":2344,"_stem":2345,"_extension":36},"/en-us/blog/authors/davis-townsend",{"name":2339,"config":2340},"Davis Townsend",{"headshot":7,"ctfId":2341},"davistownsend",{"template":683},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2347,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2348,"config":2352,"_id":2354,"_type":31,"title":2349,"_source":33,"_file":2355,"_stem":2356,"_extension":36},"/en-us/blog/authors/davoud-tu",{"name":2349,"config":2350},"Davoud Tu",{"headshot":2351},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":683,"gitlabHandle":2353},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2358,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2359,"config":2364,"_id":2365,"_type":31,"title":2366,"_source":33,"_file":2367,"_stem":2368,"_extension":36},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2360,"config":2361},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2362,"ctfId":2363},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671963/Blog/Author%20Headshots/Dean_Photo__1_.jpg","6wQ0QwFZdbzAtYGZgnALkw",{"template":683},"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":2370,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2371,"config":2376,"_id":2377,"_type":31,"title":2372,"_source":33,"_file":2378,"_stem":2379,"_extension":36},"/en-us/blog/authors/deepa-mahalingam",{"name":2372,"config":2373},"Deepa Mahalingam",{"headshot":2374,"ctfId":2375},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662019/Blog/Author%20Headshots/deepa-headshot.jpg","M54z9AWDuU7L9nBR9gRF4",{"template":683},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2381,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2382,"config":2387,"_id":2388,"_type":31,"title":2383,"_source":33,"_file":2389,"_stem":2390,"_extension":36},"/en-us/blog/authors/dennis-appelt",{"name":2383,"config":2384},"Dennis Appelt",{"headshot":2385,"ctfId":2386},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt",{"template":683},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2392,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2393,"config":2398,"_id":2399,"_type":31,"title":2394,"_source":33,"_file":2400,"_stem":2401,"_extension":36},"/en-us/blog/authors/dennis-tang",{"name":2394,"config":2395},"Dennis Tang",{"headshot":2396,"ctfId":2397},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672189/Blog/Author%20Headshots/dennis-headshot.jpg","dennis",{"template":683},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2403,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2404,"config":2408,"_id":2410,"_type":31,"title":2411,"_source":33,"_file":2412,"_stem":2413,"_extension":36},"/en-us/blog/authors/dennis-van-rooijen",{"name":2405,"config":2406},"Dennis van Rooijen",{"headshot":2407},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":683,"gitlabHandle":2409},"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":2415,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2416,"config":2421,"_id":2422,"_type":31,"title":2417,"_source":33,"_file":2423,"_stem":2424,"_extension":36},"/en-us/blog/authors/devin-sylva",{"name":2417,"config":2418},"Devin Sylva",{"headshot":2419,"ctfId":2420},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679087/Blog/Author%20Headshots/devin-headshot.jpg","devin",{"template":683},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2426,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2427,"config":2431,"_id":2432,"_type":31,"title":2428,"_source":33,"_file":2433,"_stem":2434,"_extension":36},"/en-us/blog/authors/dhruv-jain",{"name":2428,"config":2429},"Dhruv Jain",{"headshot":714,"ctfId":2430},"2wyibk9HBKn6PjgaEuzXuZ",{"template":683},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2436,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2437,"config":2441,"_id":2442,"_type":31,"title":2438,"_source":33,"_file":2443,"_stem":2444,"_extension":36},"/en-us/blog/authors/diana-logan",{"name":2438,"config":2439},"Diana Logan",{"headshot":714,"ctfId":2440},"6poIwhQe6W9ysm5rBuSPXX",{"template":683},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2446,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2447,"config":2452,"_id":2453,"_type":31,"title":2448,"_source":33,"_file":2454,"_stem":2455,"_extension":36},"/en-us/blog/authors/dilan-orrino",{"name":2448,"config":2449},"Dilan Orrino",{"headshot":2450,"ctfId":2451},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666180/Blog/Author%20Headshots/dorrino-headshot.png","dorrino",{"template":683},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2457,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2458,"config":2462,"_id":2463,"_type":31,"title":2459,"_source":33,"_file":2464,"_stem":2465,"_extension":36},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2459,"config":2460},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2461},"dimitrieh",{"template":683},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2467,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2468,"config":2472,"_id":2473,"_type":31,"title":2469,"_source":33,"_file":2474,"_stem":2475,"_extension":36},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2469,"config":2470},"Dinesh Bolkensteyn",{"headshot":714,"ctfId":2471},"EpylYWgjPmFOL5NX3Zxmk",{"template":683},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2477,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2478,"config":2482,"_id":2483,"_type":31,"title":2484,"_source":33,"_file":2485,"_stem":2486,"_extension":36},"/en-us/blog/authors/dj-mountney",{"name":2479,"config":2480},"DJ Mountney",{"headshot":714,"ctfId":2481},"DJ-Mountney",{"template":683},"content:en-us:blog:authors:dj-mountney.yml","Dj Mountney","en-us/blog/authors/dj-mountney.yml","en-us/blog/authors/dj-mountney",{"_path":2488,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2489,"config":2493,"_id":2494,"_type":31,"title":2495,"_source":33,"_file":2496,"_stem":2497,"_extension":36},"/en-us/blog/authors/dmitriy-job",{"name":2490,"config":2491},"Dmitriy, Job",{"headshot":714,"ctfId":2492},"Dmitriy-Job",{"template":683},"content:en-us:blog:authors:dmitriy-job.yml","Dmitriy Job","en-us/blog/authors/dmitriy-job.yml","en-us/blog/authors/dmitriy-job",{"_path":2499,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2500,"config":2504,"_id":2505,"_type":31,"title":2501,"_source":33,"_file":2506,"_stem":2507,"_extension":36},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2501,"config":2502},"Dmitriy Zaporozhets",{"headshot":714,"ctfId":2503},"Dmitriy-Zaporozhets",{"template":683},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2509,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2510,"config":2515,"_id":2516,"_type":31,"title":2511,"_source":33,"_file":2517,"_stem":2518,"_extension":36},"/en-us/blog/authors/dmitry-gruzd",{"name":2511,"config":2512},"Dmitry Gruzd",{"headshot":2513,"ctfId":2514},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682014/Blog/Author%20Headshots/dgruzd-headshot.jpg","dgruzd",{"template":683},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2520,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2521,"config":2526,"_id":2527,"_type":31,"title":2522,"_source":33,"_file":2528,"_stem":2529,"_extension":36},"/en-us/blog/authors/dominic-couture",{"name":2522,"config":2523},"Dominic Couture",{"headshot":2524,"ctfId":2525},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683783/Blog/Author%20Headshots/dominic.png","3K2DmuMWV5isBeVtKsplia",{"template":683},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2531,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2532,"config":2536,"_id":2537,"_type":31,"title":2533,"_source":33,"_file":2538,"_stem":2539,"_extension":36},"/en-us/blog/authors/douglas-alexandre",{"name":2533,"config":2534},"Douglas Alexandre",{"headshot":714,"ctfId":2535},"Douglas-Alexandre",{"template":683},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2541,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2542,"config":2546,"_id":2547,"_type":31,"title":2543,"_source":33,"_file":2548,"_stem":2549,"_extension":36},"/en-us/blog/authors/douwe-maan",{"name":2543,"config":2544},"Douwe Maan",{"headshot":7,"ctfId":2545},"DouweM",{"template":683},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2551,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2552,"config":2557,"_id":2558,"_type":31,"title":2553,"_source":33,"_file":2559,"_stem":2560,"_extension":36},"/en-us/blog/authors/dov-hershkovitch",{"name":2553,"config":2554},"Dov Hershkovitch",{"headshot":2555,"ctfId":2556},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665628/Blog/Author%20Headshots/dhershkovitch-headshot.png","dhershkovitch",{"template":683},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2562,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2563,"config":2567,"_id":2568,"_type":31,"title":2569,"_source":33,"_file":2570,"_stem":2571,"_extension":36},"/en-us/blog/authors/dr-elle-obrien",{"name":2564,"config":2565},"Dr. Elle O'Brien",{"headshot":714,"ctfId":2566},"Dr-Elle-OBrien",{"template":683},"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":2573,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2574,"config":2578,"_id":2579,"_type":31,"title":2575,"_source":33,"_file":2580,"_stem":2581,"_extension":36},"/en-us/blog/authors/drew-blessing",{"name":2575,"config":2576},"Drew Blessing",{"headshot":714,"ctfId":2577},"Drew-Blessing",{"template":683},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2583,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2584,"config":2589,"_id":2590,"_type":31,"title":2585,"_source":33,"_file":2591,"_stem":2592,"_extension":36},"/en-us/blog/authors/dylan-griffith",{"name":2585,"config":2586},"Dylan Griffith",{"headshot":2587,"ctfId":2588},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672822/Blog/Author%20Headshots/DylanGriffith-headshot.jpg","DylanGriffith",{"template":683},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2594,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2595,"config":2599,"_id":2600,"_type":31,"title":2596,"_source":33,"_file":2601,"_stem":2602,"_extension":36},"/en-us/blog/authors/eddie-glenn",{"name":2596,"config":2597},"Eddie Glenn",{"headshot":7,"ctfId":2598},"eglenn",{"template":683},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2604,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2605,"config":2610,"_id":2611,"_type":31,"title":2606,"_source":33,"_file":2612,"_stem":2613,"_extension":36},"/en-us/blog/authors/eduardo-bonet",{"name":2606,"config":2607},"Eduardo Bonet",{"headshot":2608,"ctfId":2609},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682722/Blog/Author%20Headshots/eduardobonet-headshot.jpg","eduardobonet",{"template":683},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2615,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2616,"config":2621,"_id":2622,"_type":31,"title":2617,"_source":33,"_file":2623,"_stem":2624,"_extension":36},"/en-us/blog/authors/eliran-mesika",{"name":2617,"config":2618},"Eliran Mesika",{"headshot":2619,"ctfId":2620},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670111/Blog/Author%20Headshots/eliran.jpg","eliranmesika",{"template":683},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2626,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2627,"config":2632,"_id":2633,"_type":31,"title":2628,"_source":33,"_file":2634,"_stem":2635,"_extension":36},"/en-us/blog/authors/elisabeth-burrows",{"name":2628,"config":2629},"Elisabeth Burrows",{"headshot":2630,"ctfId":2631},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659535/Blog/Author%20Headshots/liz_burrows_headshot.png","6Nj2Lio5W7HdeNYoysVgCf",{"template":683},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2637,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2638,"config":2642,"_id":2643,"_type":31,"title":2639,"_source":33,"_file":2644,"_stem":2645,"_extension":36},"/en-us/blog/authors/elliot-rushton",{"name":2639,"config":2640},"Elliot Rushton",{"headshot":7,"ctfId":2641},"erushton",{"template":683},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2647,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2648,"config":2652,"_id":2653,"_type":31,"title":2649,"_source":33,"_file":2654,"_stem":2655,"_extension":36},"/en-us/blog/authors/emilie-schario",{"name":2649,"config":2650},"Emilie Schario",{"headshot":7,"ctfId":2651},"emilie",{"template":683},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2657,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2658,"config":2663,"_id":2664,"_type":31,"title":2659,"_source":33,"_file":2665,"_stem":2666,"_extension":36},"/en-us/blog/authors/emilio-salvador",{"name":2659,"config":2660},"Emilio Salvador",{"headshot":2661,"ctfId":2662},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660161/Blog/Author%20Headshots/esalvadorp-headshot.png","esalvadorp",{"template":683},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2668,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2669,"config":2674,"_id":2675,"_type":31,"title":2670,"_source":33,"_file":2676,"_stem":2677,"_extension":36},"/en-us/blog/authors/emily-bauman",{"name":2670,"config":2671},"Emily Bauman",{"headshot":2672,"ctfId":2673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664145/Blog/Author%20Headshots/emilybauman-headshot.jpg","emilybauman",{"template":683},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2679,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2680,"config":2684,"_id":2685,"_type":31,"title":2681,"_source":33,"_file":2686,"_stem":2687,"_extension":36},"/en-us/blog/authors/emily-chin",{"name":2681,"config":2682},"Emily Chin",{"headshot":7,"ctfId":2683},"echin",{"template":683},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2689,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2690,"config":2694,"_id":2695,"_type":31,"title":2691,"_source":33,"_file":2696,"_stem":2697,"_extension":36},"/en-us/blog/authors/emily-kyle",{"name":2691,"config":2692},"Emily Kyle",{"headshot":714,"ctfId":2693},"Emily-Kyle",{"template":683},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2699,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2700,"config":2704,"_id":2705,"_type":31,"title":2706,"_source":33,"_file":2707,"_stem":2708,"_extension":36},"/en-us/blog/authors/emily-von-hoffmann",{"name":2701,"config":2702},"Emily von Hoffmann",{"headshot":714,"ctfId":2703},"evhoffmann",{"template":683},"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":2710,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2711,"config":2716,"_id":2717,"_type":31,"title":2718,"_source":33,"_file":2719,"_stem":2720,"_extension":36},"/en-us/blog/authors/enrique-alcntara",{"name":2712,"config":2713},"Enrique Alcántara",{"headshot":2714,"ctfId":2715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669746/Blog/Author%20Headshots/ealcantara-headshot.jpg","3E3c30ZWRUTq6rlFiYrjtq",{"template":683},"content:en-us:blog:authors:enrique-alcntara.yml","Enrique Alcntara","en-us/blog/authors/enrique-alcntara.yml","en-us/blog/authors/enrique-alcntara",{"_path":2722,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2723,"config":2727,"_id":2728,"_type":31,"title":2724,"_source":33,"_file":2729,"_stem":2730,"_extension":36},"/en-us/blog/authors/eric-brinkman",{"name":2724,"config":2725},"Eric Brinkman",{"headshot":7,"ctfId":2726},"ebrinkman",{"template":683},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2732,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2733,"config":2737,"_id":2738,"_type":31,"title":2734,"_source":33,"_file":2739,"_stem":2740,"_extension":36},"/en-us/blog/authors/eric-eastwood",{"name":2734,"config":2735},"Eric Eastwood",{"headshot":7,"ctfId":2736},"MadLittleMods",{"template":683},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2742,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2743,"config":2747,"_id":2748,"_type":31,"title":2744,"_source":33,"_file":2749,"_stem":2750,"_extension":36},"/en-us/blog/authors/eric-rosenberg",{"name":2744,"config":2745},"Eric Rosenberg",{"headshot":7,"ctfId":2746},"ericrosenberg88",{"template":683},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2752,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2753,"config":2758,"_id":2759,"_type":31,"title":2754,"_source":33,"_file":2760,"_stem":2761,"_extension":36},"/en-us/blog/authors/eric-rubin",{"name":2754,"config":2755},"Eric Rubin",{"headshot":2756,"ctfId":2757},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682494/Blog/Author%20Headshots/ericrubin-headshot.png","ericrubin",{"template":683},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2763,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2764,"config":2769,"_id":2770,"_type":31,"title":2765,"_source":33,"_file":2771,"_stem":2772,"_extension":36},"/en-us/blog/authors/eric-schurter",{"name":2765,"config":2766},"Eric Schurter",{"headshot":2767,"ctfId":2768},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679281/Blog/Author%20Headshots/ericschurter-headshot.jpg","ericschurter",{"template":683},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2774,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2775,"config":2779,"_id":2780,"_type":31,"title":2776,"_source":33,"_file":2781,"_stem":2782,"_extension":36},"/en-us/blog/authors/erica-huang",{"name":2776,"config":2777},"Erica Huang",{"headshot":7,"ctfId":2778},"exhuang",{"template":683},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2784,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2785,"config":2789,"_id":2790,"_type":31,"title":2786,"_source":33,"_file":2791,"_stem":2792,"_extension":36},"/en-us/blog/authors/erica-lindberg",{"name":2786,"config":2787},"Erica Lindberg",{"headshot":714,"ctfId":2788},"Erica-Lindberg",{"template":683},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2794,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2795,"config":2799,"_id":2800,"_type":31,"title":2796,"_source":33,"_file":2801,"_stem":2802,"_extension":36},"/en-us/blog/authors/erich-wegscheider",{"name":2796,"config":2797},"Erich Wegscheider",{"headshot":7,"ctfId":2798},"ewegscheider",{"template":683},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2804,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2805,"config":2809,"_id":2810,"_type":31,"title":2806,"_source":33,"_file":2811,"_stem":2812,"_extension":36},"/en-us/blog/authors/erick-banks",{"name":2806,"config":2807},"Erick Banks",{"headshot":714,"ctfId":2808},"4CGXhAxudTq69aZOtPnLfu",{"template":683},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2814,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2815,"config":2819,"_id":2820,"_type":31,"title":2816,"_source":33,"_file":2821,"_stem":2822,"_extension":36},"/en-us/blog/authors/erika-feldman",{"name":2816,"config":2817},"Erika Feldman",{"headshot":714,"ctfId":2818},"78oCat8vvbl6mzXsLawd9d",{"template":683},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2824,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2825,"config":2829,"_id":2830,"_type":31,"title":2831,"_source":33,"_file":2832,"_stem":2833,"_extension":36},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2826,"config":2827},"Erin Krengel, Pulumi",{"headshot":714,"ctfId":2828},"Erin-Krengel-Pulumi",{"template":683},"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":2835,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2836,"config":2840,"_id":2841,"_type":31,"title":2842,"_source":33,"_file":2843,"_stem":2844,"_extension":36},"/en-us/blog/authors/ernst-van-nierop",{"name":2837,"config":2838},"Ernst van Nierop",{"headshot":7,"ctfId":2839},"ernstvn",{"template":683},"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":2846,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2847,"config":2851,"_id":2852,"_type":31,"title":2848,"_source":33,"_file":2853,"_stem":2854,"_extension":36},"/en-us/blog/authors/esther-shein",{"name":2848,"config":2849},"Esther Shein",{"headshot":714,"ctfId":2850},"Esther-Shein",{"template":683},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2856,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2857,"config":2862,"_id":2863,"_type":31,"title":2858,"_source":33,"_file":2864,"_stem":2865,"_extension":36},"/en-us/blog/authors/ethan-strike",{"name":2858,"config":2859},"Ethan Strike",{"headshot":2860,"ctfId":2861},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679067/Blog/Author%20Headshots/estrike-headshot.png","estrike",{"template":683},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2867,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2868,"config":2872,"_id":2873,"_type":31,"title":2869,"_source":33,"_file":2874,"_stem":2875,"_extension":36},"/en-us/blog/authors/ethan-urie",{"name":2869,"config":2870},"Ethan Urie",{"headshot":714,"ctfId":2871},"mJhtQw4TY9ZRNF7dfitIF",{"template":683},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2877,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2878,"config":2882,"_id":2883,"_type":31,"title":2879,"_source":33,"_file":2884,"_stem":2885,"_extension":36},"/en-us/blog/authors/eugene-lim",{"name":2879,"config":2880},"Eugene Lim",{"headshot":714,"ctfId":2881},"6KHdIdghkUfSTzV2MzxNcj",{"template":683},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2887,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2888,"config":2892,"_id":2893,"_type":31,"title":2889,"_source":33,"_file":2894,"_stem":2895,"_extension":36},"/en-us/blog/authors/eugenia-hannon",{"name":2889,"config":2890},"Eugenia Hannon",{"headshot":7,"ctfId":2891},"eugeniah",{"template":683},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2897,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2898,"config":2902,"_id":2903,"_type":31,"title":2899,"_source":33,"_file":2904,"_stem":2905,"_extension":36},"/en-us/blog/authors/ev-kontsevoy",{"name":2899,"config":2900},"Ev Kontsevoy",{"headshot":7,"ctfId":2901},"ekontsevoy",{"template":683},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2907,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2908,"config":2912,"_id":2913,"_type":31,"title":2909,"_source":33,"_file":2914,"_stem":2915,"_extension":36},"/en-us/blog/authors/eva-sasson",{"name":2909,"config":2910},"Eva Sasson",{"headshot":714,"ctfId":2911},"Eva-Sasson",{"template":683},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2917,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2918,"config":2923,"_id":2924,"_type":31,"title":2919,"_source":33,"_file":2925,"_stem":2926,"_extension":36},"/en-us/blog/authors/fabian-zimmer",{"name":2919,"config":2920},"Fabian Zimmer",{"headshot":2921,"ctfId":2922},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/q6awwqbxtg0a4x9gtmhs.png","3TK88UogcX5lx83kWMVuvI",{"template":683},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2928,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2929,"config":2933,"_id":2934,"_type":31,"title":2930,"_source":33,"_file":2935,"_stem":2936,"_extension":36},"/en-us/blog/authors/fabio-akita",{"name":2930,"config":2931},"Fabio Akita",{"headshot":714,"ctfId":2932},"Fabio-Akita",{"template":683},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2938,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2939,"config":2943,"_id":2944,"_type":31,"title":2940,"_source":33,"_file":2945,"_stem":2946,"_extension":36},"/en-us/blog/authors/fabio-busatto",{"name":2940,"config":2941},"Fabio Busatto",{"headshot":7,"ctfId":2942},"bikebilly",{"template":683},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":2948,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2949,"config":2954,"_id":2955,"_type":31,"title":2950,"_source":33,"_file":2956,"_stem":2957,"_extension":36},"/en-us/blog/authors/fabio-pitino",{"name":2950,"config":2951},"Fabio Pitino",{"headshot":2952,"ctfId":2953},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659958/Blog/Author%20Headshots/fabiopitino-headshot.jpg","fabiopitino",{"template":683},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":2959,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2960,"config":2964,"_id":2965,"_type":31,"title":2961,"_source":33,"_file":2966,"_stem":2967,"_extension":36},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2961,"config":2962},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2963},"fseifoddini",{"template":683},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":2969,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2970,"config":2974,"_id":2975,"_type":31,"title":2971,"_source":33,"_file":2976,"_stem":2977,"_extension":36},"/en-us/blog/authors/fatih-acet",{"name":2971,"config":2972},"Fatih Acet",{"headshot":7,"ctfId":2973},"fatihacet",{"template":683},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":2979,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2980,"config":2985,"_id":2986,"_type":31,"title":2981,"_source":33,"_file":2987,"_stem":2988,"_extension":36},"/en-us/blog/authors/fatima-sarah-khalid",{"name":2981,"config":2982},"Fatima Sarah Khalid",{"headshot":2983,"ctfId":2984},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663337/Blog/Author%20Headshots/sugaroverflow-headshot.jpg","sugaroverflow",{"template":683},"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":2990,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":2991,"config":2996,"_id":2997,"_type":31,"title":2992,"_source":33,"_file":2998,"_stem":2999,"_extension":36},"/en-us/blog/authors/fernando-diaz",{"name":2992,"config":2993},"Fernando Diaz",{"headshot":2994,"ctfId":2995},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659556/Blog/Author%20Headshots/fern_diaz.png","fjdiaz",{"template":683},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3001,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3002,"config":3006,"_id":3007,"_type":31,"title":3003,"_source":33,"_file":3008,"_stem":3009,"_extension":36},"/en-us/blog/authors/filipa-lacerda",{"name":3003,"config":3004},"Filipa Lacerda",{"headshot":7,"ctfId":3005},"filipa",{"template":683},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3011,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3012,"config":3017,"_id":3018,"_type":31,"title":3019,"_source":33,"_file":3020,"_stem":3021,"_extension":36},"/en-us/blog/authors/flix-veillette-potvin",{"name":3013,"config":3014}," Félix Veillette-Potvin",{"headshot":3015,"ctfId":3016},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662606/Blog/Author%20Headshots/_F%C3%A9lix_Veillette-Potvin_headshot.png","3nkwcdE5K3Uw9nrovEngxW",{"template":683},"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":3023,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3024,"config":3028,"_id":3029,"_type":31,"title":3025,"_source":33,"_file":3030,"_stem":3031,"_extension":36},"/en-us/blog/authors/forrest-brazeal",{"name":3025,"config":3026},"Forrest Brazeal",{"headshot":7,"ctfId":3027},"fbrazeal",{"template":683},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3033,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3034,"config":3038,"_id":3039,"_type":31,"title":3035,"_source":33,"_file":3040,"_stem":3041,"_extension":36},"/en-us/blog/authors/francis-ofungwu",{"name":3035,"config":3036},"Francis Ofungwu",{"headshot":714,"ctfId":3037},"fofungwu",{"template":683},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3043,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3044,"config":3049,"_id":3050,"_type":31,"title":3051,"_source":33,"_file":3052,"_stem":3053,"_extension":36},"/en-us/blog/authors/frdric-caplette",{"name":3045,"config":3046},"Frédéric Caplette",{"headshot":3047,"ctfId":3048},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661878/Blog/Author%20Headshots/frederic_caplette_headshot.png","6nMRwNMwciKSX03zmbBbPF",{"template":683},"content:en-us:blog:authors:frdric-caplette.yml","Frdric Caplette","en-us/blog/authors/frdric-caplette.yml","en-us/blog/authors/frdric-caplette",{"_path":3055,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3056,"config":3061,"_id":3062,"_type":31,"title":3057,"_source":33,"_file":3063,"_stem":3064,"_extension":36},"/en-us/blog/authors/gabe-weaver",{"name":3057,"config":3058},"Gabe Weaver",{"headshot":3059,"ctfId":3060},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667605/Blog/Author%20Headshots/gweaver-headshot.jpg","gweaver",{"template":683},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3066,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3067,"config":3072,"_id":3073,"_type":31,"title":3068,"_source":33,"_file":3074,"_stem":3075,"_extension":36},"/en-us/blog/authors/gabriel-engel",{"name":3068,"config":3069},"Gabriel Engel",{"headshot":3070,"ctfId":3071},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664747/Blog/Author%20Headshots/gabrielengel_gl-headshot.jpg","gabrielengelgl",{"template":683},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3077,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3078,"config":3082,"_id":3083,"_type":31,"title":3079,"_source":33,"_file":3084,"_stem":3085,"_extension":36},"/en-us/blog/authors/gabriel-le-breton",{"name":3079,"config":3080},"Gabriel Le Breton",{"headshot":714,"ctfId":3081},"Gabriel-Le-Breton",{"template":683},"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":3087,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3088,"config":3093,"_id":3094,"_type":31,"title":3089,"_source":33,"_file":3095,"_stem":3096,"_extension":36},"/en-us/blog/authors/gabriel-mazetto",{"name":3089,"config":3090},"Gabriel Mazetto",{"headshot":3091,"ctfId":3092},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678982/Blog/Author%20Headshots/brodock-headshot.jpg","brodock",{"template":683},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3098,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3099,"config":3104,"_id":3105,"_type":31,"title":3100,"_source":33,"_file":3106,"_stem":3107,"_extension":36},"/en-us/blog/authors/gavin-peltz",{"name":3100,"config":3101},"Gavin Peltz",{"headshot":3102,"ctfId":3103},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662831/Blog/Author%20Headshots/gavin_peltz.png","27UwgXDMqa0oBWV93rXTgN",{"template":683},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3109,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3110,"config":3115,"_id":3116,"_type":31,"title":3111,"_source":33,"_file":3117,"_stem":3118,"_extension":36},"/en-us/blog/authors/george-kichukov",{"name":3111,"config":3112},"George Kichukov",{"headshot":3113,"ctfId":3114},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664866/Blog/Author%20Headshots/george_kichukov.png","7e8bn05u4pXwYjkRrqdprE",{"template":683},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3120,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3121,"config":3125,"_id":3126,"_type":31,"title":3122,"_source":33,"_file":3127,"_stem":3128,"_extension":36},"/en-us/blog/authors/gerard-hickey",{"name":3122,"config":3123},"Gerard Hickey",{"headshot":7,"ctfId":3124},"ghickey",{"template":683},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3130,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3131,"config":3136,"_id":3137,"_type":31,"title":3138,"_source":33,"_file":3139,"_stem":3140,"_extension":36},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3132,"config":3133},"Gerardo Lopez-Fernandez",{"headshot":3134,"ctfId":3135},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679925/Blog/Author%20Headshots/glopezfernandez-headshot.jpg","glopezfernandez",{"template":683},"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":3142,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3143,"config":3148,"_id":3149,"_type":31,"title":3144,"_source":33,"_file":3150,"_stem":3151,"_extension":36},"/en-us/blog/authors/gina-doyle",{"name":3144,"config":3145},"Gina Doyle",{"headshot":3146,"ctfId":3147},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679201/Blog/Author%20Headshots/gdoyle-headshot.png","gdoyle",{"template":683},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3153,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3154,"config":3157,"_id":3158,"_type":31,"title":3159,"_source":33,"_file":3160,"_stem":3161,"_extension":36},"/en-us/blog/authors/gitlab",{"name":3155,"config":3156},"GitLab",{"headshot":714,"ctfId":3155},{"template":683},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3163,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3164,"config":3168,"_id":3169,"_type":31,"title":3170,"_source":33,"_file":3171,"_stem":3172,"_extension":36},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3165,"config":3166},"GitLab AI Assisted Group",{"headshot":714,"ctfId":3167},"GitLab-AI-Assisted-Group",{"template":683},"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":3174,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3175,"config":3179,"_id":3180,"_type":31,"title":3181,"_source":33,"_file":3182,"_stem":3183,"_extension":36},"/en-us/blog/authors/gitlab-france-team",{"name":3176,"config":3177},"GitLab France Team",{"headshot":714,"ctfId":3178},"1gfblqN0ibYIuWGk7MOTny",{"template":683},"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":3185,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3186,"config":3190,"_id":3191,"_type":31,"title":3192,"_source":33,"_file":3193,"_stem":3194,"_extension":36},"/en-us/blog/authors/gitlab-germany-team",{"name":3187,"config":3188},"GitLab Germany Team",{"headshot":714,"ctfId":3189},"6tNquF8jQeRRRi8k3ZXpvS",{"template":683},"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":3196,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3197,"config":3201,"_id":3202,"_type":31,"title":3203,"_source":33,"_file":3204,"_stem":3205,"_extension":36},"/en-us/blog/authors/gitlab-japan-team",{"name":3198,"config":3199},"GitLab Japan Team",{"headshot":714,"ctfId":3200},"5YWHF8vG80rluQ41QjgP7V",{"template":683},"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":3207,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3208,"config":3212,"_id":3213,"_type":31,"title":3214,"_source":33,"_file":3215,"_stem":3216,"_extension":36},"/en-us/blog/authors/gitlab-security-team",{"name":3209,"config":3210},"GitLab Security Team",{"headshot":714,"ctfId":3211},"GitLab-Security-Team",{"template":683},"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":3218,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3219,"config":3223,"_id":3224,"_type":31,"title":3225,"_source":33,"_file":3226,"_stem":3227,"_extension":36},"/en-us/blog/authors/gitlab-team",{"name":3220,"config":3221},"GitLab Team",{"headshot":714,"ctfId":3222},"GitLab-Team",{"template":683},"content:en-us:blog:authors:gitlab-team.yml","Gitlab Team","en-us/blog/authors/gitlab-team.yml","en-us/blog/authors/gitlab-team",{"_path":3229,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3230,"config":3234,"_id":3235,"_type":31,"title":3236,"_source":33,"_file":3237,"_stem":3238,"_extension":36},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3231,"config":3232},"GitLab Vulnerability Research Team",{"headshot":714,"ctfId":3233},"GitLab-Vulnerability-Research-Team",{"template":683},"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":3240,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3241,"config":3245,"_id":3246,"_type":31,"title":3242,"_source":33,"_file":3247,"_stem":3248,"_extension":36},"/en-us/blog/authors/goetz-buerkle",{"name":3242,"config":3243},"Goetz Buerkle",{"headshot":714,"ctfId":3244},"Goetz-Buerkle",{"template":683},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3250,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3251,"config":3256,"_id":3257,"_type":31,"title":3252,"_source":33,"_file":3258,"_stem":3259,"_extension":36},"/en-us/blog/authors/gosia-ksionek",{"name":3252,"config":3253},"Gosia Ksionek",{"headshot":3254,"ctfId":3255},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680521/Blog/Author%20Headshots/mksionek-headshot.jpg","mksionek",{"template":683},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3261,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3262,"config":3267,"_id":3268,"_type":31,"title":3263,"_source":33,"_file":3269,"_stem":3270,"_extension":36},"/en-us/blog/authors/grant-hickman",{"name":3263,"config":3264},"Grant Hickman",{"headshot":3265,"ctfId":3266},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682570/Blog/Author%20Headshots/g.png","ghickman",{"template":683},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3272,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3273,"config":3278,"_id":3279,"_type":31,"title":3274,"_source":33,"_file":3280,"_stem":3281,"_extension":36},"/en-us/blog/authors/grant-young",{"name":3274,"config":3275},"Grant Young",{"headshot":3276,"ctfId":3277},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666346/Blog/Author%20Headshots/grantyoung-headshot.jpg","grantyoung",{"template":683},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3283,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3284,"config":3288,"_id":3289,"_type":31,"title":3285,"_source":33,"_file":3290,"_stem":3291,"_extension":36},"/en-us/blog/authors/greg-alfaro",{"name":3285,"config":3286},"Greg Alfaro",{"headshot":7,"ctfId":3287},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":683},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3293,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3294,"config":3298,"_id":3299,"_type":31,"title":3295,"_source":33,"_file":3300,"_stem":3301,"_extension":36},"/en-us/blog/authors/greg-johnson",{"name":3295,"config":3296},"Greg Johnson",{"headshot":7,"ctfId":3297},"codeEmitter",{"template":683},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3303,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3304,"config":3309,"_id":3310,"_type":31,"title":3305,"_source":33,"_file":3311,"_stem":3312,"_extension":36},"/en-us/blog/authors/greg-myers",{"name":3305,"config":3306},"Greg Myers",{"headshot":3307,"ctfId":3308},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665570/Blog/Author%20Headshots/greg_myers_headshot.png","2uUYKgdtszyGfoOHbakiQX",{"template":683},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3314,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3315,"config":3319,"_id":3320,"_type":31,"title":3316,"_source":33,"_file":3321,"_stem":3322,"_extension":36},"/en-us/blog/authors/grzegorz-bizon",{"name":3316,"config":3317},"Grzegorz Bizon",{"headshot":714,"ctfId":3318},"Grzegorz-Bizon",{"template":683},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3324,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3325,"config":3329,"_id":3330,"_type":31,"title":3326,"_source":33,"_file":3331,"_stem":3332,"_extension":36},"/en-us/blog/authors/guenjun-yoo",{"name":3326,"config":3327},"Guenjun Yoo",{"headshot":7,"ctfId":3328},"gyoo",{"template":683},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3334,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3335,"config":3339,"_id":3340,"_type":31,"title":3341,"_source":33,"_file":3342,"_stem":3343,"_extension":36},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3336,"config":3337},"Guest author André Arko of Ruby Together",{"headshot":714,"ctfId":3338},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":683},"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":3345,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3346,"config":3350,"_id":3351,"_type":31,"title":3352,"_source":33,"_file":3353,"_stem":3354,"_extension":36},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3347,"config":3348},"Guest author André Miranda",{"headshot":714,"ctfId":3349},"Guest-author-Andr-Miranda",{"template":683},"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":3356,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3357,"config":3363,"_id":3364,"_type":31,"title":3365,"_source":33,"_file":3366,"_stem":3367,"_extension":36},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3358,"config":3359},"Gufran Yeşilyurt, OBSS",{"headshot":3360,"linkedin":3361,"ctfId":3362},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666380/Blog/Author%20Headshots/1643972670650.jpg","https://www.linkedin.com/in/gufran-yesilyurt/","2ydYMU86my71BUASual2EI",{"template":683},"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":3369,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3370,"config":3374,"_id":3375,"_type":31,"title":3376,"_source":33,"_file":3377,"_stem":3378,"_extension":36},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3371,"config":3372},"Gustaw Fit of Zoopla",{"headshot":714,"ctfId":3373},"Gustaw-Fit-of-Zoopla",{"template":683},"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":3380,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3381,"config":3385,"_id":3386,"_type":31,"title":3387,"_source":33,"_file":3388,"_stem":3389,"_extension":36},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3382,"config":3383},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":714,"ctfId":3384},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":683},"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":3391,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3392,"config":3396,"_id":3397,"_type":31,"title":3393,"_source":33,"_file":3398,"_stem":3399,"_extension":36},"/en-us/blog/authors/gyan-chawdhary",{"name":3393,"config":3394},"Gyan Chawdhary",{"headshot":714,"ctfId":3395},"Gyan-Chawdhary",{"template":683},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3401,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3402,"config":3407,"_id":3408,"_type":31,"title":3403,"_source":33,"_file":3409,"_stem":3410,"_extension":36},"/en-us/blog/authors/haim-snir",{"name":3403,"config":3404},"Haim Snir",{"headshot":3405,"ctfId":3406},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664386/Blog/Author%20Headshots/hsnir1-headshot.jpg","hsnir1",{"template":683},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3412,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3413,"config":3418,"_id":3419,"_type":31,"title":3420,"_source":33,"_file":3421,"_stem":3422,"_extension":36},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3414,"config":3415},"Hakeem Abdul-Razak",{"headshot":3416,"ctfId":3417},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662077/Blog/Author%20Headshots/Hakeem_Abdul-Razak_headshot.png","7H6nuZfVCK5mqJBK4fuaDH",{"template":683},"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":3424,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3425,"config":3429,"_id":3431,"_type":31,"title":3426,"_source":33,"_file":3432,"_stem":3433,"_extension":36},"/en-us/blog/authors/halil-coban",{"name":3426,"config":3427},"Halil Coban",{"headshot":3428},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":683,"gitlabHandle":3430},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3435,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3436,"config":3441,"_id":3442,"_type":31,"title":3437,"_source":33,"_file":3443,"_stem":3444,"_extension":36},"/en-us/blog/authors/hannah-sutor",{"name":3437,"config":3438},"Hannah Sutor",{"headshot":3439,"ctfId":3440},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665588/Blog/Author%20Headshots/hsutor-headshot.png","hsutor",{"template":683},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3446,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3447,"config":3452,"_id":3453,"_type":31,"title":3448,"_source":33,"_file":3454,"_stem":3455,"_extension":36},"/en-us/blog/authors/harjeet-sharma",{"name":3448,"config":3449},"Harjeet Sharma",{"headshot":3450,"ctfId":3451},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665497/Blog/Author%20Headshots/harjeet_sharma_headshot.png","723O6GGQQEu75MCuhw6lqh",{"template":683},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3457,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3458,"config":3462,"_id":3463,"_type":31,"title":3459,"_source":33,"_file":3464,"_stem":3465,"_extension":36},"/en-us/blog/authors/haydn-mackay",{"name":3459,"config":3460},"Haydn Mackay",{"headshot":714,"ctfId":3461},"Haydn-Mackay",{"template":683},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3467,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3468,"config":3472,"_id":3473,"_type":31,"title":3469,"_source":33,"_file":3474,"_stem":3475,"_extension":36},"/en-us/blog/authors/hazel-yang",{"name":3469,"config":3470},"Hazel Yang",{"headshot":7,"ctfId":3471},"hazelyang",{"template":683},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3477,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3478,"config":3482,"_id":3483,"_type":31,"title":3484,"_source":33,"_file":3485,"_stem":3486,"_extension":36},"/en-us/blog/authors/heather-mcnamee",{"name":3479,"config":3480},"Heather McNamee",{"headshot":714,"ctfId":3481},"Heather-McNamee",{"template":683},"content:en-us:blog:authors:heather-mcnamee.yml","Heather Mcnamee","en-us/blog/authors/heather-mcnamee.yml","en-us/blog/authors/heather-mcnamee",{"_path":3488,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3489,"config":3493,"_id":3494,"_type":31,"title":3490,"_source":33,"_file":3495,"_stem":3496,"_extension":36},"/en-us/blog/authors/heather-simpson",{"name":3490,"config":3491},"Heather Simpson",{"headshot":714,"ctfId":3492},"hsimpson",{"template":683},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3498,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3499,"config":3504,"_id":3505,"_type":31,"title":3500,"_source":33,"_file":3506,"_stem":3507,"_extension":36},"/en-us/blog/authors/hillary-benson",{"name":3500,"config":3501},"Hillary Benson",{"headshot":3502,"ctfId":3503},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683387/Blog/Author%20Headshots/hillarybensonheadshot.png","45VEFoISCoOhRXzyPyAf1x",{"template":683},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3509,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3510,"config":3514,"_id":3516,"_type":31,"title":3511,"_source":33,"_file":3517,"_stem":3518,"_extension":36},"/en-us/blog/authors/himanshu-kapoor",{"name":3511,"config":3512},"Himanshu Kapoor",{"headshot":3513},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":683,"gitlabHandle":3515},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3520,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3521,"config":3526,"_id":3527,"_type":31,"title":3522,"_source":33,"_file":3528,"_stem":3529,"_extension":36},"/en-us/blog/authors/hiroki-suezawa",{"name":3522,"config":3523},"Hiroki Suezawa",{"headshot":3524,"ctfId":3525},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662370/Blog/Author%20Headshots/hiroki_suezawa.png","cw6ZIj0yjr1uw2LAFr23h",{"template":683},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3531,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3532,"config":3536,"_id":3537,"_type":31,"title":3533,"_source":33,"_file":3538,"_stem":3539,"_extension":36},"/en-us/blog/authors/holly-reynolds",{"name":3533,"config":3534},"Holly Reynolds",{"headshot":7,"ctfId":3535},"hollyreynolds",{"template":683},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3541,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3542,"config":3546,"_id":3547,"_type":31,"title":3543,"_source":33,"_file":3548,"_stem":3549,"_extension":36},"/en-us/blog/authors/huldra",{"name":3543,"config":3544},"Huldra",{"headshot":7,"ctfId":3545},"huldra",{"template":683},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3551,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3552,"config":3556,"_id":3557,"_type":31,"title":3553,"_source":33,"_file":3558,"_stem":3559,"_extension":36},"/en-us/blog/authors/iain-camacho",{"name":3553,"config":3554},"Iain Camacho",{"headshot":7,"ctfId":3555},"icamacho",{"template":683},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3561,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3562,"config":3566,"_id":3567,"_type":31,"title":3563,"_source":33,"_file":3568,"_stem":3569,"_extension":36},"/en-us/blog/authors/ian-bartholomew",{"name":3563,"config":3564},"Ian Bartholomew",{"headshot":714,"ctfId":3565},"7D4PE43CXfi8pgOSCmipH0",{"template":683},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3571,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3572,"config":3577,"_id":3578,"_type":31,"title":3573,"_source":33,"_file":3579,"_stem":3580,"_extension":36},"/en-us/blog/authors/ian-khor",{"name":3573,"config":3574},"Ian Khor",{"headshot":3575,"ctfId":3576},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662933/Blog/Author%20Headshots/ian_khor_headshot.png","nSk8fzDwtG3LVFWwg8HrF",{"template":683},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3582,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3583,"config":3588,"_id":3589,"_type":31,"title":3584,"_source":33,"_file":3590,"_stem":3591,"_extension":36},"/en-us/blog/authors/ian-pedowitz",{"name":3584,"config":3585},"Ian Pedowitz",{"headshot":3586,"ctfId":3587},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683040/Blog/Author%20Headshots/ipedowitz-headshot.jpg","ipedowitz",{"template":683},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3593,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3594,"config":3599,"_id":3600,"_type":31,"title":3595,"_source":33,"_file":3601,"_stem":3602,"_extension":36},"/en-us/blog/authors/igor-drozdov",{"name":3595,"config":3596},"Igor Drozdov",{"headshot":3597,"ctfId":3598},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672455/Blog/Author%20Headshots/igor.png","igordrozdov",{"template":683},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3604,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3605,"config":3610,"_id":3611,"_type":31,"title":3606,"_source":33,"_file":3612,"_stem":3613,"_extension":36},"/en-us/blog/authors/igor-wiedler",{"name":3606,"config":3607},"Igor Wiedler",{"headshot":3608,"ctfId":3609},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681841/Blog/Author%20Headshots/igorwwwwwwwwwwwwwwwwwwww-headshot.png","igorwwwwwwwwwwwwwwwwwwww",{"template":683},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3615,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3616,"config":3621,"_id":3622,"_type":31,"title":3623,"_source":33,"_file":3624,"_stem":3625,"_extension":36},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3617,"config":3618},"Inchul Yoo, Sunjung Park",{"headshot":3619,"ctfId":3620},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669731/Blog/Author%20Headshots/sunjungp-headshot.png","sunjungp",{"template":683},"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":3627,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3628,"config":3633,"_id":3634,"_type":31,"title":3629,"_source":33,"_file":3635,"_stem":3636,"_extension":36},"/en-us/blog/authors/isaac-dawson",{"name":3629,"config":3630},"Isaac Dawson",{"headshot":3631,"ctfId":3632},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669814/Blog/Author%20Headshots/idawson-headshot.jpg","idawson",{"template":683},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3638,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3639,"config":3643,"_id":3645,"_type":31,"title":3646,"_source":33,"_file":3647,"_stem":3648,"_extension":36},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3640,"name":3642},{"headshot":3641},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":683,"gitlabHandle":3644},"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":3650,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3651,"config":3656,"_id":3657,"_type":31,"title":3652,"_source":33,"_file":3658,"_stem":3659,"_extension":36},"/en-us/blog/authors/itzik-gan-baruch",{"name":3652,"config":3653},"Itzik Gan Baruch",{"headshot":3654,"ctfId":3655},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch",{"template":683},"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":3661,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3662,"config":3666,"_id":3667,"_type":31,"title":3663,"_source":33,"_file":3668,"_stem":3669,"_extension":36},"/en-us/blog/authors/ivan-lychev",{"name":3663,"config":3664},"Ivan Lychev",{"headshot":7,"ctfId":3665},"iLychevAD",{"template":683},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3671,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3672,"config":3676,"_id":3677,"_type":31,"title":3673,"_source":33,"_file":3678,"_stem":3679,"_extension":36},"/en-us/blog/authors/ivan-nemytchenko",{"name":3673,"config":3674},"Ivan Nemytchenko",{"headshot":714,"ctfId":3675},"Ivan-Nemytchenko",{"template":683},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3681,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3682,"config":3688,"_id":3689,"_type":31,"title":3684,"_source":33,"_file":3690,"_stem":3691,"_extension":36},"/en-us/blog/authors/ivanha-paz",{"role":3683,"name":3684,"config":3685},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3686,"ctfId":3687},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":683},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3693,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3694,"config":3698,"_id":3699,"_type":31,"title":3695,"_source":33,"_file":3700,"_stem":3701,"_extension":36},"/en-us/blog/authors/jacie-bandur",{"name":3695,"config":3696},"Jacie Bandur",{"headshot":7,"ctfId":3697},"jbandur",{"template":683},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3703,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3704,"config":3709,"_id":3710,"_type":31,"title":3705,"_source":33,"_file":3711,"_stem":3712,"_extension":36},"/en-us/blog/authors/jacki-bauer",{"name":3705,"config":3706},"Jacki Bauer",{"headshot":3707,"ctfId":3708},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":683},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3714,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3715,"config":3719,"_id":3720,"_type":31,"title":3716,"_source":33,"_file":3721,"_stem":3722,"_extension":36},"/en-us/blog/authors/jackie-meshell",{"name":3716,"config":3717},"Jackie Meshell",{"headshot":7,"ctfId":3718},"jmeshell",{"template":683},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3724,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3725,"config":3730,"_id":3731,"_type":31,"title":3726,"_source":33,"_file":3732,"_stem":3733,"_extension":36},"/en-us/blog/authors/jackie-porter",{"name":3726,"config":3727},"Jackie Porter",{"headshot":3728,"ctfId":3729},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":683},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3735,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3736,"config":3740,"_id":3741,"_type":31,"title":3737,"_source":33,"_file":3742,"_stem":3743,"_extension":36},"/en-us/blog/authors/jacob-schatz",{"name":3737,"config":3738},"Jacob Schatz",{"headshot":7,"ctfId":3739},"jschatz1",{"template":683},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3745,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3746,"config":3750,"_id":3751,"_type":31,"title":3747,"_source":33,"_file":3752,"_stem":3753,"_extension":36},"/en-us/blog/authors/jacob-vosmaer",{"name":3747,"config":3748},"Jacob Vosmaer",{"headshot":714,"ctfId":3749},"Jacob-Vosmaer",{"template":683},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3755,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3756,"config":3761,"_id":3762,"_type":31,"title":3757,"_source":33,"_file":3763,"_stem":3764,"_extension":36},"/en-us/blog/authors/jacques-erasmus",{"name":3757,"config":3758},"Jacques Erasmus",{"headshot":3759,"ctfId":3760},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":683},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3766,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3767,"config":3772,"_id":3773,"_type":31,"title":3774,"_source":33,"_file":3775,"_stem":3776,"_extension":36},"/en-us/blog/authors/jaime-martnez",{"name":3768,"config":3769},"Jaime Martínez",{"headshot":3770,"ctfId":3771},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":683},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3778,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3779,"config":3783,"_id":3784,"_type":31,"title":3780,"_source":33,"_file":3785,"_stem":3786,"_extension":36},"/en-us/blog/authors/jake-foster",{"name":3780,"config":3781},"Jake Foster",{"headshot":714,"ctfId":3782},"jakefoster1",{"template":683},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3788,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3789,"config":3793,"_id":3794,"_type":31,"title":3790,"_source":33,"_file":3795,"_stem":3796,"_extension":36},"/en-us/blog/authors/jake-stein",{"name":3790,"config":3791},"Jake Stein",{"headshot":714,"ctfId":3792},"Jake-Stein",{"template":683},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3798,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3799,"config":3803,"_id":3804,"_type":31,"title":3800,"_source":33,"_file":3805,"_stem":3806,"_extension":36},"/en-us/blog/authors/james-dang",{"name":3800,"config":3801},"James Dang",{"headshot":714,"ctfId":3802},"James-Dang",{"template":683},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3808,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3809,"config":3814,"_id":3815,"_type":31,"title":3810,"_source":33,"_file":3816,"_stem":3817,"_extension":36},"/en-us/blog/authors/james-heimbuck",{"name":3810,"config":3811},"James Heimbuck",{"headshot":3812,"ctfId":3813},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":683},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3819,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3820,"config":3824,"_id":3825,"_type":31,"title":3821,"_source":33,"_file":3826,"_stem":3827,"_extension":36},"/en-us/blog/authors/james-ramsay",{"name":3821,"config":3822},"James Ramsay",{"headshot":7,"ctfId":3823},"jramsay",{"template":683},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3829,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3830,"config":3835,"_id":3836,"_type":31,"title":3831,"_source":33,"_file":3837,"_stem":3838,"_extension":36},"/en-us/blog/authors/james-wormwell",{"name":3831,"config":3832},"James Wormwell",{"headshot":3833,"ctfId":3834},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":683},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3840,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3841,"config":3845,"_id":3846,"_type":31,"title":3842,"_source":33,"_file":3847,"_stem":3848,"_extension":36},"/en-us/blog/authors/jamie-hurewitz",{"name":3842,"config":3843},"Jamie Hurewitz",{"headshot":714,"ctfId":3844},"Jamie-Hurewitz",{"template":683},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3850,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3851,"config":3855,"_id":3856,"_type":31,"title":3852,"_source":33,"_file":3857,"_stem":3858,"_extension":36},"/en-us/blog/authors/jamie-rachel",{"name":3852,"config":3853},"Jamie Rachel",{"headshot":7,"ctfId":3854},"jrachel1",{"template":683},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3860,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3861,"config":3866,"_id":3867,"_type":31,"title":3862,"_source":33,"_file":3868,"_stem":3869,"_extension":36},"/en-us/blog/authors/jan-provaznik",{"name":3862,"config":3863},"Jan Provaznik",{"headshot":3864,"ctfId":3865},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":683},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3871,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3872,"config":3877,"_id":3878,"_type":31,"title":3873,"_source":33,"_file":3879,"_stem":3880,"_extension":36},"/en-us/blog/authors/janis-altherr",{"name":3873,"config":3874},"Janis Altherr",{"headshot":3875,"ctfId":3876},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":683},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3882,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3883,"config":3888,"_id":3889,"_type":31,"title":3884,"_source":33,"_file":3890,"_stem":3891,"_extension":36},"/en-us/blog/authors/jannik-lehmann",{"name":3884,"config":3885},"Jannik Lehmann",{"headshot":3886,"ctfId":3887},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":683},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3893,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3894,"config":3899,"_id":3900,"_type":31,"title":3901,"_source":33,"_file":3902,"_stem":3903,"_extension":36},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3895,"config":3896},"Jarka Košanová et al",{"headshot":3897,"ctfId":3898},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":683},"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":3905,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3906,"config":3910,"_id":3911,"_type":31,"title":3912,"_source":33,"_file":3913,"_stem":3914,"_extension":36},"/en-us/blog/authors/jason-blais-mattermost",{"name":3907,"config":3908},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3909},"jasonblais",{"template":683},"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":3916,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3917,"config":3921,"_id":3922,"_type":31,"title":3918,"_source":33,"_file":3923,"_stem":3924,"_extension":36},"/en-us/blog/authors/jason-chen",{"name":3918,"config":3919},"Jason Chen",{"headshot":714,"ctfId":3920},"Jason-Chen",{"template":683},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3926,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3927,"config":3932,"_id":3933,"_type":31,"title":3928,"_source":33,"_file":3934,"_stem":3935,"_extension":36},"/en-us/blog/authors/jason-colyer",{"name":3928,"config":3929},"Jason Colyer",{"headshot":3930,"ctfId":3931},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":683},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3937,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3938,"config":3943,"_id":3944,"_type":31,"title":3939,"_source":33,"_file":3945,"_stem":3946,"_extension":36},"/en-us/blog/authors/jason-plum",{"name":3939,"config":3940},"Jason Plum",{"headshot":3941,"ctfId":3942},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":683},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":3948,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3949,"config":3953,"_id":3954,"_type":31,"title":3950,"_source":33,"_file":3955,"_stem":3956,"_extension":36},"/en-us/blog/authors/jason-yavorska",{"name":3950,"config":3951},"Jason Yavorska",{"headshot":7,"ctfId":3952},"jyavorska",{"template":683},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":3958,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3959,"config":3963,"_id":3964,"_type":31,"title":3960,"_source":33,"_file":3965,"_stem":3966,"_extension":36},"/en-us/blog/authors/jay-newman",{"name":3960,"config":3961},"Jay Newman",{"headshot":714,"ctfId":3962},"Jay-Newman",{"template":683},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":3968,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3969,"config":3974,"_id":3975,"_type":31,"title":3970,"_source":33,"_file":3976,"_stem":3977,"_extension":36},"/en-us/blog/authors/jayson-salazar",{"name":3970,"config":3971},"Jayson Salazar",{"headshot":3972,"ctfId":3973},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":683},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":3979,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3980,"config":3984,"_id":3985,"_type":31,"title":3986,"_source":33,"_file":3987,"_stem":3988,"_extension":36},"/en-us/blog/authors/jd-alex",{"name":3981,"config":3982},"JD Alex",{"headshot":7,"ctfId":3983},"jalex1",{"template":683},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":3990,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":3991,"config":3995,"_id":3996,"_type":31,"title":3997,"_source":33,"_file":3998,"_stem":3999,"_extension":36},"/en-us/blog/authors/jean-philippe-baconnais",{"name":3992,"config":3993},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":3994},"jeanphibaconnais",{"template":683},"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":4001,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4002,"config":4007,"_id":4008,"_type":31,"title":4003,"_source":33,"_file":4009,"_stem":4010,"_extension":36},"/en-us/blog/authors/jeff-burrows",{"name":4003,"config":4004},"Jeff Burrows",{"headshot":4005,"ctfId":4006},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":683},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4012,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4013,"config":4017,"_id":4018,"_type":31,"title":4014,"_source":33,"_file":4019,"_stem":4020,"_extension":36},"/en-us/blog/authors/jeff-kelsey",{"name":4014,"config":4015},"Jeff Kelsey",{"headshot":714,"ctfId":4016},"Jeff-Kelsey",{"template":683},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4022,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4023,"config":4028,"_id":4029,"_type":31,"title":4024,"_source":33,"_file":4030,"_stem":4031,"_extension":36},"/en-us/blog/authors/jeff-park",{"name":4024,"config":4025},"Jeff Park",{"headshot":4026,"ctfId":4027},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":683},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4033,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4034,"config":4039,"_id":4040,"_type":31,"title":4035,"_source":33,"_file":4041,"_stem":4042,"_extension":36},"/en-us/blog/authors/jeff-tucker",{"name":4035,"config":4036},"Jeff Tucker",{"headshot":4037,"ctfId":4038},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":683},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4044,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4045,"config":4050,"_id":4051,"_type":31,"title":4046,"_source":33,"_file":4052,"_stem":4053,"_extension":36},"/en-us/blog/authors/jensen-stava",{"name":4046,"config":4047},"Jensen Stava",{"headshot":4048,"ctfId":4049},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":683},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4055,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4056,"config":4060,"_id":4061,"_type":31,"title":4057,"_source":33,"_file":4062,"_stem":4063,"_extension":36},"/en-us/blog/authors/jeremy-cooper",{"name":4057,"config":4058},"Jeremy Cooper",{"headshot":714,"ctfId":4059},"6sXs62l8jODDcUlS9OPgTu",{"template":683},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4065,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4066,"config":4071,"_id":4072,"_type":31,"title":4067,"_source":33,"_file":4073,"_stem":4074,"_extension":36},"/en-us/blog/authors/jeremy-elder",{"name":4067,"config":4068},"Jeremy Elder",{"headshot":4069,"ctfId":4070},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":683},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4076,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4077,"config":4082,"_id":4083,"_type":31,"title":4078,"_source":33,"_file":4084,"_stem":4085,"_extension":36},"/en-us/blog/authors/jeremy-wagner",{"name":4078,"config":4079},"Jeremy Wagner",{"headshot":4080,"ctfId":4081},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":683},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4087,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4088,"config":4092,"_id":4093,"_type":31,"title":4089,"_source":33,"_file":4094,"_stem":4095,"_extension":36},"/en-us/blog/authors/jeremy-watson",{"name":4089,"config":4090},"Jeremy Watson",{"headshot":7,"ctfId":4091},"jeremy",{"template":683},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4097,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4098,"config":4103,"_id":4104,"_type":31,"title":4099,"_source":33,"_file":4105,"_stem":4106,"_extension":36},"/en-us/blog/authors/jerez-solis",{"name":4099,"config":4100},"Jerez Solis",{"headshot":4101,"ctfId":4102},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":683},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4108,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4109,"config":4113,"_id":4114,"_type":31,"title":4115,"_source":33,"_file":4116,"_stem":4117,"_extension":36},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4110,"config":4111},"Jeroen van Baarsen",{"headshot":714,"ctfId":4112},"Jeroen-van-Baarsen",{"template":683},"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":4119,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4120,"config":4125,"_id":4126,"_type":31,"title":4121,"_source":33,"_file":4127,"_stem":4128,"_extension":36},"/en-us/blog/authors/jessica-hurwitz",{"name":4121,"config":4122},"Jessica Hurwitz",{"headshot":4123,"ctfId":4124},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":683},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4130,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4131,"config":4135,"_id":4136,"_type":31,"title":4132,"_source":33,"_file":4137,"_stem":4138,"_extension":36},"/en-us/blog/authors/jim-riley",{"name":4132,"config":4133},"Jim Riley",{"headshot":7,"ctfId":4134},"GitLabcom-username-jrileyinva",{"template":683},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4140,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4141,"config":4145,"_id":4146,"_type":31,"title":4142,"_source":33,"_file":4147,"_stem":4148,"_extension":36},"/en-us/blog/authors/jim-thavisouk",{"name":4142,"config":4143},"Jim Thavisouk",{"headshot":714,"ctfId":4144},"jimthavisouk",{"template":683},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4150,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4151,"config":4155,"_id":4156,"_type":31,"title":4157,"_source":33,"_file":4158,"_stem":4159,"_extension":36},"/en-us/blog/authors/job-van-der-voort",{"name":4152,"config":4153},"Job van der Voort",{"headshot":714,"ctfId":4154},"Job-van-der-Voort",{"template":683},"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":4161,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4162,"config":4167,"_id":4168,"_type":31,"title":4163,"_source":33,"_file":4169,"_stem":4170,"_extension":36},"/en-us/blog/authors/jocelyn-eillis",{"name":4163,"config":4164},"Jocelyn Eillis",{"headshot":4165,"ctfId":4166},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":683},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4172,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4173,"config":4177,"_id":4178,"_type":31,"title":4174,"_source":33,"_file":4179,"_stem":4180,"_extension":36},"/en-us/blog/authors/jochen-roth",{"name":4174,"config":4175},"Jochen Roth",{"headshot":7,"ctfId":4176},"ochorocho",{"template":683},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4182,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4183,"config":4188,"_id":4189,"_type":31,"title":4184,"_source":33,"_file":4190,"_stem":4191,"_extension":36},"/en-us/blog/authors/joe-randazzo",{"name":4184,"config":4185},"Joe Randazzo",{"headshot":4186,"ctfId":4187},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":683},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4193,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4194,"config":4199,"_id":4200,"_type":31,"title":4195,"_source":33,"_file":4201,"_stem":4202,"_extension":36},"/en-us/blog/authors/joel-krooswyk",{"name":4195,"config":4196},"Joel Krooswyk",{"headshot":4197,"ctfId":4198},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":683},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4204,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4205,"config":4210,"_id":4211,"_type":31,"title":4206,"_source":33,"_file":4212,"_stem":4213,"_extension":36},"/en-us/blog/authors/joern-schneeweisz",{"name":4206,"config":4207},"Joern Schneeweisz",{"headshot":4208,"ctfId":4209},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":683},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4215,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4216,"config":4220,"_id":4221,"_type":31,"title":4217,"_source":33,"_file":4222,"_stem":4223,"_extension":36},"/en-us/blog/authors/joey-salazar",{"name":4217,"config":4218},"Joey Salazar",{"headshot":714,"ctfId":4219},"4LgUP4bzQV6kuhoZNFID9r",{"template":683},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4225,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4226,"config":4230,"_id":4231,"_type":31,"title":4227,"_source":33,"_file":4232,"_stem":4233,"_extension":36},"/en-us/blog/authors/johanna-ambrosio",{"name":4227,"config":4228},"Johanna Ambrosio",{"headshot":714,"ctfId":4229},"Johanna-Ambrosio",{"template":683},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4235,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4236,"config":4241,"_id":4242,"_type":31,"title":4237,"_source":33,"_file":4243,"_stem":4244,"_extension":36},"/en-us/blog/authors/johannes-bauer",{"name":4237,"config":4238},"Johannes Bauer",{"headshot":4239,"ctfId":4240},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":683},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4246,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4247,"config":4252,"_id":4253,"_type":31,"title":4248,"_source":33,"_file":4254,"_stem":4255,"_extension":36},"/en-us/blog/authors/john-cai",{"name":4248,"config":4249},"John Cai",{"headshot":4250,"ctfId":4251},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":683},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4257,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4258,"config":4263,"_id":4264,"_type":31,"title":4259,"_source":33,"_file":4265,"_stem":4266,"_extension":36},"/en-us/blog/authors/john-coghlan",{"name":4259,"config":4260},"John Coghlan",{"headshot":4261,"ctfId":4262},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":683},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4268,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4269,"config":4274,"_id":4275,"_type":31,"title":4270,"_source":33,"_file":4276,"_stem":4277,"_extension":36},"/en-us/blog/authors/john-crowley",{"name":4270,"config":4271},"John Crowley",{"headshot":4272,"ctfId":4273},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":683},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4279,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4280,"config":4285,"_id":4286,"_type":31,"title":4281,"_source":33,"_file":4287,"_stem":4288,"_extension":36},"/en-us/blog/authors/john-jarvis",{"name":4281,"config":4282},"John Jarvis",{"headshot":4283,"ctfId":4284},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":683},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4290,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4291,"config":4295,"_id":4296,"_type":31,"title":4292,"_source":33,"_file":4297,"_stem":4298,"_extension":36},"/en-us/blog/authors/john-jeremiah",{"name":4292,"config":4293},"John Jeremiah",{"headshot":714,"ctfId":4294},"johnjeremiah",{"template":683},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4300,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4301,"config":4305,"_id":4306,"_type":31,"title":4307,"_source":33,"_file":4308,"_stem":4309,"_extension":36},"/en-us/blog/authors/john-mcguire",{"name":4302,"config":4303},"John McGuire",{"headshot":714,"ctfId":4304},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":683},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4311,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4312,"config":4316,"_id":4318,"_type":31,"title":4313,"_source":33,"_file":4319,"_stem":4320,"_extension":36},"/en-us/blog/authors/john-skarbek",{"name":4313,"config":4314},"John Skarbek",{"headshot":4315},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":683,"gitlabHandle":4317},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4322,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4323,"config":4327,"_id":4328,"_type":31,"title":4324,"_source":33,"_file":4329,"_stem":4330,"_extension":36},"/en-us/blog/authors/john-sparrow",{"name":4324,"config":4325},"John Sparrow",{"headshot":714,"ctfId":4326},"John-Sparrow",{"template":683},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4332,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4333,"config":4337,"_id":4338,"_type":31,"title":4334,"_source":33,"_file":4339,"_stem":4340,"_extension":36},"/en-us/blog/authors/johnathan-hunt",{"name":4334,"config":4335},"Johnathan Hunt",{"headshot":714,"ctfId":4336},"JohnathanHunt",{"template":683},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4342,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4343,"config":4347,"_id":4348,"_type":31,"title":4344,"_source":33,"_file":4349,"_stem":4350,"_extension":36},"/en-us/blog/authors/joni-klippert",{"name":4344,"config":4345},"Joni Klippert",{"headshot":714,"ctfId":4346},"Joni-Klippert",{"template":683},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4352,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4353,"config":4358,"_id":4359,"_type":31,"title":4360,"_source":33,"_file":4361,"_stem":4362,"_extension":36},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4354,"config":4355},"João Alexandre Prado Tavares Cunha",{"headshot":4356,"ctfId":4357},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":683},"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":4364,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4365,"config":4370,"_id":4371,"_type":31,"title":4372,"_source":33,"_file":4373,"_stem":4374,"_extension":36},"/en-us/blog/authors/joo-pereira",{"name":4366,"config":4367},"João Pereira",{"headshot":4368,"ctfId":4369},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":683},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4376,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4377,"config":4381,"_id":4382,"_type":31,"title":4378,"_source":33,"_file":4383,"_stem":4384,"_extension":36},"/en-us/blog/authors/jordi-mon",{"name":4378,"config":4379},"Jordi Mon",{"headshot":7,"ctfId":4380},"jordimon",{"template":683},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4386,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4387,"config":4392,"_id":4393,"_type":31,"title":4394,"_source":33,"_file":4395,"_stem":4396,"_extension":36},"/en-us/blog/authors/jos-ivn-vargas",{"name":4388,"config":4389},"José Iván Vargas",{"headshot":4390,"ctfId":4391},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":683},"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":4398,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4399,"config":4403,"_id":4404,"_type":31,"title":4400,"_source":33,"_file":4405,"_stem":4406,"_extension":36},"/en-us/blog/authors/jose-finotto",{"name":4400,"config":4401},"Jose Finotto",{"headshot":7,"ctfId":4402},"finotto",{"template":683},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4408,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4409,"config":4413,"_id":4415,"_type":31,"title":4412,"_source":33,"_file":4416,"_stem":4417,"_extension":36},"/en-us/blog/authors/joseph-burnett",{"config":4410,"name":4412},{"headshot":4411},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":683,"gitlabHandle":4414},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4419,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4420,"config":4425,"_id":4426,"_type":31,"title":4421,"_source":33,"_file":4427,"_stem":4428,"_extension":36},"/en-us/blog/authors/joseph-longo",{"name":4421,"config":4422},"Joseph Longo",{"headshot":4423,"ctfId":4424},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":683},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4430,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4431,"config":4435,"_id":4436,"_type":31,"title":4437,"_source":33,"_file":4438,"_stem":4439,"_extension":36},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4432,"config":4433},"Joseph Schorr from CoreOS",{"headshot":714,"ctfId":4434},"Joseph-Schorr-from-CoreOS",{"template":683},"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":4441,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4442,"config":4447,"_id":4448,"_type":31,"title":4443,"_source":33,"_file":4449,"_stem":4450,"_extension":36},"/en-us/blog/authors/josh-feehs",{"name":4443,"config":4444},"Josh Feehs",{"headshot":4445,"ctfId":4446},"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":683},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4452,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4453,"config":4459,"_id":4460,"_type":31,"title":4461,"_source":33,"_file":4462,"_stem":4463,"_extension":36},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4454,"name":4455,"config":4456},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4457,"ctfId":4458},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":683},"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":4465,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4466,"config":4470,"_id":4471,"_type":31,"title":4467,"_source":33,"_file":4472,"_stem":4473,"_extension":36},"/en-us/blog/authors/josh-zimmerman",{"name":4467,"config":4468},"Josh Zimmerman",{"headshot":7,"ctfId":4469},"JoshZimmerman",{"template":683},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4475,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4476,"config":4481,"_id":4482,"_type":31,"title":4477,"_source":33,"_file":4483,"_stem":4484,"_extension":36},"/en-us/blog/authors/joshua-carroll",{"name":4477,"config":4478},"Joshua Carroll",{"headshot":4479,"ctfId":4480},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":683},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4486,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4487,"config":4492,"_id":4493,"_type":31,"title":4488,"_source":33,"_file":4494,"_stem":4495,"_extension":36},"/en-us/blog/authors/joshua-lambert",{"name":4488,"config":4489},"Joshua Lambert",{"headshot":4490,"ctfId":4491},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":683},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4497,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4498,"config":4502,"_id":4503,"_type":31,"title":4499,"_source":33,"_file":4504,"_stem":4505,"_extension":36},"/en-us/blog/authors/joyce-tompsett",{"name":4499,"config":4500},"Joyce Tompsett",{"headshot":7,"ctfId":4501},"Tompsett",{"template":683},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4507,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4508,"config":4512,"_id":4513,"_type":31,"title":4509,"_source":33,"_file":4514,"_stem":4515,"_extension":36},"/en-us/blog/authors/juan-broullon",{"name":4509,"config":4510},"Juan Broullon",{"headshot":7,"ctfId":4511},"jbroullon",{"template":683},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4517,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4518,"config":4522,"_id":4523,"_type":31,"title":4519,"_source":33,"_file":4524,"_stem":4525,"_extension":36},"/en-us/blog/authors/julia-lake",{"name":4519,"config":4520},"Julia Lake",{"headshot":714,"ctfId":4521},"5i9IDwCDDg3lfkiu9T3edZ",{"template":683},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4527,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4528,"config":4533,"_id":4534,"_type":31,"title":4529,"_source":33,"_file":4535,"_stem":4536,"_extension":36},"/en-us/blog/authors/julia-miocene",{"name":4529,"config":4530},"Julia Miocene",{"headshot":4531,"ctfId":4532},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":683},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4538,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4539,"config":4543,"_id":4544,"_type":31,"title":4540,"_source":33,"_file":4545,"_stem":4546,"_extension":36},"/en-us/blog/authors/julian-thome",{"name":4540,"config":4541},"Julian Thome",{"headshot":7,"ctfId":4542},"jthome",{"template":683},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4548,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4549,"config":4554,"_id":4555,"_type":31,"title":4550,"_source":33,"_file":4556,"_stem":4557,"_extension":36},"/en-us/blog/authors/julie-byrne",{"name":4550,"config":4551},"Julie Byrne",{"headshot":4552,"ctfId":4553},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":683},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4559,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4560,"config":4565,"_id":4566,"_type":31,"title":4561,"_source":33,"_file":4567,"_stem":4568,"_extension":36},"/en-us/blog/authors/julie-griffin",{"name":4561,"config":4562},"Julie Griffin",{"headshot":4563,"ctfId":4564},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":683},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4570,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4571,"config":4575,"_id":4576,"_type":31,"title":4572,"_source":33,"_file":4577,"_stem":4578,"_extension":36},"/en-us/blog/authors/julien-andrieux",{"name":4572,"config":4573},"Julien Andrieux",{"headshot":714,"ctfId":4574},"Julien-Andrieux",{"template":683},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4580,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4581,"config":4586,"_id":4587,"_type":31,"title":4582,"_source":33,"_file":4588,"_stem":4589,"_extension":36},"/en-us/blog/authors/juliet-wanjohi",{"name":4582,"config":4583},"Juliet Wanjohi",{"headshot":4584,"ctfId":4585},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":683},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4591,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4592,"config":4596,"_id":4597,"_type":31,"title":4593,"_source":33,"_file":4598,"_stem":4599,"_extension":36},"/en-us/blog/authors/justin-farris",{"name":4593,"config":4594},"Justin Farris",{"headshot":714,"ctfId":4595},"5RHYudAlWLmSj5U7AOIcbG",{"template":683},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4601,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4602,"config":4607,"_id":4608,"_type":31,"title":4603,"_source":33,"_file":4609,"_stem":4610,"_extension":36},"/en-us/blog/authors/justin-tobler",{"name":4603,"config":4604},"Justin Tobler",{"headshot":4605,"ctfId":4606},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":683},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4612,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4613,"config":4618,"_id":4619,"_type":31,"title":4614,"_source":33,"_file":4620,"_stem":4621,"_extension":36},"/en-us/blog/authors/kai-armstrong",{"name":4614,"config":4615},"Kai Armstrong",{"headshot":4616,"ctfId":4617},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":683},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4623,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4624,"config":4628,"_id":4629,"_type":31,"title":4630,"_source":33,"_file":4631,"_stem":4632,"_extension":36},"/en-us/blog/authors/kamil-trzciski",{"name":4625,"config":4626},"Kamil Trzciński",{"headshot":714,"ctfId":4627},"Kamil-Trzciski",{"template":683},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4634,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4635,"config":4639,"_id":4640,"_type":31,"title":4641,"_source":33,"_file":4642,"_stem":4643,"_extension":36},"/en-us/blog/authors/karen-caras",{"name":4636,"config":4637},"Karen Carías",{"headshot":714,"ctfId":4638},"Karen-Caras",{"template":683},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4645,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4646,"config":4651,"_id":4652,"_type":31,"title":4647,"_source":33,"_file":4653,"_stem":4654,"_extension":36},"/en-us/blog/authors/karthik-nayak",{"name":4647,"config":4648},"Karthik Nayak",{"headshot":4649,"ctfId":4650},"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":683},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4656,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4657,"config":4661,"_id":4662,"_type":31,"title":4658,"_source":33,"_file":4663,"_stem":4664,"_extension":36},"/en-us/blog/authors/katherine-okpara",{"name":4658,"config":4659},"Katherine Okpara",{"headshot":7,"ctfId":4660},"katokpara",{"template":683},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4666,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4667,"config":4671,"_id":4672,"_type":31,"title":4668,"_source":33,"_file":4673,"_stem":4674,"_extension":36},"/en-us/blog/authors/kathy-wang",{"name":4668,"config":4669},"Kathy Wang",{"headshot":7,"ctfId":4670},"kathyw",{"template":683},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4676,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4677,"config":4681,"_id":4682,"_type":31,"title":4683,"_source":33,"_file":4684,"_stem":4685,"_extension":36},"/en-us/blog/authors/keanon-okeefe",{"name":4678,"config":4679},"Keanon O’Keefe",{"headshot":7,"ctfId":4680},"kokeefe",{"template":683},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4687,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4688,"config":4693,"_id":4694,"_type":31,"title":4689,"_source":33,"_file":4695,"_stem":4696,"_extension":36},"/en-us/blog/authors/kees-valkhof",{"name":4689,"role":4690,"config":4691},"Kees Valkhof","Configuration manager at Lely",{"headshot":4692},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":683},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4698,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4699,"config":4703,"_id":4704,"_type":31,"title":4700,"_source":33,"_file":4705,"_stem":4706,"_extension":36},"/en-us/blog/authors/kelly-hair",{"name":4700,"config":4701},"Kelly Hair",{"headshot":714,"ctfId":4702},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":683},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4708,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4709,"config":4713,"_id":4714,"_type":31,"title":4710,"_source":33,"_file":4715,"_stem":4716,"_extension":36},"/en-us/blog/authors/kendra-marquart",{"name":4710,"config":4711},"Kendra Marquart",{"headshot":7,"ctfId":4712},"kmarquart",{"template":683},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4718,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4719,"config":4723,"_id":4724,"_type":31,"title":4720,"_source":33,"_file":4725,"_stem":4726,"_extension":36},"/en-us/blog/authors/kenny-johnston",{"name":4720,"config":4721},"Kenny Johnston",{"headshot":7,"ctfId":4722},"kencjohnston",{"template":683},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4728,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4729,"config":4734,"_id":4735,"_type":31,"title":4730,"_source":33,"_file":4736,"_stem":4737,"_extension":36},"/en-us/blog/authors/kevin-chu",{"name":4730,"config":4731},"Kevin Chu",{"headshot":4732,"ctfId":4733},"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":683},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4739,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4740,"config":4745,"_id":4746,"_type":31,"title":4741,"_source":33,"_file":4747,"_stem":4748,"_extension":36},"/en-us/blog/authors/kevin-morrison",{"name":4741,"config":4742},"Kevin Morrison",{"headshot":4743,"ctfId":4744},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":683},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4750,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4751,"config":4755,"_id":4756,"_type":31,"title":4752,"_source":33,"_file":4757,"_stem":4758,"_extension":36},"/en-us/blog/authors/khrystyna-humenna",{"name":4752,"config":4753},"Khrystyna Humenna",{"headshot":714,"ctfId":4754},"Khrystyna-Humenna",{"template":683},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4760,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4761,"config":4765,"_id":4766,"_type":31,"title":4762,"_source":33,"_file":4767,"_stem":4768,"_extension":36},"/en-us/blog/authors/kim-lock",{"name":4762,"config":4763},"Kim Lock",{"headshot":7,"ctfId":4764},"KimLock",{"template":683},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4770,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4771,"config":4775,"_id":4776,"_type":31,"title":4772,"_source":33,"_file":4777,"_stem":4778,"_extension":36},"/en-us/blog/authors/kirsten-abma",{"name":4772,"config":4773},"Kirsten Abma",{"headshot":714,"ctfId":4774},"Kirsten-Abma",{"template":683},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4780,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4781,"config":4785,"_id":4786,"_type":31,"title":4782,"_source":33,"_file":4787,"_stem":4788,"_extension":36},"/en-us/blog/authors/kristian-larsson",{"name":4782,"config":4783},"Kristian Larsson",{"headshot":714,"ctfId":4784},"Kristian-Larsson",{"template":683},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4790,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4791,"config":4796,"_id":4797,"_type":31,"title":4792,"_source":33,"_file":4798,"_stem":4799,"_extension":36},"/en-us/blog/authors/kristina-weis",{"name":4792,"config":4793},"Kristina Weis",{"headshot":4794,"ctfId":4795},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":683},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4801,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4802,"config":4806,"_id":4807,"_type":31,"title":4803,"_source":33,"_file":4808,"_stem":4809,"_extension":36},"/en-us/blog/authors/kurt-dusek",{"name":4803,"config":4804},"Kurt Dusek",{"headshot":7,"ctfId":4805},"kdusek",{"template":683},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4811,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4812,"config":4816,"_id":4817,"_type":31,"title":4813,"_source":33,"_file":4818,"_stem":4819,"_extension":36},"/en-us/blog/authors/kushal-koolwal",{"name":4813,"config":4814},"Kushal Koolwal",{"headshot":714,"ctfId":4815},"Kushal-Koolwal",{"template":683},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4821,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4822,"config":4827,"_id":4828,"_type":31,"title":4823,"_source":33,"_file":4829,"_stem":4830,"_extension":36},"/en-us/blog/authors/kushal-pandya",{"name":4823,"config":4824},"Kushal Pandya",{"headshot":4825,"ctfId":4826},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":683},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4832,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4833,"config":4837,"_id":4838,"_type":31,"title":4834,"_source":33,"_file":4839,"_stem":4840,"_extension":36},"/en-us/blog/authors/kwan-lee",{"name":4834,"config":4835},"Kwan Lee",{"headshot":714,"ctfId":4836},"Kwan-Lee",{"template":683},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4842,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4843,"config":4848,"_id":4849,"_type":31,"title":4844,"_source":33,"_file":4850,"_stem":4851,"_extension":36},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4844,"config":4845},"Kyla Gradin Dahl",{"headshot":4846,"ctfId":4847},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":683},"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":4853,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4854,"config":4858,"_id":4859,"_type":31,"title":4855,"_source":33,"_file":4860,"_stem":4861,"_extension":36},"/en-us/blog/authors/kyle-mann",{"name":4855,"config":4856},"Kyle Mann",{"headshot":714,"ctfId":4857},"44YiW1r6sTpbC9wKBeHGgE",{"template":683},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4863,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4864,"config":4869,"_id":4870,"_type":31,"title":4865,"_source":33,"_file":4871,"_stem":4872,"_extension":36},"/en-us/blog/authors/kyle-smith",{"name":4865,"config":4866},"Kyle Smith",{"headshot":4867,"ctfId":4868},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":683},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4874,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4875,"config":4879,"_id":4881,"_type":31,"title":4876,"_source":33,"_file":4882,"_stem":4883,"_extension":36},"/en-us/blog/authors/kymberlee-price",{"name":4876,"config":4877},"Kymberlee Price",{"headshot":4878},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":683,"gitlabHandle":4880},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4885,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4886,"config":4890,"_id":4891,"_type":31,"title":4887,"_source":33,"_file":4892,"_stem":4893,"_extension":36},"/en-us/blog/authors/lasse-schuirmann",{"name":4887,"config":4888},"Lasse Schuirmann",{"headshot":714,"ctfId":4889},"5vpo2ZOrPIS8PBp3k47S6w",{"template":683},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4895,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4896,"config":4900,"_id":4901,"_type":31,"title":4897,"_source":33,"_file":4902,"_stem":4903,"_extension":36},"/en-us/blog/authors/laura-montemayor",{"name":4897,"config":4898},"Laura Montemayor",{"headshot":7,"ctfId":4899},"lauraMon",{"template":683},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4905,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4906,"config":4911,"_id":4912,"_type":31,"title":4907,"_source":33,"_file":4913,"_stem":4914,"_extension":36},"/en-us/blog/authors/lauren-barker",{"name":4907,"config":4908},"Lauren Barker",{"headshot":4909,"ctfId":4910},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":683},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4916,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4917,"config":4921,"_id":4922,"_type":31,"title":4918,"_source":33,"_file":4923,"_stem":4924,"_extension":36},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4918,"config":4919},"Lauren Gibbons Paul",{"headshot":714,"ctfId":4920},"Lauren-Gibbons-Paul",{"template":683},"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":4926,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4927,"config":4931,"_id":4932,"_type":31,"title":4928,"_source":33,"_file":4933,"_stem":4934,"_extension":36},"/en-us/blog/authors/lauren-minning",{"name":4928,"config":4929},"Lauren Minning",{"headshot":7,"ctfId":4930},"lminning",{"template":683},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":4936,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4937,"config":4942,"_id":4943,"_type":31,"title":4938,"_source":33,"_file":4944,"_stem":4945,"_extension":36},"/en-us/blog/authors/laurena-alves",{"name":4938,"config":4939},"Laurena Alves",{"headshot":4940,"ctfId":4941},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":683},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":4947,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4948,"config":4953,"_id":4954,"_type":31,"title":4949,"_source":33,"_file":4955,"_stem":4956,"_extension":36},"/en-us/blog/authors/lee-faus",{"name":4949,"config":4950},"Lee Faus",{"headshot":4951,"ctfId":4952},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":683},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":4958,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4959,"config":4964,"_id":4965,"_type":31,"title":4960,"_source":33,"_file":4966,"_stem":4967,"_extension":36},"/en-us/blog/authors/lee-matos",{"name":4960,"config":4961},"Lee Matos",{"headshot":4962,"ctfId":4963},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":683},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":4969,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4970,"config":4975,"_id":4976,"_type":31,"title":4971,"_source":33,"_file":4977,"_stem":4978,"_extension":36},"/en-us/blog/authors/lee-tickett",{"name":4971,"config":4972},"Lee Tickett",{"headshot":4973,"ctfId":4974},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":683},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":4980,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4981,"config":4985,"_id":4986,"_type":31,"title":4982,"_source":33,"_file":4987,"_stem":4988,"_extension":36},"/en-us/blog/authors/levente-polyak",{"name":4982,"config":4983},"Levente Polyak",{"headshot":7,"ctfId":4984},"anthraxx",{"template":683},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":4990,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":4991,"config":4996,"_id":4997,"_type":31,"title":4998,"_source":33,"_file":4999,"_stem":5000,"_extension":36},"/en-us/blog/authors/lin-jen-shin",{"name":4992,"config":4993},"Lin Jen-Shin",{"headshot":4994,"ctfId":4995},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":683},"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":5002,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5003,"config":5008,"_id":5009,"_type":31,"title":5004,"_source":33,"_file":5010,"_stem":5011,"_extension":36},"/en-us/blog/authors/liz-coleman",{"name":5004,"config":5005},"Liz Coleman",{"headshot":5006,"ctfId":5007},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":683},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5013,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5014,"config":5019,"_id":5020,"_type":31,"title":5015,"_source":33,"_file":5021,"_stem":5022,"_extension":36},"/en-us/blog/authors/loryn-bortins",{"name":5015,"config":5016},"Loryn Bortins",{"headshot":5017,"ctfId":5018},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":683},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5024,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5025,"config":5029,"_id":5030,"_type":31,"title":5026,"_source":33,"_file":5031,"_stem":5032,"_extension":36},"/en-us/blog/authors/lucas-charles",{"name":5026,"config":5027},"Lucas Charles",{"headshot":714,"ctfId":5028},"01OUkmRJImMowxMk3YHGNS",{"template":683},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5034,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5035,"config":5039,"_id":5040,"_type":31,"title":5036,"_source":33,"_file":5041,"_stem":5042,"_extension":36},"/en-us/blog/authors/luka-trbojevic",{"name":5036,"config":5037},"Luka Trbojevic",{"headshot":7,"ctfId":5038},"ltrbojevic",{"template":683},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5044,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5045,"config":5049,"_id":5050,"_type":31,"title":5046,"_source":33,"_file":5051,"_stem":5052,"_extension":36},"/en-us/blog/authors/lukas-eipert",{"name":5046,"config":5047},"Lukas Eipert",{"headshot":714,"ctfId":5048},"37PO8stm7JUQgglr4tWcmw",{"template":683},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5054,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5055,"config":5060,"_id":5061,"_type":31,"title":5056,"_source":33,"_file":5062,"_stem":5063,"_extension":36},"/en-us/blog/authors/lyle-kozloff",{"name":5056,"config":5057},"Lyle Kozloff",{"headshot":5058,"ctfId":5059},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":683},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5065,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5066,"config":5071,"_id":5072,"_type":31,"title":5067,"_source":33,"_file":5073,"_stem":5074,"_extension":36},"/en-us/blog/authors/madeline-lake",{"name":5067,"config":5068},"Madeline Lake",{"headshot":5069,"ctfId":5070},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":683},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5076,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5077,"config":5082,"_id":5083,"_type":31,"title":5078,"_source":33,"_file":5084,"_stem":5085,"_extension":36},"/en-us/blog/authors/madou-coulibaly",{"name":5078,"config":5079},"Madou Coulibaly",{"headshot":5080,"ctfId":5081},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":683},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5087,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5088,"config":5093,"_id":5094,"_type":31,"title":5089,"_source":33,"_file":5095,"_stem":5096,"_extension":36},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5089,"config":5090},"Magdalena Frankiewicz",{"headshot":5091,"ctfId":5092},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":683},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5098,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5099,"config":5103,"_id":5104,"_type":31,"title":5100,"_source":33,"_file":5105,"_stem":5106,"_extension":36},"/en-us/blog/authors/mahesh-kumar",{"name":5100,"config":5101},"Mahesh Kumar",{"headshot":714,"ctfId":5102},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":683},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5108,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5109,"config":5114,"_id":5115,"_type":31,"title":5110,"_source":33,"_file":5116,"_stem":5117,"_extension":36},"/en-us/blog/authors/manav-khurana",{"name":5110,"config":5111,"role":5113},"Manav Khurana",{"headshot":5112},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":683,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5119,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5120,"config":5125,"_id":5126,"_type":31,"title":5121,"_source":33,"_file":5127,"_stem":5128,"_extension":36},"/en-us/blog/authors/manuel-kraft",{"name":5121,"config":5122},"Manuel Kraft",{"headshot":5123,"ctfId":5124},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":683},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5130,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5131,"config":5135,"_id":5136,"_type":31,"title":5132,"_source":33,"_file":5137,"_stem":5138,"_extension":36},"/en-us/blog/authors/marc-radulescu",{"name":5132,"config":5133},"Marc Radulescu",{"headshot":714,"ctfId":5134},"Marc-Radulescu",{"template":683},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5140,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5141,"config":5146,"_id":5147,"_type":31,"title":5142,"_source":33,"_file":5148,"_stem":5149,"_extension":36},"/en-us/blog/authors/marc-shaw",{"name":5142,"config":5143},"Marc Shaw",{"headshot":5144,"ctfId":5145},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":683},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5151,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5152,"config":5157,"_id":5158,"_type":31,"title":5159,"_source":33,"_file":5160,"_stem":5161,"_extension":36},"/en-us/blog/authors/marcel-van-remmerden",{"name":5153,"config":5154},"Marcel van Remmerden",{"headshot":5155,"ctfId":5156},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":683},"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":5163,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5164,"config":5168,"_id":5169,"_type":31,"title":5165,"_source":33,"_file":5170,"_stem":5171,"_extension":36},"/en-us/blog/authors/marcia-ramos",{"name":5165,"config":5166},"Marcia Ramos",{"headshot":714,"ctfId":5167},"Marcia-Ramos",{"template":683},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5173,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5174,"config":5178,"_id":5179,"_type":31,"title":5175,"_source":33,"_file":5180,"_stem":5181,"_extension":36},"/en-us/blog/authors/marco-lenzo",{"name":5175,"config":5176},"Marco Lenzo",{"headshot":714,"ctfId":5177},"Marco-Lenzo",{"template":683},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5183,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5184,"config":5188,"_id":5189,"_type":31,"title":5185,"_source":33,"_file":5190,"_stem":5191,"_extension":36},"/en-us/blog/authors/marie-hargitt",{"name":5185,"config":5186},"Marie Hargitt",{"headshot":714,"ctfId":5187},"Marie-Hargitt",{"template":683},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5193,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5194,"config":5199,"_id":5200,"_type":31,"title":5195,"_source":33,"_file":5201,"_stem":5202,"_extension":36},"/en-us/blog/authors/marin-jankovski",{"name":5195,"config":5196},"Marin Jankovski",{"headshot":5197,"ctfId":5198},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":683},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5204,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5205,"config":5209,"_id":5210,"_type":31,"title":5211,"_source":33,"_file":5212,"_stem":5213,"_extension":36},"/en-us/blog/authors/marin-job",{"name":5206,"config":5207},"Marin, Job",{"headshot":714,"ctfId":5208},"Marin-Job",{"template":683},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5215,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5216,"config":5220,"_id":5221,"_type":31,"title":5222,"_source":33,"_file":5223,"_stem":5224,"_extension":36},"/en-us/blog/authors/mario-de-la-ossa",{"name":5217,"config":5218},"Mario de la Ossa",{"headshot":7,"ctfId":5219},"mdelaossa",{"template":683},"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":5226,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5227,"config":5231,"_id":5232,"_type":31,"title":5228,"_source":33,"_file":5233,"_stem":5234,"_extension":36},"/en-us/blog/authors/mark-art",{"name":5228,"config":5229},"Mark Art",{"headshot":714,"ctfId":5230},"55KCfyNmgPaJRmBZhiN7k5",{"template":683},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5236,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5237,"config":5241,"_id":5242,"_type":31,"title":5238,"_source":33,"_file":5243,"_stem":5244,"_extension":36},"/en-us/blog/authors/mark-fletcher",{"name":5238,"config":5239},"Mark Fletcher",{"headshot":7,"ctfId":5240},"markglenfletcher",{"template":683},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5246,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5247,"config":5252,"_id":5253,"_type":31,"title":5248,"_source":33,"_file":5254,"_stem":5255,"_extension":36},"/en-us/blog/authors/mark-lapierre",{"name":5248,"config":5249},"Mark Lapierre",{"headshot":5250,"ctfId":5251},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":683},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5257,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5258,"config":5263,"_id":5264,"_type":31,"title":5259,"_source":33,"_file":5265,"_stem":5266,"_extension":36},"/en-us/blog/authors/mark-loveless",{"name":5259,"config":5260},"Mark Loveless",{"headshot":5261,"ctfId":5262},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":683},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5268,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5269,"config":5273,"_id":5274,"_type":31,"title":5270,"_source":33,"_file":5275,"_stem":5276,"_extension":36},"/en-us/blog/authors/mark-pundsack",{"name":5270,"config":5271},"Mark Pundsack",{"headshot":714,"ctfId":5272},"markpundsack",{"template":683},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5278,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5279,"config":5284,"_id":5285,"_type":31,"title":5286,"_source":33,"_file":5287,"_stem":5288,"_extension":36},"/en-us/blog/authors/martin-brmmer",{"name":5280,"config":5281},"Martin Brümmer",{"headshot":5282,"ctfId":5283},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":683},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5290,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5291,"config":5295,"_id":5296,"_type":31,"title":5292,"_source":33,"_file":5297,"_stem":5298,"_extension":36},"/en-us/blog/authors/martynas-krupskis",{"name":5292,"config":5293},"Martynas Krupskis",{"headshot":714,"ctfId":5294},"3tK5S0f4QshGFGRrdEl7rn",{"template":683},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5300,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5301,"config":5305,"_id":5306,"_type":31,"title":5302,"_source":33,"_file":5307,"_stem":5308,"_extension":36},"/en-us/blog/authors/matej-latin",{"name":5302,"config":5303},"Matej Latin",{"headshot":7,"ctfId":5304},"matejlatin",{"template":683},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5310,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5311,"config":5316,"_id":5317,"_type":31,"title":5312,"_source":33,"_file":5318,"_stem":5319,"_extension":36},"/en-us/blog/authors/mathias-ewald",{"name":5312,"config":5313},"Mathias Ewald",{"headshot":5314,"ctfId":5315},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":683},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5321,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5322,"config":5326,"_id":5327,"_type":31,"title":5323,"_source":33,"_file":5328,"_stem":5329,"_extension":36},"/en-us/blog/authors/matt-baldwin",{"name":5323,"config":5324},"Matt Baldwin",{"headshot":714,"ctfId":5325},"Matt-Baldwin",{"template":683},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5331,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5332,"config":5337,"_id":5338,"_type":31,"title":5333,"_source":33,"_file":5339,"_stem":5340,"_extension":36},"/en-us/blog/authors/matt-coons",{"name":5333,"config":5334},"Matt Coons",{"headshot":5335,"ctfId":5336},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":683},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5342,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5343,"config":5348,"_id":5349,"_type":31,"title":5350,"_source":33,"_file":5351,"_stem":5352,"_extension":36},"/en-us/blog/authors/matt-delaney",{"name":5344,"config":5345},"Matt DeLaney",{"headshot":5346,"ctfId":5347},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":683},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5354,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5355,"config":5360,"_id":5361,"_type":31,"title":5356,"_source":33,"_file":5362,"_stem":5363,"_extension":36},"/en-us/blog/authors/matt-genelin",{"name":5356,"config":5357},"Matt Genelin",{"headshot":5358,"ctfId":5359},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":683},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5365,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5366,"config":5370,"_id":5371,"_type":31,"title":5367,"_source":33,"_file":5372,"_stem":5373,"_extension":36},"/en-us/blog/authors/matt-nguyen",{"name":5367,"config":5368},"Matt Nguyen",{"headshot":714,"ctfId":5369},"Matt-Nguyen",{"template":683},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5375,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5376,"config":5381,"_id":5382,"_type":31,"title":5377,"_source":33,"_file":5383,"_stem":5384,"_extension":36},"/en-us/blog/authors/matt-nohr",{"name":5377,"config":5378},"Matt Nohr",{"headshot":5379,"ctfId":5380},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":683},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5386,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5387,"config":5392,"_id":5393,"_type":31,"title":5388,"_source":33,"_file":5394,"_stem":5395,"_extension":36},"/en-us/blog/authors/matt-smiley",{"name":5388,"config":5389},"Matt Smiley",{"headshot":5390,"ctfId":5391},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":683},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5397,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5398,"config":5402,"_id":5403,"_type":31,"title":5399,"_source":33,"_file":5404,"_stem":5405,"_extension":36},"/en-us/blog/authors/matt-wilson",{"name":5399,"config":5400},"Matt Wilson",{"headshot":714,"ctfId":5401},"mattwilson",{"template":683},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5407,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5408,"config":5413,"_id":5414,"_type":31,"title":5409,"_source":33,"_file":5415,"_stem":5416,"_extension":36},"/en-us/blog/authors/matthew-macfarlane",{"name":5409,"config":5410},"Matthew Macfarlane",{"headshot":5411,"ctfId":5412},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":683},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5418,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5419,"config":5424,"_id":5425,"_type":31,"title":5420,"_source":33,"_file":5426,"_stem":5427,"_extension":36},"/en-us/blog/authors/matthew-nearents",{"name":5420,"config":5421},"Matthew Nearents",{"headshot":5422,"ctfId":5423},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":683},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5429,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5430,"config":5435,"_id":5436,"_type":31,"title":5437,"_source":33,"_file":5438,"_stem":5439,"_extension":36},"/en-us/blog/authors/matthias-kppler",{"name":5431,"config":5432},"Matthias Käppler",{"headshot":5433,"ctfId":5434},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":683},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5441,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5442,"config":5446,"_id":5447,"_type":31,"title":5443,"_source":33,"_file":5448,"_stem":5449,"_extension":36},"/en-us/blog/authors/matthieu-fronton",{"name":5443,"config":5444},"Matthieu Fronton",{"headshot":7,"ctfId":5445},"frntn",{"template":683},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5451,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5452,"config":5456,"_id":5457,"_type":31,"title":5453,"_source":33,"_file":5458,"_stem":5459,"_extension":36},"/en-us/blog/authors/max-woolf",{"name":5453,"config":5454},"Max Woolf",{"headshot":714,"ctfId":5455},"Max-Woolf",{"template":683},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5461,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5462,"config":5467,"_id":5468,"_type":31,"title":5463,"_source":33,"_file":5469,"_stem":5470,"_extension":36},"/en-us/blog/authors/maximilien-belinga",{"name":5463,"config":5464},"Maximilien Belinga",{"headshot":5465,"ctfId":5466},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":683},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5472,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5473,"config":5477,"_id":5478,"_type":31,"title":5474,"_source":33,"_file":5479,"_stem":5480,"_extension":36},"/en-us/blog/authors/mayank-tahilramani",{"name":5474,"config":5475},"Mayank Tahilramani",{"headshot":7,"ctfId":5476},"mayanktahil",{"template":683},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5482,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5483,"config":5488,"_id":5489,"_type":31,"title":5484,"_source":33,"_file":5490,"_stem":5491,"_extension":36},"/en-us/blog/authors/mayra-cabrera",{"name":5484,"config":5485},"Mayra Cabrera",{"headshot":5486,"ctfId":5487},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":683},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5493,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5494,"config":5498,"_id":5499,"_type":31,"title":5495,"_source":33,"_file":5500,"_stem":5501,"_extension":36},"/en-us/blog/authors/meghan-maneval",{"name":5495,"config":5496},"Meghan Maneval",{"headshot":7,"ctfId":5497},"mmaneval20",{"template":683},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5503,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5504,"config":5509,"_id":5510,"_type":31,"title":5505,"_source":33,"_file":5511,"_stem":5512,"_extension":36},"/en-us/blog/authors/mek-stittri",{"name":5505,"config":5506},"Mek Stittri",{"headshot":5507,"ctfId":5508},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":683},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5514,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5515,"config":5519,"_id":5520,"_type":31,"title":5516,"_source":33,"_file":5521,"_stem":5522,"_extension":36},"/en-us/blog/authors/melissa-farber",{"name":5516,"config":5517},"Melissa Farber",{"headshot":7,"ctfId":5518},"mfarber",{"template":683},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5524,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5525,"config":5529,"_id":5530,"_type":31,"title":5526,"_source":33,"_file":5531,"_stem":5532,"_extension":36},"/en-us/blog/authors/melissa-smolensky",{"name":5526,"config":5527},"Melissa Smolensky",{"headshot":7,"ctfId":5528},"melsmo",{"template":683},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5534,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5535,"config":5540,"_id":5541,"_type":31,"title":5536,"_source":33,"_file":5542,"_stem":5543,"_extension":36},"/en-us/blog/authors/melissa-ushakov",{"name":5536,"config":5537},"Melissa Ushakov",{"headshot":5538,"ctfId":5539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":683},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5545,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5546,"config":5550,"_id":5551,"_type":31,"title":5547,"_source":33,"_file":5552,"_stem":5553,"_extension":36},"/en-us/blog/authors/michael-fahey",{"name":5547,"config":5548},"Michael Fahey",{"headshot":7,"ctfId":5549},"mfahey",{"template":683},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5555,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5556,"config":5561,"_id":5562,"_type":31,"title":5557,"_source":33,"_file":5563,"_stem":5564,"_extension":36},"/en-us/blog/authors/michael-friedrich",{"name":5557,"config":5558},"Michael Friedrich",{"headshot":5559,"ctfId":5560},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":683},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5566,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5567,"config":5571,"_id":5572,"_type":31,"title":5568,"_source":33,"_file":5573,"_stem":5574,"_extension":36},"/en-us/blog/authors/michael-henriksen",{"name":5568,"config":5569},"Michael Henriksen",{"headshot":714,"ctfId":5570},"3DmojnawcJFqAgoNMCpFTX",{"template":683},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5576,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5577,"config":5581,"_id":5582,"_type":31,"title":5578,"_source":33,"_file":5583,"_stem":5584,"_extension":36},"/en-us/blog/authors/michael-karampalas",{"name":5578,"config":5579},"Michael Karampalas",{"headshot":7,"ctfId":5580},"mkarampalas",{"template":683},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5586,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5587,"config":5592,"_id":5593,"_type":31,"title":5588,"_source":33,"_file":5594,"_stem":5595,"_extension":36},"/en-us/blog/authors/michael-kozono",{"name":5588,"config":5589},"Michael Kozono",{"headshot":5590,"ctfId":5591},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":683},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5597,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5598,"config":5602,"_id":5603,"_type":31,"title":5599,"_source":33,"_file":5604,"_stem":5605,"_extension":36},"/en-us/blog/authors/michael-miranda",{"name":5599,"config":5600},"Michael Miranda",{"headshot":7,"ctfId":5601},"mikemiranda",{"template":683},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5607,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5608,"config":5613,"_id":5614,"_type":31,"title":5609,"_source":33,"_file":5615,"_stem":5616,"_extension":36},"/en-us/blog/authors/michelle-gill",{"name":5609,"config":5610},"Michelle Gill",{"headshot":5611,"ctfId":5612},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":683},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5618,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5619,"config":5624,"_id":5625,"_type":31,"title":5620,"_source":33,"_file":5626,"_stem":5627,"_extension":36},"/en-us/blog/authors/miguel-rincon",{"name":5620,"config":5621},"Miguel Rincon",{"headshot":5622,"ctfId":5623},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":683},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5629,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5630,"config":5634,"_id":5635,"_type":31,"title":5631,"_source":33,"_file":5636,"_stem":5637,"_extension":36},"/en-us/blog/authors/mike-bartlett",{"name":5631,"config":5632},"Mike Bartlett",{"headshot":7,"ctfId":5633},"mydigitalself",{"template":683},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5639,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5640,"config":5644,"_id":5645,"_type":31,"title":5641,"_source":33,"_file":5646,"_stem":5647,"_extension":36},"/en-us/blog/authors/mike-eddington",{"name":5641,"config":5642},"Mike Eddington",{"headshot":714,"ctfId":5643},"q5tK0TgB1ZovSwShKSvOJ",{"template":683},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5649,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5650,"config":5655,"_id":5656,"_type":31,"title":5651,"_source":33,"_file":5657,"_stem":5658,"_extension":36},"/en-us/blog/authors/mike-flouton",{"name":5651,"config":5652},"Mike Flouton",{"headshot":5653,"ctfId":5654},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":683},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5660,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5661,"config":5665,"_id":5666,"_type":31,"title":5662,"_source":33,"_file":5667,"_stem":5668,"_extension":36},"/en-us/blog/authors/mike-gerwitz",{"name":5662,"config":5663},"Mike Gerwitz",{"headshot":714,"ctfId":5664},"Mike-Gerwitz",{"template":683},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5670,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5671,"config":5675,"_id":5676,"_type":31,"title":5672,"_source":33,"_file":5677,"_stem":5678,"_extension":36},"/en-us/blog/authors/mike-greiling",{"name":5672,"config":5673},"Mike Greiling",{"headshot":7,"ctfId":5674},"mikegreiling",{"template":683},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5680,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5681,"config":5685,"_id":5686,"_type":31,"title":5682,"_source":33,"_file":5687,"_stem":5688,"_extension":36},"/en-us/blog/authors/mike-vanbuskirk",{"name":5682,"config":5683},"Mike Vanbuskirk",{"headshot":714,"ctfId":5684},"Mike-Vanbuskirk",{"template":683},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5690,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5691,"config":5695,"_id":5696,"_type":31,"title":5692,"_source":33,"_file":5697,"_stem":5698,"_extension":36},"/en-us/blog/authors/miranda-carter",{"name":5692,"config":5693},"Miranda Carter",{"headshot":714,"ctfId":5694},"4xT4dbRh6N9i7jW5xuPhVp",{"template":683},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5700,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5701,"config":5706,"_id":5707,"_type":31,"title":5702,"_source":33,"_file":5708,"_stem":5709,"_extension":36},"/en-us/blog/authors/mitra-jozenazemian",{"name":5702,"config":5703},"Mitra Jozenazemian",{"headshot":5704,"ctfId":5705},"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":683},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5711,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5712,"config":5717,"_id":5718,"_type":31,"title":5713,"_source":33,"_file":5719,"_stem":5720,"_extension":36},"/en-us/blog/authors/monmayuri-ray",{"name":5713,"config":5714},"Monmayuri Ray",{"headshot":5715,"ctfId":5716},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":683},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5722,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5723,"config":5728,"_id":5730,"_type":31,"title":5724,"_source":33,"_file":5731,"_stem":5732,"_extension":36},"/en-us/blog/authors/naoharu-sasaki",{"name":5724,"config":5725,"role":5727},"Naoharu Sasaki",{"headshot":5726},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":683,"gitlabHandle":5729},"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":5734,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5735,"config":5740,"_id":5741,"_type":31,"title":5736,"_source":33,"_file":5742,"_stem":5743,"_extension":36},"/en-us/blog/authors/nate-rosandich",{"name":5736,"config":5737},"Nate Rosandich",{"headshot":5738,"ctfId":5739},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":683},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5745,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5746,"config":5751,"_id":5752,"_type":31,"title":5747,"_source":33,"_file":5753,"_stem":5754,"_extension":36},"/en-us/blog/authors/neha-khalwadekar",{"name":5747,"config":5748},"Neha Khalwadekar",{"headshot":5749,"ctfId":5750},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":683},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5756,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5757,"config":5762,"_id":5763,"_type":31,"title":5764,"_source":33,"_file":5765,"_stem":5766,"_extension":36},"/en-us/blog/authors/neil-mccorrison",{"name":5758,"config":5759},"Neil McCorrison",{"headshot":5760,"ctfId":5761},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":683},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5768,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5769,"config":5774,"_id":5775,"_type":31,"title":5776,"_source":33,"_file":5777,"_stem":5778,"_extension":36},"/en-us/blog/authors/neil-mcdonald",{"name":5770,"config":5771},"Neil McDonald",{"headshot":5772,"ctfId":5773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":683},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5780,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5781,"config":5785,"_id":5787,"_type":31,"title":5782,"_source":33,"_file":5788,"_stem":5789,"_extension":36},"/en-us/blog/authors/nick-cayou",{"name":5782,"config":5783,"role":7},"Nick Cayou",{"headshot":5784},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":683,"gitlabHandle":5786},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5791,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5792,"config":5797,"_id":5798,"_type":31,"title":5793,"_source":33,"_file":5799,"_stem":5800,"_extension":36},"/en-us/blog/authors/nick-malcolm",{"name":5793,"config":5794},"Nick Malcolm",{"headshot":5795,"ctfId":5796},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":683},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5802,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5803,"config":5807,"_id":5808,"_type":31,"title":5804,"_source":33,"_file":5809,"_stem":5810,"_extension":36},"/en-us/blog/authors/nick-thomas",{"name":5804,"config":5805},"Nick Thomas",{"headshot":7,"ctfId":5806},"nickthomas",{"template":683},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5812,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5813,"config":5818,"_id":5819,"_type":31,"title":5814,"_source":33,"_file":5820,"_stem":5821,"_extension":36},"/en-us/blog/authors/nick-veenhof",{"name":5814,"config":5815},"Nick Veenhof",{"headshot":5816,"ctfId":5817},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":683},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5823,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5824,"config":5828,"_id":5829,"_type":31,"title":5825,"_source":33,"_file":5830,"_stem":5831,"_extension":36},"/en-us/blog/authors/nico-meisenzahl",{"name":5825,"config":5826},"Nico Meisenzahl",{"headshot":7,"ctfId":5827},"nicomeisenzahl",{"template":683},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5833,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5834,"config":5838,"_id":5839,"_type":31,"title":5835,"_source":33,"_file":5840,"_stem":5841,"_extension":36},"/en-us/blog/authors/nicole-schwartz",{"name":5835,"config":5836},"Nicole Schwartz",{"headshot":7,"ctfId":5837},"nicoleschwartz",{"template":683},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5843,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5844,"config":5849,"_id":5850,"_type":31,"title":5845,"_source":33,"_file":5851,"_stem":5852,"_extension":36},"/en-us/blog/authors/nikhil-george",{"name":5845,"config":5846},"Nikhil George",{"headshot":5847,"ctfId":5848},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":683},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5854,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5855,"config":5860,"_id":5861,"_type":31,"title":5856,"_source":33,"_file":5862,"_stem":5863,"_extension":36},"/en-us/blog/authors/nima-badiey",{"name":5856,"config":5857},"Nima Badiey",{"headshot":5858,"ctfId":5859},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":683},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5865,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5866,"config":5871,"_id":5872,"_type":31,"title":5867,"_source":33,"_file":5873,"_stem":5874,"_extension":36},"/en-us/blog/authors/noah-ing",{"name":5867,"config":5868},"Noah Ing",{"headshot":5869,"ctfId":5870},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":683},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5876,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5877,"config":5881,"_id":5882,"_type":31,"title":5878,"_source":33,"_file":5883,"_stem":5884,"_extension":36},"/en-us/blog/authors/noah-manger",{"name":5878,"config":5879},"Noah Manger",{"headshot":714,"ctfId":5880},"Noah-Manger",{"template":683},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5886,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5887,"config":5891,"_id":5892,"_type":31,"title":5888,"_source":33,"_file":5893,"_stem":5894,"_extension":36},"/en-us/blog/authors/noah-zoschke",{"name":5888,"config":5889},"Noah Zoschke",{"headshot":714,"ctfId":5890},"Noah-Zoschke",{"template":683},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5896,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5897,"config":5901,"_id":5902,"_type":31,"title":5898,"_source":33,"_file":5903,"_stem":5904,"_extension":36},"/en-us/blog/authors/nolan-myers",{"name":5898,"config":5899},"Nolan Myers",{"headshot":714,"ctfId":5900},"Nolan-Myers",{"template":683},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5906,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5907,"config":5911,"_id":5912,"_type":31,"title":5908,"_source":33,"_file":5913,"_stem":5914,"_extension":36},"/en-us/blog/authors/nupur-sharma",{"name":5908,"config":5909},"Nupur Sharma",{"headshot":714,"ctfId":5910},"6p7RQDl0cDWnAxU8yu2vVK",{"template":683},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5916,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5917,"config":5921,"_id":5922,"_type":31,"title":5918,"_source":33,"_file":5923,"_stem":5924,"_extension":36},"/en-us/blog/authors/nuritzi-sanchez",{"name":5918,"config":5919},"Nuritzi Sanchez",{"headshot":7,"ctfId":5920},"nuritzi",{"template":683},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5926,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5927,"config":5932,"_id":5933,"_type":31,"title":5928,"_source":33,"_file":5934,"_stem":5935,"_extension":36},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5928,"config":5929},"Oleksandr Pysaryuk",{"headshot":5930,"ctfId":5931},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":683},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":5937,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5938,"config":5943,"_id":5944,"_type":31,"title":5945,"_source":33,"_file":5946,"_stem":5947,"_extension":36},"/en-us/blog/authors/olena-horal-koretska",{"name":5939,"config":5940},"Olena Horal-Koretska",{"headshot":5941,"ctfId":5942},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":683},"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":5949,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5950,"config":5954,"_id":5956,"_type":31,"title":5951,"_source":33,"_file":5957,"_stem":5958,"_extension":36},"/en-us/blog/authors/olivier-campeau",{"name":5951,"config":5952},"Olivier Campeau",{"headshot":5953},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":683,"gitlabHandle":5955},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5960,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5961,"config":5966,"_id":5967,"_type":31,"title":5968,"_source":33,"_file":5969,"_stem":5970,"_extension":36},"/en-us/blog/authors/olivier-dupr",{"name":5962,"config":5963},"Olivier Dupré",{"headshot":5964,"ctfId":5965},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":683},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":5972,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5973,"config":5978,"_id":5979,"_type":31,"title":5974,"_source":33,"_file":5980,"_stem":5981,"_extension":36},"/en-us/blog/authors/omar-fernandez",{"name":5974,"config":5975},"Omar Fernandez",{"headshot":5976,"ctfId":5977},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":683},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":5983,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5984,"config":5988,"_id":5989,"_type":31,"title":5985,"_source":33,"_file":5990,"_stem":5991,"_extension":36},"/en-us/blog/authors/opher-vishnia",{"name":5985,"config":5986},"Opher Vishnia",{"headshot":714,"ctfId":5987},"O0F3sw3av9pRAxeP9iR7N",{"template":683},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":5993,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":5994,"config":5998,"_id":5999,"_type":31,"title":5995,"_source":33,"_file":6000,"_stem":6001,"_extension":36},"/en-us/blog/authors/orit-golowinski",{"name":5995,"config":5996},"Orit Golowinski",{"headshot":7,"ctfId":5997},"ogolowinski",{"template":683},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6003,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6004,"config":6009,"_id":6010,"_type":31,"title":6005,"_source":33,"_file":6011,"_stem":6012,"_extension":36},"/en-us/blog/authors/ottilia-westerlund",{"name":6005,"config":6006},"Ottilia Westerlund",{"headshot":6007,"ctfId":6008},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":683},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6014,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6015,"config":6019,"_id":6020,"_type":31,"title":6016,"_source":33,"_file":6021,"_stem":6022,"_extension":36},"/en-us/blog/authors/owen-williams",{"name":6016,"config":6017},"Owen Williams",{"headshot":714,"ctfId":6018},"Owen-Williams",{"template":683},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6024,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6025,"config":6029,"_id":6030,"_type":31,"title":6026,"_source":33,"_file":6031,"_stem":6032,"_extension":36},"/en-us/blog/authors/pablo-carranza",{"name":6026,"config":6027},"Pablo Carranza",{"headshot":714,"ctfId":6028},"Pablo-Carranza",{"template":683},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6034,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6035,"config":6039,"_id":6040,"_type":31,"title":6036,"_source":33,"_file":6041,"_stem":6042,"_extension":36},"/en-us/blog/authors/parker-ennis",{"name":6036,"config":6037},"Parker Ennis",{"headshot":7,"ctfId":6038},"parkerennis",{"template":683},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6044,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6045,"config":6049,"_id":6050,"_type":31,"title":6046,"_source":33,"_file":6051,"_stem":6052,"_extension":36},"/en-us/blog/authors/patricio-cano",{"name":6046,"config":6047},"Patricio Cano",{"headshot":714,"ctfId":6048},"Patricio-Cano",{"template":683},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6054,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6055,"config":6059,"_id":6060,"_type":31,"title":6056,"_source":33,"_file":6061,"_stem":6062,"_extension":36},"/en-us/blog/authors/patrick-deuley",{"name":6056,"config":6057},"Patrick Deuley",{"headshot":714,"ctfId":6058},"4YYemtKKpxKC4yukyFavai",{"template":683},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6064,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6065,"config":6069,"_id":6070,"_type":31,"title":6066,"_source":33,"_file":6071,"_stem":6072,"_extension":36},"/en-us/blog/authors/patrick-foster",{"name":6066,"config":6067},"Patrick Foster",{"headshot":714,"ctfId":6068},"Patrick-Foster",{"template":683},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6074,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6075,"config":6080,"_id":6081,"_type":31,"title":6076,"_source":33,"_file":6082,"_stem":6083,"_extension":36},"/en-us/blog/authors/patrick-steinhardt",{"name":6076,"config":6077},"Patrick Steinhardt",{"headshot":6078,"ctfId":6079},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":683},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6085,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6086,"config":6090,"_id":6091,"_type":31,"title":6087,"_source":33,"_file":6092,"_stem":6093,"_extension":36},"/en-us/blog/authors/patty-cheung",{"name":6087,"config":6088},"Patty Cheung",{"headshot":714,"ctfId":6089},"pattycheung",{"template":683},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6095,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6096,"config":6100,"_id":6101,"_type":31,"title":6097,"_source":33,"_file":6102,"_stem":6103,"_extension":36},"/en-us/blog/authors/paul-badcock",{"name":6097,"config":6098},"Paul Badcock",{"headshot":714,"ctfId":6099},"TbNQIdiD4vlFB7XYXeArb",{"template":683},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6105,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6106,"config":6110,"_id":6111,"_type":31,"title":6112,"_source":33,"_file":6113,"_stem":6114,"_extension":36},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6107,"config":6108},"Paul Gascou-Vaillancourt",{"headshot":714,"ctfId":6109},"6Yg7HWPoy2E5vwudH0EZja",{"template":683},"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":6116,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6117,"config":6121,"_id":6122,"_type":31,"title":6118,"_source":33,"_file":6123,"_stem":6124,"_extension":36},"/en-us/blog/authors/paul-hibbitts",{"name":6118,"config":6119},"Paul Hibbitts",{"headshot":714,"ctfId":6120},"Paul-Hibbitts",{"template":683},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6126,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6127,"config":6131,"_id":6132,"_type":31,"title":6128,"_source":33,"_file":6133,"_stem":6134,"_extension":36},"/en-us/blog/authors/paul-machle",{"name":6128,"config":6129},"Paul Machle",{"headshot":714,"ctfId":6130},"Paul-Machle",{"template":683},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6136,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6137,"config":6141,"_id":6143,"_type":31,"title":6138,"_source":33,"_file":6144,"_stem":6145,"_extension":36},"/en-us/blog/authors/paul-meresanu",{"name":6138,"role":7,"config":6139},"Paul Meresanu",{"headshot":6140},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":683,"gitlabHandle":6142},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6147,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6148,"config":6153,"_id":6154,"_type":31,"title":6149,"_source":33,"_file":6155,"_stem":6156,"_extension":36},"/en-us/blog/authors/payton-burdette",{"name":6149,"config":6150},"Payton Burdette",{"headshot":6151,"ctfId":6152},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":683},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6158,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6159,"config":6163,"_id":6164,"_type":31,"title":6160,"_source":33,"_file":6165,"_stem":6166,"_extension":36},"/en-us/blog/authors/pedro-fortuna",{"name":6160,"config":6161},"Pedro Fortuna",{"headshot":714,"ctfId":6162},"7JwB4WZYF19OKwOo4yk5n4",{"template":683},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6168,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6169,"config":6174,"_id":6175,"_type":31,"title":6176,"_source":33,"_file":6177,"_stem":6178,"_extension":36},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6170,"config":6171},"Pedro Moreira da Silva",{"headshot":6172,"ctfId":6173},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":683},"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":6180,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6181,"config":6186,"_id":6187,"_type":31,"title":6182,"_source":33,"_file":6188,"_stem":6189,"_extension":36},"/en-us/blog/authors/phil-hughes",{"name":6182,"config":6183},"Phil Hughes",{"headshot":6184,"ctfId":6185},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":683},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6191,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6192,"config":6196,"_id":6197,"_type":31,"title":6193,"_source":33,"_file":6198,"_stem":6199,"_extension":36},"/en-us/blog/authors/philip-welz",{"name":6193,"config":6194},"Philip Welz",{"headshot":7,"ctfId":6195},"philxx",{"template":683},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6201,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6202,"config":6207,"_id":6208,"_type":31,"title":6209,"_source":33,"_file":6210,"_stem":6211,"_extension":36},"/en-us/blog/authors/philippe-lafoucrire",{"name":6203,"config":6204},"Philippe Lafoucrière",{"headshot":6205,"ctfId":6206},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":683},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6213,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6214,"config":6218,"_id":6219,"_type":31,"title":6220,"_source":33,"_file":6221,"_stem":6222,"_extension":36},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6215,"config":6216},"Pierre de La Morinerie",{"headshot":714,"ctfId":6217},"Pierre-de-La-Morinerie",{"template":683},"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":6224,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6225,"config":6229,"_id":6230,"_type":31,"title":6226,"_source":33,"_file":6231,"_stem":6232,"_extension":36},"/en-us/blog/authors/pierre-smeyers",{"name":6226,"config":6227},"Pierre Smeyers",{"headshot":7,"ctfId":6228},"pismy",{"template":683},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6234,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6235,"config":6240,"_id":6241,"_type":31,"title":6236,"_source":33,"_file":6242,"_stem":6243,"_extension":36},"/en-us/blog/authors/pini-wietchner",{"name":6236,"config":6237},"Pini Wietchner",{"headshot":6238,"ctfId":6239},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":683},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6245,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6246,"config":6250,"_id":6251,"_type":31,"title":6252,"_source":33,"_file":6253,"_stem":6254,"_extension":36},"/en-us/blog/authors/pj-metz",{"name":6247,"config":6248},"PJ Metz",{"headshot":714,"ctfId":6249},"PjMetz",{"template":683},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6256,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6257,"config":6260,"_id":6261,"_type":31,"title":6262,"_source":33,"_file":6263,"_stem":6264,"_extension":36},"/en-us/blog/authors/plapadoo",{"name":6258,"config":6259},"plapadoo",{"headshot":714,"ctfId":6258},{"template":683},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6266,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6267,"config":6271,"_id":6272,"_type":31,"title":6268,"_source":33,"_file":6273,"_stem":6274,"_extension":36},"/en-us/blog/authors/pranay-bakre",{"name":6268,"config":6269},"Pranay Bakre",{"headshot":7,"ctfId":6270},"Darren-Eastman",{"template":683},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6276,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6277,"config":6281,"_id":6282,"_type":31,"title":6278,"_source":33,"_file":6283,"_stem":6284,"_extension":36},"/en-us/blog/authors/priyanka-sharma",{"name":6278,"config":6279},"Priyanka Sharma",{"headshot":7,"ctfId":6280},"pritianka",{"template":683},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6286,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6287,"config":6292,"_id":6293,"_type":31,"title":6294,"_source":33,"_file":6295,"_stem":6296,"_extension":36},"/en-us/blog/authors/pter-bozs",{"name":6288,"config":6289},"Péter Bozsó",{"headshot":6290,"ctfId":6291},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":683},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6298,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6299,"config":6303,"_id":6304,"_type":31,"title":6300,"_source":33,"_file":6305,"_stem":6306,"_extension":36},"/en-us/blog/authors/quan-to",{"name":6300,"config":6301},"Quan To",{"headshot":714,"ctfId":6302},"5dswLnpCobgICjM0RpHMU2",{"template":683},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6308,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6309,"config":6314,"_id":6315,"_type":31,"title":6310,"_source":33,"_file":6316,"_stem":6317,"_extension":36},"/en-us/blog/authors/rachel-nienaber",{"name":6310,"config":6311},"Rachel Nienaber",{"headshot":6312,"ctfId":6313},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":683},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6319,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6320,"config":6324,"_id":6326,"_type":31,"title":6321,"_source":33,"_file":6327,"_stem":6328,"_extension":36},"/en-us/blog/authors/radovan-bacovic",{"name":6321,"config":6322},"Radovan Bacovic",{"headshot":6323},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":683,"gitlabHandle":6325},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6330,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6331,"config":6335,"_id":6336,"_type":31,"title":6337,"_source":33,"_file":6338,"_stem":6339,"_extension":36},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6332,"config":6333},"Rahul Bhargava, CTO, Evolphin",{"headshot":714,"ctfId":6334},"Rahul-Bhargava-CTO-Evolphin",{"template":683},"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":6341,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6342,"config":6347,"_id":6348,"_type":31,"title":6343,"_source":33,"_file":6349,"_stem":6350,"_extension":36},"/en-us/blog/authors/raimund-hook",{"name":6343,"config":6344},"Raimund Hook",{"headshot":6345,"ctfId":6346},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":683},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6352,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6353,"config":6357,"_id":6358,"_type":31,"title":6354,"_source":33,"_file":6359,"_stem":6360,"_extension":36},"/en-us/blog/authors/raquel-campuzano",{"name":6354,"config":6355},"Raquel Campuzano",{"headshot":714,"ctfId":6356},"Raquel-Campuzano",{"template":683},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6362,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6363,"config":6367,"_id":6368,"_type":31,"title":6364,"_source":33,"_file":6369,"_stem":6370,"_extension":36},"/en-us/blog/authors/ray-paik",{"name":6364,"config":6365},"Ray Paik",{"headshot":7,"ctfId":6366},"rpaik",{"template":683},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6372,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6373,"config":6378,"_id":6379,"_type":31,"title":6374,"_source":33,"_file":6380,"_stem":6381,"_extension":36},"/en-us/blog/authors/rayana-verissimo",{"name":6374,"config":6375},"Rayana Verissimo",{"headshot":6376,"ctfId":6377},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":683},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6383,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6384,"config":6388,"_id":6390,"_type":31,"title":6391,"_source":33,"_file":6392,"_stem":6393,"_extension":36},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6385,"config":6386},"Rebeca Fenoy-Anthony",{"headshot":6387},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":683,"gitlabHandle":6389},"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":6395,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6396,"config":6400,"_id":6401,"_type":31,"title":6397,"_source":33,"_file":6402,"_stem":6403,"_extension":36},"/en-us/blog/authors/rebecca-dodd",{"name":6397,"config":6398},"Rebecca Dodd",{"headshot":714,"ctfId":6399},"Rebecca-Dodd",{"template":683},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6405,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6406,"config":6410,"_id":6411,"_type":31,"title":6407,"_source":33,"_file":6412,"_stem":6413,"_extension":36},"/en-us/blog/authors/regis-freyd",{"name":6407,"config":6408},"Regis Freyd",{"headshot":714,"ctfId":6409},"Regis-Freyd",{"template":683},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6415,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6416,"config":6421,"_id":6422,"_type":31,"title":6417,"_source":33,"_file":6423,"_stem":6424,"_extension":36},"/en-us/blog/authors/regnard-raquedan",{"name":6417,"config":6418},"Regnard Raquedan",{"headshot":6419,"ctfId":6420},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":683},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6426,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6427,"config":6431,"_id":6432,"_type":31,"title":6428,"_source":33,"_file":6433,"_stem":6434,"_extension":36},"/en-us/blog/authors/renato-stanic",{"name":6428,"config":6429},"Renato Stanic",{"headshot":7,"ctfId":6430},"rstanic12",{"template":683},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6436,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6437,"config":6442,"_id":6443,"_type":31,"title":6438,"_source":33,"_file":6444,"_stem":6445,"_extension":36},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6438,"config":6439},"Ricardo Amarilla Villalba",{"headshot":6440,"ctfId":6441},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":683},"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":6447,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6448,"config":6452,"_id":6453,"_type":31,"title":6449,"_source":33,"_file":6454,"_stem":6455,"_extension":36},"/en-us/blog/authors/riccardo-padovani",{"name":6449,"config":6450},"Riccardo Padovani",{"headshot":714,"ctfId":6451},"Riccardo-Padovani",{"template":683},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6457,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6458,"config":6463,"_id":6464,"_type":31,"title":6465,"_source":33,"_file":6466,"_stem":6467,"_extension":36},"/en-us/blog/authors/rmy-coutable",{"name":6459,"config":6460},"Rémy Coutable",{"headshot":6461,"ctfId":6462},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":683},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6469,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6470,"config":6475,"_id":6476,"_type":31,"title":6471,"_source":33,"_file":6477,"_stem":6478,"_extension":36},"/en-us/blog/authors/rob-jackson",{"name":6471,"config":6472},"Rob Jackson",{"headshot":6473,"ctfId":6474},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":683},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6480,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6481,"config":6485,"_id":6486,"_type":31,"title":6482,"_source":33,"_file":6487,"_stem":6488,"_extension":36},"/en-us/blog/authors/rob-ribeiro",{"name":6482,"config":6483},"Rob Ribeiro",{"headshot":714,"ctfId":6484},"Rob-Ribeiro",{"template":683},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6490,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6491,"config":6495,"_id":6496,"_type":31,"title":6492,"_source":33,"_file":6497,"_stem":6498,"_extension":36},"/en-us/blog/authors/robert-speicher",{"name":6492,"config":6493},"Robert Speicher",{"headshot":7,"ctfId":6494},"rspeicher",{"template":683},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6500,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6501,"config":6506,"_id":6507,"_type":31,"title":6502,"_source":33,"_file":6508,"_stem":6509,"_extension":36},"/en-us/blog/authors/robert-williams",{"name":6502,"config":6503},"Robert Williams",{"headshot":6504,"ctfId":6505},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":683},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6511,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6512,"config":6518,"_id":6519,"_type":31,"title":6513,"_source":33,"_file":6520,"_stem":6521,"_extension":36},"/en-us/blog/authors/robin-schulman",{"name":6513,"config":6514,"role":6517},"Robin Schulman",{"headshot":6515,"ctfId":6516},"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":683},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6523,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6524,"config":6528,"_id":6529,"_type":31,"title":6525,"_source":33,"_file":6530,"_stem":6531,"_extension":36},"/en-us/blog/authors/roger-woo",{"name":6525,"config":6526},"Roger Woo",{"headshot":714,"ctfId":6527},"rogerwoo",{"template":683},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6533,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6534,"config":6540,"_id":6541,"_type":31,"title":6542,"_source":33,"_file":6543,"_stem":6544,"_extension":36},"/en-us/blog/authors/rohit-shambhuni",{"role":6535,"name":6536,"config":6537},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6538,"ctfId":6539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":683},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6546,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6547,"config":6551,"_id":6552,"_type":31,"title":6548,"_source":33,"_file":6553,"_stem":6554,"_extension":36},"/en-us/blog/authors/roman-kuba",{"name":6548,"config":6549},"Roman Kuba",{"headshot":7,"ctfId":6550},"rkuba",{"template":683},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6556,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6557,"config":6562,"_id":6563,"_type":31,"title":6564,"_source":33,"_file":6565,"_stem":6566,"_extension":36},"/en-us/blog/authors/romuald-atchad",{"name":6558,"config":6559},"Romuald Atchadé",{"headshot":6560,"ctfId":6561},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":683},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6568,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6569,"config":6573,"_id":6574,"_type":31,"title":6575,"_source":33,"_file":6576,"_stem":6577,"_extension":36},"/en-us/blog/authors/ronald-van-zon",{"name":6570,"config":6571},"Ronald van Zon",{"headshot":7,"ctfId":6572},"Eagllus",{"template":683},"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":6579,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6580,"config":6584,"_id":6585,"_type":31,"title":6581,"_source":33,"_file":6586,"_stem":6587,"_extension":36},"/en-us/blog/authors/ross-fuhrman",{"name":6581,"config":6582},"Ross Fuhrman",{"headshot":714,"ctfId":6583},"7dkuWBvIc0AQanUclt3pOk",{"template":683},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6589,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6590,"config":6594,"_id":6595,"_type":31,"title":6591,"_source":33,"_file":6596,"_stem":6597,"_extension":36},"/en-us/blog/authors/roy-taragan",{"name":6591,"config":6592},"Roy Taragan",{"headshot":714,"ctfId":6593},"3pnwP9gqELfda3DCOQJQCL",{"template":683},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6599,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6600,"config":6605,"_id":6606,"_type":31,"title":6601,"_source":33,"_file":6607,"_stem":6608,"_extension":36},"/en-us/blog/authors/ruby-nealon",{"name":6601,"config":6602},"Ruby Nealon",{"headshot":6603,"ctfId":6604},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":683},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6610,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6611,"config":6615,"_id":6616,"_type":31,"title":6612,"_source":33,"_file":6617,"_stem":6618,"_extension":36},"/en-us/blog/authors/rupert-douglas",{"name":6612,"config":6613},"Rupert Douglas",{"headshot":7,"ctfId":6614},"rdouglasgitlab",{"template":683},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6620,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6621,"config":6625,"_id":6626,"_type":31,"title":6627,"_source":33,"_file":6628,"_stem":6629,"_extension":36},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6622,"config":6623},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6624},"3PShSyZ6DJXnkDa5xrQs7V",{"template":683},"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":6631,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6632,"config":6637,"_id":6638,"_type":31,"title":6633,"_source":33,"_file":6639,"_stem":6640,"_extension":36},"/en-us/blog/authors/rutvik-shah",{"name":6633,"config":6634},"Rutvik Shah",{"headshot":6635,"ctfId":6636},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":683},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6642,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6643,"config":6648,"_id":6649,"_type":31,"title":6644,"_source":33,"_file":6650,"_stem":6651,"_extension":36},"/en-us/blog/authors/sacha-guyon",{"name":6644,"config":6645},"Sacha Guyon",{"headshot":6646,"ctfId":6647},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":683},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6653,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6654,"config":6659,"_id":6660,"_type":31,"title":6655,"_source":33,"_file":6661,"_stem":6662,"_extension":36},"/en-us/blog/authors/safwan-ahmed",{"name":6655,"config":6656},"Safwan Ahmed",{"headshot":6657,"ctfId":6658},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":683},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6664,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6665,"config":6669,"_id":6671,"_type":31,"title":6666,"_source":33,"_file":6672,"_stem":6673,"_extension":36},"/en-us/blog/authors/salahddine-aberkan",{"name":6666,"config":6667},"Salahddine Aberkan",{"headshot":6668},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":683,"gitlabHandle":6670},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6675,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6676,"config":6681,"_id":6682,"_type":31,"title":6677,"_source":33,"_file":6683,"_stem":6684,"_extension":36},"/en-us/blog/authors/salman-ladha",{"name":6677,"config":6678},"Salman Ladha",{"headshot":6679,"ctfId":6680},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":683},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6686,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6687,"config":6692,"_id":6693,"_type":31,"title":6688,"_source":33,"_file":6694,"_stem":6695,"_extension":36},"/en-us/blog/authors/sam-beckham",{"name":6688,"config":6689},"Sam Beckham",{"headshot":6690,"ctfId":6691},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":683},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6697,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6698,"config":6703,"_id":6704,"_type":31,"title":6699,"_source":33,"_file":6705,"_stem":6706,"_extension":36},"/en-us/blog/authors/sam-kerr",{"name":6699,"config":6700},"Sam Kerr",{"headshot":6701,"ctfId":6702},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":683},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6708,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6709,"config":6714,"_id":6715,"_type":31,"title":6710,"_source":33,"_file":6716,"_stem":6717,"_extension":36},"/en-us/blog/authors/sam-morris",{"name":6710,"config":6711},"Sam Morris",{"headshot":6712,"ctfId":6713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":683},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6719,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6720,"config":6725,"_id":6726,"_type":31,"title":6721,"_source":33,"_file":6727,"_stem":6728,"_extension":36},"/en-us/blog/authors/sam-white",{"name":6721,"config":6722},"Sam White",{"headshot":6723,"ctfId":6724},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":683},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6730,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6731,"config":6736,"_id":6737,"_type":31,"title":6732,"_source":33,"_file":6738,"_stem":6739,"_extension":36},"/en-us/blog/authors/sam-wiskow",{"name":6732,"config":6733},"Sam Wiskow",{"headshot":6734,"ctfId":6735},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":683},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6741,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6742,"config":6747,"_id":6748,"_type":31,"title":6743,"_source":33,"_file":6749,"_stem":6750,"_extension":36},"/en-us/blog/authors/samantha-lee",{"name":6743,"config":6744},"Samantha Lee",{"headshot":6745,"ctfId":6746},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":683},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6752,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6753,"config":6757,"_id":6758,"_type":31,"title":6759,"_source":33,"_file":6760,"_stem":6761,"_extension":36},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6754,"config":6755},"Sameer Farooqui, OctoML",{"headshot":714,"ctfId":6756},"Sameer-Farooqui-OctoML",{"template":683},"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":6763,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6764,"config":6769,"_id":6770,"_type":31,"title":6765,"_source":33,"_file":6771,"_stem":6772,"_extension":36},"/en-us/blog/authors/sameer-kamani",{"name":6765,"config":6766},"Sameer Kamani",{"headshot":6767,"ctfId":6768},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":683},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6774,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6775,"config":6780,"_id":6781,"_type":31,"title":6776,"_source":33,"_file":6782,"_stem":6783,"_extension":36},"/en-us/blog/authors/samer-akkoub",{"name":6776,"config":6777},"Samer Akkoub",{"headshot":6778,"ctfId":6779},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":683},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6785,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6786,"config":6790,"_id":6791,"_type":31,"title":6787,"_source":33,"_file":6792,"_stem":6793,"_extension":36},"/en-us/blog/authors/samuel-alfageme",{"name":6787,"config":6788},"Samuel Alfageme",{"headshot":714,"ctfId":6789},"Samuel-Alfageme",{"template":683},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6795,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6796,"config":6803,"_id":6804,"_type":31,"title":6798,"_source":33,"_file":6805,"_stem":6806,"_extension":36},"/en-us/blog/authors/sandra-gittlen",{"role":6797,"name":6798,"config":6799},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6800,"linkedin":6801,"ctfId":6802},"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":683},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6808,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6809,"config":6813,"_id":6814,"_type":31,"title":6810,"_source":33,"_file":6815,"_stem":6816,"_extension":36},"/en-us/blog/authors/sandra-salerno",{"name":6810,"config":6811},"Sandra Salerno",{"headshot":714,"ctfId":6812},"Sandra-Salerno",{"template":683},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6818,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6819,"config":6823,"_id":6824,"_type":31,"title":6825,"_source":33,"_file":6826,"_stem":6827,"_extension":36},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6820,"config":6821},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6822},"topodelapradera",{"template":683},"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":6829,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6830,"config":6834,"_id":6835,"_type":31,"title":6831,"_source":33,"_file":6836,"_stem":6837,"_extension":36},"/en-us/blog/authors/sara-kassabian",{"name":6831,"config":6832},"Sara Kassabian",{"headshot":7,"ctfId":6833},"skassabian",{"template":683},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6839,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6840,"config":6845,"_id":6846,"_type":31,"title":6841,"_source":33,"_file":6847,"_stem":6848,"_extension":36},"/en-us/blog/authors/sara-meadzinger",{"name":6841,"config":6842},"Sara Meadzinger",{"headshot":6843,"ctfId":6844},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":683},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6850,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6851,"config":6855,"_id":6856,"_type":31,"title":6852,"_source":33,"_file":6857,"_stem":6858,"_extension":36},"/en-us/blog/authors/sarah-daily",{"name":6852,"config":6853},"Sarah Daily",{"headshot":714,"ctfId":6854},"2YhqRPG08HF0FCF1l7oeZL",{"template":683},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6860,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6861,"config":6865,"_id":6866,"_type":31,"title":6862,"_source":33,"_file":6867,"_stem":6868,"_extension":36},"/en-us/blog/authors/sarah-german",{"name":6862,"config":6863},"Sarah German",{"headshot":6864,"ctfId":4532},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":683},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6870,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6871,"config":6876,"_id":6877,"_type":31,"title":6872,"_source":33,"_file":6878,"_stem":6879,"_extension":36},"/en-us/blog/authors/sarah-matthies",{"name":6872,"config":6873},"Sarah Matthies",{"headshot":6874,"ctfId":6875},"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":683},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6881,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6882,"config":6886,"_id":6887,"_type":31,"title":6888,"_source":33,"_file":6889,"_stem":6890,"_extension":36},"/en-us/blog/authors/sarah-odonnell",{"name":6883,"config":6884},"Sarah O’Donnell",{"headshot":7,"ctfId":6885},"sarahod",{"template":683},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6892,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6893,"config":6898,"_id":6899,"_type":31,"title":6894,"_source":33,"_file":6900,"_stem":6901,"_extension":36},"/en-us/blog/authors/sarah-waldner",{"name":6894,"config":6895},"Sarah Waldner",{"headshot":6896,"ctfId":6897},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":683},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6903,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6904,"config":6908,"_id":6909,"_type":31,"title":6905,"_source":33,"_file":6910,"_stem":6911,"_extension":36},"/en-us/blog/authors/sarrah-vesselov",{"name":6905,"config":6906},"Sarrah Vesselov",{"headshot":7,"ctfId":6907},"sarrahvesselov",{"template":683},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6913,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6914,"config":6918,"_id":6919,"_type":31,"title":6915,"_source":33,"_file":6920,"_stem":6921,"_extension":36},"/en-us/blog/authors/sarup-banskota",{"name":6915,"config":6916},"Sarup Banskota",{"headshot":714,"ctfId":6917},"3sY2Ef0sXxaJKCmArdSLsA",{"template":683},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6923,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6924,"config":6929,"_id":6930,"_type":31,"title":6925,"_source":33,"_file":6931,"_stem":6932,"_extension":36},"/en-us/blog/authors/sascha-eggenberger",{"name":6925,"config":6926},"Sascha Eggenberger",{"headshot":6927,"ctfId":6928},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":683},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":6934,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6935,"config":6939,"_id":6940,"_type":31,"title":6936,"_source":33,"_file":6941,"_stem":6942,"_extension":36},"/en-us/blog/authors/sasha-bannister",{"name":6936,"config":6937},"Sasha Bannister",{"headshot":714,"ctfId":6938},"Sasha-Bannister",{"template":683},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":6944,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6945,"config":6950,"_id":6951,"_type":31,"title":6946,"_source":33,"_file":6952,"_stem":6953,"_extension":36},"/en-us/blog/authors/sasha-gazlay",{"name":6946,"config":6947},"Sasha Gazlay",{"headshot":6948,"ctfId":6949},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":683},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":6955,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6956,"config":6961,"_id":6962,"_type":31,"title":6957,"_source":33,"_file":6963,"_stem":6964,"_extension":36},"/en-us/blog/authors/saumya-upadhyaya",{"name":6957,"config":6958},"Saumya Upadhyaya",{"headshot":6959,"ctfId":6960},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":683},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":6966,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6967,"config":6972,"_id":6973,"_type":31,"title":6974,"_source":33,"_file":6975,"_stem":6976,"_extension":36},"/en-us/blog/authors/scott-de-jonge",{"name":6968,"config":6969},"Scott de Jonge",{"headshot":6970,"ctfId":6971},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":683},"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":6978,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6979,"config":6984,"_id":6985,"_type":31,"title":6980,"_source":33,"_file":6986,"_stem":6987,"_extension":36},"/en-us/blog/authors/scott-hampton",{"name":6980,"config":6981},"Scott Hampton",{"headshot":6982,"ctfId":6983},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":683},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":6989,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":6990,"config":6994,"_id":6995,"_type":31,"title":6991,"_source":33,"_file":6996,"_stem":6997,"_extension":36},"/en-us/blog/authors/scott-williamson",{"name":6991,"config":6992},"Scott Williamson",{"headshot":7,"ctfId":6993},"sfwgitlab",{"template":683},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":6999,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7000,"config":7005,"_id":7006,"_type":31,"title":7001,"_source":33,"_file":7007,"_stem":7008,"_extension":36},"/en-us/blog/authors/sean-arnold",{"name":7001,"config":7002},"Sean Arnold",{"headshot":7003,"ctfId":7004},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":683},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7010,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7011,"config":7015,"_id":7016,"_type":31,"title":7017,"_source":33,"_file":7018,"_stem":7019,"_extension":36},"/en-us/blog/authors/sean-mcgivern",{"name":7012,"config":7013},"Sean McGivern",{"headshot":714,"ctfId":7014},"Sean-McGivern",{"template":683},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7021,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7022,"config":7026,"_id":7027,"_type":31,"title":7023,"_source":33,"_file":7028,"_stem":7029,"_extension":36},"/en-us/blog/authors/sean-packham",{"name":7023,"config":7024},"Sean Packham",{"headshot":714,"ctfId":7025},"Sean-Packham",{"template":683},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7031,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7032,"config":7036,"_id":7037,"_type":31,"title":7033,"_source":33,"_file":7038,"_stem":7039,"_extension":36},"/en-us/blog/authors/sebastian-latacz",{"name":7033,"config":7034},"Sebastian Latacz",{"headshot":714,"ctfId":7035},"4DoWSQV719HEWt2rbDIoQR",{"template":683},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7041,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7042,"config":7046,"_id":7047,"_type":31,"title":7043,"_source":33,"_file":7048,"_stem":7049,"_extension":36},"/en-us/blog/authors/sergey-nuzhdin",{"name":7043,"config":7044},"Sergey Nuzhdin",{"headshot":714,"ctfId":7045},"Sergey-Nuzhdin",{"template":683},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7051,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7052,"config":7056,"_id":7057,"_type":31,"title":7053,"_source":33,"_file":7058,"_stem":7059,"_extension":36},"/en-us/blog/authors/seth-berger",{"name":7053,"config":7054},"Seth Berger",{"headshot":7,"ctfId":7055},"sethgitlab",{"template":683},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7061,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7062,"config":7066,"_id":7067,"_type":31,"title":7063,"_source":33,"_file":7068,"_stem":7069,"_extension":36},"/en-us/blog/authors/shane-rice",{"name":7063,"config":7064},"Shane Rice",{"headshot":714,"ctfId":7065},"3uVL7xMsEf13JzpbXYTCbM",{"template":683},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7071,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7072,"config":7077,"_id":7078,"_type":31,"title":7073,"_source":33,"_file":7079,"_stem":7080,"_extension":36},"/en-us/blog/authors/sharon-gaudin",{"name":7073,"config":7074},"Sharon Gaudin",{"headshot":7075,"ctfId":7076},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":683},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7082,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7083,"config":7087,"_id":7088,"_type":31,"title":7084,"_source":33,"_file":7089,"_stem":7090,"_extension":36},"/en-us/blog/authors/shawn-winters",{"name":7084,"config":7085},"Shawn Winters",{"headshot":7,"ctfId":7086},"ShawnWinters",{"template":683},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7092,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7093,"config":7097,"_id":7098,"_type":31,"title":7099,"_source":33,"_file":7100,"_stem":7101,"_extension":36},"/en-us/blog/authors/sherida-mcmullan",{"name":7094,"config":7095},"Sherida McMullan",{"headshot":714,"ctfId":7096},"BpqiUFXm6aUxjXJdAeKuL",{"template":683},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7103,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7104,"config":7108,"_id":7109,"_type":31,"title":7105,"_source":33,"_file":7110,"_stem":7111,"_extension":36},"/en-us/blog/authors/shinya-maeda",{"name":7105,"config":7106},"Shinya Maeda",{"headshot":7,"ctfId":7107},"dosuken123",{"template":683},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7113,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7114,"config":7119,"_id":7120,"_type":31,"title":7115,"_source":33,"_file":7121,"_stem":7122,"_extension":36},"/en-us/blog/authors/shrishti-choudhary",{"name":7115,"config":7116},"Shrishti Choudhary",{"headshot":7117,"ctfId":7118},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":683},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7124,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7125,"config":7134,"_id":7135,"_type":31,"title":7127,"_source":33,"_file":7136,"_stem":7137,"_extension":36},"/en-us/blog/authors/sid-sijbrandij",{"role":7126,"name":7127,"bio":7128,"config":7129},"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":7130,"twitter":7131,"linkedin":7132,"ctfId":7133},"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":683},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7139,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7140,"config":7145,"_id":7146,"_type":31,"title":7141,"_source":33,"_file":7147,"_stem":7148,"_extension":36},"/en-us/blog/authors/siddharth-mathur",{"name":7141,"config":7142},"Siddharth Mathur",{"headshot":7143,"ctfId":7144},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":683},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7150,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7151,"config":7155,"_id":7156,"_type":31,"title":7152,"_source":33,"_file":7157,"_stem":7158,"_extension":36},"/en-us/blog/authors/simon-tarchichi",{"name":7152,"config":7153},"Simon Tarchichi",{"headshot":7,"ctfId":7154},"kartsims",{"template":683},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7160,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7161,"config":7166,"_id":7167,"_type":31,"title":7162,"_source":33,"_file":7168,"_stem":7169,"_extension":36},"/en-us/blog/authors/sophia-manicor",{"name":7162,"config":7163},"Sophia Manicor",{"headshot":7164,"ctfId":7165},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":683},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7171,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7172,"config":7177,"_id":7178,"_type":31,"title":7173,"_source":33,"_file":7179,"_stem":7180,"_extension":36},"/en-us/blog/authors/sri-rangan",{"name":7173,"config":7174},"Sri Rangan",{"headshot":7175,"ctfId":7176},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":683},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7182,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7183,"config":7188,"_id":7189,"_type":31,"title":7184,"_source":33,"_file":7190,"_stem":7191,"_extension":36},"/en-us/blog/authors/stacy-cline",{"name":7184,"config":7185},"Stacy Cline",{"headshot":7186,"ctfId":7187},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":683},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7193,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7194,"config":7199,"_id":7200,"_type":31,"title":7195,"_source":33,"_file":7201,"_stem":7202,"_extension":36},"/en-us/blog/authors/stan-hu",{"name":7195,"config":7196},"Stan Hu",{"headshot":7197,"ctfId":7198},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":683},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7204,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7205,"config":7209,"_id":7210,"_type":31,"title":7211,"_source":33,"_file":7212,"_stem":7213,"_extension":36},"/en-us/blog/authors/stephan-hochdrfer",{"name":7206,"config":7207},"Stephan Hochdörfer",{"headshot":714,"ctfId":7208},"Stephan-Hochdrfer",{"template":683},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7215,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7216,"config":7220,"_id":7221,"_type":31,"title":7217,"_source":33,"_file":7222,"_stem":7223,"_extension":36},"/en-us/blog/authors/stephanie-garza",{"name":7217,"config":7218},"Stephanie Garza",{"headshot":7,"ctfId":7219},"StephanieGarza",{"template":683},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7225,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7226,"config":7230,"_id":7231,"_type":31,"title":7232,"_source":33,"_file":7233,"_stem":7234,"_extension":36},"/en-us/blog/authors/stephen-mcguinness",{"name":7227,"config":7228},"Stephen McGuinness",{"headshot":7,"ctfId":7229},"smcguinness1",{"template":683},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7236,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7237,"config":7242,"_id":7243,"_type":31,"title":7238,"_source":33,"_file":7244,"_stem":7245,"_extension":36},"/en-us/blog/authors/stephen-walters",{"name":7238,"config":7239},"Stephen Walters",{"headshot":7240,"ctfId":7241},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":683},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7247,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7248,"config":7253,"_id":7254,"_type":31,"title":7249,"_source":33,"_file":7255,"_stem":7256,"_extension":36},"/en-us/blog/authors/steve-abrams",{"name":7249,"config":7250},"Steve Abrams",{"headshot":7251,"ctfId":7252},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":683},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7258,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7259,"config":7263,"_id":7264,"_type":31,"title":7260,"_source":33,"_file":7265,"_stem":7266,"_extension":36},"/en-us/blog/authors/steve-azzopardi",{"name":7260,"config":7261},"Steve Azzopardi",{"headshot":7,"ctfId":7262},"steveazz",{"template":683},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7268,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7269,"config":7274,"_id":7275,"_type":31,"title":7270,"_source":33,"_file":7276,"_stem":7277,"_extension":36},"/en-us/blog/authors/steve-grossman",{"name":7270,"config":7271},"Steve Grossman",{"headshot":7272,"ctfId":7273},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":683},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7279,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7280,"config":7284,"_id":7285,"_type":31,"title":7281,"_source":33,"_file":7286,"_stem":7287,"_extension":36},"/en-us/blog/authors/steve-ropa",{"name":7281,"config":7282},"Steve Ropa",{"headshot":714,"ctfId":7283},"Steve-Ropa",{"template":683},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7289,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7290,"config":7294,"_id":7295,"_type":31,"title":7291,"_source":33,"_file":7296,"_stem":7297,"_extension":36},"/en-us/blog/authors/steve-truong",{"name":7291,"config":7292},"Steve Truong",{"headshot":7,"ctfId":7293},"sttruong",{"template":683},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7299,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7300,"config":7304,"_id":7305,"_type":31,"title":7301,"_source":33,"_file":7306,"_stem":7307,"_extension":36},"/en-us/blog/authors/steven-zinck",{"name":7301,"config":7302},"Steven Zinck",{"headshot":714,"ctfId":7303},"49JllsB7PFUrjj2Wi4Wa2O",{"template":683},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7309,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7310,"config":7314,"_id":7315,"_type":31,"title":7311,"_source":33,"_file":7316,"_stem":7317,"_extension":36},"/en-us/blog/authors/sunil-kowlgi",{"name":7311,"config":7312},"Sunil Kowlgi",{"headshot":714,"ctfId":7313},"Sunil-Kowlgi",{"template":683},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7319,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7320,"config":7324,"_id":7325,"_type":31,"title":7321,"_source":33,"_file":7326,"_stem":7327,"_extension":36},"/en-us/blog/authors/suri-patel",{"name":7321,"config":7322},"Suri Patel",{"headshot":714,"ctfId":7323},"suripatel",{"template":683},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7329,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7330,"config":7335,"_id":7336,"_type":31,"title":7331,"_source":33,"_file":7337,"_stem":7338,"_extension":36},"/en-us/blog/authors/susan-tacker",{"name":7331,"config":7332},"Susan Tacker",{"headshot":7333,"ctfId":7334},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":683},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7340,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7341,"config":7347,"_id":7348,"_type":31,"title":7342,"_source":33,"_file":7349,"_stem":7350,"_extension":36},"/en-us/blog/authors/susie-bitters",{"name":7342,"config":7343},"Susie Bitters",{"headshot":7344,"linkedin":7345,"ctfId":7346},"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":683},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7352,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7353,"config":7357,"_id":7358,"_type":31,"title":7354,"_source":33,"_file":7359,"_stem":7360,"_extension":36},"/en-us/blog/authors/suzanne-selhorn",{"name":7354,"config":7355},"Suzanne Selhorn",{"headshot":7356,"ctfId":4532},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":683},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7362,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7363,"config":7368,"_id":7369,"_type":31,"title":7364,"_source":33,"_file":7370,"_stem":7371,"_extension":36},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7364,"config":7365},"Tanuja Jayarama Raju",{"headshot":7366,"ctfId":7367},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":683},"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":7373,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7374,"config":7379,"_id":7380,"_type":31,"title":7375,"_source":33,"_file":7381,"_stem":7382,"_extension":36},"/en-us/blog/authors/taurie-davis",{"name":7375,"config":7376},"Taurie Davis",{"headshot":7377,"ctfId":7378},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":683},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7384,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7385,"config":7390,"_id":7391,"_type":31,"title":7392,"_source":33,"_file":7393,"_stem":7394,"_extension":36},"/en-us/blog/authors/taylor-mccaslin",{"name":7386,"config":7387},"Taylor McCaslin",{"headshot":7388,"ctfId":7389},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":683},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7396,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7397,"config":7401,"_id":7402,"_type":31,"title":7398,"_source":33,"_file":7403,"_stem":7404,"_extension":36},"/en-us/blog/authors/taylor-murphy",{"name":7398,"config":7399},"Taylor Murphy",{"headshot":7,"ctfId":7400},"tayloramurphy",{"template":683},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7406,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7407,"config":7412,"_id":7413,"_type":31,"title":7408,"_source":33,"_file":7414,"_stem":7415,"_extension":36},"/en-us/blog/authors/ted-gieschen",{"name":7408,"config":7409},"Ted Gieschen",{"headshot":7410,"ctfId":7411},"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":683},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7417,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7418,"config":7422,"_id":7423,"_type":31,"title":7419,"_source":33,"_file":7424,"_stem":7425,"_extension":36},"/en-us/blog/authors/thao-yeager",{"name":7419,"config":7420},"Thao Yeager",{"headshot":7,"ctfId":7421},"thaoyeager",{"template":683},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7427,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7428,"config":7433,"_id":7434,"_type":31,"title":7435,"_source":33,"_file":7436,"_stem":7437,"_extension":36},"/en-us/blog/authors/thiago-figueir",{"name":7429,"config":7430},"Thiago Figueiró",{"headshot":7431,"ctfId":7432},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":683},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7439,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7440,"config":7445,"_id":7446,"_type":31,"title":7441,"_source":33,"_file":7447,"_stem":7448,"_extension":36},"/en-us/blog/authors/thong-kuah",{"name":7441,"config":7442},"Thong Kuah",{"headshot":7443,"ctfId":7444},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":683},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7450,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7451,"config":7455,"_id":7456,"_type":31,"title":7452,"_source":33,"_file":7457,"_stem":7458,"_extension":36},"/en-us/blog/authors/tim-davis",{"name":7452,"config":7453},"Tim Davis",{"headshot":714,"ctfId":7454},"6PksqjEtq1Y8goFUvAUcIn",{"template":683},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7460,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7461,"config":7465,"_id":7466,"_type":31,"title":7462,"_source":33,"_file":7467,"_stem":7468,"_extension":36},"/en-us/blog/authors/tim-lehnen",{"name":7462,"config":7463},"Tim Lehnen",{"headshot":7,"ctfId":7464},"hestenet",{"template":683},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7470,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7471,"config":7476,"_id":7477,"_type":31,"title":7472,"_source":33,"_file":7478,"_stem":7479,"_extension":36},"/en-us/blog/authors/tim-rizzi",{"name":7472,"config":7473},"Tim Rizzi",{"headshot":7474,"ctfId":7475},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":683},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7481,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7482,"config":7486,"_id":7488,"_type":31,"title":7483,"_source":33,"_file":7489,"_stem":7490,"_extension":36},"/en-us/blog/authors/tim-zallmann",{"name":7483,"config":7484},"Tim Zallmann",{"headshot":7485},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":683,"gitlabHandle":7487},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7492,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7493,"config":7497,"_id":7498,"_type":31,"title":7494,"_source":33,"_file":7499,"_stem":7500,"_extension":36},"/en-us/blog/authors/tina-sturgis",{"name":7494,"config":7495},"Tina Sturgis",{"headshot":7,"ctfId":7496},"TinaS",{"template":683},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7502,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7503,"config":7507,"_id":7508,"_type":31,"title":7509,"_source":33,"_file":7510,"_stem":7511,"_extension":36},"/en-us/blog/authors/tobias-gnther",{"name":7504,"config":7505},"Tobias Günther",{"headshot":714,"ctfId":7506},"Tobias-Gnther",{"template":683},"content:en-us:blog:authors:tobias-gnther.yml","Tobias Gnther","en-us/blog/authors/tobias-gnther.yml","en-us/blog/authors/tobias-gnther",{"_path":7513,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7514,"config":7518,"_id":7519,"_type":31,"title":7515,"_source":33,"_file":7520,"_stem":7521,"_extension":36},"/en-us/blog/authors/todd-barr",{"name":7515,"config":7516},"Todd Barr",{"headshot":7,"ctfId":7517},"twbarr",{"template":683},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7523,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7524,"config":7528,"_id":7529,"_type":31,"title":7525,"_source":33,"_file":7530,"_stem":7531,"_extension":36},"/en-us/blog/authors/tom-cooney",{"name":7525,"config":7526},"Tom Cooney",{"headshot":7,"ctfId":7527},"tomcooney",{"template":683},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7533,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7534,"config":7539,"_id":7540,"_type":31,"title":7535,"_source":33,"_file":7541,"_stem":7542,"_extension":36},"/en-us/blog/authors/tomas-vik",{"name":7535,"config":7536},"Tomas Vik",{"headshot":7537,"ctfId":7538},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681785/Blog/Author%20Headshots/viktomas-headshot.jpg","viktomas",{"template":683},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7544,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7545,"config":7550,"_id":7551,"_type":31,"title":7546,"_source":33,"_file":7552,"_stem":7553,"_extension":36},"/en-us/blog/authors/tomasz-maczukin",{"name":7546,"config":7547},"Tomasz Maczukin",{"headshot":7548,"ctfId":7549},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682116/Blog/Author%20Headshots/tmaczukin-headshot.jpg","tmaczukin",{"template":683},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7555,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7556,"config":7560,"_id":7561,"_type":31,"title":18,"_source":33,"_file":7562,"_stem":7563,"_extension":36},"/en-us/blog/authors/toon-claes",{"name":18,"config":7557},{"headshot":7558,"ctfId":7559},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663082/Blog/Author%20Headshots/toon_claes_headshot.png","toon",{"template":683},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7565,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7566,"config":7571,"_id":7572,"_type":31,"title":7567,"_source":33,"_file":7573,"_stem":7574,"_extension":36},"/en-us/blog/authors/torsten-linz",{"name":7567,"config":7568},"Torsten Linz",{"headshot":7569,"ctfId":7570},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658907/Blog/Author%20Headshots/tlinz-headshot.jpg","tlinz",{"template":683},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7576,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7577,"config":7581,"_id":7582,"_type":31,"title":7578,"_source":33,"_file":7583,"_stem":7584,"_extension":36},"/en-us/blog/authors/trevor-knudsen",{"name":7578,"config":7579},"Trevor Knudsen",{"headshot":7,"ctfId":7580},"Tknudsen",{"template":683},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7586,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7587,"config":7592,"_id":7593,"_type":31,"title":7588,"_source":33,"_file":7594,"_stem":7595,"_extension":36},"/en-us/blog/authors/tristan-read",{"name":7588,"config":7589},"Tristan Read",{"headshot":7590,"ctfId":7591},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679131/Blog/Author%20Headshots/tristan.png","tristanread",{"template":683},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7597,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7598,"config":7603,"_id":7604,"_type":31,"title":7599,"_source":33,"_file":7605,"_stem":7606,"_extension":36},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7599,"config":7600},"Tsukasa Komatsubara",{"headshot":7601,"ctfId":7602},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659784/Blog/Author%20Headshots/gitlab_tsukasa.jpg","31YQLiBRrJPn35BBhY69ly",{"template":683},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7608,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7609,"config":7613,"_id":7614,"_type":31,"title":7610,"_source":33,"_file":7615,"_stem":7616,"_extension":36},"/en-us/blog/authors/tsvi-zandany",{"name":7610,"config":7611},"Tsvi Zandany",{"headshot":714,"ctfId":7612},"Tsvi-Zandany",{"template":683},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7618,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7619,"config":7623,"_id":7624,"_type":31,"title":7620,"_source":33,"_file":7625,"_stem":7626,"_extension":36},"/en-us/blog/authors/tye-davis",{"name":7620,"config":7621},"Tye Davis",{"headshot":7,"ctfId":7622},"davistye",{"template":683},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7628,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7629,"config":7633,"_id":7634,"_type":31,"title":7630,"_source":33,"_file":7635,"_stem":7636,"_extension":36},"/en-us/blog/authors/tyler-williams",{"name":7630,"config":7631},"Tyler Williams",{"headshot":7,"ctfId":7632},"tywilliams",{"template":683},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7638,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7639,"config":7643,"_id":7644,"_type":31,"title":7645,"_source":33,"_file":7646,"_stem":7647,"_extension":36},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7640,"config":7641},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7642},"ulrica1",{"template":683},"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":7649,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7650,"config":7655,"_id":7656,"_type":31,"title":7651,"_source":33,"_file":7657,"_stem":7658,"_extension":36},"/en-us/blog/authors/valentine-mairet",{"name":7651,"config":7652},"Valentine Mairet",{"headshot":7653,"ctfId":7654},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665455/Blog/Author%20Headshots/valentine_mairet_headshot.png","1AQjHTpq6sBauRMdCibxQX",{"template":683},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7660,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7661,"config":7665,"_id":7666,"_type":31,"title":7662,"_source":33,"_file":7667,"_stem":7668,"_extension":36},"/en-us/blog/authors/valerie-silverthorne",{"name":7662,"config":7663},"Valerie Silverthorne",{"headshot":714,"ctfId":7664},"vsilverthorne",{"template":683},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7670,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7671,"config":7675,"_id":7676,"_type":31,"title":7672,"_source":33,"_file":7677,"_stem":7678,"_extension":36},"/en-us/blog/authors/vanessa-wegner",{"name":7672,"config":7673},"Vanessa Wegner",{"headshot":7,"ctfId":7674},"vwegner",{"template":683},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7680,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7681,"config":7686,"_id":7687,"_type":31,"title":7682,"_source":33,"_file":7688,"_stem":7689,"_extension":36},"/en-us/blog/authors/veethika-mishra",{"name":7682,"config":7683},"Veethika Mishra",{"headshot":7684,"ctfId":7685},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664676/Blog/Author%20Headshots/veethika-headshot.jpg","veethika",{"template":683},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7691,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7692,"config":7697,"_id":7698,"_type":31,"title":7693,"_source":33,"_file":7699,"_stem":7700,"_extension":36},"/en-us/blog/authors/vick-kelkar",{"name":7693,"config":7694},"Vick Kelkar",{"headshot":7695,"ctfId":7696},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668508/Blog/Author%20Headshots/vkelkar-headshot.jpg","vkelkar",{"template":683},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7702,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7703,"config":7707,"_id":7708,"_type":31,"title":7704,"_source":33,"_file":7709,"_stem":7710,"_extension":36},"/en-us/blog/authors/vicky-steeves",{"name":7704,"config":7705},"Vicky Steeves",{"headshot":7,"ctfId":7706},"vickysteeves",{"template":683},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7712,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7713,"config":7717,"_id":7718,"_type":31,"title":7714,"_source":33,"_file":7719,"_stem":7720,"_extension":36},"/en-us/blog/authors/victor-hernandez",{"name":7714,"config":7715},"Victor Hernandez",{"headshot":714,"ctfId":7716},"KVTkvySIqkAu34p2jsXZz",{"template":683},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7722,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7723,"config":7727,"_id":7728,"_type":31,"title":7724,"_source":33,"_file":7729,"_stem":7730,"_extension":36},"/en-us/blog/authors/victor-wu",{"name":7724,"config":7725},"Victor Wu",{"headshot":714,"ctfId":7726},"victorwu",{"template":683},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7732,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7733,"config":7738,"_id":7739,"_type":31,"title":7734,"_source":33,"_file":7740,"_stem":7741,"_extension":36},"/en-us/blog/authors/viktor-nagy",{"name":7734,"config":7735},"Viktor Nagy",{"headshot":7736,"ctfId":7737},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662918/Blog/Author%20Headshots/nagy-headshot.jpg","nagyvgitlab",{"template":683},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7743,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7744,"config":7748,"_id":7749,"_type":31,"title":7745,"_source":33,"_file":7750,"_stem":7751,"_extension":36},"/en-us/blog/authors/vincent-jong",{"name":7745,"config":7746},"Vincent Jong",{"headshot":714,"ctfId":7747},"Vincent-Jong",{"template":683},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7753,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7754,"config":7759,"_id":7760,"_type":31,"title":7755,"_source":33,"_file":7761,"_stem":7762,"_extension":36},"/en-us/blog/authors/vincy-wilson",{"name":7755,"config":7756},"Vincy Wilson",{"headshot":7757,"ctfId":7758},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669069/Blog/Author%20Headshots/vincy.jpg","1iyKndVlbE3dQnxOJoSY0q",{"template":683},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7764,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7765,"config":7770,"_id":7771,"_type":31,"title":7766,"_source":33,"_file":7772,"_stem":7773,"_extension":36},"/en-us/blog/authors/vishal-tak",{"name":7766,"config":7767},"Vishal Tak",{"headshot":7768,"ctfId":7769},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663854/Blog/Author%20Headshots/vishal_tak_headshot.png","6BalO1YQUIuDdhUP80bFra",{"template":683},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7775,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7776,"config":7781,"_id":7782,"_type":31,"title":7777,"_source":33,"_file":7783,"_stem":7784,"_extension":36},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7777,"config":7778},"Vitor Meireles De Sousa",{"headshot":7779,"ctfId":7780},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682001/Blog/Author%20Headshots/vdesousa-headshot.png","vdesousa",{"template":683},"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":7786,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7787,"config":7791,"_id":7792,"_type":31,"title":7788,"_source":33,"_file":7793,"_stem":7794,"_extension":36},"/en-us/blog/authors/vlad-budica",{"name":7788,"config":7789},"Vlad Budica",{"headshot":714,"ctfId":7790},"Vlad-Budica",{"template":683},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7796,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7797,"config":7801,"_id":7802,"_type":31,"title":7798,"_source":33,"_file":7803,"_stem":7804,"_extension":36},"/en-us/blog/authors/vlad-stoianovici",{"name":7798,"config":7799},"Vlad Stoianovici",{"headshot":7,"ctfId":7800},"vstoianovici",{"template":683},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7806,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7807,"config":7811,"_id":7812,"_type":31,"title":7808,"_source":33,"_file":7813,"_stem":7814,"_extension":36},"/en-us/blog/authors/wayne-haber",{"name":7808,"config":7809},"Wayne Haber",{"headshot":7,"ctfId":7810},"whaber",{"template":683},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7816,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7817,"config":7821,"_id":7822,"_type":31,"title":7818,"_source":33,"_file":7823,"_stem":7824,"_extension":36},"/en-us/blog/authors/will-chandler",{"name":7818,"config":7819},"Will Chandler",{"headshot":714,"ctfId":7820},"DKiIGSSRIyO6QdTQkRkjs",{"template":683},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7826,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7827,"config":7832,"_id":7833,"_type":31,"title":7828,"_source":33,"_file":7834,"_stem":7835,"_extension":36},"/en-us/blog/authors/will-leidheiser",{"name":7828,"config":7829},"Will Leidheiser",{"headshot":7830,"ctfId":7831},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679335/Blog/Author%20Headshots/wleidheiser-headshot.jpg","wleidheiser",{"template":683},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7837,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7838,"config":7843,"_id":7844,"_type":31,"title":7839,"_source":33,"_file":7845,"_stem":7846,"_extension":36},"/en-us/blog/authors/william-arias",{"name":7839,"config":7840},"William Arias",{"headshot":7841,"ctfId":7842},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667549/Blog/Author%20Headshots/warias-headshot.jpg","warias",{"template":683},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7848,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7849,"config":7853,"_id":7854,"_type":31,"title":7850,"_source":33,"_file":7855,"_stem":7856,"_extension":36},"/en-us/blog/authors/william-chia",{"name":7850,"config":7851},"William Chia",{"headshot":7,"ctfId":7852},"williamchia",{"template":683},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7858,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7859,"config":7863,"_id":7864,"_type":31,"title":7860,"_source":33,"_file":7865,"_stem":7866,"_extension":36},"/en-us/blog/authors/yannis-roussos",{"name":7860,"config":7861},"Yannis Roussos",{"headshot":7,"ctfId":7862},"iroussos",{"template":683},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7868,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7869,"config":7873,"_id":7874,"_type":31,"title":7870,"_source":33,"_file":7875,"_stem":7876,"_extension":36},"/en-us/blog/authors/yevgeny-pats",{"name":7870,"config":7871},"Yevgeny Pats",{"headshot":7,"ctfId":7872},"ypats",{"template":683},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7878,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7879,"config":7883,"_id":7884,"_type":31,"title":7880,"_source":33,"_file":7885,"_stem":7886,"_extension":36},"/en-us/blog/authors/yorick-peterse",{"name":7880,"config":7881},"Yorick Peterse",{"headshot":714,"ctfId":7882},"Yorick-Peterse",{"template":683},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7888,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7889,"config":7893,"_id":7894,"_type":31,"title":7895,"_source":33,"_file":7896,"_stem":7897,"_extension":36},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7890,"config":7891},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7892},"zjgitlab",{"template":683},"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":7899,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":7900,"config":7905,"_id":7906,"_type":31,"title":7901,"_source":33,"_file":7907,"_stem":7908,"_extension":36},"/en-us/blog/authors/zhaochen-li",{"name":7901,"config":7902},"Zhaochen Li",{"headshot":7903,"ctfId":7904},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664331/Blog/Author%20Headshots/Zhaochen_Li_headshot.png","D67XqgLJdlpOsrG3ivCGT",{"template":683},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7910,"_dir":39,"_draft":6,"_partial":6,"_locale":7,"header":7911,"eyebrow":7912,"blurb":7913,"button":7914,"secondaryButton":7918,"_id":7920,"_type":31,"title":7921,"_source":33,"_file":7922,"_stem":7923,"_extension":36},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":47,"config":7915},{"href":7916,"dataGaName":50,"dataGaLocation":7917},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":52,"config":7919},{"href":54,"dataGaName":55,"dataGaLocation":7917},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":7925,"content":7926,"config":7929,"_id":30,"_type":31,"title":32,"_source":33,"_file":34,"_stem":35,"_extension":36},{"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":7927,"heroImage":11,"date":19,"body":20,"category":21,"tags":7928},[18],[23,24,25],{"slug":27,"featured":28,"template":29},1762174763646]