[{"data":1,"prerenderedAt":7946},["ShallowReactive",2],{"/ja-jp/blog/what-is-kubernetes":3,"navigation-ja-jp":44,"banner-ja-jp":457,"footer-ja-jp":470,"blogAuthors-ja-jp":679,"next-steps-ja-jp":7925,"footer-source-/ja-jp/blog/what-is-kubernetes/":7940},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":33,"_id":37,"_type":38,"title":39,"_source":40,"_file":41,"_stem":42,"_extension":43},"/ja-jp/blog/what-is-kubernetes","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"Kubernetes（K8s）とは？その仕組みから利点、使い方まで","Kubernetes（K8s）とは？Kubernetes の読み方から覚えておきたい用語、仕組みやその利点について学びましょう。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749687485/Blog/Hero%20Images/kubernetes.jpg","https://about.gitlab.com/blog/what-is-kubernetes","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"Kubernetes（K8s）とは？その仕組みから利点、使い方まで\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"GitLab Japan Team\"},{\"@type\":\"Person\",\"name\":\"GitLab\"}],\n        \"datePublished\": \"2025-04-28\",\n      }",{"title":9,"description":10,"authors":17,"heroImage":11,"date":20,"body":21,"category":22,"tags":23},[18,19],"GitLab Japan Team","GitLab","2025-04-28","## 目次\n\n1. Kubernetesとは？その読み方と用途\n2. Kubernetes（K8s）の基本用語解説\n  - コンテナ、Pod、Node、クラスター\n  - Dockerとの違い\n3. Kubernetesの主な特徴\n  - デプロイの自動化\n  - ハイブリッド / マルチクラウドに対応\n  - 拡張性とプラグインアーキテクチャ\n  - ローリングアップデートとロールバック\n  - 柔軟なスケーラビリティ\n  - リリース後のアプリケーション監視\n4. Kubernetesの利点とは\n  - 生産性の向上\n  - 自己修復機能により障害に耐性\n  - 高い可用性を担保\n  - オンプレミスでも、クラウドでも運用可能\n  - 大量のコンテナを一括管理\n  - DevSecOpsとの親和性が高い\n  - クラウドネイティブなワークロードを安全に保つ\n5. GitLabでKubernetesを統合する\n6. Kubernetes（K8s）のよくある質問\n  - KubernetesとDockerの違いは何ですか？\n  - Kubernetesで何ができますか？\n  - Kubernetesコンテナとは何ですか？\n  - Kubernetesの読み方は？\n\n## Kubernetesとは？その読み方と用途\n\nKubernetesは、「クバネティス」、「クーベネティス」、または「クーバネーティス」と発音します。ギリシャ語のκυβερνήτηςに由来し、「統治者」や「パイロット」といった意味を持ちます。また、K8sと表記されることもあります。  \n\nKubernetesは、一言で表せばソフトウェア開発においてコンテナを操作・管理するもので、コンテナオーケストレーションの役割を果たすオープンソースソフトウェアとして開発されました。Kubernetesは、クラウドネイティブのプログラムの開発に使用します。これを使用することで[マイクロサービス](https://about.gitlab.com/ja-jp/topics/microservices/)アーキテクチャが可能になり、プログラムの開発が高速化できます。  \nでは、Kubernetesについて、もう少し掘り下げて見ていきましょう。\n\n## Kubernetes（K8s）の基本用語解説\n\n### コンテナ、Pod、Node、クラスター\n\nKubernetesは、コンテナをオーケストレーションするためのツールです。オーケストレーションとは、複数のコンピュータシステムやアプリケーション、サービスなどを調整して管理し、頻繁に繰り返される大規模なワークフローやプロセスを実行できるようにすることを指します。では、コンテナとは何でしょう。ソフトウェア開発におけるコンテナ化とは、ソフトウェアのコードをライブラリやフレームワークなどの依存関係にあるすべてのコンポーネントとともにパッケージ化し、それぞれの入れ物、「コンテナ」に隔離することを意味します。コンテナは、完全に機能するポータブルなコンピューティング環境です。また、このコンテナを複数まとめたものがPod、PodをまとめたものがNode、Nodeをまとめたものがクラスタと呼ばれます（以下の図を参照）。\n\n![kubernetesとは](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749687494/Blog/Content%20Images/kubernetes-diagram.svg)\n\n*Kubernetesにおけるコンテナとクラスタの関係を示した図*\n### Dockerとの違い\n\nKuberunetesはコンテナオーケストレーションツールですが、Dockerはコンテナ化ツールの1つです。Dockerはアプリケーションのコンテナ化を行なうとき使用するプラットフォームです。仮想マシンよりも軽量で高速であることや、環境構築が簡単なことから、コンテナ化の主流ツールになっています。\n\n## Kubernetesの主な特徴\n\nKubernetesは、前述したようにコンテナを管理するコンテナオーケストレーションツールで、代表的な機能としては次のようなものが挙げられます。\n\n### デプロイの自動化\n\nKubernetesは、アプリケーションのデプロイ時に、新しいコンテナの作成や既存コンテナの削除を自動で実施します。また、新しく作成したコンテナにも自動でリソースを適用します。\n\n### ハイブリッド / マルチクラウドに対応\n\nクラウドプロバイダーに依存することなく、オンプレミス環境や様々なクラウドサービス（AWS、Azureなど）上で動作します。よって、ハイブリッドクラウドやマルチクラウド環境を簡単に構築、管理することができます。\n\n### 拡張性とプラグインアーキテクチャ\n\n多様なプラグインや拡張機能が利用できます。例えば、CustomResourceDefinitions（CRD）を使って新規にリソースタイプやロジックを追加したり、CNI（Container Network Interface）やCSI（Container Storage Interface）といったプラグインでネットワークやストレージのカスタマイズが可能です。\n\n### ローリングアップデートとロールバック\n\nKubernetesでは、アプリケーションのバージョンを更新する際、ローリングアップデートがそのデフォルトとなります。また、ビルトインでロールバック機構もあります。このため、ライブトラフィックに影響を与えず、ダウンタイムゼロでデプロイを実現できます。\n\n### 柔軟なスケーラビリティ\n\nKubernetesは、大量のコンテナを効率的に管理するためのもので、システムのスケーラビリティが向上できます。スケーラビリティとは、どのくらいシステムの拡張ができるかを示す特性で、Kubernetesではコンテナ化されたアプリケーションの数を増減することでスケーリングします。\n\n### リリース後のアプリケーション監視\n\nPrometheusやGrafanaといった監視ツールを使用することで、アプリケーション固有のメトリクスが監視できます。リリース後のパフォーマンス低下や不具合発見といった事象がアラートされるため、問題に迅速に対処できます。\n\n## Kubernetesの利点とは\n\nKubernetesには次のような7つのメリットがあります。\n\n### 生産性の向上\n\n一つ目のメリットは、アプリケーション開発で生産性が向上できる点にあります。従来の仮想化では、アプリケーションごとにゲストOSを用意する必要がありましたが、Kubernetesでは、アプリケーションを直接コンテナエンジン上にデプロイできるため、サーバーのリソース使用量が抑えられます。\n\n### 自己修復機能により障害に耐性\n\nKubernetesには、PodやNodeに障害が起きた場合、最初の定義（マニフェスト）の状態まで自動修復する機能が備わっています。\n\n### 高い可用性を担保\n\nKubernetesは、複数のNodeの集まりであるクラスターを構成します。あるクラスターで障害が発生した場合、障害が起きたコンテナを自動で再起動させます。また、他のNodeでコンテナを起動させ、処理を引き継ぐ動作も継続できるため、高い可用性が担保できます。\n\n### オンプレミスでも、クラウドでも運用可能\n\nKubernetesは、オンプレミスでも、プライベートクラウド、パブリッククラウドでも利用できます。つまり、自社サーバーでも、クラウドを使っても、どんな環境でも運用可能です。\n\n### 大量のコンテナの一括管理\n\nKubernetesでは、大量のコンテナが一括で管理・運用できます。また、設定ファイルを複数のコンテナ間で共有することによって、設定変更時も正確かつ大量に設定を反映させることが可能です。\n\n### DevSecOpsとの親和性が高い\nDevSecOpsとは、開発と運用を統合するDevOpsにセキュリティを加え、運用を視野に入れながら開発とセキュリティを同時に進め、安心・安全なソフトウェアを迅速にリリースするというコンセプトです。Kubernetesにはアプリケーションの開発と運用の双方に必要とされる機能が多く搭載されているため、DevSecOpsとの親和性が非常に高いという特長があります。\n\n### クラウドネイティブなワークロードを安全に保つ\n\nKubernetesは、クラウドネイティブアーキテクチャに基づいており、クラウドネイティブな情報セキュリティに関するベストプラクティスについて、CNCF（Cloud Native Computing Foundation）からのアドバイスを活用しています。\n\nたとえばKubernetesには、APIやセキュリティコントロールが含まれており、情報セキュリティを管理するポリシーを定義する手段も備わっています。クラウドの利用などでセキュリティ面において懸念が生じても、Kubernetesならユーザーごとにアクセス制限を設定でき、不正アクセスが防止できるため安心です。\n\nまた、Pod Security Standardによりセキュリティに3つのポリシーが定義されています。非常に緩いものから非常に厳しいものまで累積的に定義できます。\n\n## GitLabでKubernetesを統合する\n\nKubernetesクラスターとGitLabを接続すると、アプリの開発・デプロイ・管理・監視ができます。  \nGitLabをKubernetesと連携させる、またはKubernetes内で動作させるには、3つの異なる方法があります。単独で使用することも、組み合わせて使用することもできます。\n\n* GitLabからKubernetesにソフトウェアをデプロイする  \n* Kubernetesを使用してGitLabインスタンスに紐づいたRunnerを管理する  \n* GitLabのアプリケーションとサービスをKubernetesクラスター上で実行する\n\nさらに詳しい情報やお問い合わせは[こちら](https://about.gitlab.com/ja-jp/solutions/kubernetes/)をご覧ください。\n\n## Kubernetes （K8s）のよくある質問\n\n### KubernetesとDockerの違いは何ですか？\n\nDockerはコンテナ化ツールのひとつで、アプリケーションコンテナを構築し、アプリケーションの開発・配布・実行をします。Kubernetesは、より大規模に複数のマイクロサービスを管理するのに使われます。  \nまた、Kubernetesはクラスターで実行され、Dockerはノードで実行されます。Kubernetesの使用目的はコンテナ管理ですが、Dockerの使用目的の一つは、アプリケーションをコンテナに分離することになります。\n\n### Kubernetesで何ができますか？\n\nKubernetesでできることの代表例には下記のようなものが挙げられます。\n\n* 大量のコンテナの一括管理\n* 起動を含めた動作の高速化・軽量化  \n* 自動デプロイ  \n* 自己修復機能により障害に耐性\n* 高い可用性を担保\n* オンプレミスでも、クラウドでも運用可能\n* DevSecOpsとの親和性が高い\n* クラウドネイティブなワークロードを安全に保つ\n\n### Kubernetesコンテナとは何ですか？\n\nソフトウェアのコードをライブラリやフレームワークなどの依存関係にあるすべてのコンポーネントとともにパッケージ化し、それぞれの入れ物、「コンテナ」に隔離することをコンテナ化と言います。Kubernetesコンテナは、完全に機能するポータブルなコンピューティング環境で、さまざまなプラットフォームでデプロイ可能なプログラムとして[マイクロサービス](https://about.gitlab.com/blog/what-are-the-benefits-of-a-microservices-architecture/)アーキテクチャを可能にします（リンクは英語版です）。\n\n### Kubernetesの読み方は？\n\nKubernetesは、「クバネティス」、「クーベネティス」、または「クーバネーティス」と読み、「K8s（ケーエイツ）」と略されます。\n","engineering",[24,25,26,27,28,29,30,31,32],"kubernetes","cloud native","DevOps","CI/CD","GitOps","open source","security","performance","workflow",{"slug":34,"featured":35,"template":36},"what-is-kubernetes",true,"BlogPost","content:ja-jp:blog:what-is-kubernetes.yml","yaml","What Is Kubernetes","content","ja-jp/blog/what-is-kubernetes.yml","ja-jp/blog/what-is-kubernetes","yml",{"_path":45,"_dir":46,"_draft":6,"_partial":6,"_locale":7,"data":47,"_id":453,"_type":38,"title":454,"_source":40,"_file":455,"_stem":456,"_extension":43},"/shared/ja-jp/main-navigation","ja-jp",{"logo":48,"freeTrial":53,"sales":58,"login":63,"items":68,"search":397,"minimal":431,"duo":444},{"config":49},{"href":50,"dataGaName":51,"dataGaLocation":52},"/ja-jp/","gitlab logo","header",{"text":54,"config":55},"無料トライアルを開始",{"href":56,"dataGaName":57,"dataGaLocation":52},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":59,"config":60},"お問い合わせ",{"href":61,"dataGaName":62,"dataGaLocation":52},"/ja-jp/sales/","sales",{"text":64,"config":65},"サインイン",{"href":66,"dataGaName":67,"dataGaLocation":52},"https://gitlab.com/users/sign_in/","sign in",[69,113,209,214,319,379],{"text":70,"config":71,"cards":73,"footer":96},"プラットフォーム",{"dataNavLevelOne":72},"platform",[74,80,88],{"title":70,"description":75,"link":76},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":77,"config":78},"プラットフォームを詳しく見る",{"href":79,"dataGaName":72,"dataGaLocation":52},"/ja-jp/platform/",{"title":81,"description":82,"link":83},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":84,"config":85},"GitLab Duoのご紹介",{"href":86,"dataGaName":87,"dataGaLocation":52},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":89,"description":90,"link":91},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":92,"config":93},"詳細はこちら",{"href":94,"dataGaName":95,"dataGaLocation":52},"/ja-jp/why-gitlab/","why gitlab",{"title":97,"items":98},"利用を開始：",[99,104,109],{"text":100,"config":101},"プラットフォームエンジニアリング",{"href":102,"dataGaName":103,"dataGaLocation":52},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":105,"config":106},"開発者の経験",{"href":107,"dataGaName":108,"dataGaLocation":52},"/ja-jp/developer-experience/","Developer experience",{"text":110,"config":111},"MLOps",{"href":112,"dataGaName":110,"dataGaLocation":52},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":114,"left":35,"config":115,"link":117,"lists":121,"footer":191},"製品",{"dataNavLevelOne":116},"solutions",{"text":118,"config":119},"すべてのソリューションを表示",{"href":120,"dataGaName":116,"dataGaLocation":52},"/ja-jp/solutions/",[122,147,169],{"title":123,"description":124,"link":125,"items":130},"自動化","CI/CDと自動化でデプロイを加速",{"config":126},{"icon":127,"href":128,"dataGaName":129,"dataGaLocation":52},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[131,134,138,143],{"text":27,"config":132},{"href":133,"dataGaLocation":52,"dataGaName":27},"/ja-jp/solutions/continuous-integration/",{"text":135,"config":136},"AIアシストによる開発",{"href":86,"dataGaLocation":52,"dataGaName":137},"AI assisted development",{"text":139,"config":140},"ソースコード管理",{"href":141,"dataGaLocation":52,"dataGaName":142},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":144,"config":145},"自動化されたソフトウェアデリバリー",{"href":128,"dataGaLocation":52,"dataGaName":146},"Automated software delivery",{"title":148,"description":149,"link":150,"items":155},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":151},{"href":152,"dataGaName":153,"dataGaLocation":52,"icon":154},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[156,160,165],{"text":157,"config":158},"Application Security Testing",{"href":152,"dataGaName":159,"dataGaLocation":52},"Application security testing",{"text":161,"config":162},"ソフトウェアサプライチェーンの安全性",{"href":163,"dataGaLocation":52,"dataGaName":164},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":166,"config":167},"Software Compliance",{"href":168,"dataGaName":166,"dataGaLocation":52},"/ja-jp/solutions/software-compliance/",{"title":170,"link":171,"items":176},"測定",{"config":172},{"icon":173,"href":174,"dataGaName":175,"dataGaLocation":52},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[177,181,186],{"text":178,"config":179},"可視性と測定",{"href":174,"dataGaLocation":52,"dataGaName":180},"Visibility and Measurement",{"text":182,"config":183},"バリューストリーム管理",{"href":184,"dataGaLocation":52,"dataGaName":185},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":187,"config":188},"分析とインサイト",{"href":189,"dataGaLocation":52,"dataGaName":190},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":192,"items":193},"GitLabが活躍する場所",[194,199,204],{"text":195,"config":196},"Enterprise",{"href":197,"dataGaLocation":52,"dataGaName":198},"/ja-jp/enterprise/","enterprise",{"text":200,"config":201},"スモールビジネス",{"href":202,"dataGaLocation":52,"dataGaName":203},"/ja-jp/small-business/","small business",{"text":205,"config":206},"公共機関",{"href":207,"dataGaLocation":52,"dataGaName":208},"/ja-jp/solutions/public-sector/","public sector",{"text":210,"config":211},"価格",{"href":212,"dataGaName":213,"dataGaLocation":52,"dataNavLevelOne":213},"/ja-jp/pricing/","pricing",{"text":215,"config":216,"link":218,"lists":222,"feature":306},"関連リソース",{"dataNavLevelOne":217},"resources",{"text":219,"config":220},"すべてのリソースを表示",{"href":221,"dataGaName":217,"dataGaLocation":52},"/ja-jp/resources/",[223,256,278],{"title":224,"items":225},"はじめに",[226,231,236,241,246,251],{"text":227,"config":228},"インストール",{"href":229,"dataGaName":230,"dataGaLocation":52},"/ja-jp/install/","install",{"text":232,"config":233},"クイックスタートガイド",{"href":234,"dataGaName":235,"dataGaLocation":52},"/ja-jp/get-started/","quick setup checklists",{"text":237,"config":238},"学ぶ",{"href":239,"dataGaLocation":52,"dataGaName":240},"https://university.gitlab.com/","learn",{"text":242,"config":243},"製品ドキュメント",{"href":244,"dataGaName":245,"dataGaLocation":52},"https://docs.gitlab.com/","product documentation",{"text":247,"config":248},"ベストプラクティスビデオ",{"href":249,"dataGaName":250,"dataGaLocation":52},"/ja-jp/getting-started-videos/","best practice videos",{"text":252,"config":253},"インテグレーション",{"href":254,"dataGaName":255,"dataGaLocation":52},"/ja-jp/integrations/","integrations",{"title":257,"items":258},"検索する",[259,264,268,273],{"text":260,"config":261},"お客様成功事例",{"href":262,"dataGaName":263,"dataGaLocation":52},"/ja-jp/customers/","customer success stories",{"text":265,"config":266},"ブログ",{"href":267,"dataGaName":5,"dataGaLocation":52},"/ja-jp/blog/",{"text":269,"config":270},"リモート",{"href":271,"dataGaName":272,"dataGaLocation":52},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":274,"config":275},"TeamOps",{"href":276,"dataGaName":277,"dataGaLocation":52},"/ja-jp/teamops/","teamops",{"title":279,"items":280},"つなげる",[281,286,291,296,301],{"text":282,"config":283},"GitLabサービス",{"href":284,"dataGaName":285,"dataGaLocation":52},"/ja-jp/services/","services",{"text":287,"config":288},"コミュニティ",{"href":289,"dataGaName":290,"dataGaLocation":52},"/community/","community",{"text":292,"config":293},"フォーラム",{"href":294,"dataGaName":295,"dataGaLocation":52},"https://forum.gitlab.com/","forum",{"text":297,"config":298},"イベント",{"href":299,"dataGaName":300,"dataGaLocation":52},"/events/","events",{"text":302,"config":303},"パートナー",{"href":304,"dataGaName":305,"dataGaLocation":52},"/ja-jp/partners/","partners",{"backgroundColor":307,"textColor":308,"text":309,"image":310,"link":314},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":311,"config":312},"ソースプロモカード",{"src":313},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":315,"config":316},"最新情報を読む",{"href":317,"dataGaName":318,"dataGaLocation":52},"/ja-jp/the-source/","the source",{"text":320,"config":321,"lists":323},"会社情報",{"dataNavLevelOne":322},"company",[324],{"items":325},[326,331,337,339,344,349,354,359,364,369,374],{"text":327,"config":328},"GitLabについて",{"href":329,"dataGaName":330,"dataGaLocation":52},"/ja-jp/company/","about",{"text":332,"config":333,"footerGa":336},"採用情報",{"href":334,"dataGaName":335,"dataGaLocation":52},"/jobs/","jobs",{"dataGaName":335},{"text":297,"config":338},{"href":299,"dataGaName":300,"dataGaLocation":52},{"text":340,"config":341},"経営陣",{"href":342,"dataGaName":343,"dataGaLocation":52},"/company/team/e-group/","leadership",{"text":345,"config":346},"チーム",{"href":347,"dataGaName":348,"dataGaLocation":52},"/company/team/","team",{"text":350,"config":351},"ハンドブック",{"href":352,"dataGaName":353,"dataGaLocation":52},"https://handbook.gitlab.com/","handbook",{"text":355,"config":356},"投資家向け情報",{"href":357,"dataGaName":358,"dataGaLocation":52},"https://ir.gitlab.com/","investor relations",{"text":360,"config":361},"トラストセンター",{"href":362,"dataGaName":363,"dataGaLocation":52},"/ja-jp/security/","trust center",{"text":365,"config":366},"AI Transparency Center",{"href":367,"dataGaName":368,"dataGaLocation":52},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":370,"config":371},"ニュースレター",{"href":372,"dataGaName":373,"dataGaLocation":52},"/company/contact/","newsletter",{"text":375,"config":376},"プレス",{"href":377,"dataGaName":378,"dataGaLocation":52},"/press/","press",{"text":59,"config":380,"lists":381},{"dataNavLevelOne":322},[382],{"items":383},[384,387,392],{"text":59,"config":385},{"href":61,"dataGaName":386,"dataGaLocation":52},"talk to sales",{"text":388,"config":389},"サポートを受ける",{"href":390,"dataGaName":391,"dataGaLocation":52},"/support/","get help",{"text":393,"config":394},"カスタマーポータル",{"href":395,"dataGaName":396,"dataGaLocation":52},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":398,"login":399,"suggestions":406},"閉じる",{"text":400,"link":401},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":402,"config":403},"GitLab.com",{"href":66,"dataGaName":404,"dataGaLocation":405},"search login","search",{"text":407,"default":408},"提案",[409,412,417,419,423,427],{"text":81,"config":410},{"href":86,"dataGaName":411,"dataGaLocation":405},"GitLab Duo (AI)",{"text":413,"config":414},"コード提案（AI）",{"href":415,"dataGaName":416,"dataGaLocation":405},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":27,"config":418},{"href":133,"dataGaName":27,"dataGaLocation":405},{"text":420,"config":421},"GitLab on AWS",{"href":422,"dataGaName":420,"dataGaLocation":405},"/ja-jp/partners/technology-partners/aws/",{"text":424,"config":425},"GitLab on Google Cloud",{"href":426,"dataGaName":424,"dataGaLocation":405},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":428,"config":429},"GitLabを選ぶ理由",{"href":94,"dataGaName":430,"dataGaLocation":405},"Why GitLab?",{"freeTrial":432,"mobileIcon":436,"desktopIcon":441},{"text":54,"config":433},{"href":434,"dataGaName":57,"dataGaLocation":435},"https://gitlab.com/-/trials/new/","nav",{"altText":437,"config":438},"GitLabアイコン",{"src":439,"dataGaName":440,"dataGaLocation":435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":437,"config":442},{"src":443,"dataGaName":440,"dataGaLocation":435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":445,"mobileIcon":449,"desktopIcon":451},{"text":446,"config":447},"GitLab Duoの詳細について",{"href":86,"dataGaName":448,"dataGaLocation":435},"gitlab duo",{"altText":437,"config":450},{"src":439,"dataGaName":440,"dataGaLocation":435},{"altText":437,"config":452},{"src":443,"dataGaName":440,"dataGaLocation":435},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":458,"_dir":46,"_draft":6,"_partial":6,"_locale":7,"title":459,"button":460,"config":465,"_id":467,"_type":38,"_source":40,"_file":468,"_stem":469,"_extension":43},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":461,"config":462},"ベータ版を試す",{"href":463,"dataGaName":464,"dataGaLocation":52},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":466},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":471,"_dir":46,"_draft":6,"_partial":6,"_locale":7,"data":472,"_id":675,"_type":38,"title":676,"_source":40,"_file":677,"_stem":678,"_extension":43},"/shared/ja-jp/main-footer",{"text":473,"source":474,"edit":480,"contribute":485,"config":490,"items":495,"minimal":667},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":475,"config":476},"ページのソースを表示",{"href":477,"dataGaName":478,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":481,"config":482},"このページを編集",{"href":483,"dataGaName":484,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":486,"config":487},"ご協力をお願いします",{"href":488,"dataGaName":489,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":491,"facebook":492,"youtube":493,"linkedin":494},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[496,519,572,604,639],{"title":70,"links":497,"subMenu":502},[498],{"text":499,"config":500},"DevSecOpsプラットフォーム",{"href":79,"dataGaName":501,"dataGaLocation":479},"devsecops platform",[503],{"title":210,"links":504},[505,509,514],{"text":506,"config":507},"プランの表示",{"href":212,"dataGaName":508,"dataGaLocation":479},"view plans",{"text":510,"config":511},"Premiumを選ぶ理由",{"href":512,"dataGaName":513,"dataGaLocation":479},"/ja-jp/pricing/premium/","why premium",{"text":515,"config":516},"Ultimateを選ぶ理由",{"href":517,"dataGaName":518,"dataGaLocation":479},"/ja-jp/pricing/ultimate/","why ultimate",{"title":520,"links":521},"ソリューション",[522,527,530,532,537,542,546,549,552,556,558,560,562,567],{"text":523,"config":524},"デジタルトランスフォーメーション",{"href":525,"dataGaName":526,"dataGaLocation":479},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":528,"config":529},"セキュリティとコンプライアンス",{"href":152,"dataGaName":159,"dataGaLocation":479},{"text":144,"config":531},{"href":128,"dataGaName":129,"dataGaLocation":479},{"text":533,"config":534},"アジャイル開発",{"href":535,"dataGaName":536,"dataGaLocation":479},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":538,"config":539},"クラウドトランスフォーメーション",{"href":540,"dataGaName":541,"dataGaLocation":479},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":543,"config":544},"SCM",{"href":141,"dataGaName":545,"dataGaLocation":479},"source code management",{"text":27,"config":547},{"href":133,"dataGaName":548,"dataGaLocation":479},"continuous integration & delivery",{"text":182,"config":550},{"href":184,"dataGaName":551,"dataGaLocation":479},"value stream management",{"text":28,"config":553},{"href":554,"dataGaName":555,"dataGaLocation":479},"/ja-jp/solutions/gitops/","gitops",{"text":195,"config":557},{"href":197,"dataGaName":198,"dataGaLocation":479},{"text":200,"config":559},{"href":202,"dataGaName":203,"dataGaLocation":479},{"text":205,"config":561},{"href":207,"dataGaName":208,"dataGaLocation":479},{"text":563,"config":564},"教育",{"href":565,"dataGaName":566,"dataGaLocation":479},"/ja-jp/solutions/education/","education",{"text":568,"config":569},"金融サービス",{"href":570,"dataGaName":571,"dataGaLocation":479},"/ja-jp/solutions/finance/","financial services",{"title":215,"links":573},[574,576,578,580,583,585,588,590,592,594,596,598,600,602],{"text":227,"config":575},{"href":229,"dataGaName":230,"dataGaLocation":479},{"text":232,"config":577},{"href":234,"dataGaName":235,"dataGaLocation":479},{"text":237,"config":579},{"href":239,"dataGaName":240,"dataGaLocation":479},{"text":242,"config":581},{"href":244,"dataGaName":582,"dataGaLocation":479},"docs",{"text":265,"config":584},{"href":267,"dataGaName":5},{"text":586,"config":587},"お客様の成功事例",{"href":262,"dataGaLocation":479},{"text":260,"config":589},{"href":262,"dataGaName":263,"dataGaLocation":479},{"text":269,"config":591},{"href":271,"dataGaName":272,"dataGaLocation":479},{"text":282,"config":593},{"href":284,"dataGaName":285,"dataGaLocation":479},{"text":274,"config":595},{"href":276,"dataGaName":277,"dataGaLocation":479},{"text":287,"config":597},{"href":289,"dataGaName":290,"dataGaLocation":479},{"text":292,"config":599},{"href":294,"dataGaName":295,"dataGaLocation":479},{"text":297,"config":601},{"href":299,"dataGaName":300,"dataGaLocation":479},{"text":302,"config":603},{"href":304,"dataGaName":305,"dataGaLocation":479},{"title":605,"links":606},"Company",[607,609,611,613,615,617,619,623,628,630,632,634],{"text":327,"config":608},{"href":329,"dataGaName":322,"dataGaLocation":479},{"text":332,"config":610},{"href":334,"dataGaName":335,"dataGaLocation":479},{"text":340,"config":612},{"href":342,"dataGaName":343,"dataGaLocation":479},{"text":345,"config":614},{"href":347,"dataGaName":348,"dataGaLocation":479},{"text":350,"config":616},{"href":352,"dataGaName":353,"dataGaLocation":479},{"text":355,"config":618},{"href":357,"dataGaName":358,"dataGaLocation":479},{"text":620,"config":621},"Sustainability",{"href":622,"dataGaName":620,"dataGaLocation":479},"/sustainability/",{"text":624,"config":625},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":626,"dataGaName":627,"dataGaLocation":479},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":360,"config":629},{"href":362,"dataGaName":363,"dataGaLocation":479},{"text":370,"config":631},{"href":372,"dataGaName":373,"dataGaLocation":479},{"text":375,"config":633},{"href":377,"dataGaName":378,"dataGaLocation":479},{"text":635,"config":636},"現代奴隷制の透明性に関する声明",{"href":637,"dataGaName":638,"dataGaLocation":479},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":59,"links":640},[641,643,645,647,652,657,662],{"text":59,"config":642},{"href":61,"dataGaName":62,"dataGaLocation":479},{"text":388,"config":644},{"href":390,"dataGaName":391,"dataGaLocation":479},{"text":393,"config":646},{"href":395,"dataGaName":396,"dataGaLocation":479},{"text":648,"config":649},"ステータス",{"href":650,"dataGaName":651,"dataGaLocation":479},"https://status.gitlab.com/","status",{"text":653,"config":654},"利用規約",{"href":655,"dataGaName":656,"dataGaLocation":479},"/terms/","terms of use",{"text":658,"config":659},"プライバシーに関する声明",{"href":660,"dataGaName":661,"dataGaLocation":479},"/ja-jp/privacy/","privacy statement",{"text":663,"config":664},"Cookieの設定",{"dataGaName":665,"dataGaLocation":479,"id":666,"isOneTrustButton":35},"cookie preferences","ot-sdk-btn",{"items":668},[669,671,673],{"text":653,"config":670},{"href":655,"dataGaName":656,"dataGaLocation":479},{"text":658,"config":672},{"href":660,"dataGaName":661,"dataGaLocation":479},{"text":663,"config":674},{"dataGaName":665,"dataGaLocation":479,"id":666,"isOneTrustButton":35},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",[680,693,704,715,726,737,748,759,769,779,790,801,811,822,833,843,853,863,873,884,894,904,914,925,936,946,957,968,978,989,999,1010,1021,1032,1043,1053,1064,1075,1085,1096,1106,1117,1128,1138,1148,1159,1169,1179,1189,1200,1211,1222,1233,1243,1254,1265,1276,1287,1297,1308,1320,1331,1342,1352,1364,1375,1385,1396,1406,1417,1427,1438,1449,1459,1469,1479,1490,1500,1510,1520,1530,1541,1551,1562,1572,1583,1593,1603,1613,1624,1635,1646,1657,1668,1680,1690,1701,1711,1722,1733,1744,1755,1765,1776,1787,1798,1809,1819,1830,1841,1852,1862,1875,1885,1896,1907,1918,1928,1939,1950,1961,1971,1981,1991,2001,2012,2022,2032,2043,2053,2064,2074,2085,2096,2106,2117,2127,2137,2147,2158,2168,2178,2189,2200,2210,2221,2232,2243,2253,2266,2277,2287,2299,2311,2321,2331,2342,2352,2363,2375,2386,2397,2408,2420,2431,2441,2451,2462,2472,2482,2493,2504,2514,2525,2536,2546,2556,2567,2578,2588,2599,2609,2620,2631,2642,2652,2662,2673,2684,2694,2704,2715,2727,2737,2747,2757,2768,2779,2789,2799,2809,2819,2829,2840,2851,2861,2872,2882,2892,2902,2912,2922,2933,2943,2953,2964,2974,2984,2995,3006,3016,3028,3038,3048,3060,3071,3082,3092,3103,3114,3125,3135,3147,3158,3167,3178,3189,3200,3210,3221,3232,3243,3253,3264,3275,3286,3296,3306,3317,3327,3337,3348,3359,3372,3383,3394,3404,3415,3427,3438,3449,3460,3470,3480,3491,3501,3512,3523,3534,3544,3554,3564,3574,3585,3596,3607,3618,3630,3641,3653,3664,3674,3684,3696,3706,3717,3727,3738,3748,3758,3769,3781,3791,3801,3811,3822,3832,3843,3853,3863,3874,3885,3896,3908,3919,3929,3940,3951,3961,3971,3982,3993,4004,4015,4025,4036,4047,4058,4068,4079,4090,4100,4111,4122,4133,4143,4153,4164,4175,4185,4196,4207,4218,4228,4238,4249,4260,4271,4282,4293,4303,4314,4325,4335,4345,4355,4367,4379,4389,4401,4411,4422,4433,4444,4455,4468,4478,4489,4500,4510,4520,4530,4541,4551,4562,4573,4583,4594,4604,4615,4626,4637,4648,4659,4670,4680,4690,4701,4712,4722,4732,4742,4753,4764,4774,4784,4794,4804,4815,4825,4835,4846,4856,4867,4877,4888,4899,4909,4919,4930,4940,4950,4961,4972,4983,4994,5004,5016,5027,5038,5048,5058,5068,5079,5090,5101,5112,5122,5133,5144,5154,5165,5177,5187,5197,5207,5218,5229,5240,5250,5260,5271,5282,5292,5304,5314,5324,5335,5345,5356,5368,5379,5389,5400,5411,5421,5432,5443,5455,5465,5475,5486,5496,5507,5517,5528,5538,5548,5559,5569,5580,5590,5600,5611,5621,5632,5643,5653,5663,5674,5684,5694,5704,5714,5725,5736,5748,5759,5770,5782,5794,5805,5816,5826,5837,5847,5857,5868,5879,5890,5900,5910,5920,5930,5940,5951,5963,5974,5986,5997,6007,6017,6028,6038,6048,6058,6068,6078,6088,6099,6109,6119,6130,6140,6150,6161,6172,6182,6194,6205,6215,6227,6238,6248,6259,6270,6280,6290,6300,6312,6322,6333,6344,6355,6366,6376,6386,6397,6409,6419,6429,6440,6450,6461,6471,6483,6494,6504,6514,6525,6537,6547,6560,6570,6582,6593,6603,6613,6624,6634,6645,6656,6667,6678,6689,6700,6711,6722,6733,6744,6755,6766,6777,6788,6799,6809,6822,6832,6843,6853,6864,6874,6884,6895,6906,6917,6927,6937,6948,6958,6969,6980,6992,7003,7013,7024,7035,7045,7055,7065,7075,7085,7096,7106,7117,7127,7138,7153,7164,7174,7185,7196,7207,7218,7229,7239,7250,7261,7272,7282,7293,7303,7313,7323,7333,7343,7354,7366,7376,7387,7398,7410,7420,7431,7441,7453,7464,7474,7484,7495,7506,7516,7527,7537,7547,7558,7569,7580,7591,7601,7612,7623,7633,7643,7653,7664,7675,7685,7695,7706,7717,7727,7737,7747,7758,7768,7779,7790,7801,7811,7821,7831,7841,7852,7863,7873,7883,7893,7903,7914],{"_path":681,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":683,"config":688,"_id":690,"_type":38,"title":684,"_source":40,"_file":691,"_stem":692,"_extension":43},"/en-us/blog/authors/aakriti-gupta","authors",{"name":684,"config":685},"Aakriti Gupta",{"headshot":686,"ctfId":687},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":689},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":694,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":695,"config":699,"_id":700,"_type":38,"title":701,"_source":40,"_file":702,"_stem":703,"_extension":43},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":696,"config":697},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":698},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":689},"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":705,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":706,"config":711,"_id":712,"_type":38,"title":707,"_source":40,"_file":713,"_stem":714,"_extension":43},"/en-us/blog/authors/aathira-nair",{"name":707,"config":708},"Aathira Nair",{"headshot":709,"ctfId":710},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":689},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":716,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":717,"config":722,"_id":723,"_type":38,"title":718,"_source":40,"_file":724,"_stem":725,"_extension":43},"/en-us/blog/authors/abdulkader-benchi",{"name":718,"config":719},"Abdulkader Benchi",{"headshot":720,"ctfId":721},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":689},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":727,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":728,"config":733,"_id":734,"_type":38,"title":729,"_source":40,"_file":735,"_stem":736,"_extension":43},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":729,"config":730},"Abubakar Siddiq Ango",{"headshot":731,"ctfId":732},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":689},"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":738,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":739,"config":744,"_id":745,"_type":38,"title":740,"_source":40,"_file":746,"_stem":747,"_extension":43},"/en-us/blog/authors/achilleas-pipinellis",{"name":740,"config":741},"Achilleas Pipinellis",{"headshot":742,"ctfId":743},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":689},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":749,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":750,"config":754,"_id":755,"_type":38,"title":756,"_source":40,"_file":757,"_stem":758,"_extension":43},"/en-us/blog/authors/adfinis-sygroup",{"name":751,"config":752},"Adfinis SyGroup",{"headshot":720,"ctfId":753},"Adfinis-SyGroup",{"template":689},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":760,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":761,"config":765,"_id":766,"_type":38,"title":762,"_source":40,"_file":767,"_stem":768,"_extension":43},"/en-us/blog/authors/ahmet-kizilay",{"name":762,"config":763},"Ahmet Kizilay",{"headshot":720,"ctfId":764},"Ahmet-Kizilay",{"template":689},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":770,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":771,"config":775,"_id":776,"_type":38,"title":772,"_source":40,"_file":777,"_stem":778,"_extension":43},"/en-us/blog/authors/akashdeep-dhar",{"name":772,"config":773},"Akashdeep Dhar",{"headshot":7,"ctfId":774},"t0xic0der",{"template":689},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":780,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":781,"config":786,"_id":787,"_type":38,"title":782,"_source":40,"_file":788,"_stem":789,"_extension":43},"/en-us/blog/authors/alana-bellucci",{"name":782,"config":783},"Alana Bellucci",{"headshot":784,"ctfId":785},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":689},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":791,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":792,"config":797,"_id":798,"_type":38,"title":793,"_source":40,"_file":799,"_stem":800,"_extension":43},"/en-us/blog/authors/alex-fracazo",{"name":793,"config":794},"Alex Fracazo",{"headshot":795,"ctfId":796},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":689},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":802,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":803,"config":807,"_id":808,"_type":38,"title":804,"_source":40,"_file":809,"_stem":810,"_extension":43},"/en-us/blog/authors/alex-groleau",{"name":804,"config":805},"Alex Groleau",{"headshot":720,"ctfId":806},"3VVHytQSHu9ehZgsUEJ3qq",{"template":689},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":812,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":813,"config":818,"_id":819,"_type":38,"title":814,"_source":40,"_file":820,"_stem":821,"_extension":43},"/en-us/blog/authors/alex-mark",{"name":814,"config":815},"Alex Mark",{"headshot":816,"ctfId":817},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":689},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":823,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":824,"config":829,"_id":830,"_type":38,"title":825,"_source":40,"_file":831,"_stem":832,"_extension":43},"/en-us/blog/authors/alex-martin",{"name":825,"config":826},"Alex Martin",{"headshot":827,"ctfId":828},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":689},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":834,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":835,"config":839,"_id":840,"_type":38,"title":836,"_source":40,"_file":841,"_stem":842,"_extension":43},"/en-us/blog/authors/alexander-dietrich",{"name":836,"config":837},"Alexander Dietrich",{"headshot":720,"ctfId":838},"2CzeEOPVjjGKpdblIm0JfO",{"template":689},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":844,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":845,"config":849,"_id":850,"_type":38,"title":846,"_source":40,"_file":851,"_stem":852,"_extension":43},"/en-us/blog/authors/alexander-malaev",{"name":846,"config":847},"Alexander Malaev",{"headshot":720,"ctfId":848},"Alexander-Malaev",{"template":689},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":854,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":855,"config":859,"_id":860,"_type":38,"title":856,"_source":40,"_file":861,"_stem":862,"_extension":43},"/en-us/blog/authors/alexander-pereverzevs",{"name":856,"config":857},"Alexander Pereverzevs",{"headshot":7,"ctfId":858},"lokalise",{"template":689},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":864,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":865,"config":869,"_id":870,"_type":38,"title":866,"_source":40,"_file":871,"_stem":872,"_extension":43},"/en-us/blog/authors/alexis-ginsberg",{"name":866,"config":867},"Alexis Ginsberg",{"headshot":720,"ctfId":868},"lmDIchpcDx48jKuke2B4l",{"template":689},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":874,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":875,"config":880,"_id":881,"_type":38,"title":876,"_source":40,"_file":882,"_stem":883,"_extension":43},"/en-us/blog/authors/allie-holland",{"name":876,"config":877},"Allie Holland",{"headshot":878,"ctfId":879},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":689},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":885,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":886,"config":890,"_id":891,"_type":38,"title":887,"_source":40,"_file":892,"_stem":893,"_extension":43},"/en-us/blog/authors/allison-whilden",{"name":887,"config":888},"Allison Whilden",{"headshot":720,"ctfId":889},"Allison-Whilden",{"template":689},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":895,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":896,"config":900,"_id":901,"_type":38,"title":897,"_source":40,"_file":902,"_stem":903,"_extension":43},"/en-us/blog/authors/alyssa-rock",{"name":897,"config":898},"Alyssa Rock",{"headshot":720,"ctfId":899},"4T2hddEfeK0Kp1zF8Ncvej",{"template":689},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":905,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":906,"config":910,"_id":911,"_type":38,"title":907,"_source":40,"_file":912,"_stem":913,"_extension":43},"/en-us/blog/authors/amanda-folson",{"name":907,"config":908},"Amanda Folson",{"headshot":720,"ctfId":909},"Amanda-Folson",{"template":689},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":915,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":916,"config":921,"_id":922,"_type":38,"title":917,"_source":40,"_file":923,"_stem":924,"_extension":43},"/en-us/blog/authors/amanda-rueda",{"name":917,"config":918},"Amanda Rueda",{"headshot":919,"ctfId":920},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":689},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":926,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":927,"config":932,"_id":933,"_type":38,"title":928,"_source":40,"_file":934,"_stem":935,"_extension":43},"/en-us/blog/authors/amar-patel",{"name":928,"config":929},"Amar Patel",{"headshot":930,"ctfId":931},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":689},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":937,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":938,"config":942,"_id":943,"_type":38,"title":939,"_source":40,"_file":944,"_stem":945,"_extension":43},"/en-us/blog/authors/amara-nwaigwe",{"name":939,"config":940},"Amara Nwaigwe",{"headshot":720,"ctfId":941},"Amara-Nwaigwe",{"template":689},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":947,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":948,"config":953,"_id":954,"_type":38,"title":949,"_source":40,"_file":955,"_stem":956,"_extension":43},"/en-us/blog/authors/amelia-bauerly",{"name":949,"config":950},"Amelia Bauerly",{"headshot":951,"ctfId":952},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":689},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":958,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":959,"config":964,"_id":965,"_type":38,"title":960,"_source":40,"_file":966,"_stem":967,"_extension":43},"/en-us/blog/authors/ameya-darshan",{"name":960,"config":961},"Ameya Darshan",{"headshot":962,"ctfId":963},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":689},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":969,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":970,"config":974,"_id":975,"_type":38,"title":971,"_source":40,"_file":976,"_stem":977,"_extension":43},"/en-us/blog/authors/andrea-borga",{"name":971,"config":972},"Andrea Borga",{"headshot":720,"ctfId":973},"6dPpfov6kpNcMdmyHyhKcN",{"template":689},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":979,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":980,"config":985,"_id":986,"_type":38,"title":981,"_source":40,"_file":987,"_stem":988,"_extension":43},"/en-us/blog/authors/andreas-brandl",{"name":981,"config":982},"Andreas Brandl",{"headshot":983,"ctfId":984},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":689},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":990,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":991,"config":995,"_id":996,"_type":38,"title":992,"_source":40,"_file":997,"_stem":998,"_extension":43},"/en-us/blog/authors/andrew-chilton",{"name":992,"config":993},"Andrew Chilton",{"headshot":7,"ctfId":994},"chilts",{"template":689},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":1000,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1001,"config":1006,"_id":1007,"_type":38,"title":1002,"_source":40,"_file":1008,"_stem":1009,"_extension":43},"/en-us/blog/authors/andrew-fontaine",{"name":1002,"config":1003},"Andrew Fontaine",{"headshot":1004,"ctfId":1005},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":689},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1011,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1012,"config":1017,"_id":1018,"_type":38,"title":1013,"_source":40,"_file":1019,"_stem":1020,"_extension":43},"/en-us/blog/authors/andrew-kelly",{"name":1013,"config":1014},"Andrew Kelly",{"headshot":1015,"ctfId":1016},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":689},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1022,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1023,"config":1028,"_id":1029,"_type":38,"title":1024,"_source":40,"_file":1030,"_stem":1031,"_extension":43},"/en-us/blog/authors/andrew-newdigate",{"name":1024,"config":1025},"Andrew Newdigate",{"headshot":1026,"ctfId":1027},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":689},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1033,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1034,"config":1039,"_id":1040,"_type":38,"title":1035,"_source":40,"_file":1041,"_stem":1042,"_extension":43},"/en-us/blog/authors/andrew-patterson",{"name":1035,"config":1036},"Andrew Patterson",{"headshot":1037,"ctfId":1038},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":689},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1044,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1045,"config":1049,"_id":1050,"_type":38,"title":1046,"_source":40,"_file":1051,"_stem":1052,"_extension":43},"/en-us/blog/authors/andrew-taylor",{"name":1046,"config":1047},"Andrew Taylor",{"headshot":720,"ctfId":1048},"Andrew-Taylor",{"template":689},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1054,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1055,"config":1060,"_id":1061,"_type":38,"title":1056,"_source":40,"_file":1062,"_stem":1063,"_extension":43},"/en-us/blog/authors/andrew-thomas",{"name":1056,"config":1057},"Andrew Thomas",{"headshot":1058,"ctfId":1059},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":689},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1065,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1066,"config":1071,"_id":1072,"_type":38,"title":1067,"_source":40,"_file":1073,"_stem":1074,"_extension":43},"/en-us/blog/authors/andy-bradfield",{"name":1067,"role":1068,"config":1069},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1070},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":689},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1076,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1077,"config":1081,"_id":1082,"_type":38,"title":1078,"_source":40,"_file":1083,"_stem":1084,"_extension":43},"/en-us/blog/authors/andy-rogers",{"name":1078,"config":1079},"Andy Rogers",{"headshot":720,"ctfId":1080},"Andy-Rogers",{"template":689},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1086,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1087,"config":1092,"_id":1093,"_type":38,"title":1088,"_source":40,"_file":1094,"_stem":1095,"_extension":43},"/en-us/blog/authors/andy-volpe",{"name":1088,"config":1089},"Andy Volpe",{"headshot":1090,"ctfId":1091},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":689},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1097,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1098,"config":1102,"_id":1103,"_type":38,"title":1099,"_source":40,"_file":1104,"_stem":1105,"_extension":43},"/en-us/blog/authors/angelo-stavrow",{"name":1099,"config":1100},"Angelo Stavrow",{"headshot":720,"ctfId":1101},"Angelo-Stavrow",{"template":689},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1107,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1108,"config":1113,"_id":1114,"_type":38,"title":1109,"_source":40,"_file":1115,"_stem":1116,"_extension":43},"/en-us/blog/authors/anna-vovchenko",{"name":1109,"config":1110},"Anna Vovchenko",{"headshot":1111,"ctfId":1112},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":689},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1118,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1119,"config":1124,"_id":1125,"_type":38,"title":1120,"_source":40,"_file":1126,"_stem":1127,"_extension":43},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1120,"config":1121},"Annabel Dunstone Gray",{"headshot":1122,"ctfId":1123},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":689},"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":1129,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1130,"config":1134,"_id":1135,"_type":38,"title":1131,"_source":40,"_file":1136,"_stem":1137,"_extension":43},"/en-us/blog/authors/anshuman-singh",{"name":1131,"config":1132},"Anshuman Singh",{"headshot":720,"ctfId":1133},"4xzrY67JSkxp4j7hlK1DWA",{"template":689},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1139,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1140,"config":1144,"_id":1145,"_type":38,"title":1141,"_source":40,"_file":1146,"_stem":1147,"_extension":43},"/en-us/blog/authors/anthony-davanzo",{"name":1141,"config":1142},"Anthony Davanzo",{"headshot":720,"ctfId":1143},"4KccrB6k5jq46xQRDOdWSb",{"template":689},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1149,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1150,"config":1155,"_id":1156,"_type":38,"title":1151,"_source":40,"_file":1157,"_stem":1158,"_extension":43},"/en-us/blog/authors/anton-smith",{"name":1151,"config":1152},"Anton Smith",{"headshot":1153,"ctfId":1154},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":689},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1160,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1161,"config":1165,"_id":1166,"_type":38,"title":1162,"_source":40,"_file":1167,"_stem":1168,"_extension":43},"/en-us/blog/authors/aricka-flowers",{"name":1162,"config":1163},"Aricka Flowers",{"headshot":7,"ctfId":1164},"atflowers",{"template":689},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1170,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1171,"config":1175,"_id":1176,"_type":38,"title":1172,"_source":40,"_file":1177,"_stem":1178,"_extension":43},"/en-us/blog/authors/ariel-camus",{"name":1172,"config":1173},"Ariel Camus",{"headshot":7,"ctfId":1174},"arielcamus",{"template":689},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1180,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1181,"config":1185,"_id":1186,"_type":38,"title":1182,"_source":40,"_file":1187,"_stem":1188,"_extension":43},"/en-us/blog/authors/arunoda-susiripala",{"name":1182,"config":1183},"Arunoda Susiripala",{"headshot":720,"ctfId":1184},"7kQaq0xFWPi2zRW6NZIDHp",{"template":689},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1190,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1191,"config":1195,"_id":1197,"_type":38,"title":1192,"_source":40,"_file":1198,"_stem":1199,"_extension":43},"/en-us/blog/authors/ashher-syed",{"name":1192,"config":1193},"Ashher Syed",{"headshot":1194},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":689,"gitlabHandle":1196},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1201,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1202,"config":1207,"_id":1208,"_type":38,"title":1203,"_source":40,"_file":1209,"_stem":1210,"_extension":43},"/en-us/blog/authors/ashley-knobloch",{"name":1203,"config":1204},"Ashley Knobloch",{"headshot":1205,"ctfId":1206},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":689},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1212,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1213,"config":1218,"_id":1219,"_type":38,"title":1214,"_source":40,"_file":1220,"_stem":1221,"_extension":43},"/en-us/blog/authors/ashley-kramer",{"name":1214,"config":1215},"Ashley Kramer",{"headshot":1216,"ctfId":1217},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":689},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1223,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1224,"config":1228,"_id":1229,"_type":38,"title":1230,"_source":40,"_file":1231,"_stem":1232,"_extension":43},"/en-us/blog/authors/ashley-mcalpin",{"name":1225,"config":1226},"Ashley McAlpin",{"headshot":720,"ctfId":1227},"Ashley-McAlpin",{"template":689},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1234,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1235,"config":1239,"_id":1240,"_type":38,"title":1236,"_source":40,"_file":1241,"_stem":1242,"_extension":43},"/en-us/blog/authors/ashley-smith",{"name":1236,"config":1237},"Ashley Smith",{"headshot":720,"ctfId":1238},"Ashley-Smith",{"template":689},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1244,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1245,"config":1249,"_id":1250,"_type":38,"title":1251,"_source":40,"_file":1252,"_stem":1253,"_extension":43},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1246,"config":1247},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":720,"ctfId":1248},"Atlassian-Bitbucket-GitHub-GitLab",{"template":689},"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":1255,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1256,"config":1261,"_id":1262,"_type":38,"title":1257,"_source":40,"_file":1263,"_stem":1264,"_extension":43},"/en-us/blog/authors/austin-regnery",{"name":1257,"config":1258},"Austin Regnery",{"headshot":1259,"ctfId":1260},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":689},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1266,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1267,"config":1272,"_id":1273,"_type":38,"title":1268,"_source":40,"_file":1274,"_stem":1275,"_extension":43},"/en-us/blog/authors/ayoub-fandi",{"name":1268,"config":1269},"Ayoub Fandi",{"headshot":1270,"ctfId":1271},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":689},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1277,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1278,"config":1282,"_id":1283,"_type":38,"title":1284,"_source":40,"_file":1285,"_stem":1286,"_extension":43},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1279,"config":1280},"Bahubali (Bill) Shetti",{"headshot":720,"ctfId":1281},"4rFnUJeUt0JNGQwwCZSLMj",{"template":689},"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":1288,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1289,"config":1293,"_id":1294,"_type":38,"title":1290,"_source":40,"_file":1295,"_stem":1296,"_extension":43},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1290,"config":1291},"Baksheesh Singh Ghuman",{"headshot":720,"ctfId":1292},"Baksheesh-Singh-Ghuman",{"template":689},"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":1298,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1299,"config":1304,"_id":1305,"_type":38,"title":1300,"_source":40,"_file":1306,"_stem":1307,"_extension":43},"/en-us/blog/authors/bala-allam",{"name":1300,"config":1301},"Bala Allam",{"headshot":1302,"ctfId":1303},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":689},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1309,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1310,"config":1315,"_id":1316,"_type":38,"title":1317,"_source":40,"_file":1318,"_stem":1319,"_extension":43},"/en-us/blog/authors/balasankar-balu-c",{"name":1311,"config":1312},"Balasankar 'Balu' C",{"headshot":1313,"ctfId":1314},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":689},"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":1321,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1322,"config":1327,"_id":1328,"_type":38,"title":1323,"_source":40,"_file":1329,"_stem":1330,"_extension":43},"/en-us/blog/authors/bart-zhang",{"name":1323,"config":1324},"Bart Zhang",{"headshot":1325,"ctfId":1326},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":689},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1332,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1333,"config":1338,"_id":1339,"_type":38,"title":1334,"_source":40,"_file":1340,"_stem":1341,"_extension":43},"/en-us/blog/authors/beatriz-barbosa",{"name":1334,"config":1335},"Beatriz Barbosa",{"headshot":1336,"ctfId":1337},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":689},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1343,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1344,"config":1348,"_id":1349,"_type":38,"title":1345,"_source":40,"_file":1350,"_stem":1351,"_extension":43},"/en-us/blog/authors/becka-lippert",{"name":1345,"config":1346},"Becka Lippert",{"headshot":720,"ctfId":1347},"7wX6Hbvb3AbKwa6NnClvBX",{"template":689},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1353,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1354,"config":1359,"_id":1360,"_type":38,"title":1361,"_source":40,"_file":1362,"_stem":1363,"_extension":43},"/en-us/blog/authors/ben-leduc-mills",{"name":1355,"config":1356},"Ben Leduc-Mills",{"headshot":1357,"ctfId":1358},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":689},"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":1365,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1366,"config":1371,"_id":1372,"_type":38,"title":1367,"_source":40,"_file":1373,"_stem":1374,"_extension":43},"/en-us/blog/authors/ben-ridley",{"name":1367,"config":1368},"Ben Ridley",{"headshot":1369,"ctfId":1370},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":689},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1376,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1377,"config":1381,"_id":1382,"_type":38,"title":1378,"_source":40,"_file":1383,"_stem":1384,"_extension":43},"/en-us/blog/authors/benedikt-rollik",{"name":1378,"config":1379},"Benedikt Rollik",{"headshot":720,"ctfId":1380},"Benedikt-Rollik",{"template":689},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1386,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1387,"config":1392,"_id":1393,"_type":38,"title":1388,"_source":40,"_file":1394,"_stem":1395,"_extension":43},"/en-us/blog/authors/benjamin-skierlak",{"name":1388,"config":1389},"Benjamin Skierlak",{"headshot":1390,"ctfId":1391},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":689},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1397,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1398,"config":1402,"_id":1403,"_type":38,"title":1399,"_source":40,"_file":1404,"_stem":1405,"_extension":43},"/en-us/blog/authors/bert-van-eyck",{"name":1399,"config":1400},"Bert Van Eyck",{"headshot":7,"ctfId":1401},"bertveproximus",{"template":689},"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":1407,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1408,"config":1413,"_id":1414,"_type":38,"title":1409,"_source":40,"_file":1415,"_stem":1416,"_extension":43},"/en-us/blog/authors/betsy-bula",{"name":1409,"config":1410},"Betsy Bula",{"headshot":1411,"ctfId":1412},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":689},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1418,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1419,"config":1423,"_id":1424,"_type":38,"title":1420,"_source":40,"_file":1425,"_stem":1426,"_extension":43},"/en-us/blog/authors/betsy-church",{"name":1420,"config":1421},"Betsy Church",{"headshot":7,"ctfId":1422},"bchurch",{"template":689},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1428,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1429,"config":1434,"_id":1435,"_type":38,"title":1430,"_source":40,"_file":1436,"_stem":1437,"_extension":43},"/en-us/blog/authors/bill-staples",{"name":1430,"config":1431,"role":1433},"Bill Staples",{"headshot":1432},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":689},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1439,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1440,"config":1445,"_id":1446,"_type":38,"title":1441,"_source":40,"_file":1447,"_stem":1448,"_extension":43},"/en-us/blog/authors/bob-van-landuyt",{"name":1441,"config":1442},"Bob Van Landuyt",{"headshot":1443,"ctfId":1444},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":689},"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":1450,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1451,"config":1455,"_id":1456,"_type":38,"title":1452,"_source":40,"_file":1457,"_stem":1458,"_extension":43},"/en-us/blog/authors/boris-baldassari",{"name":1452,"config":1453},"Boris Baldassari",{"headshot":7,"ctfId":1454},"bbaldassari",{"template":689},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1460,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1461,"config":1465,"_id":1466,"_type":38,"title":1462,"_source":40,"_file":1467,"_stem":1468,"_extension":43},"/en-us/blog/authors/borivoje-tasovac",{"name":1462,"config":1463},"Borivoje Tasovac",{"headshot":7,"ctfId":1464},"borivoje",{"template":689},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1470,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1471,"config":1475,"_id":1476,"_type":38,"title":1472,"_source":40,"_file":1477,"_stem":1478,"_extension":43},"/en-us/blog/authors/brad-downey",{"name":1472,"config":1473},"Brad Downey",{"headshot":720,"ctfId":1474},"6b6RTu6832NFEju2zKJhbE",{"template":689},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1480,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1481,"config":1486,"_id":1487,"_type":38,"title":1482,"_source":40,"_file":1488,"_stem":1489,"_extension":43},"/en-us/blog/authors/bradley-lee",{"name":1482,"config":1483},"Bradley Lee",{"headshot":1484,"ctfId":1485},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":689},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1491,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1492,"config":1496,"_id":1497,"_type":38,"title":1493,"_source":40,"_file":1498,"_stem":1499,"_extension":43},"/en-us/blog/authors/brandon-foo",{"name":1493,"config":1494},"Brandon Foo",{"headshot":720,"ctfId":1495},"Brandon-Foo",{"template":689},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1501,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1502,"config":1506,"_id":1507,"_type":38,"title":1503,"_source":40,"_file":1508,"_stem":1509,"_extension":43},"/en-us/blog/authors/brandon-jung",{"name":1503,"config":1504},"Brandon Jung",{"headshot":720,"ctfId":1505},"Brandon-Jung",{"template":689},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1511,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1512,"config":1516,"_id":1517,"_type":38,"title":1513,"_source":40,"_file":1518,"_stem":1519,"_extension":43},"/en-us/blog/authors/brandon-lyon",{"name":1513,"config":1514},"Brandon Lyon",{"headshot":7,"ctfId":1515},"brandonlyon",{"template":689},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1521,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1522,"config":1526,"_id":1527,"_type":38,"title":1523,"_source":40,"_file":1528,"_stem":1529,"_extension":43},"/en-us/blog/authors/brein-matturro",{"name":1523,"config":1524},"Brein Matturro",{"headshot":7,"ctfId":1525},"bmatturro",{"template":689},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1531,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1532,"config":1536,"_id":1537,"_type":38,"title":1538,"_source":40,"_file":1539,"_stem":1540,"_extension":43},"/en-us/blog/authors/brendan-oleary",{"name":1533,"config":1534},"Brendan O'Leary",{"headshot":7,"ctfId":1535},"brendan",{"template":689},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1542,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1543,"config":1547,"_id":1548,"_type":38,"title":1544,"_source":40,"_file":1549,"_stem":1550,"_extension":43},"/en-us/blog/authors/brendan-regan",{"name":1544,"config":1545},"Brendan Regan",{"headshot":7,"ctfId":1546},"brendanregan11",{"template":689},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1552,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1553,"config":1558,"_id":1559,"_type":38,"title":1554,"_source":40,"_file":1560,"_stem":1561,"_extension":43},"/en-us/blog/authors/brett-walker",{"name":1554,"config":1555},"Brett Walker",{"headshot":1556,"ctfId":1557},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":689},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1563,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1564,"config":1568,"_id":1569,"_type":38,"title":1565,"_source":40,"_file":1570,"_stem":1571,"_extension":43},"/en-us/blog/authors/brian-glanz",{"name":1565,"config":1566},"Brian Glanz",{"headshot":7,"ctfId":1567},"brianglanz",{"template":689},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1573,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1574,"config":1578,"_id":1579,"_type":38,"title":1580,"_source":40,"_file":1581,"_stem":1582,"_extension":43},"/en-us/blog/authors/brian-oconnell",{"name":1575,"config":1576},"Brian O'Connell",{"headshot":720,"ctfId":1577},"Brian-OConnell",{"template":689},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1584,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1585,"config":1589,"_id":1590,"_type":38,"title":1586,"_source":40,"_file":1591,"_stem":1592,"_extension":43},"/en-us/blog/authors/brian-rhea",{"name":1586,"config":1587},"Brian Rhea",{"headshot":7,"ctfId":1588},"brhea",{"template":689},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1594,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1595,"config":1599,"_id":1600,"_type":38,"title":1596,"_source":40,"_file":1601,"_stem":1602,"_extension":43},"/en-us/blog/authors/brian-wald",{"name":1596,"config":1597},"Brian Wald",{"headshot":720,"ctfId":1598},"78qOxgHKlgDY2IxMrBrgCu",{"template":689},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1604,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1605,"config":1609,"_id":1610,"_type":38,"title":1606,"_source":40,"_file":1611,"_stem":1612,"_extension":43},"/en-us/blog/authors/brittany-rohde",{"name":1606,"config":1607},"Brittany Rohde",{"headshot":7,"ctfId":1608},"brittanyr",{"template":689},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1614,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1615,"config":1620,"_id":1621,"_type":38,"title":1616,"_source":40,"_file":1622,"_stem":1623,"_extension":43},"/en-us/blog/authors/bryan-behrenshausen",{"name":1616,"config":1617},"Bryan Behrenshausen",{"headshot":1618,"ctfId":1619},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":689},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1625,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1626,"config":1631,"_id":1632,"_type":38,"title":1627,"_source":40,"_file":1633,"_stem":1634,"_extension":43},"/en-us/blog/authors/bryan-may",{"name":1627,"config":1628},"Bryan May",{"headshot":1629,"ctfId":1630},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":689},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1636,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1637,"config":1642,"_id":1643,"_type":38,"title":1638,"_source":40,"_file":1644,"_stem":1645,"_extension":43},"/en-us/blog/authors/byron-boots",{"name":1638,"config":1639},"Byron Boots",{"headshot":1640,"ctfId":1641},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":689},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1647,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1648,"config":1653,"_id":1654,"_type":38,"title":1649,"_source":40,"_file":1655,"_stem":1656,"_extension":43},"/en-us/blog/authors/camellia-yang",{"name":1649,"config":1650},"Camellia Yang",{"headshot":1651,"ctfId":1652},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":689},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1658,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1659,"config":1664,"_id":1665,"_type":38,"title":1660,"_source":40,"_file":1666,"_stem":1667,"_extension":43},"/en-us/blog/authors/cameron-swords",{"name":1660,"config":1661},"Cameron Swords",{"headshot":1662,"ctfId":1663},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":689},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1669,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1670,"config":1676,"_id":1677,"_type":38,"title":1672,"_source":40,"_file":1678,"_stem":1679,"_extension":43},"/en-us/blog/authors/carl-myers",{"role":1671,"name":1672,"config":1673},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1674,"ctfId":1675},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":689},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1681,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1682,"config":1686,"_id":1687,"_type":38,"title":1683,"_source":40,"_file":1688,"_stem":1689,"_extension":43},"/en-us/blog/authors/carol-teskey",{"name":1683,"config":1684},"Carol Teskey",{"headshot":7,"ctfId":1685},"cteskey",{"template":689},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1691,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1692,"config":1697,"_id":1698,"_type":38,"title":1693,"_source":40,"_file":1699,"_stem":1700,"_extension":43},"/en-us/blog/authors/cesar-saavedra",{"name":1693,"config":1694},"Cesar Saavedra",{"headshot":1695,"ctfId":1696},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":689},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1702,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1703,"config":1707,"_id":1708,"_type":38,"title":1704,"_source":40,"_file":1709,"_stem":1710,"_extension":43},"/en-us/blog/authors/chad-malchow",{"name":1704,"config":1705},"Chad Malchow",{"headshot":720,"ctfId":1706},"Chad-Malchow",{"template":689},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1712,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1713,"config":1718,"_id":1719,"_type":38,"title":1714,"_source":40,"_file":1720,"_stem":1721,"_extension":43},"/en-us/blog/authors/chance-feick",{"name":1714,"config":1715},"Chance Feick",{"headshot":1716,"ctfId":1717},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666442/Blog/Author%20Headshots/chance_feick_headshot.png","18dtRbXV47xqf5iDrOIduM",{"template":689},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1723,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1724,"config":1729,"_id":1730,"_type":38,"title":1725,"_source":40,"_file":1731,"_stem":1732,"_extension":43},"/en-us/blog/authors/chandler-gibbons",{"name":1725,"config":1726},"Chandler Gibbons",{"headshot":1727,"ctfId":1728},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663276/Blog/Author%20Headshots/chandlergibb-headshot.jpg","chandlergibb",{"template":689},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1734,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1735,"config":1739,"_id":1740,"_type":38,"title":1741,"_source":40,"_file":1742,"_stem":1743,"_extension":43},"/en-us/blog/authors/charl-de-wit",{"name":1736,"config":1737},"Charl de Wit",{"headshot":720,"ctfId":1738},"45mQeypQVLNvvTWMzserbR",{"template":689},"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":1745,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1746,"config":1751,"_id":1752,"_type":38,"title":1747,"_source":40,"_file":1753,"_stem":1754,"_extension":43},"/en-us/blog/authors/charlie-ablett",{"name":1747,"config":1748},"Charlie Ablett",{"headshot":1749,"ctfId":1750},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670131/Blog/Author%20Headshots/cablett-headshot.png","cablett",{"template":689},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1756,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1757,"config":1761,"_id":1762,"_type":38,"title":1758,"_source":40,"_file":1763,"_stem":1764,"_extension":43},"/en-us/blog/authors/charvi-mendiratta",{"name":1758,"config":1759},"Charvi Mendiratta",{"headshot":720,"ctfId":1760},"YV7WvnjPWFS3JhXmSYJLk",{"template":689},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1766,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1767,"config":1772,"_id":1773,"_type":38,"title":1768,"_source":40,"_file":1774,"_stem":1775,"_extension":43},"/en-us/blog/authors/cherry-han",{"name":1768,"config":1769},"Cherry Han",{"headshot":1770,"ctfId":1771},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ehktvdbix2o1t0mmcvll.png","6gkuhRkgzCNP1Ee6J14yLu",{"template":689},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1777,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1778,"config":1782,"_id":1784,"_type":38,"title":1779,"_source":40,"_file":1785,"_stem":1786,"_extension":43},"/en-us/blog/authors/chloe-cartron",{"name":1779,"config":1780},"Chloe Cartron",{"headshot":1781},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":689,"gitlabHandle":1783},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1788,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1789,"config":1794,"_id":1795,"_type":38,"title":1790,"_source":40,"_file":1796,"_stem":1797,"_extension":43},"/en-us/blog/authors/chloe-whitestone",{"name":1790,"config":1791},"Chloe Whitestone",{"headshot":1792,"ctfId":1793},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678693/Blog/Author%20Headshots/chloe-headshot.jpg","chloe",{"template":689},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1799,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1800,"config":1805,"_id":1806,"_type":38,"title":1801,"_source":40,"_file":1807,"_stem":1808,"_extension":43},"/en-us/blog/authors/chris-balane",{"name":1801,"config":1802},"Chris Balane",{"headshot":1803,"ctfId":1804},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667630/Blog/Author%20Headshots/chris_balane_headshot.png","40SOCfTl3frynjL3dbg63o",{"template":689},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1810,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1811,"config":1815,"_id":1816,"_type":38,"title":1812,"_source":40,"_file":1817,"_stem":1818,"_extension":43},"/en-us/blog/authors/chris-baus",{"name":1812,"config":1813},"Chris Baus",{"headshot":7,"ctfId":1814},"chrisbaus",{"template":689},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1820,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1821,"config":1826,"_id":1827,"_type":38,"title":1822,"_source":40,"_file":1828,"_stem":1829,"_extension":43},"/en-us/blog/authors/chris-micek",{"name":1822,"config":1823},"Chris Micek",{"headshot":1824,"ctfId":1825},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666144/Blog/Author%20Headshots/chris_micek_headshot.png","62ZsvfXlttQEQ1tnikgoq9",{"template":689},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1831,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1832,"config":1837,"_id":1838,"_type":38,"title":1833,"_source":40,"_file":1839,"_stem":1840,"_extension":43},"/en-us/blog/authors/chris-moberly",{"name":1833,"config":1834},"Chris Moberly",{"headshot":1835,"ctfId":1836},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664235/Blog/Author%20Headshots/cmoberly-headshot.jpg","cmoberly",{"template":689},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1842,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1843,"config":1847,"_id":1848,"_type":38,"title":1849,"_source":40,"_file":1850,"_stem":1851,"_extension":43},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1844,"config":1845},"Chris Sterry, Dotscience",{"headshot":720,"ctfId":1846},"Chris-Sterry-Dotscience",{"template":689},"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":1853,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1854,"config":1858,"_id":1859,"_type":38,"title":1855,"_source":40,"_file":1860,"_stem":1861,"_extension":43},"/en-us/blog/authors/chris-ward",{"name":1855,"config":1856},"Chris Ward",{"headshot":7,"ctfId":1857},"chrischinchilla",{"template":689},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1863,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1864,"config":1871,"_id":1872,"_type":38,"title":1866,"_source":40,"_file":1873,"_stem":1874,"_extension":43},"/en-us/blog/authors/chris-weber",{"role":1865,"name":1866,"config":1867},"CRO ","Chris Weber",{"headshot":1868,"linkedin":1869,"ctfId":1870},"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":689},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1876,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1877,"config":1881,"_id":1882,"_type":38,"title":1878,"_source":40,"_file":1883,"_stem":1884,"_extension":43},"/en-us/blog/authors/chrissie-buchanan",{"name":1878,"config":1879},"Chrissie Buchanan",{"headshot":720,"ctfId":1880},"cbuchanan",{"template":689},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1886,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1887,"config":1892,"_id":1893,"_type":38,"title":1888,"_source":40,"_file":1894,"_stem":1895,"_extension":43},"/en-us/blog/authors/christen-dybenko",{"name":1888,"config":1889},"Christen Dybenko",{"headshot":1890,"ctfId":1891},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668811/Blog/Author%20Headshots/cdybenko-headshot.jpg","cdybenko",{"template":689},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1897,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1898,"config":1903,"_id":1904,"_type":38,"title":1899,"_source":40,"_file":1905,"_stem":1906,"_extension":43},"/en-us/blog/authors/christian-couder",{"name":1899,"config":1900},"Christian Couder",{"headshot":1901,"ctfId":1902},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool",{"template":689},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1908,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1909,"config":1914,"_id":1915,"_type":38,"title":1910,"_source":40,"_file":1916,"_stem":1917,"_extension":43},"/en-us/blog/authors/christian-nnachi",{"name":1910,"config":1911},"Christian Nnachi",{"headshot":1912,"ctfId":1913},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665343/Blog/Author%20Headshots/christian_nnachi_headshot.png","6pE7HjtzzpRhBFVdwTFjEX",{"template":689},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1919,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1920,"config":1924,"_id":1925,"_type":38,"title":1921,"_source":40,"_file":1926,"_stem":1927,"_extension":43},"/en-us/blog/authors/christian-simko",{"name":1921,"config":1922},"Christian Simko",{"headshot":7,"ctfId":1923},"csimko",{"template":689},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1929,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1930,"config":1935,"_id":1936,"_type":38,"title":1931,"_source":40,"_file":1937,"_stem":1938,"_extension":43},"/en-us/blog/authors/christie-lenneville",{"name":1931,"config":1932},"Christie Lenneville",{"headshot":1933,"ctfId":1934},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670047/Blog/Author%20Headshots/clenneville-headshot.jpg","clenneville",{"template":689},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1940,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1941,"config":1945,"_id":1946,"_type":38,"title":1947,"_source":40,"_file":1948,"_stem":1949,"_extension":43},"/en-us/blog/authors/christina-hupy-phd",{"name":1942,"config":1943},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1944},"chupy",{"template":689},"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":1951,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1952,"config":1957,"_id":1958,"_type":38,"title":1953,"_source":40,"_file":1959,"_stem":1960,"_extension":43},"/en-us/blog/authors/christina-lohr",{"name":1953,"config":1954},"Christina Lohr",{"headshot":1955,"ctfId":1956},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662499/Blog/Author%20Headshots/lohrc-headshot.jpg","lohrc",{"template":689},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":1962,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1963,"config":1967,"_id":1968,"_type":38,"title":1964,"_source":40,"_file":1969,"_stem":1970,"_extension":43},"/en-us/blog/authors/christine-yoshida",{"name":1964,"config":1965},"Christine Yoshida",{"headshot":7,"ctfId":1966},"cyoshida",{"template":689},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":1972,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1973,"config":1977,"_id":1978,"_type":38,"title":1974,"_source":40,"_file":1979,"_stem":1980,"_extension":43},"/en-us/blog/authors/christopher-watson",{"name":1974,"config":1975},"Christopher Watson",{"headshot":720,"ctfId":1976},"Christopher-Watson",{"template":689},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":1982,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1983,"config":1987,"_id":1988,"_type":38,"title":1984,"_source":40,"_file":1989,"_stem":1990,"_extension":43},"/en-us/blog/authors/christos-bacharakis",{"name":1984,"config":1985},"Christos Bacharakis",{"headshot":720,"ctfId":1986},"Christos-Bacharakis",{"template":689},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":1992,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":1993,"config":1997,"_id":1998,"_type":38,"title":1994,"_source":40,"_file":1999,"_stem":2000,"_extension":43},"/en-us/blog/authors/cindy-blake",{"name":1994,"config":1995},"Cindy Blake",{"headshot":720,"ctfId":1996},"cblake",{"template":689},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":2002,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2003,"config":2008,"_id":2009,"_type":38,"title":2004,"_source":40,"_file":2010,"_stem":2011,"_extension":43},"/en-us/blog/authors/claire-champernowne",{"name":2004,"config":2005},"Claire Champernowne",{"headshot":2006,"ctfId":2007},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ",{"template":689},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2013,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2014,"config":2018,"_id":2019,"_type":38,"title":2015,"_source":40,"_file":2020,"_stem":2021,"_extension":43},"/en-us/blog/authors/clement-ho",{"name":2015,"config":2016},"Clement Ho",{"headshot":7,"ctfId":2017},"ClemMakesApps",{"template":689},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2023,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2024,"config":2028,"_id":2029,"_type":38,"title":2025,"_source":40,"_file":2030,"_stem":2031,"_extension":43},"/en-us/blog/authors/colin-fletcher",{"name":2025,"config":2026},"Colin Fletcher",{"headshot":7,"ctfId":2027},"cfletcher1",{"template":689},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2033,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2034,"config":2039,"_id":2040,"_type":38,"title":2035,"_source":40,"_file":2041,"_stem":2042,"_extension":43},"/en-us/blog/authors/connor-gilbert",{"name":2035,"config":2036},"Connor Gilbert",{"headshot":2037,"ctfId":2038},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665913/Blog/Author%20Headshots/connorgilbert-headshot.jpg","connorgilbert",{"template":689},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2044,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2045,"config":2049,"_id":2050,"_type":38,"title":2046,"_source":40,"_file":2051,"_stem":2052,"_extension":43},"/en-us/blog/authors/connor-shea",{"name":2046,"config":2047},"Connor Shea",{"headshot":720,"ctfId":2048},"Connor-Shea",{"template":689},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2054,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2055,"config":2060,"_id":2061,"_type":38,"title":2056,"_source":40,"_file":2062,"_stem":2063,"_extension":43},"/en-us/blog/authors/corey-oas",{"name":2056,"config":2057},"Corey Oas",{"headshot":2058,"ctfId":2059},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667633/Blog/Author%20Headshots/corey_oas_headshot.png","1Dd1lJ4aKCv36YWdlUhlPf",{"template":689},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2065,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2066,"config":2070,"_id":2071,"_type":38,"title":2067,"_source":40,"_file":2072,"_stem":2073,"_extension":43},"/en-us/blog/authors/cormac-foster",{"name":2067,"config":2068},"Cormac Foster",{"headshot":7,"ctfId":2069},"cfoster3",{"template":689},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2075,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2076,"config":2081,"_id":2082,"_type":38,"title":2077,"_source":40,"_file":2083,"_stem":2084,"_extension":43},"/en-us/blog/authors/costel-maxim",{"name":2077,"config":2078},"Costel Maxim",{"headshot":2079,"ctfId":2080},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663173/Blog/Author%20Headshots/costel_maxim_headshot.png","3QzzrMksaRD9ZPytt0SPPL",{"template":689},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2086,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2087,"config":2092,"_id":2093,"_type":38,"title":2088,"_source":40,"_file":2094,"_stem":2095,"_extension":43},"/en-us/blog/authors/courtney-meddaugh",{"name":2088,"config":2089},"Courtney Meddaugh",{"headshot":2090,"ctfId":2091},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665168/Blog/Author%20Headshots/courtney_meddaugh_headshot.png","5avtK3YS9MrDBkaOnB9ZmG",{"template":689},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2097,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2098,"config":2102,"_id":2103,"_type":38,"title":2099,"_source":40,"_file":2104,"_stem":2105,"_extension":43},"/en-us/blog/authors/craig-gomes",{"name":2099,"config":2100},"Craig Gomes",{"headshot":7,"ctfId":2101},"craiggomes",{"template":689},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2107,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2108,"config":2113,"_id":2114,"_type":38,"title":2109,"_source":40,"_file":2115,"_stem":2116,"_extension":43},"/en-us/blog/authors/craig-miskell",{"name":2109,"config":2110},"Craig Miskell",{"headshot":2111,"ctfId":2112},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667372/Blog/Author%20Headshots/cmiskell-headshot.jpg","cmiskell",{"template":689},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2118,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2119,"config":2123,"_id":2124,"_type":38,"title":2120,"_source":40,"_file":2125,"_stem":2126,"_extension":43},"/en-us/blog/authors/creighton-swank",{"name":2120,"config":2121},"Creighton Swank",{"headshot":720,"ctfId":2122},"5uf3k9lutpbelxJQ373eWu",{"template":689},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2128,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2129,"config":2133,"_id":2134,"_type":38,"title":2130,"_source":40,"_file":2135,"_stem":2136,"_extension":43},"/en-us/blog/authors/daisy-miclat",{"name":2130,"config":2131},"Daisy Miclat",{"headshot":720,"ctfId":2132},"IU4zOKoPhWS7hok7qsy7w",{"template":689},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2138,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2139,"config":2143,"_id":2144,"_type":38,"title":2140,"_source":40,"_file":2145,"_stem":2146,"_extension":43},"/en-us/blog/authors/dan-luhring",{"name":2140,"config":2141},"Dan Luhring",{"headshot":7,"ctfId":2142},"danluhring",{"template":689},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2148,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2149,"config":2154,"_id":2155,"_type":38,"title":2150,"_source":40,"_file":2156,"_stem":2157,"_extension":43},"/en-us/blog/authors/dan-rabinovitz",{"name":2150,"config":2151},"Dan Rabinovitz",{"headshot":2152,"ctfId":2153},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664796/Blog/Author%20Headshots/dan_rabinovitz_headshot.png","31AXb267jy94budCWQZQyr",{"template":689},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2159,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2160,"config":2164,"_id":2165,"_type":38,"title":2161,"_source":40,"_file":2166,"_stem":2167,"_extension":43},"/en-us/blog/authors/daniel-berman",{"name":2161,"config":2162},"Daniel Berman",{"headshot":720,"ctfId":2163},"Daniel-Berman",{"template":689},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2169,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2170,"config":2174,"_id":2175,"_type":38,"title":2171,"_source":40,"_file":2176,"_stem":2177,"_extension":43},"/en-us/blog/authors/daniel-gruesso",{"name":2171,"config":2172},"Daniel Gruesso",{"headshot":7,"ctfId":2173},"danielgruesso",{"template":689},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2179,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2180,"config":2185,"_id":2186,"_type":38,"title":2181,"_source":40,"_file":2187,"_stem":2188,"_extension":43},"/en-us/blog/authors/daniel-hauenstein",{"name":2181,"config":2182},"Daniel Hauenstein",{"headshot":2183,"ctfId":2184},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662434/Blog/Author%20Headshots/daniel_hauenstein_headshot.png","2gXGuSmuvZSxv0iCn4sinV",{"template":689},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2190,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2191,"config":2196,"_id":2197,"_type":38,"title":2192,"_source":40,"_file":2198,"_stem":2199,"_extension":43},"/en-us/blog/authors/daniel-helfand",{"name":2192,"config":2193},"Daniel Helfand",{"headshot":2194,"ctfId":2195},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662418/Blog/Author%20Headshots/dhelfand.png","b9sRP0HJhdPsOEruWUfih",{"template":689},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2201,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2202,"config":2206,"_id":2207,"_type":38,"title":2203,"_source":40,"_file":2208,"_stem":2209,"_extension":43},"/en-us/blog/authors/daniel-mora",{"name":2203,"config":2204},"Daniel Mora",{"headshot":7,"ctfId":2205},"dmoraberlin",{"template":689},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2211,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2212,"config":2216,"_id":2218,"_type":38,"title":2213,"_source":40,"_file":2219,"_stem":2220,"_extension":43},"/en-us/blog/authors/daniel-murphy",{"name":2213,"config":2214},"Daniel Murphy",{"headshot":2215},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":689,"gitlabHandle":2217},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2222,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2223,"config":2228,"_id":2229,"_type":38,"title":2224,"_source":40,"_file":2230,"_stem":2231,"_extension":43},"/en-us/blog/authors/darby-frey",{"name":2224,"config":2225},"Darby Frey",{"headshot":2226,"ctfId":2227},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey",{"template":689},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2233,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2234,"config":2239,"_id":2240,"_type":38,"title":2235,"_source":40,"_file":2241,"_stem":2242,"_extension":43},"/en-us/blog/authors/darren-eastman",{"name":2235,"config":2236},"Darren Eastman",{"headshot":2237,"ctfId":2238},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman",{"template":689},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2244,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2245,"config":2249,"_id":2250,"_type":38,"title":2246,"_source":40,"_file":2251,"_stem":2252,"_extension":43},"/en-us/blog/authors/darren-murph",{"name":2246,"config":2247},"Darren Murph",{"headshot":7,"ctfId":2248},"dmurph",{"template":689},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2254,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2255,"config":2262,"_id":2263,"_type":38,"title":2257,"_source":40,"_file":2264,"_stem":2265,"_extension":43},"/en-us/blog/authors/darwin-sanoy",{"role":2256,"name":2257,"config":2258},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2259,"linkedin":2260,"ctfId":2261},"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":689},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2267,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2268,"config":2273,"_id":2274,"_type":38,"title":2269,"_source":40,"_file":2275,"_stem":2276,"_extension":43},"/en-us/blog/authors/dave-steer",{"name":2269,"config":2270},"Dave Steer",{"headshot":2271,"ctfId":2272},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658895/Blog/Author%20Headshots/dsteer-headshot.jpg","dsteer",{"template":689},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2278,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2279,"config":2283,"_id":2284,"_type":38,"title":2280,"_source":40,"_file":2285,"_stem":2286,"_extension":43},"/en-us/blog/authors/dave-wentzel",{"name":2280,"config":2281},"Dave Wentzel",{"headshot":720,"ctfId":2282},"Dave-Wentzel",{"template":689},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2288,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2289,"config":2294,"_id":2295,"_type":38,"title":2296,"_source":40,"_file":2297,"_stem":2298,"_extension":43},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2290,"config":2291},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2292,"ctfId":2293},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660185/Blog/Author%20Headshots/david-headshot.jpg","david",{"template":689},"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":2300,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2301,"config":2306,"_id":2307,"_type":38,"title":2308,"_source":40,"_file":2309,"_stem":2310,"_extension":43},"/en-us/blog/authors/david-oregan",{"name":2302,"config":2303},"David O'Regan",{"headshot":2304,"ctfId":2305},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659853/Blog/Author%20Headshots/oregand-headshot.png","oregand",{"template":689},"content:en-us:blog:authors:david-oregan.yml","David Oregan","en-us/blog/authors/david-oregan.yml","en-us/blog/authors/david-oregan",{"_path":2312,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2313,"config":2317,"_id":2318,"_type":38,"title":2314,"_source":40,"_file":2319,"_stem":2320,"_extension":43},"/en-us/blog/authors/david-planella",{"name":2314,"config":2315},"David Planella",{"headshot":720,"ctfId":2316},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":689},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2322,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2323,"config":2327,"_id":2328,"_type":38,"title":2324,"_source":40,"_file":2329,"_stem":2330,"_extension":43},"/en-us/blog/authors/david-russell",{"name":2324,"config":2325},"David Russell",{"headshot":720,"ctfId":2326},"David-Russell",{"template":689},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2332,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2333,"config":2338,"_id":2339,"_type":38,"title":2334,"_source":40,"_file":2340,"_stem":2341,"_extension":43},"/en-us/blog/authors/david-smith",{"name":2334,"config":2335},"David Smith",{"headshot":2336,"ctfId":2337},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671135/Blog/Author%20Headshots/dawsmith-headshot.jpg","dawsmith",{"template":689},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2343,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2344,"config":2348,"_id":2349,"_type":38,"title":2345,"_source":40,"_file":2350,"_stem":2351,"_extension":43},"/en-us/blog/authors/davis-townsend",{"name":2345,"config":2346},"Davis Townsend",{"headshot":7,"ctfId":2347},"davistownsend",{"template":689},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2353,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2354,"config":2358,"_id":2360,"_type":38,"title":2355,"_source":40,"_file":2361,"_stem":2362,"_extension":43},"/en-us/blog/authors/davoud-tu",{"name":2355,"config":2356},"Davoud Tu",{"headshot":2357},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":689,"gitlabHandle":2359},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2364,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2365,"config":2370,"_id":2371,"_type":38,"title":2372,"_source":40,"_file":2373,"_stem":2374,"_extension":43},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2366,"config":2367},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2368,"ctfId":2369},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671963/Blog/Author%20Headshots/Dean_Photo__1_.jpg","6wQ0QwFZdbzAtYGZgnALkw",{"template":689},"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":2376,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2377,"config":2382,"_id":2383,"_type":38,"title":2378,"_source":40,"_file":2384,"_stem":2385,"_extension":43},"/en-us/blog/authors/deepa-mahalingam",{"name":2378,"config":2379},"Deepa Mahalingam",{"headshot":2380,"ctfId":2381},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662019/Blog/Author%20Headshots/deepa-headshot.jpg","M54z9AWDuU7L9nBR9gRF4",{"template":689},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2387,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2388,"config":2393,"_id":2394,"_type":38,"title":2389,"_source":40,"_file":2395,"_stem":2396,"_extension":43},"/en-us/blog/authors/dennis-appelt",{"name":2389,"config":2390},"Dennis Appelt",{"headshot":2391,"ctfId":2392},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt",{"template":689},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2398,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2399,"config":2404,"_id":2405,"_type":38,"title":2400,"_source":40,"_file":2406,"_stem":2407,"_extension":43},"/en-us/blog/authors/dennis-tang",{"name":2400,"config":2401},"Dennis Tang",{"headshot":2402,"ctfId":2403},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672189/Blog/Author%20Headshots/dennis-headshot.jpg","dennis",{"template":689},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2409,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2410,"config":2414,"_id":2416,"_type":38,"title":2417,"_source":40,"_file":2418,"_stem":2419,"_extension":43},"/en-us/blog/authors/dennis-van-rooijen",{"name":2411,"config":2412},"Dennis van Rooijen",{"headshot":2413},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":689,"gitlabHandle":2415},"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":2421,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2422,"config":2427,"_id":2428,"_type":38,"title":2423,"_source":40,"_file":2429,"_stem":2430,"_extension":43},"/en-us/blog/authors/devin-sylva",{"name":2423,"config":2424},"Devin Sylva",{"headshot":2425,"ctfId":2426},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679087/Blog/Author%20Headshots/devin-headshot.jpg","devin",{"template":689},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2432,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2433,"config":2437,"_id":2438,"_type":38,"title":2434,"_source":40,"_file":2439,"_stem":2440,"_extension":43},"/en-us/blog/authors/dhruv-jain",{"name":2434,"config":2435},"Dhruv Jain",{"headshot":720,"ctfId":2436},"2wyibk9HBKn6PjgaEuzXuZ",{"template":689},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2442,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2443,"config":2447,"_id":2448,"_type":38,"title":2444,"_source":40,"_file":2449,"_stem":2450,"_extension":43},"/en-us/blog/authors/diana-logan",{"name":2444,"config":2445},"Diana Logan",{"headshot":720,"ctfId":2446},"6poIwhQe6W9ysm5rBuSPXX",{"template":689},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2452,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2453,"config":2458,"_id":2459,"_type":38,"title":2454,"_source":40,"_file":2460,"_stem":2461,"_extension":43},"/en-us/blog/authors/dilan-orrino",{"name":2454,"config":2455},"Dilan Orrino",{"headshot":2456,"ctfId":2457},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666180/Blog/Author%20Headshots/dorrino-headshot.png","dorrino",{"template":689},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2463,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2464,"config":2468,"_id":2469,"_type":38,"title":2465,"_source":40,"_file":2470,"_stem":2471,"_extension":43},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2465,"config":2466},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2467},"dimitrieh",{"template":689},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2473,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2474,"config":2478,"_id":2479,"_type":38,"title":2475,"_source":40,"_file":2480,"_stem":2481,"_extension":43},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2475,"config":2476},"Dinesh Bolkensteyn",{"headshot":720,"ctfId":2477},"EpylYWgjPmFOL5NX3Zxmk",{"template":689},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2483,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2484,"config":2488,"_id":2489,"_type":38,"title":2490,"_source":40,"_file":2491,"_stem":2492,"_extension":43},"/en-us/blog/authors/dj-mountney",{"name":2485,"config":2486},"DJ Mountney",{"headshot":720,"ctfId":2487},"DJ-Mountney",{"template":689},"content:en-us:blog:authors:dj-mountney.yml","Dj Mountney","en-us/blog/authors/dj-mountney.yml","en-us/blog/authors/dj-mountney",{"_path":2494,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2495,"config":2499,"_id":2500,"_type":38,"title":2501,"_source":40,"_file":2502,"_stem":2503,"_extension":43},"/en-us/blog/authors/dmitriy-job",{"name":2496,"config":2497},"Dmitriy, Job",{"headshot":720,"ctfId":2498},"Dmitriy-Job",{"template":689},"content:en-us:blog:authors:dmitriy-job.yml","Dmitriy Job","en-us/blog/authors/dmitriy-job.yml","en-us/blog/authors/dmitriy-job",{"_path":2505,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2506,"config":2510,"_id":2511,"_type":38,"title":2507,"_source":40,"_file":2512,"_stem":2513,"_extension":43},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2507,"config":2508},"Dmitriy Zaporozhets",{"headshot":720,"ctfId":2509},"Dmitriy-Zaporozhets",{"template":689},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2515,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2516,"config":2521,"_id":2522,"_type":38,"title":2517,"_source":40,"_file":2523,"_stem":2524,"_extension":43},"/en-us/blog/authors/dmitry-gruzd",{"name":2517,"config":2518},"Dmitry Gruzd",{"headshot":2519,"ctfId":2520},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682014/Blog/Author%20Headshots/dgruzd-headshot.jpg","dgruzd",{"template":689},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2526,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2527,"config":2532,"_id":2533,"_type":38,"title":2528,"_source":40,"_file":2534,"_stem":2535,"_extension":43},"/en-us/blog/authors/dominic-couture",{"name":2528,"config":2529},"Dominic Couture",{"headshot":2530,"ctfId":2531},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683783/Blog/Author%20Headshots/dominic.png","3K2DmuMWV5isBeVtKsplia",{"template":689},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2537,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2538,"config":2542,"_id":2543,"_type":38,"title":2539,"_source":40,"_file":2544,"_stem":2545,"_extension":43},"/en-us/blog/authors/douglas-alexandre",{"name":2539,"config":2540},"Douglas Alexandre",{"headshot":720,"ctfId":2541},"Douglas-Alexandre",{"template":689},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2547,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2548,"config":2552,"_id":2553,"_type":38,"title":2549,"_source":40,"_file":2554,"_stem":2555,"_extension":43},"/en-us/blog/authors/douwe-maan",{"name":2549,"config":2550},"Douwe Maan",{"headshot":7,"ctfId":2551},"DouweM",{"template":689},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2557,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2558,"config":2563,"_id":2564,"_type":38,"title":2559,"_source":40,"_file":2565,"_stem":2566,"_extension":43},"/en-us/blog/authors/dov-hershkovitch",{"name":2559,"config":2560},"Dov Hershkovitch",{"headshot":2561,"ctfId":2562},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665628/Blog/Author%20Headshots/dhershkovitch-headshot.png","dhershkovitch",{"template":689},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2568,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2569,"config":2573,"_id":2574,"_type":38,"title":2575,"_source":40,"_file":2576,"_stem":2577,"_extension":43},"/en-us/blog/authors/dr-elle-obrien",{"name":2570,"config":2571},"Dr. Elle O'Brien",{"headshot":720,"ctfId":2572},"Dr-Elle-OBrien",{"template":689},"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":2579,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2580,"config":2584,"_id":2585,"_type":38,"title":2581,"_source":40,"_file":2586,"_stem":2587,"_extension":43},"/en-us/blog/authors/drew-blessing",{"name":2581,"config":2582},"Drew Blessing",{"headshot":720,"ctfId":2583},"Drew-Blessing",{"template":689},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2589,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2590,"config":2595,"_id":2596,"_type":38,"title":2591,"_source":40,"_file":2597,"_stem":2598,"_extension":43},"/en-us/blog/authors/dylan-griffith",{"name":2591,"config":2592},"Dylan Griffith",{"headshot":2593,"ctfId":2594},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672822/Blog/Author%20Headshots/DylanGriffith-headshot.jpg","DylanGriffith",{"template":689},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2600,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2601,"config":2605,"_id":2606,"_type":38,"title":2602,"_source":40,"_file":2607,"_stem":2608,"_extension":43},"/en-us/blog/authors/eddie-glenn",{"name":2602,"config":2603},"Eddie Glenn",{"headshot":7,"ctfId":2604},"eglenn",{"template":689},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2610,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2611,"config":2616,"_id":2617,"_type":38,"title":2612,"_source":40,"_file":2618,"_stem":2619,"_extension":43},"/en-us/blog/authors/eduardo-bonet",{"name":2612,"config":2613},"Eduardo Bonet",{"headshot":2614,"ctfId":2615},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682722/Blog/Author%20Headshots/eduardobonet-headshot.jpg","eduardobonet",{"template":689},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2621,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2622,"config":2627,"_id":2628,"_type":38,"title":2623,"_source":40,"_file":2629,"_stem":2630,"_extension":43},"/en-us/blog/authors/eliran-mesika",{"name":2623,"config":2624},"Eliran Mesika",{"headshot":2625,"ctfId":2626},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670111/Blog/Author%20Headshots/eliran.jpg","eliranmesika",{"template":689},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2632,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2633,"config":2638,"_id":2639,"_type":38,"title":2634,"_source":40,"_file":2640,"_stem":2641,"_extension":43},"/en-us/blog/authors/elisabeth-burrows",{"name":2634,"config":2635},"Elisabeth Burrows",{"headshot":2636,"ctfId":2637},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659535/Blog/Author%20Headshots/liz_burrows_headshot.png","6Nj2Lio5W7HdeNYoysVgCf",{"template":689},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2643,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2644,"config":2648,"_id":2649,"_type":38,"title":2645,"_source":40,"_file":2650,"_stem":2651,"_extension":43},"/en-us/blog/authors/elliot-rushton",{"name":2645,"config":2646},"Elliot Rushton",{"headshot":7,"ctfId":2647},"erushton",{"template":689},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2653,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2654,"config":2658,"_id":2659,"_type":38,"title":2655,"_source":40,"_file":2660,"_stem":2661,"_extension":43},"/en-us/blog/authors/emilie-schario",{"name":2655,"config":2656},"Emilie Schario",{"headshot":7,"ctfId":2657},"emilie",{"template":689},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2663,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2664,"config":2669,"_id":2670,"_type":38,"title":2665,"_source":40,"_file":2671,"_stem":2672,"_extension":43},"/en-us/blog/authors/emilio-salvador",{"name":2665,"config":2666},"Emilio Salvador",{"headshot":2667,"ctfId":2668},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660161/Blog/Author%20Headshots/esalvadorp-headshot.png","esalvadorp",{"template":689},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2674,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2675,"config":2680,"_id":2681,"_type":38,"title":2676,"_source":40,"_file":2682,"_stem":2683,"_extension":43},"/en-us/blog/authors/emily-bauman",{"name":2676,"config":2677},"Emily Bauman",{"headshot":2678,"ctfId":2679},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664145/Blog/Author%20Headshots/emilybauman-headshot.jpg","emilybauman",{"template":689},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2685,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2686,"config":2690,"_id":2691,"_type":38,"title":2687,"_source":40,"_file":2692,"_stem":2693,"_extension":43},"/en-us/blog/authors/emily-chin",{"name":2687,"config":2688},"Emily Chin",{"headshot":7,"ctfId":2689},"echin",{"template":689},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2695,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2696,"config":2700,"_id":2701,"_type":38,"title":2697,"_source":40,"_file":2702,"_stem":2703,"_extension":43},"/en-us/blog/authors/emily-kyle",{"name":2697,"config":2698},"Emily Kyle",{"headshot":720,"ctfId":2699},"Emily-Kyle",{"template":689},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2705,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2706,"config":2710,"_id":2711,"_type":38,"title":2712,"_source":40,"_file":2713,"_stem":2714,"_extension":43},"/en-us/blog/authors/emily-von-hoffmann",{"name":2707,"config":2708},"Emily von Hoffmann",{"headshot":720,"ctfId":2709},"evhoffmann",{"template":689},"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":2716,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2717,"config":2722,"_id":2723,"_type":38,"title":2724,"_source":40,"_file":2725,"_stem":2726,"_extension":43},"/en-us/blog/authors/enrique-alcntara",{"name":2718,"config":2719},"Enrique Alcántara",{"headshot":2720,"ctfId":2721},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669746/Blog/Author%20Headshots/ealcantara-headshot.jpg","3E3c30ZWRUTq6rlFiYrjtq",{"template":689},"content:en-us:blog:authors:enrique-alcntara.yml","Enrique Alcntara","en-us/blog/authors/enrique-alcntara.yml","en-us/blog/authors/enrique-alcntara",{"_path":2728,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2729,"config":2733,"_id":2734,"_type":38,"title":2730,"_source":40,"_file":2735,"_stem":2736,"_extension":43},"/en-us/blog/authors/eric-brinkman",{"name":2730,"config":2731},"Eric Brinkman",{"headshot":7,"ctfId":2732},"ebrinkman",{"template":689},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2738,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2739,"config":2743,"_id":2744,"_type":38,"title":2740,"_source":40,"_file":2745,"_stem":2746,"_extension":43},"/en-us/blog/authors/eric-eastwood",{"name":2740,"config":2741},"Eric Eastwood",{"headshot":7,"ctfId":2742},"MadLittleMods",{"template":689},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2748,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2749,"config":2753,"_id":2754,"_type":38,"title":2750,"_source":40,"_file":2755,"_stem":2756,"_extension":43},"/en-us/blog/authors/eric-rosenberg",{"name":2750,"config":2751},"Eric Rosenberg",{"headshot":7,"ctfId":2752},"ericrosenberg88",{"template":689},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2758,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2759,"config":2764,"_id":2765,"_type":38,"title":2760,"_source":40,"_file":2766,"_stem":2767,"_extension":43},"/en-us/blog/authors/eric-rubin",{"name":2760,"config":2761},"Eric Rubin",{"headshot":2762,"ctfId":2763},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682494/Blog/Author%20Headshots/ericrubin-headshot.png","ericrubin",{"template":689},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2769,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2770,"config":2775,"_id":2776,"_type":38,"title":2771,"_source":40,"_file":2777,"_stem":2778,"_extension":43},"/en-us/blog/authors/eric-schurter",{"name":2771,"config":2772},"Eric Schurter",{"headshot":2773,"ctfId":2774},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679281/Blog/Author%20Headshots/ericschurter-headshot.jpg","ericschurter",{"template":689},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2780,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2781,"config":2785,"_id":2786,"_type":38,"title":2782,"_source":40,"_file":2787,"_stem":2788,"_extension":43},"/en-us/blog/authors/erica-huang",{"name":2782,"config":2783},"Erica Huang",{"headshot":7,"ctfId":2784},"exhuang",{"template":689},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2790,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2791,"config":2795,"_id":2796,"_type":38,"title":2792,"_source":40,"_file":2797,"_stem":2798,"_extension":43},"/en-us/blog/authors/erica-lindberg",{"name":2792,"config":2793},"Erica Lindberg",{"headshot":720,"ctfId":2794},"Erica-Lindberg",{"template":689},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2800,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2801,"config":2805,"_id":2806,"_type":38,"title":2802,"_source":40,"_file":2807,"_stem":2808,"_extension":43},"/en-us/blog/authors/erich-wegscheider",{"name":2802,"config":2803},"Erich Wegscheider",{"headshot":7,"ctfId":2804},"ewegscheider",{"template":689},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2810,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2811,"config":2815,"_id":2816,"_type":38,"title":2812,"_source":40,"_file":2817,"_stem":2818,"_extension":43},"/en-us/blog/authors/erick-banks",{"name":2812,"config":2813},"Erick Banks",{"headshot":720,"ctfId":2814},"4CGXhAxudTq69aZOtPnLfu",{"template":689},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2820,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2821,"config":2825,"_id":2826,"_type":38,"title":2822,"_source":40,"_file":2827,"_stem":2828,"_extension":43},"/en-us/blog/authors/erika-feldman",{"name":2822,"config":2823},"Erika Feldman",{"headshot":720,"ctfId":2824},"78oCat8vvbl6mzXsLawd9d",{"template":689},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2830,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2831,"config":2835,"_id":2836,"_type":38,"title":2837,"_source":40,"_file":2838,"_stem":2839,"_extension":43},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2832,"config":2833},"Erin Krengel, Pulumi",{"headshot":720,"ctfId":2834},"Erin-Krengel-Pulumi",{"template":689},"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":2841,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2842,"config":2846,"_id":2847,"_type":38,"title":2848,"_source":40,"_file":2849,"_stem":2850,"_extension":43},"/en-us/blog/authors/ernst-van-nierop",{"name":2843,"config":2844},"Ernst van Nierop",{"headshot":7,"ctfId":2845},"ernstvn",{"template":689},"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":2852,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2853,"config":2857,"_id":2858,"_type":38,"title":2854,"_source":40,"_file":2859,"_stem":2860,"_extension":43},"/en-us/blog/authors/esther-shein",{"name":2854,"config":2855},"Esther Shein",{"headshot":720,"ctfId":2856},"Esther-Shein",{"template":689},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2862,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2863,"config":2868,"_id":2869,"_type":38,"title":2864,"_source":40,"_file":2870,"_stem":2871,"_extension":43},"/en-us/blog/authors/ethan-strike",{"name":2864,"config":2865},"Ethan Strike",{"headshot":2866,"ctfId":2867},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679067/Blog/Author%20Headshots/estrike-headshot.png","estrike",{"template":689},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2873,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2874,"config":2878,"_id":2879,"_type":38,"title":2875,"_source":40,"_file":2880,"_stem":2881,"_extension":43},"/en-us/blog/authors/ethan-urie",{"name":2875,"config":2876},"Ethan Urie",{"headshot":720,"ctfId":2877},"mJhtQw4TY9ZRNF7dfitIF",{"template":689},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2883,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2884,"config":2888,"_id":2889,"_type":38,"title":2885,"_source":40,"_file":2890,"_stem":2891,"_extension":43},"/en-us/blog/authors/eugene-lim",{"name":2885,"config":2886},"Eugene Lim",{"headshot":720,"ctfId":2887},"6KHdIdghkUfSTzV2MzxNcj",{"template":689},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2893,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2894,"config":2898,"_id":2899,"_type":38,"title":2895,"_source":40,"_file":2900,"_stem":2901,"_extension":43},"/en-us/blog/authors/eugenia-hannon",{"name":2895,"config":2896},"Eugenia Hannon",{"headshot":7,"ctfId":2897},"eugeniah",{"template":689},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2903,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2904,"config":2908,"_id":2909,"_type":38,"title":2905,"_source":40,"_file":2910,"_stem":2911,"_extension":43},"/en-us/blog/authors/ev-kontsevoy",{"name":2905,"config":2906},"Ev Kontsevoy",{"headshot":7,"ctfId":2907},"ekontsevoy",{"template":689},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2913,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2914,"config":2918,"_id":2919,"_type":38,"title":2915,"_source":40,"_file":2920,"_stem":2921,"_extension":43},"/en-us/blog/authors/eva-sasson",{"name":2915,"config":2916},"Eva Sasson",{"headshot":720,"ctfId":2917},"Eva-Sasson",{"template":689},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2923,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2924,"config":2929,"_id":2930,"_type":38,"title":2925,"_source":40,"_file":2931,"_stem":2932,"_extension":43},"/en-us/blog/authors/fabian-zimmer",{"name":2925,"config":2926},"Fabian Zimmer",{"headshot":2927,"ctfId":2928},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/q6awwqbxtg0a4x9gtmhs.png","3TK88UogcX5lx83kWMVuvI",{"template":689},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2934,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2935,"config":2939,"_id":2940,"_type":38,"title":2936,"_source":40,"_file":2941,"_stem":2942,"_extension":43},"/en-us/blog/authors/fabio-akita",{"name":2936,"config":2937},"Fabio Akita",{"headshot":720,"ctfId":2938},"Fabio-Akita",{"template":689},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2944,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2945,"config":2949,"_id":2950,"_type":38,"title":2946,"_source":40,"_file":2951,"_stem":2952,"_extension":43},"/en-us/blog/authors/fabio-busatto",{"name":2946,"config":2947},"Fabio Busatto",{"headshot":7,"ctfId":2948},"bikebilly",{"template":689},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":2954,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2955,"config":2960,"_id":2961,"_type":38,"title":2956,"_source":40,"_file":2962,"_stem":2963,"_extension":43},"/en-us/blog/authors/fabio-pitino",{"name":2956,"config":2957},"Fabio Pitino",{"headshot":2958,"ctfId":2959},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659958/Blog/Author%20Headshots/fabiopitino-headshot.jpg","fabiopitino",{"template":689},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":2965,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2966,"config":2970,"_id":2971,"_type":38,"title":2967,"_source":40,"_file":2972,"_stem":2973,"_extension":43},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2967,"config":2968},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2969},"fseifoddini",{"template":689},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":2975,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2976,"config":2980,"_id":2981,"_type":38,"title":2977,"_source":40,"_file":2982,"_stem":2983,"_extension":43},"/en-us/blog/authors/fatih-acet",{"name":2977,"config":2978},"Fatih Acet",{"headshot":7,"ctfId":2979},"fatihacet",{"template":689},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":2985,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2986,"config":2991,"_id":2992,"_type":38,"title":2987,"_source":40,"_file":2993,"_stem":2994,"_extension":43},"/en-us/blog/authors/fatima-sarah-khalid",{"name":2987,"config":2988},"Fatima Sarah Khalid",{"headshot":2989,"ctfId":2990},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663337/Blog/Author%20Headshots/sugaroverflow-headshot.jpg","sugaroverflow",{"template":689},"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":2996,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":2997,"config":3002,"_id":3003,"_type":38,"title":2998,"_source":40,"_file":3004,"_stem":3005,"_extension":43},"/en-us/blog/authors/fernando-diaz",{"name":2998,"config":2999},"Fernando Diaz",{"headshot":3000,"ctfId":3001},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659556/Blog/Author%20Headshots/fern_diaz.png","fjdiaz",{"template":689},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3007,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3008,"config":3012,"_id":3013,"_type":38,"title":3009,"_source":40,"_file":3014,"_stem":3015,"_extension":43},"/en-us/blog/authors/filipa-lacerda",{"name":3009,"config":3010},"Filipa Lacerda",{"headshot":7,"ctfId":3011},"filipa",{"template":689},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3017,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3018,"config":3023,"_id":3024,"_type":38,"title":3025,"_source":40,"_file":3026,"_stem":3027,"_extension":43},"/en-us/blog/authors/flix-veillette-potvin",{"name":3019,"config":3020}," Félix Veillette-Potvin",{"headshot":3021,"ctfId":3022},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662606/Blog/Author%20Headshots/_F%C3%A9lix_Veillette-Potvin_headshot.png","3nkwcdE5K3Uw9nrovEngxW",{"template":689},"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":3029,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3030,"config":3034,"_id":3035,"_type":38,"title":3031,"_source":40,"_file":3036,"_stem":3037,"_extension":43},"/en-us/blog/authors/forrest-brazeal",{"name":3031,"config":3032},"Forrest Brazeal",{"headshot":7,"ctfId":3033},"fbrazeal",{"template":689},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3039,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3040,"config":3044,"_id":3045,"_type":38,"title":3041,"_source":40,"_file":3046,"_stem":3047,"_extension":43},"/en-us/blog/authors/francis-ofungwu",{"name":3041,"config":3042},"Francis Ofungwu",{"headshot":720,"ctfId":3043},"fofungwu",{"template":689},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3049,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3050,"config":3055,"_id":3056,"_type":38,"title":3057,"_source":40,"_file":3058,"_stem":3059,"_extension":43},"/en-us/blog/authors/frdric-caplette",{"name":3051,"config":3052},"Frédéric Caplette",{"headshot":3053,"ctfId":3054},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661878/Blog/Author%20Headshots/frederic_caplette_headshot.png","6nMRwNMwciKSX03zmbBbPF",{"template":689},"content:en-us:blog:authors:frdric-caplette.yml","Frdric Caplette","en-us/blog/authors/frdric-caplette.yml","en-us/blog/authors/frdric-caplette",{"_path":3061,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3062,"config":3067,"_id":3068,"_type":38,"title":3063,"_source":40,"_file":3069,"_stem":3070,"_extension":43},"/en-us/blog/authors/gabe-weaver",{"name":3063,"config":3064},"Gabe Weaver",{"headshot":3065,"ctfId":3066},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667605/Blog/Author%20Headshots/gweaver-headshot.jpg","gweaver",{"template":689},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3072,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3073,"config":3078,"_id":3079,"_type":38,"title":3074,"_source":40,"_file":3080,"_stem":3081,"_extension":43},"/en-us/blog/authors/gabriel-engel",{"name":3074,"config":3075},"Gabriel Engel",{"headshot":3076,"ctfId":3077},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664747/Blog/Author%20Headshots/gabrielengel_gl-headshot.jpg","gabrielengelgl",{"template":689},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3083,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3084,"config":3088,"_id":3089,"_type":38,"title":3085,"_source":40,"_file":3090,"_stem":3091,"_extension":43},"/en-us/blog/authors/gabriel-le-breton",{"name":3085,"config":3086},"Gabriel Le Breton",{"headshot":720,"ctfId":3087},"Gabriel-Le-Breton",{"template":689},"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":3093,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3094,"config":3099,"_id":3100,"_type":38,"title":3095,"_source":40,"_file":3101,"_stem":3102,"_extension":43},"/en-us/blog/authors/gabriel-mazetto",{"name":3095,"config":3096},"Gabriel Mazetto",{"headshot":3097,"ctfId":3098},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678982/Blog/Author%20Headshots/brodock-headshot.jpg","brodock",{"template":689},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3104,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3105,"config":3110,"_id":3111,"_type":38,"title":3106,"_source":40,"_file":3112,"_stem":3113,"_extension":43},"/en-us/blog/authors/gavin-peltz",{"name":3106,"config":3107},"Gavin Peltz",{"headshot":3108,"ctfId":3109},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662831/Blog/Author%20Headshots/gavin_peltz.png","27UwgXDMqa0oBWV93rXTgN",{"template":689},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3115,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3116,"config":3121,"_id":3122,"_type":38,"title":3117,"_source":40,"_file":3123,"_stem":3124,"_extension":43},"/en-us/blog/authors/george-kichukov",{"name":3117,"config":3118},"George Kichukov",{"headshot":3119,"ctfId":3120},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664866/Blog/Author%20Headshots/george_kichukov.png","7e8bn05u4pXwYjkRrqdprE",{"template":689},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3126,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3127,"config":3131,"_id":3132,"_type":38,"title":3128,"_source":40,"_file":3133,"_stem":3134,"_extension":43},"/en-us/blog/authors/gerard-hickey",{"name":3128,"config":3129},"Gerard Hickey",{"headshot":7,"ctfId":3130},"ghickey",{"template":689},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3136,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3137,"config":3142,"_id":3143,"_type":38,"title":3144,"_source":40,"_file":3145,"_stem":3146,"_extension":43},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3138,"config":3139},"Gerardo Lopez-Fernandez",{"headshot":3140,"ctfId":3141},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679925/Blog/Author%20Headshots/glopezfernandez-headshot.jpg","glopezfernandez",{"template":689},"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":3148,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3149,"config":3154,"_id":3155,"_type":38,"title":3150,"_source":40,"_file":3156,"_stem":3157,"_extension":43},"/en-us/blog/authors/gina-doyle",{"name":3150,"config":3151},"Gina Doyle",{"headshot":3152,"ctfId":3153},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679201/Blog/Author%20Headshots/gdoyle-headshot.png","gdoyle",{"template":689},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3159,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3160,"config":3162,"_id":3163,"_type":38,"title":3164,"_source":40,"_file":3165,"_stem":3166,"_extension":43},"/en-us/blog/authors/gitlab",{"name":19,"config":3161},{"headshot":720,"ctfId":19},{"template":689},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3168,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3169,"config":3173,"_id":3174,"_type":38,"title":3175,"_source":40,"_file":3176,"_stem":3177,"_extension":43},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3170,"config":3171},"GitLab AI Assisted Group",{"headshot":720,"ctfId":3172},"GitLab-AI-Assisted-Group",{"template":689},"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":3179,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3180,"config":3184,"_id":3185,"_type":38,"title":3186,"_source":40,"_file":3187,"_stem":3188,"_extension":43},"/en-us/blog/authors/gitlab-france-team",{"name":3181,"config":3182},"GitLab France Team",{"headshot":720,"ctfId":3183},"1gfblqN0ibYIuWGk7MOTny",{"template":689},"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":3190,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3191,"config":3195,"_id":3196,"_type":38,"title":3197,"_source":40,"_file":3198,"_stem":3199,"_extension":43},"/en-us/blog/authors/gitlab-germany-team",{"name":3192,"config":3193},"GitLab Germany Team",{"headshot":720,"ctfId":3194},"6tNquF8jQeRRRi8k3ZXpvS",{"template":689},"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":3201,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3202,"config":3205,"_id":3206,"_type":38,"title":3207,"_source":40,"_file":3208,"_stem":3209,"_extension":43},"/en-us/blog/authors/gitlab-japan-team",{"name":18,"config":3203},{"headshot":720,"ctfId":3204},"5YWHF8vG80rluQ41QjgP7V",{"template":689},"content:en-us:blog:authors:gitlab-japan-team.yml","Gitlab Japan Team","en-us/blog/authors/gitlab-japan-team.yml","en-us/blog/authors/gitlab-japan-team",{"_path":3211,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3212,"config":3216,"_id":3217,"_type":38,"title":3218,"_source":40,"_file":3219,"_stem":3220,"_extension":43},"/en-us/blog/authors/gitlab-security-team",{"name":3213,"config":3214},"GitLab Security Team",{"headshot":720,"ctfId":3215},"GitLab-Security-Team",{"template":689},"content:en-us:blog:authors:gitlab-security-team.yml","Gitlab Security Team","en-us/blog/authors/gitlab-security-team.yml","en-us/blog/authors/gitlab-security-team",{"_path":3222,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3223,"config":3227,"_id":3228,"_type":38,"title":3229,"_source":40,"_file":3230,"_stem":3231,"_extension":43},"/en-us/blog/authors/gitlab-team",{"name":3224,"config":3225},"GitLab Team",{"headshot":720,"ctfId":3226},"GitLab-Team",{"template":689},"content:en-us:blog:authors:gitlab-team.yml","Gitlab Team","en-us/blog/authors/gitlab-team.yml","en-us/blog/authors/gitlab-team",{"_path":3233,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3234,"config":3238,"_id":3239,"_type":38,"title":3240,"_source":40,"_file":3241,"_stem":3242,"_extension":43},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3235,"config":3236},"GitLab Vulnerability Research Team",{"headshot":720,"ctfId":3237},"GitLab-Vulnerability-Research-Team",{"template":689},"content:en-us:blog:authors:gitlab-vulnerability-research-team.yml","Gitlab Vulnerability Research Team","en-us/blog/authors/gitlab-vulnerability-research-team.yml","en-us/blog/authors/gitlab-vulnerability-research-team",{"_path":3244,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3245,"config":3249,"_id":3250,"_type":38,"title":3246,"_source":40,"_file":3251,"_stem":3252,"_extension":43},"/en-us/blog/authors/goetz-buerkle",{"name":3246,"config":3247},"Goetz Buerkle",{"headshot":720,"ctfId":3248},"Goetz-Buerkle",{"template":689},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3254,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3255,"config":3260,"_id":3261,"_type":38,"title":3256,"_source":40,"_file":3262,"_stem":3263,"_extension":43},"/en-us/blog/authors/gosia-ksionek",{"name":3256,"config":3257},"Gosia Ksionek",{"headshot":3258,"ctfId":3259},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680521/Blog/Author%20Headshots/mksionek-headshot.jpg","mksionek",{"template":689},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3265,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3266,"config":3271,"_id":3272,"_type":38,"title":3267,"_source":40,"_file":3273,"_stem":3274,"_extension":43},"/en-us/blog/authors/grant-hickman",{"name":3267,"config":3268},"Grant Hickman",{"headshot":3269,"ctfId":3270},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682570/Blog/Author%20Headshots/g.png","ghickman",{"template":689},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3276,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3277,"config":3282,"_id":3283,"_type":38,"title":3278,"_source":40,"_file":3284,"_stem":3285,"_extension":43},"/en-us/blog/authors/grant-young",{"name":3278,"config":3279},"Grant Young",{"headshot":3280,"ctfId":3281},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666346/Blog/Author%20Headshots/grantyoung-headshot.jpg","grantyoung",{"template":689},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3287,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3288,"config":3292,"_id":3293,"_type":38,"title":3289,"_source":40,"_file":3294,"_stem":3295,"_extension":43},"/en-us/blog/authors/greg-alfaro",{"name":3289,"config":3290},"Greg Alfaro",{"headshot":7,"ctfId":3291},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":689},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3297,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3298,"config":3302,"_id":3303,"_type":38,"title":3299,"_source":40,"_file":3304,"_stem":3305,"_extension":43},"/en-us/blog/authors/greg-johnson",{"name":3299,"config":3300},"Greg Johnson",{"headshot":7,"ctfId":3301},"codeEmitter",{"template":689},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3307,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3308,"config":3313,"_id":3314,"_type":38,"title":3309,"_source":40,"_file":3315,"_stem":3316,"_extension":43},"/en-us/blog/authors/greg-myers",{"name":3309,"config":3310},"Greg Myers",{"headshot":3311,"ctfId":3312},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665570/Blog/Author%20Headshots/greg_myers_headshot.png","2uUYKgdtszyGfoOHbakiQX",{"template":689},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3318,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3319,"config":3323,"_id":3324,"_type":38,"title":3320,"_source":40,"_file":3325,"_stem":3326,"_extension":43},"/en-us/blog/authors/grzegorz-bizon",{"name":3320,"config":3321},"Grzegorz Bizon",{"headshot":720,"ctfId":3322},"Grzegorz-Bizon",{"template":689},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3328,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3329,"config":3333,"_id":3334,"_type":38,"title":3330,"_source":40,"_file":3335,"_stem":3336,"_extension":43},"/en-us/blog/authors/guenjun-yoo",{"name":3330,"config":3331},"Guenjun Yoo",{"headshot":7,"ctfId":3332},"gyoo",{"template":689},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3338,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3339,"config":3343,"_id":3344,"_type":38,"title":3345,"_source":40,"_file":3346,"_stem":3347,"_extension":43},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3340,"config":3341},"Guest author André Arko of Ruby Together",{"headshot":720,"ctfId":3342},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":689},"content:en-us:blog:authors:guest-author-andr-arko-of-ruby-together.yml","Guest Author Andr Arko Of Ruby Together","en-us/blog/authors/guest-author-andr-arko-of-ruby-together.yml","en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"_path":3349,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3350,"config":3354,"_id":3355,"_type":38,"title":3356,"_source":40,"_file":3357,"_stem":3358,"_extension":43},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3351,"config":3352},"Guest author André Miranda",{"headshot":720,"ctfId":3353},"Guest-author-Andr-Miranda",{"template":689},"content:en-us:blog:authors:guest-author-andr-miranda.yml","Guest Author Andr Miranda","en-us/blog/authors/guest-author-andr-miranda.yml","en-us/blog/authors/guest-author-andr-miranda",{"_path":3360,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3361,"config":3367,"_id":3368,"_type":38,"title":3369,"_source":40,"_file":3370,"_stem":3371,"_extension":43},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3362,"config":3363},"Gufran Yeşilyurt, OBSS",{"headshot":3364,"linkedin":3365,"ctfId":3366},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666380/Blog/Author%20Headshots/1643972670650.jpg","https://www.linkedin.com/in/gufran-yesilyurt/","2ydYMU86my71BUASual2EI",{"template":689},"content:en-us:blog:authors:gufran-yeilyurt-obss.yml","Gufran Yeilyurt Obss","en-us/blog/authors/gufran-yeilyurt-obss.yml","en-us/blog/authors/gufran-yeilyurt-obss",{"_path":3373,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3374,"config":3378,"_id":3379,"_type":38,"title":3380,"_source":40,"_file":3381,"_stem":3382,"_extension":43},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3375,"config":3376},"Gustaw Fit of Zoopla",{"headshot":720,"ctfId":3377},"Gustaw-Fit-of-Zoopla",{"template":689},"content:en-us:blog:authors:gustaw-fit-of-zoopla.yml","Gustaw Fit Of Zoopla","en-us/blog/authors/gustaw-fit-of-zoopla.yml","en-us/blog/authors/gustaw-fit-of-zoopla",{"_path":3384,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3385,"config":3389,"_id":3390,"_type":38,"title":3391,"_source":40,"_file":3392,"_stem":3393,"_extension":43},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3386,"config":3387},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":720,"ctfId":3388},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":689},"content:en-us:blog:authors:guy-bar-gil-product-manager-at-whitesource.yml","Guy Bar Gil Product Manager At Whitesource","en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource.yml","en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"_path":3395,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3396,"config":3400,"_id":3401,"_type":38,"title":3397,"_source":40,"_file":3402,"_stem":3403,"_extension":43},"/en-us/blog/authors/gyan-chawdhary",{"name":3397,"config":3398},"Gyan Chawdhary",{"headshot":720,"ctfId":3399},"Gyan-Chawdhary",{"template":689},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3405,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3406,"config":3411,"_id":3412,"_type":38,"title":3407,"_source":40,"_file":3413,"_stem":3414,"_extension":43},"/en-us/blog/authors/haim-snir",{"name":3407,"config":3408},"Haim Snir",{"headshot":3409,"ctfId":3410},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664386/Blog/Author%20Headshots/hsnir1-headshot.jpg","hsnir1",{"template":689},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3416,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3417,"config":3422,"_id":3423,"_type":38,"title":3424,"_source":40,"_file":3425,"_stem":3426,"_extension":43},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3418,"config":3419},"Hakeem Abdul-Razak",{"headshot":3420,"ctfId":3421},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662077/Blog/Author%20Headshots/Hakeem_Abdul-Razak_headshot.png","7H6nuZfVCK5mqJBK4fuaDH",{"template":689},"content:en-us:blog:authors:hakeem-abdul-razak.yml","Hakeem Abdul Razak","en-us/blog/authors/hakeem-abdul-razak.yml","en-us/blog/authors/hakeem-abdul-razak",{"_path":3428,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3429,"config":3433,"_id":3435,"_type":38,"title":3430,"_source":40,"_file":3436,"_stem":3437,"_extension":43},"/en-us/blog/authors/halil-coban",{"name":3430,"config":3431},"Halil Coban",{"headshot":3432},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":689,"gitlabHandle":3434},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3439,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3440,"config":3445,"_id":3446,"_type":38,"title":3441,"_source":40,"_file":3447,"_stem":3448,"_extension":43},"/en-us/blog/authors/hannah-sutor",{"name":3441,"config":3442},"Hannah Sutor",{"headshot":3443,"ctfId":3444},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665588/Blog/Author%20Headshots/hsutor-headshot.png","hsutor",{"template":689},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3450,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3451,"config":3456,"_id":3457,"_type":38,"title":3452,"_source":40,"_file":3458,"_stem":3459,"_extension":43},"/en-us/blog/authors/harjeet-sharma",{"name":3452,"config":3453},"Harjeet Sharma",{"headshot":3454,"ctfId":3455},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665497/Blog/Author%20Headshots/harjeet_sharma_headshot.png","723O6GGQQEu75MCuhw6lqh",{"template":689},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3461,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3462,"config":3466,"_id":3467,"_type":38,"title":3463,"_source":40,"_file":3468,"_stem":3469,"_extension":43},"/en-us/blog/authors/haydn-mackay",{"name":3463,"config":3464},"Haydn Mackay",{"headshot":720,"ctfId":3465},"Haydn-Mackay",{"template":689},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3471,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3472,"config":3476,"_id":3477,"_type":38,"title":3473,"_source":40,"_file":3478,"_stem":3479,"_extension":43},"/en-us/blog/authors/hazel-yang",{"name":3473,"config":3474},"Hazel Yang",{"headshot":7,"ctfId":3475},"hazelyang",{"template":689},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3481,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3482,"config":3486,"_id":3487,"_type":38,"title":3488,"_source":40,"_file":3489,"_stem":3490,"_extension":43},"/en-us/blog/authors/heather-mcnamee",{"name":3483,"config":3484},"Heather McNamee",{"headshot":720,"ctfId":3485},"Heather-McNamee",{"template":689},"content:en-us:blog:authors:heather-mcnamee.yml","Heather Mcnamee","en-us/blog/authors/heather-mcnamee.yml","en-us/blog/authors/heather-mcnamee",{"_path":3492,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3493,"config":3497,"_id":3498,"_type":38,"title":3494,"_source":40,"_file":3499,"_stem":3500,"_extension":43},"/en-us/blog/authors/heather-simpson",{"name":3494,"config":3495},"Heather Simpson",{"headshot":720,"ctfId":3496},"hsimpson",{"template":689},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3502,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3503,"config":3508,"_id":3509,"_type":38,"title":3504,"_source":40,"_file":3510,"_stem":3511,"_extension":43},"/en-us/blog/authors/hillary-benson",{"name":3504,"config":3505},"Hillary Benson",{"headshot":3506,"ctfId":3507},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683387/Blog/Author%20Headshots/hillarybensonheadshot.png","45VEFoISCoOhRXzyPyAf1x",{"template":689},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3513,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3514,"config":3518,"_id":3520,"_type":38,"title":3515,"_source":40,"_file":3521,"_stem":3522,"_extension":43},"/en-us/blog/authors/himanshu-kapoor",{"name":3515,"config":3516},"Himanshu Kapoor",{"headshot":3517},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":689,"gitlabHandle":3519},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3524,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3525,"config":3530,"_id":3531,"_type":38,"title":3526,"_source":40,"_file":3532,"_stem":3533,"_extension":43},"/en-us/blog/authors/hiroki-suezawa",{"name":3526,"config":3527},"Hiroki Suezawa",{"headshot":3528,"ctfId":3529},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662370/Blog/Author%20Headshots/hiroki_suezawa.png","cw6ZIj0yjr1uw2LAFr23h",{"template":689},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3535,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3536,"config":3540,"_id":3541,"_type":38,"title":3537,"_source":40,"_file":3542,"_stem":3543,"_extension":43},"/en-us/blog/authors/holly-reynolds",{"name":3537,"config":3538},"Holly Reynolds",{"headshot":7,"ctfId":3539},"hollyreynolds",{"template":689},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3545,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3546,"config":3550,"_id":3551,"_type":38,"title":3547,"_source":40,"_file":3552,"_stem":3553,"_extension":43},"/en-us/blog/authors/huldra",{"name":3547,"config":3548},"Huldra",{"headshot":7,"ctfId":3549},"huldra",{"template":689},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3555,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3556,"config":3560,"_id":3561,"_type":38,"title":3557,"_source":40,"_file":3562,"_stem":3563,"_extension":43},"/en-us/blog/authors/iain-camacho",{"name":3557,"config":3558},"Iain Camacho",{"headshot":7,"ctfId":3559},"icamacho",{"template":689},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3565,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3566,"config":3570,"_id":3571,"_type":38,"title":3567,"_source":40,"_file":3572,"_stem":3573,"_extension":43},"/en-us/blog/authors/ian-bartholomew",{"name":3567,"config":3568},"Ian Bartholomew",{"headshot":720,"ctfId":3569},"7D4PE43CXfi8pgOSCmipH0",{"template":689},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3575,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3576,"config":3581,"_id":3582,"_type":38,"title":3577,"_source":40,"_file":3583,"_stem":3584,"_extension":43},"/en-us/blog/authors/ian-khor",{"name":3577,"config":3578},"Ian Khor",{"headshot":3579,"ctfId":3580},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662933/Blog/Author%20Headshots/ian_khor_headshot.png","nSk8fzDwtG3LVFWwg8HrF",{"template":689},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3586,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3587,"config":3592,"_id":3593,"_type":38,"title":3588,"_source":40,"_file":3594,"_stem":3595,"_extension":43},"/en-us/blog/authors/ian-pedowitz",{"name":3588,"config":3589},"Ian Pedowitz",{"headshot":3590,"ctfId":3591},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683040/Blog/Author%20Headshots/ipedowitz-headshot.jpg","ipedowitz",{"template":689},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3597,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3598,"config":3603,"_id":3604,"_type":38,"title":3599,"_source":40,"_file":3605,"_stem":3606,"_extension":43},"/en-us/blog/authors/igor-drozdov",{"name":3599,"config":3600},"Igor Drozdov",{"headshot":3601,"ctfId":3602},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672455/Blog/Author%20Headshots/igor.png","igordrozdov",{"template":689},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3608,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3609,"config":3614,"_id":3615,"_type":38,"title":3610,"_source":40,"_file":3616,"_stem":3617,"_extension":43},"/en-us/blog/authors/igor-wiedler",{"name":3610,"config":3611},"Igor Wiedler",{"headshot":3612,"ctfId":3613},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681841/Blog/Author%20Headshots/igorwwwwwwwwwwwwwwwwwwww-headshot.png","igorwwwwwwwwwwwwwwwwwwww",{"template":689},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3619,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3620,"config":3625,"_id":3626,"_type":38,"title":3627,"_source":40,"_file":3628,"_stem":3629,"_extension":43},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3621,"config":3622},"Inchul Yoo, Sunjung Park",{"headshot":3623,"ctfId":3624},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669731/Blog/Author%20Headshots/sunjungp-headshot.png","sunjungp",{"template":689},"content:en-us:blog:authors:inchul-yoo-sunjung-park.yml","Inchul Yoo Sunjung Park","en-us/blog/authors/inchul-yoo-sunjung-park.yml","en-us/blog/authors/inchul-yoo-sunjung-park",{"_path":3631,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3632,"config":3637,"_id":3638,"_type":38,"title":3633,"_source":40,"_file":3639,"_stem":3640,"_extension":43},"/en-us/blog/authors/isaac-dawson",{"name":3633,"config":3634},"Isaac Dawson",{"headshot":3635,"ctfId":3636},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669814/Blog/Author%20Headshots/idawson-headshot.jpg","idawson",{"template":689},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3642,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3643,"config":3647,"_id":3649,"_type":38,"title":3650,"_source":40,"_file":3651,"_stem":3652,"_extension":43},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3644,"name":3646},{"headshot":3645},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":689,"gitlabHandle":3648},"https://gitlab.com/issei-hamada","content:en-us:blog:authors:issei-hamada-sony-biz-networks-corporation.yml","Issei Hamada Sony Biz Networks Corporation","en-us/blog/authors/issei-hamada-sony-biz-networks-corporation.yml","en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"_path":3654,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3655,"config":3660,"_id":3661,"_type":38,"title":3656,"_source":40,"_file":3662,"_stem":3663,"_extension":43},"/en-us/blog/authors/itzik-gan-baruch",{"name":3656,"config":3657},"Itzik Gan Baruch",{"headshot":3658,"ctfId":3659},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch",{"template":689},"content:en-us:blog:authors:itzik-gan-baruch.yml","en-us/blog/authors/itzik-gan-baruch.yml","en-us/blog/authors/itzik-gan-baruch",{"_path":3665,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3666,"config":3670,"_id":3671,"_type":38,"title":3667,"_source":40,"_file":3672,"_stem":3673,"_extension":43},"/en-us/blog/authors/ivan-lychev",{"name":3667,"config":3668},"Ivan Lychev",{"headshot":7,"ctfId":3669},"iLychevAD",{"template":689},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3675,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3676,"config":3680,"_id":3681,"_type":38,"title":3677,"_source":40,"_file":3682,"_stem":3683,"_extension":43},"/en-us/blog/authors/ivan-nemytchenko",{"name":3677,"config":3678},"Ivan Nemytchenko",{"headshot":720,"ctfId":3679},"Ivan-Nemytchenko",{"template":689},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3685,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3686,"config":3692,"_id":3693,"_type":38,"title":3688,"_source":40,"_file":3694,"_stem":3695,"_extension":43},"/en-us/blog/authors/ivanha-paz",{"role":3687,"name":3688,"config":3689},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3690,"ctfId":3691},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":689},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3697,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3698,"config":3702,"_id":3703,"_type":38,"title":3699,"_source":40,"_file":3704,"_stem":3705,"_extension":43},"/en-us/blog/authors/jacie-bandur",{"name":3699,"config":3700},"Jacie Bandur",{"headshot":7,"ctfId":3701},"jbandur",{"template":689},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3707,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3708,"config":3713,"_id":3714,"_type":38,"title":3709,"_source":40,"_file":3715,"_stem":3716,"_extension":43},"/en-us/blog/authors/jacki-bauer",{"name":3709,"config":3710},"Jacki Bauer",{"headshot":3711,"ctfId":3712},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":689},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3718,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3719,"config":3723,"_id":3724,"_type":38,"title":3720,"_source":40,"_file":3725,"_stem":3726,"_extension":43},"/en-us/blog/authors/jackie-meshell",{"name":3720,"config":3721},"Jackie Meshell",{"headshot":7,"ctfId":3722},"jmeshell",{"template":689},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3728,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3729,"config":3734,"_id":3735,"_type":38,"title":3730,"_source":40,"_file":3736,"_stem":3737,"_extension":43},"/en-us/blog/authors/jackie-porter",{"name":3730,"config":3731},"Jackie Porter",{"headshot":3732,"ctfId":3733},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":689},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3739,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3740,"config":3744,"_id":3745,"_type":38,"title":3741,"_source":40,"_file":3746,"_stem":3747,"_extension":43},"/en-us/blog/authors/jacob-schatz",{"name":3741,"config":3742},"Jacob Schatz",{"headshot":7,"ctfId":3743},"jschatz1",{"template":689},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3749,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3750,"config":3754,"_id":3755,"_type":38,"title":3751,"_source":40,"_file":3756,"_stem":3757,"_extension":43},"/en-us/blog/authors/jacob-vosmaer",{"name":3751,"config":3752},"Jacob Vosmaer",{"headshot":720,"ctfId":3753},"Jacob-Vosmaer",{"template":689},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3759,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3760,"config":3765,"_id":3766,"_type":38,"title":3761,"_source":40,"_file":3767,"_stem":3768,"_extension":43},"/en-us/blog/authors/jacques-erasmus",{"name":3761,"config":3762},"Jacques Erasmus",{"headshot":3763,"ctfId":3764},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":689},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3770,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3771,"config":3776,"_id":3777,"_type":38,"title":3778,"_source":40,"_file":3779,"_stem":3780,"_extension":43},"/en-us/blog/authors/jaime-martnez",{"name":3772,"config":3773},"Jaime Martínez",{"headshot":3774,"ctfId":3775},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":689},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3782,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3783,"config":3787,"_id":3788,"_type":38,"title":3784,"_source":40,"_file":3789,"_stem":3790,"_extension":43},"/en-us/blog/authors/jake-foster",{"name":3784,"config":3785},"Jake Foster",{"headshot":720,"ctfId":3786},"jakefoster1",{"template":689},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3792,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3793,"config":3797,"_id":3798,"_type":38,"title":3794,"_source":40,"_file":3799,"_stem":3800,"_extension":43},"/en-us/blog/authors/jake-stein",{"name":3794,"config":3795},"Jake Stein",{"headshot":720,"ctfId":3796},"Jake-Stein",{"template":689},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3802,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3803,"config":3807,"_id":3808,"_type":38,"title":3804,"_source":40,"_file":3809,"_stem":3810,"_extension":43},"/en-us/blog/authors/james-dang",{"name":3804,"config":3805},"James Dang",{"headshot":720,"ctfId":3806},"James-Dang",{"template":689},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3812,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3813,"config":3818,"_id":3819,"_type":38,"title":3814,"_source":40,"_file":3820,"_stem":3821,"_extension":43},"/en-us/blog/authors/james-heimbuck",{"name":3814,"config":3815},"James Heimbuck",{"headshot":3816,"ctfId":3817},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":689},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3823,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3824,"config":3828,"_id":3829,"_type":38,"title":3825,"_source":40,"_file":3830,"_stem":3831,"_extension":43},"/en-us/blog/authors/james-ramsay",{"name":3825,"config":3826},"James Ramsay",{"headshot":7,"ctfId":3827},"jramsay",{"template":689},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3833,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3834,"config":3839,"_id":3840,"_type":38,"title":3835,"_source":40,"_file":3841,"_stem":3842,"_extension":43},"/en-us/blog/authors/james-wormwell",{"name":3835,"config":3836},"James Wormwell",{"headshot":3837,"ctfId":3838},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":689},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3844,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3845,"config":3849,"_id":3850,"_type":38,"title":3846,"_source":40,"_file":3851,"_stem":3852,"_extension":43},"/en-us/blog/authors/jamie-hurewitz",{"name":3846,"config":3847},"Jamie Hurewitz",{"headshot":720,"ctfId":3848},"Jamie-Hurewitz",{"template":689},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3854,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3855,"config":3859,"_id":3860,"_type":38,"title":3856,"_source":40,"_file":3861,"_stem":3862,"_extension":43},"/en-us/blog/authors/jamie-rachel",{"name":3856,"config":3857},"Jamie Rachel",{"headshot":7,"ctfId":3858},"jrachel1",{"template":689},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3864,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3865,"config":3870,"_id":3871,"_type":38,"title":3866,"_source":40,"_file":3872,"_stem":3873,"_extension":43},"/en-us/blog/authors/jan-provaznik",{"name":3866,"config":3867},"Jan Provaznik",{"headshot":3868,"ctfId":3869},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":689},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3875,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3876,"config":3881,"_id":3882,"_type":38,"title":3877,"_source":40,"_file":3883,"_stem":3884,"_extension":43},"/en-us/blog/authors/janis-altherr",{"name":3877,"config":3878},"Janis Altherr",{"headshot":3879,"ctfId":3880},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":689},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3886,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3887,"config":3892,"_id":3893,"_type":38,"title":3888,"_source":40,"_file":3894,"_stem":3895,"_extension":43},"/en-us/blog/authors/jannik-lehmann",{"name":3888,"config":3889},"Jannik Lehmann",{"headshot":3890,"ctfId":3891},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":689},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3897,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3898,"config":3903,"_id":3904,"_type":38,"title":3905,"_source":40,"_file":3906,"_stem":3907,"_extension":43},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3899,"config":3900},"Jarka Košanová et al",{"headshot":3901,"ctfId":3902},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":689},"content:en-us:blog:authors:jarka-koanov-et-al.yml","Jarka Koanov Et Al","en-us/blog/authors/jarka-koanov-et-al.yml","en-us/blog/authors/jarka-koanov-et-al",{"_path":3909,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3910,"config":3914,"_id":3915,"_type":38,"title":3916,"_source":40,"_file":3917,"_stem":3918,"_extension":43},"/en-us/blog/authors/jason-blais-mattermost",{"name":3911,"config":3912},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3913},"jasonblais",{"template":689},"content:en-us:blog:authors:jason-blais-mattermost.yml","Jason Blais Mattermost","en-us/blog/authors/jason-blais-mattermost.yml","en-us/blog/authors/jason-blais-mattermost",{"_path":3920,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3921,"config":3925,"_id":3926,"_type":38,"title":3922,"_source":40,"_file":3927,"_stem":3928,"_extension":43},"/en-us/blog/authors/jason-chen",{"name":3922,"config":3923},"Jason Chen",{"headshot":720,"ctfId":3924},"Jason-Chen",{"template":689},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3930,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3931,"config":3936,"_id":3937,"_type":38,"title":3932,"_source":40,"_file":3938,"_stem":3939,"_extension":43},"/en-us/blog/authors/jason-colyer",{"name":3932,"config":3933},"Jason Colyer",{"headshot":3934,"ctfId":3935},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":689},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3941,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3942,"config":3947,"_id":3948,"_type":38,"title":3943,"_source":40,"_file":3949,"_stem":3950,"_extension":43},"/en-us/blog/authors/jason-plum",{"name":3943,"config":3944},"Jason Plum",{"headshot":3945,"ctfId":3946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":689},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":3952,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3953,"config":3957,"_id":3958,"_type":38,"title":3954,"_source":40,"_file":3959,"_stem":3960,"_extension":43},"/en-us/blog/authors/jason-yavorska",{"name":3954,"config":3955},"Jason Yavorska",{"headshot":7,"ctfId":3956},"jyavorska",{"template":689},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":3962,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3963,"config":3967,"_id":3968,"_type":38,"title":3964,"_source":40,"_file":3969,"_stem":3970,"_extension":43},"/en-us/blog/authors/jay-newman",{"name":3964,"config":3965},"Jay Newman",{"headshot":720,"ctfId":3966},"Jay-Newman",{"template":689},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":3972,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3973,"config":3978,"_id":3979,"_type":38,"title":3974,"_source":40,"_file":3980,"_stem":3981,"_extension":43},"/en-us/blog/authors/jayson-salazar",{"name":3974,"config":3975},"Jayson Salazar",{"headshot":3976,"ctfId":3977},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":689},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":3983,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3984,"config":3988,"_id":3989,"_type":38,"title":3990,"_source":40,"_file":3991,"_stem":3992,"_extension":43},"/en-us/blog/authors/jd-alex",{"name":3985,"config":3986},"JD Alex",{"headshot":7,"ctfId":3987},"jalex1",{"template":689},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":3994,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":3995,"config":3999,"_id":4000,"_type":38,"title":4001,"_source":40,"_file":4002,"_stem":4003,"_extension":43},"/en-us/blog/authors/jean-philippe-baconnais",{"name":3996,"config":3997},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":3998},"jeanphibaconnais",{"template":689},"content:en-us:blog:authors:jean-philippe-baconnais.yml","Jean Philippe Baconnais","en-us/blog/authors/jean-philippe-baconnais.yml","en-us/blog/authors/jean-philippe-baconnais",{"_path":4005,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4006,"config":4011,"_id":4012,"_type":38,"title":4007,"_source":40,"_file":4013,"_stem":4014,"_extension":43},"/en-us/blog/authors/jeff-burrows",{"name":4007,"config":4008},"Jeff Burrows",{"headshot":4009,"ctfId":4010},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":689},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4016,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4017,"config":4021,"_id":4022,"_type":38,"title":4018,"_source":40,"_file":4023,"_stem":4024,"_extension":43},"/en-us/blog/authors/jeff-kelsey",{"name":4018,"config":4019},"Jeff Kelsey",{"headshot":720,"ctfId":4020},"Jeff-Kelsey",{"template":689},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4026,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4027,"config":4032,"_id":4033,"_type":38,"title":4028,"_source":40,"_file":4034,"_stem":4035,"_extension":43},"/en-us/blog/authors/jeff-park",{"name":4028,"config":4029},"Jeff Park",{"headshot":4030,"ctfId":4031},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":689},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4037,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4038,"config":4043,"_id":4044,"_type":38,"title":4039,"_source":40,"_file":4045,"_stem":4046,"_extension":43},"/en-us/blog/authors/jeff-tucker",{"name":4039,"config":4040},"Jeff Tucker",{"headshot":4041,"ctfId":4042},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":689},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4048,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4049,"config":4054,"_id":4055,"_type":38,"title":4050,"_source":40,"_file":4056,"_stem":4057,"_extension":43},"/en-us/blog/authors/jensen-stava",{"name":4050,"config":4051},"Jensen Stava",{"headshot":4052,"ctfId":4053},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":689},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4059,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4060,"config":4064,"_id":4065,"_type":38,"title":4061,"_source":40,"_file":4066,"_stem":4067,"_extension":43},"/en-us/blog/authors/jeremy-cooper",{"name":4061,"config":4062},"Jeremy Cooper",{"headshot":720,"ctfId":4063},"6sXs62l8jODDcUlS9OPgTu",{"template":689},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4069,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4070,"config":4075,"_id":4076,"_type":38,"title":4071,"_source":40,"_file":4077,"_stem":4078,"_extension":43},"/en-us/blog/authors/jeremy-elder",{"name":4071,"config":4072},"Jeremy Elder",{"headshot":4073,"ctfId":4074},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":689},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4080,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4081,"config":4086,"_id":4087,"_type":38,"title":4082,"_source":40,"_file":4088,"_stem":4089,"_extension":43},"/en-us/blog/authors/jeremy-wagner",{"name":4082,"config":4083},"Jeremy Wagner",{"headshot":4084,"ctfId":4085},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":689},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4091,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4092,"config":4096,"_id":4097,"_type":38,"title":4093,"_source":40,"_file":4098,"_stem":4099,"_extension":43},"/en-us/blog/authors/jeremy-watson",{"name":4093,"config":4094},"Jeremy Watson",{"headshot":7,"ctfId":4095},"jeremy",{"template":689},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4101,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4102,"config":4107,"_id":4108,"_type":38,"title":4103,"_source":40,"_file":4109,"_stem":4110,"_extension":43},"/en-us/blog/authors/jerez-solis",{"name":4103,"config":4104},"Jerez Solis",{"headshot":4105,"ctfId":4106},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":689},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4112,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4113,"config":4117,"_id":4118,"_type":38,"title":4119,"_source":40,"_file":4120,"_stem":4121,"_extension":43},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4114,"config":4115},"Jeroen van Baarsen",{"headshot":720,"ctfId":4116},"Jeroen-van-Baarsen",{"template":689},"content:en-us:blog:authors:jeroen-van-baarsen.yml","Jeroen Van Baarsen","en-us/blog/authors/jeroen-van-baarsen.yml","en-us/blog/authors/jeroen-van-baarsen",{"_path":4123,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4124,"config":4129,"_id":4130,"_type":38,"title":4125,"_source":40,"_file":4131,"_stem":4132,"_extension":43},"/en-us/blog/authors/jessica-hurwitz",{"name":4125,"config":4126},"Jessica Hurwitz",{"headshot":4127,"ctfId":4128},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":689},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4134,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4135,"config":4139,"_id":4140,"_type":38,"title":4136,"_source":40,"_file":4141,"_stem":4142,"_extension":43},"/en-us/blog/authors/jim-riley",{"name":4136,"config":4137},"Jim Riley",{"headshot":7,"ctfId":4138},"GitLabcom-username-jrileyinva",{"template":689},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4144,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4145,"config":4149,"_id":4150,"_type":38,"title":4146,"_source":40,"_file":4151,"_stem":4152,"_extension":43},"/en-us/blog/authors/jim-thavisouk",{"name":4146,"config":4147},"Jim Thavisouk",{"headshot":720,"ctfId":4148},"jimthavisouk",{"template":689},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4154,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4155,"config":4159,"_id":4160,"_type":38,"title":4161,"_source":40,"_file":4162,"_stem":4163,"_extension":43},"/en-us/blog/authors/job-van-der-voort",{"name":4156,"config":4157},"Job van der Voort",{"headshot":720,"ctfId":4158},"Job-van-der-Voort",{"template":689},"content:en-us:blog:authors:job-van-der-voort.yml","Job Van Der Voort","en-us/blog/authors/job-van-der-voort.yml","en-us/blog/authors/job-van-der-voort",{"_path":4165,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4166,"config":4171,"_id":4172,"_type":38,"title":4167,"_source":40,"_file":4173,"_stem":4174,"_extension":43},"/en-us/blog/authors/jocelyn-eillis",{"name":4167,"config":4168},"Jocelyn Eillis",{"headshot":4169,"ctfId":4170},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":689},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4176,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4177,"config":4181,"_id":4182,"_type":38,"title":4178,"_source":40,"_file":4183,"_stem":4184,"_extension":43},"/en-us/blog/authors/jochen-roth",{"name":4178,"config":4179},"Jochen Roth",{"headshot":7,"ctfId":4180},"ochorocho",{"template":689},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4186,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4187,"config":4192,"_id":4193,"_type":38,"title":4188,"_source":40,"_file":4194,"_stem":4195,"_extension":43},"/en-us/blog/authors/joe-randazzo",{"name":4188,"config":4189},"Joe Randazzo",{"headshot":4190,"ctfId":4191},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":689},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4197,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4198,"config":4203,"_id":4204,"_type":38,"title":4199,"_source":40,"_file":4205,"_stem":4206,"_extension":43},"/en-us/blog/authors/joel-krooswyk",{"name":4199,"config":4200},"Joel Krooswyk",{"headshot":4201,"ctfId":4202},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":689},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4208,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4209,"config":4214,"_id":4215,"_type":38,"title":4210,"_source":40,"_file":4216,"_stem":4217,"_extension":43},"/en-us/blog/authors/joern-schneeweisz",{"name":4210,"config":4211},"Joern Schneeweisz",{"headshot":4212,"ctfId":4213},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":689},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4219,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4220,"config":4224,"_id":4225,"_type":38,"title":4221,"_source":40,"_file":4226,"_stem":4227,"_extension":43},"/en-us/blog/authors/joey-salazar",{"name":4221,"config":4222},"Joey Salazar",{"headshot":720,"ctfId":4223},"4LgUP4bzQV6kuhoZNFID9r",{"template":689},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4229,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4230,"config":4234,"_id":4235,"_type":38,"title":4231,"_source":40,"_file":4236,"_stem":4237,"_extension":43},"/en-us/blog/authors/johanna-ambrosio",{"name":4231,"config":4232},"Johanna Ambrosio",{"headshot":720,"ctfId":4233},"Johanna-Ambrosio",{"template":689},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4239,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4240,"config":4245,"_id":4246,"_type":38,"title":4241,"_source":40,"_file":4247,"_stem":4248,"_extension":43},"/en-us/blog/authors/johannes-bauer",{"name":4241,"config":4242},"Johannes Bauer",{"headshot":4243,"ctfId":4244},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":689},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4250,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4251,"config":4256,"_id":4257,"_type":38,"title":4252,"_source":40,"_file":4258,"_stem":4259,"_extension":43},"/en-us/blog/authors/john-cai",{"name":4252,"config":4253},"John Cai",{"headshot":4254,"ctfId":4255},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":689},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4261,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4262,"config":4267,"_id":4268,"_type":38,"title":4263,"_source":40,"_file":4269,"_stem":4270,"_extension":43},"/en-us/blog/authors/john-coghlan",{"name":4263,"config":4264},"John Coghlan",{"headshot":4265,"ctfId":4266},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":689},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4272,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4273,"config":4278,"_id":4279,"_type":38,"title":4274,"_source":40,"_file":4280,"_stem":4281,"_extension":43},"/en-us/blog/authors/john-crowley",{"name":4274,"config":4275},"John Crowley",{"headshot":4276,"ctfId":4277},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":689},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4283,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4284,"config":4289,"_id":4290,"_type":38,"title":4285,"_source":40,"_file":4291,"_stem":4292,"_extension":43},"/en-us/blog/authors/john-jarvis",{"name":4285,"config":4286},"John Jarvis",{"headshot":4287,"ctfId":4288},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":689},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4294,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4295,"config":4299,"_id":4300,"_type":38,"title":4296,"_source":40,"_file":4301,"_stem":4302,"_extension":43},"/en-us/blog/authors/john-jeremiah",{"name":4296,"config":4297},"John Jeremiah",{"headshot":720,"ctfId":4298},"johnjeremiah",{"template":689},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4304,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4305,"config":4309,"_id":4310,"_type":38,"title":4311,"_source":40,"_file":4312,"_stem":4313,"_extension":43},"/en-us/blog/authors/john-mcguire",{"name":4306,"config":4307},"John McGuire",{"headshot":720,"ctfId":4308},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":689},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4315,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4316,"config":4320,"_id":4322,"_type":38,"title":4317,"_source":40,"_file":4323,"_stem":4324,"_extension":43},"/en-us/blog/authors/john-skarbek",{"name":4317,"config":4318},"John Skarbek",{"headshot":4319},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":689,"gitlabHandle":4321},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4326,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4327,"config":4331,"_id":4332,"_type":38,"title":4328,"_source":40,"_file":4333,"_stem":4334,"_extension":43},"/en-us/blog/authors/john-sparrow",{"name":4328,"config":4329},"John Sparrow",{"headshot":720,"ctfId":4330},"John-Sparrow",{"template":689},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4336,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4337,"config":4341,"_id":4342,"_type":38,"title":4338,"_source":40,"_file":4343,"_stem":4344,"_extension":43},"/en-us/blog/authors/johnathan-hunt",{"name":4338,"config":4339},"Johnathan Hunt",{"headshot":720,"ctfId":4340},"JohnathanHunt",{"template":689},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4346,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4347,"config":4351,"_id":4352,"_type":38,"title":4348,"_source":40,"_file":4353,"_stem":4354,"_extension":43},"/en-us/blog/authors/joni-klippert",{"name":4348,"config":4349},"Joni Klippert",{"headshot":720,"ctfId":4350},"Joni-Klippert",{"template":689},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4356,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4357,"config":4362,"_id":4363,"_type":38,"title":4364,"_source":40,"_file":4365,"_stem":4366,"_extension":43},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4358,"config":4359},"João Alexandre Prado Tavares Cunha",{"headshot":4360,"ctfId":4361},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":689},"content:en-us:blog:authors:joo-alexandre-prado-tavares-cunha.yml","Joo Alexandre Prado Tavares Cunha","en-us/blog/authors/joo-alexandre-prado-tavares-cunha.yml","en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"_path":4368,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4369,"config":4374,"_id":4375,"_type":38,"title":4376,"_source":40,"_file":4377,"_stem":4378,"_extension":43},"/en-us/blog/authors/joo-pereira",{"name":4370,"config":4371},"João Pereira",{"headshot":4372,"ctfId":4373},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":689},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4380,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4381,"config":4385,"_id":4386,"_type":38,"title":4382,"_source":40,"_file":4387,"_stem":4388,"_extension":43},"/en-us/blog/authors/jordi-mon",{"name":4382,"config":4383},"Jordi Mon",{"headshot":7,"ctfId":4384},"jordimon",{"template":689},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4390,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4391,"config":4396,"_id":4397,"_type":38,"title":4398,"_source":40,"_file":4399,"_stem":4400,"_extension":43},"/en-us/blog/authors/jos-ivn-vargas",{"name":4392,"config":4393},"José Iván Vargas",{"headshot":4394,"ctfId":4395},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":689},"content:en-us:blog:authors:jos-ivn-vargas.yml","Jos Ivn Vargas","en-us/blog/authors/jos-ivn-vargas.yml","en-us/blog/authors/jos-ivn-vargas",{"_path":4402,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4403,"config":4407,"_id":4408,"_type":38,"title":4404,"_source":40,"_file":4409,"_stem":4410,"_extension":43},"/en-us/blog/authors/jose-finotto",{"name":4404,"config":4405},"Jose Finotto",{"headshot":7,"ctfId":4406},"finotto",{"template":689},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4412,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4413,"config":4417,"_id":4419,"_type":38,"title":4416,"_source":40,"_file":4420,"_stem":4421,"_extension":43},"/en-us/blog/authors/joseph-burnett",{"config":4414,"name":4416},{"headshot":4415},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":689,"gitlabHandle":4418},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4423,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4424,"config":4429,"_id":4430,"_type":38,"title":4425,"_source":40,"_file":4431,"_stem":4432,"_extension":43},"/en-us/blog/authors/joseph-longo",{"name":4425,"config":4426},"Joseph Longo",{"headshot":4427,"ctfId":4428},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":689},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4434,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4435,"config":4439,"_id":4440,"_type":38,"title":4441,"_source":40,"_file":4442,"_stem":4443,"_extension":43},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4436,"config":4437},"Joseph Schorr from CoreOS",{"headshot":720,"ctfId":4438},"Joseph-Schorr-from-CoreOS",{"template":689},"content:en-us:blog:authors:joseph-schorr-from-coreos.yml","Joseph Schorr From Coreos","en-us/blog/authors/joseph-schorr-from-coreos.yml","en-us/blog/authors/joseph-schorr-from-coreos",{"_path":4445,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4446,"config":4451,"_id":4452,"_type":38,"title":4447,"_source":40,"_file":4453,"_stem":4454,"_extension":43},"/en-us/blog/authors/josh-feehs",{"name":4447,"config":4448},"Josh Feehs",{"headshot":4449,"ctfId":4450},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683068/Blog/Author%20Headshots/Screenshot_2023-11-28_at_9.12.13_AM.png","g5S7qgnlO5aJJ00brs77P",{"template":689},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4456,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4457,"config":4463,"_id":4464,"_type":38,"title":4465,"_source":40,"_file":4466,"_stem":4467,"_extension":43},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4458,"name":4459,"config":4460},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4461,"ctfId":4462},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":689},"content:en-us:blog:authors:josh-kodroff-pulumi.yml","Josh Kodroff Pulumi","en-us/blog/authors/josh-kodroff-pulumi.yml","en-us/blog/authors/josh-kodroff-pulumi",{"_path":4469,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4470,"config":4474,"_id":4475,"_type":38,"title":4471,"_source":40,"_file":4476,"_stem":4477,"_extension":43},"/en-us/blog/authors/josh-zimmerman",{"name":4471,"config":4472},"Josh Zimmerman",{"headshot":7,"ctfId":4473},"JoshZimmerman",{"template":689},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4479,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4480,"config":4485,"_id":4486,"_type":38,"title":4481,"_source":40,"_file":4487,"_stem":4488,"_extension":43},"/en-us/blog/authors/joshua-carroll",{"name":4481,"config":4482},"Joshua Carroll",{"headshot":4483,"ctfId":4484},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":689},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4490,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4491,"config":4496,"_id":4497,"_type":38,"title":4492,"_source":40,"_file":4498,"_stem":4499,"_extension":43},"/en-us/blog/authors/joshua-lambert",{"name":4492,"config":4493},"Joshua Lambert",{"headshot":4494,"ctfId":4495},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":689},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4501,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4502,"config":4506,"_id":4507,"_type":38,"title":4503,"_source":40,"_file":4508,"_stem":4509,"_extension":43},"/en-us/blog/authors/joyce-tompsett",{"name":4503,"config":4504},"Joyce Tompsett",{"headshot":7,"ctfId":4505},"Tompsett",{"template":689},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4511,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4512,"config":4516,"_id":4517,"_type":38,"title":4513,"_source":40,"_file":4518,"_stem":4519,"_extension":43},"/en-us/blog/authors/juan-broullon",{"name":4513,"config":4514},"Juan Broullon",{"headshot":7,"ctfId":4515},"jbroullon",{"template":689},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4521,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4522,"config":4526,"_id":4527,"_type":38,"title":4523,"_source":40,"_file":4528,"_stem":4529,"_extension":43},"/en-us/blog/authors/julia-lake",{"name":4523,"config":4524},"Julia Lake",{"headshot":720,"ctfId":4525},"5i9IDwCDDg3lfkiu9T3edZ",{"template":689},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4531,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4532,"config":4537,"_id":4538,"_type":38,"title":4533,"_source":40,"_file":4539,"_stem":4540,"_extension":43},"/en-us/blog/authors/julia-miocene",{"name":4533,"config":4534},"Julia Miocene",{"headshot":4535,"ctfId":4536},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":689},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4542,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4543,"config":4547,"_id":4548,"_type":38,"title":4544,"_source":40,"_file":4549,"_stem":4550,"_extension":43},"/en-us/blog/authors/julian-thome",{"name":4544,"config":4545},"Julian Thome",{"headshot":7,"ctfId":4546},"jthome",{"template":689},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4552,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4553,"config":4558,"_id":4559,"_type":38,"title":4554,"_source":40,"_file":4560,"_stem":4561,"_extension":43},"/en-us/blog/authors/julie-byrne",{"name":4554,"config":4555},"Julie Byrne",{"headshot":4556,"ctfId":4557},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":689},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4563,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4564,"config":4569,"_id":4570,"_type":38,"title":4565,"_source":40,"_file":4571,"_stem":4572,"_extension":43},"/en-us/blog/authors/julie-griffin",{"name":4565,"config":4566},"Julie Griffin",{"headshot":4567,"ctfId":4568},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":689},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4574,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4575,"config":4579,"_id":4580,"_type":38,"title":4576,"_source":40,"_file":4581,"_stem":4582,"_extension":43},"/en-us/blog/authors/julien-andrieux",{"name":4576,"config":4577},"Julien Andrieux",{"headshot":720,"ctfId":4578},"Julien-Andrieux",{"template":689},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4584,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4585,"config":4590,"_id":4591,"_type":38,"title":4586,"_source":40,"_file":4592,"_stem":4593,"_extension":43},"/en-us/blog/authors/juliet-wanjohi",{"name":4586,"config":4587},"Juliet Wanjohi",{"headshot":4588,"ctfId":4589},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":689},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4595,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4596,"config":4600,"_id":4601,"_type":38,"title":4597,"_source":40,"_file":4602,"_stem":4603,"_extension":43},"/en-us/blog/authors/justin-farris",{"name":4597,"config":4598},"Justin Farris",{"headshot":720,"ctfId":4599},"5RHYudAlWLmSj5U7AOIcbG",{"template":689},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4605,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4606,"config":4611,"_id":4612,"_type":38,"title":4607,"_source":40,"_file":4613,"_stem":4614,"_extension":43},"/en-us/blog/authors/justin-tobler",{"name":4607,"config":4608},"Justin Tobler",{"headshot":4609,"ctfId":4610},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":689},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4616,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4617,"config":4622,"_id":4623,"_type":38,"title":4618,"_source":40,"_file":4624,"_stem":4625,"_extension":43},"/en-us/blog/authors/kai-armstrong",{"name":4618,"config":4619},"Kai Armstrong",{"headshot":4620,"ctfId":4621},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":689},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4627,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4628,"config":4632,"_id":4633,"_type":38,"title":4634,"_source":40,"_file":4635,"_stem":4636,"_extension":43},"/en-us/blog/authors/kamil-trzciski",{"name":4629,"config":4630},"Kamil Trzciński",{"headshot":720,"ctfId":4631},"Kamil-Trzciski",{"template":689},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4638,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4639,"config":4643,"_id":4644,"_type":38,"title":4645,"_source":40,"_file":4646,"_stem":4647,"_extension":43},"/en-us/blog/authors/karen-caras",{"name":4640,"config":4641},"Karen Carías",{"headshot":720,"ctfId":4642},"Karen-Caras",{"template":689},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4649,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4650,"config":4654,"_id":4656,"_type":38,"title":4651,"_source":40,"_file":4657,"_stem":4658,"_extension":43},"/en-us/blog/authors/karishma-kumar",{"name":4651,"config":4652},"Karishma Kumar",{"headshot":4653},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1761931048/z7wcdkw5czs9uwtpmfwg.png",{"template":689,"gitlabHandle":4655},"karishmakumar","content:en-us:blog:authors:karishma-kumar.yml","en-us/blog/authors/karishma-kumar.yml","en-us/blog/authors/karishma-kumar",{"_path":4660,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4661,"config":4666,"_id":4667,"_type":38,"title":4662,"_source":40,"_file":4668,"_stem":4669,"_extension":43},"/en-us/blog/authors/karthik-nayak",{"name":4662,"config":4663},"Karthik Nayak",{"headshot":4664,"ctfId":4665},"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":689},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4671,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4672,"config":4676,"_id":4677,"_type":38,"title":4673,"_source":40,"_file":4678,"_stem":4679,"_extension":43},"/en-us/blog/authors/katherine-okpara",{"name":4673,"config":4674},"Katherine Okpara",{"headshot":7,"ctfId":4675},"katokpara",{"template":689},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4681,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4682,"config":4686,"_id":4687,"_type":38,"title":4683,"_source":40,"_file":4688,"_stem":4689,"_extension":43},"/en-us/blog/authors/kathy-wang",{"name":4683,"config":4684},"Kathy Wang",{"headshot":7,"ctfId":4685},"kathyw",{"template":689},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4691,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4692,"config":4696,"_id":4697,"_type":38,"title":4698,"_source":40,"_file":4699,"_stem":4700,"_extension":43},"/en-us/blog/authors/keanon-okeefe",{"name":4693,"config":4694},"Keanon O’Keefe",{"headshot":7,"ctfId":4695},"kokeefe",{"template":689},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4702,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4703,"config":4708,"_id":4709,"_type":38,"title":4704,"_source":40,"_file":4710,"_stem":4711,"_extension":43},"/en-us/blog/authors/kees-valkhof",{"name":4704,"role":4705,"config":4706},"Kees Valkhof","Configuration manager at Lely",{"headshot":4707},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":689},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4713,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4714,"config":4718,"_id":4719,"_type":38,"title":4715,"_source":40,"_file":4720,"_stem":4721,"_extension":43},"/en-us/blog/authors/kelly-hair",{"name":4715,"config":4716},"Kelly Hair",{"headshot":720,"ctfId":4717},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":689},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4723,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4724,"config":4728,"_id":4729,"_type":38,"title":4725,"_source":40,"_file":4730,"_stem":4731,"_extension":43},"/en-us/blog/authors/kendra-marquart",{"name":4725,"config":4726},"Kendra Marquart",{"headshot":7,"ctfId":4727},"kmarquart",{"template":689},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4733,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4734,"config":4738,"_id":4739,"_type":38,"title":4735,"_source":40,"_file":4740,"_stem":4741,"_extension":43},"/en-us/blog/authors/kenny-johnston",{"name":4735,"config":4736},"Kenny Johnston",{"headshot":7,"ctfId":4737},"kencjohnston",{"template":689},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4743,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4744,"config":4749,"_id":4750,"_type":38,"title":4745,"_source":40,"_file":4751,"_stem":4752,"_extension":43},"/en-us/blog/authors/kevin-chu",{"name":4745,"config":4746},"Kevin Chu",{"headshot":4747,"ctfId":4748},"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":689},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4754,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4755,"config":4760,"_id":4761,"_type":38,"title":4756,"_source":40,"_file":4762,"_stem":4763,"_extension":43},"/en-us/blog/authors/kevin-morrison",{"name":4756,"config":4757},"Kevin Morrison",{"headshot":4758,"ctfId":4759},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":689},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4765,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4766,"config":4770,"_id":4771,"_type":38,"title":4767,"_source":40,"_file":4772,"_stem":4773,"_extension":43},"/en-us/blog/authors/khrystyna-humenna",{"name":4767,"config":4768},"Khrystyna Humenna",{"headshot":720,"ctfId":4769},"Khrystyna-Humenna",{"template":689},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4775,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4776,"config":4780,"_id":4781,"_type":38,"title":4777,"_source":40,"_file":4782,"_stem":4783,"_extension":43},"/en-us/blog/authors/kim-lock",{"name":4777,"config":4778},"Kim Lock",{"headshot":7,"ctfId":4779},"KimLock",{"template":689},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4785,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4786,"config":4790,"_id":4791,"_type":38,"title":4787,"_source":40,"_file":4792,"_stem":4793,"_extension":43},"/en-us/blog/authors/kirsten-abma",{"name":4787,"config":4788},"Kirsten Abma",{"headshot":720,"ctfId":4789},"Kirsten-Abma",{"template":689},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4795,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4796,"config":4800,"_id":4801,"_type":38,"title":4797,"_source":40,"_file":4802,"_stem":4803,"_extension":43},"/en-us/blog/authors/kristian-larsson",{"name":4797,"config":4798},"Kristian Larsson",{"headshot":720,"ctfId":4799},"Kristian-Larsson",{"template":689},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4805,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4806,"config":4811,"_id":4812,"_type":38,"title":4807,"_source":40,"_file":4813,"_stem":4814,"_extension":43},"/en-us/blog/authors/kristina-weis",{"name":4807,"config":4808},"Kristina Weis",{"headshot":4809,"ctfId":4810},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":689},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4816,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4817,"config":4821,"_id":4822,"_type":38,"title":4818,"_source":40,"_file":4823,"_stem":4824,"_extension":43},"/en-us/blog/authors/kurt-dusek",{"name":4818,"config":4819},"Kurt Dusek",{"headshot":7,"ctfId":4820},"kdusek",{"template":689},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4826,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4827,"config":4831,"_id":4832,"_type":38,"title":4828,"_source":40,"_file":4833,"_stem":4834,"_extension":43},"/en-us/blog/authors/kushal-koolwal",{"name":4828,"config":4829},"Kushal Koolwal",{"headshot":720,"ctfId":4830},"Kushal-Koolwal",{"template":689},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4836,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4837,"config":4842,"_id":4843,"_type":38,"title":4838,"_source":40,"_file":4844,"_stem":4845,"_extension":43},"/en-us/blog/authors/kushal-pandya",{"name":4838,"config":4839},"Kushal Pandya",{"headshot":4840,"ctfId":4841},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":689},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4847,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4848,"config":4852,"_id":4853,"_type":38,"title":4849,"_source":40,"_file":4854,"_stem":4855,"_extension":43},"/en-us/blog/authors/kwan-lee",{"name":4849,"config":4850},"Kwan Lee",{"headshot":720,"ctfId":4851},"Kwan-Lee",{"template":689},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4857,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4858,"config":4863,"_id":4864,"_type":38,"title":4859,"_source":40,"_file":4865,"_stem":4866,"_extension":43},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4859,"config":4860},"Kyla Gradin Dahl",{"headshot":4861,"ctfId":4862},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":689},"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":4868,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4869,"config":4873,"_id":4874,"_type":38,"title":4870,"_source":40,"_file":4875,"_stem":4876,"_extension":43},"/en-us/blog/authors/kyle-mann",{"name":4870,"config":4871},"Kyle Mann",{"headshot":720,"ctfId":4872},"44YiW1r6sTpbC9wKBeHGgE",{"template":689},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4878,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4879,"config":4884,"_id":4885,"_type":38,"title":4880,"_source":40,"_file":4886,"_stem":4887,"_extension":43},"/en-us/blog/authors/kyle-smith",{"name":4880,"config":4881},"Kyle Smith",{"headshot":4882,"ctfId":4883},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":689},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4889,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4890,"config":4894,"_id":4896,"_type":38,"title":4891,"_source":40,"_file":4897,"_stem":4898,"_extension":43},"/en-us/blog/authors/kymberlee-price",{"name":4891,"config":4892},"Kymberlee Price",{"headshot":4893},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":689,"gitlabHandle":4895},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4900,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4901,"config":4905,"_id":4906,"_type":38,"title":4902,"_source":40,"_file":4907,"_stem":4908,"_extension":43},"/en-us/blog/authors/lasse-schuirmann",{"name":4902,"config":4903},"Lasse Schuirmann",{"headshot":720,"ctfId":4904},"5vpo2ZOrPIS8PBp3k47S6w",{"template":689},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4910,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4911,"config":4915,"_id":4916,"_type":38,"title":4912,"_source":40,"_file":4917,"_stem":4918,"_extension":43},"/en-us/blog/authors/laura-montemayor",{"name":4912,"config":4913},"Laura Montemayor",{"headshot":7,"ctfId":4914},"lauraMon",{"template":689},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4920,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4921,"config":4926,"_id":4927,"_type":38,"title":4922,"_source":40,"_file":4928,"_stem":4929,"_extension":43},"/en-us/blog/authors/lauren-barker",{"name":4922,"config":4923},"Lauren Barker",{"headshot":4924,"ctfId":4925},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":689},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4931,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4932,"config":4936,"_id":4937,"_type":38,"title":4933,"_source":40,"_file":4938,"_stem":4939,"_extension":43},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4933,"config":4934},"Lauren Gibbons Paul",{"headshot":720,"ctfId":4935},"Lauren-Gibbons-Paul",{"template":689},"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":4941,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4942,"config":4946,"_id":4947,"_type":38,"title":4943,"_source":40,"_file":4948,"_stem":4949,"_extension":43},"/en-us/blog/authors/lauren-minning",{"name":4943,"config":4944},"Lauren Minning",{"headshot":7,"ctfId":4945},"lminning",{"template":689},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":4951,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4952,"config":4957,"_id":4958,"_type":38,"title":4953,"_source":40,"_file":4959,"_stem":4960,"_extension":43},"/en-us/blog/authors/laurena-alves",{"name":4953,"config":4954},"Laurena Alves",{"headshot":4955,"ctfId":4956},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":689},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":4962,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4963,"config":4968,"_id":4969,"_type":38,"title":4964,"_source":40,"_file":4970,"_stem":4971,"_extension":43},"/en-us/blog/authors/lee-faus",{"name":4964,"config":4965},"Lee Faus",{"headshot":4966,"ctfId":4967},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":689},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":4973,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4974,"config":4979,"_id":4980,"_type":38,"title":4975,"_source":40,"_file":4981,"_stem":4982,"_extension":43},"/en-us/blog/authors/lee-matos",{"name":4975,"config":4976},"Lee Matos",{"headshot":4977,"ctfId":4978},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":689},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":4984,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4985,"config":4990,"_id":4991,"_type":38,"title":4986,"_source":40,"_file":4992,"_stem":4993,"_extension":43},"/en-us/blog/authors/lee-tickett",{"name":4986,"config":4987},"Lee Tickett",{"headshot":4988,"ctfId":4989},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":689},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":4995,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":4996,"config":5000,"_id":5001,"_type":38,"title":4997,"_source":40,"_file":5002,"_stem":5003,"_extension":43},"/en-us/blog/authors/levente-polyak",{"name":4997,"config":4998},"Levente Polyak",{"headshot":7,"ctfId":4999},"anthraxx",{"template":689},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":5005,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5006,"config":5011,"_id":5012,"_type":38,"title":5013,"_source":40,"_file":5014,"_stem":5015,"_extension":43},"/en-us/blog/authors/lin-jen-shin",{"name":5007,"config":5008},"Lin Jen-Shin",{"headshot":5009,"ctfId":5010},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":689},"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":5017,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5018,"config":5023,"_id":5024,"_type":38,"title":5019,"_source":40,"_file":5025,"_stem":5026,"_extension":43},"/en-us/blog/authors/liz-coleman",{"name":5019,"config":5020},"Liz Coleman",{"headshot":5021,"ctfId":5022},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":689},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5028,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5029,"config":5034,"_id":5035,"_type":38,"title":5030,"_source":40,"_file":5036,"_stem":5037,"_extension":43},"/en-us/blog/authors/loryn-bortins",{"name":5030,"config":5031},"Loryn Bortins",{"headshot":5032,"ctfId":5033},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":689},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5039,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5040,"config":5044,"_id":5045,"_type":38,"title":5041,"_source":40,"_file":5046,"_stem":5047,"_extension":43},"/en-us/blog/authors/lucas-charles",{"name":5041,"config":5042},"Lucas Charles",{"headshot":720,"ctfId":5043},"01OUkmRJImMowxMk3YHGNS",{"template":689},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5049,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5050,"config":5054,"_id":5055,"_type":38,"title":5051,"_source":40,"_file":5056,"_stem":5057,"_extension":43},"/en-us/blog/authors/luka-trbojevic",{"name":5051,"config":5052},"Luka Trbojevic",{"headshot":7,"ctfId":5053},"ltrbojevic",{"template":689},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5059,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5060,"config":5064,"_id":5065,"_type":38,"title":5061,"_source":40,"_file":5066,"_stem":5067,"_extension":43},"/en-us/blog/authors/lukas-eipert",{"name":5061,"config":5062},"Lukas Eipert",{"headshot":720,"ctfId":5063},"37PO8stm7JUQgglr4tWcmw",{"template":689},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5069,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5070,"config":5075,"_id":5076,"_type":38,"title":5071,"_source":40,"_file":5077,"_stem":5078,"_extension":43},"/en-us/blog/authors/lyle-kozloff",{"name":5071,"config":5072},"Lyle Kozloff",{"headshot":5073,"ctfId":5074},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":689},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5080,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5081,"config":5086,"_id":5087,"_type":38,"title":5082,"_source":40,"_file":5088,"_stem":5089,"_extension":43},"/en-us/blog/authors/madeline-lake",{"name":5082,"config":5083},"Madeline Lake",{"headshot":5084,"ctfId":5085},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":689},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5091,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5092,"config":5097,"_id":5098,"_type":38,"title":5093,"_source":40,"_file":5099,"_stem":5100,"_extension":43},"/en-us/blog/authors/madou-coulibaly",{"name":5093,"config":5094},"Madou Coulibaly",{"headshot":5095,"ctfId":5096},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":689},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5102,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5103,"config":5108,"_id":5109,"_type":38,"title":5104,"_source":40,"_file":5110,"_stem":5111,"_extension":43},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5104,"config":5105},"Magdalena Frankiewicz",{"headshot":5106,"ctfId":5107},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":689},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5113,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5114,"config":5118,"_id":5119,"_type":38,"title":5115,"_source":40,"_file":5120,"_stem":5121,"_extension":43},"/en-us/blog/authors/mahesh-kumar",{"name":5115,"config":5116},"Mahesh Kumar",{"headshot":720,"ctfId":5117},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":689},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5123,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5124,"config":5129,"_id":5130,"_type":38,"title":5125,"_source":40,"_file":5131,"_stem":5132,"_extension":43},"/en-us/blog/authors/manav-khurana",{"name":5125,"config":5126,"role":5128},"Manav Khurana",{"headshot":5127},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":689,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5134,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5135,"config":5140,"_id":5141,"_type":38,"title":5136,"_source":40,"_file":5142,"_stem":5143,"_extension":43},"/en-us/blog/authors/manuel-kraft",{"name":5136,"config":5137},"Manuel Kraft",{"headshot":5138,"ctfId":5139},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":689},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5145,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5146,"config":5150,"_id":5151,"_type":38,"title":5147,"_source":40,"_file":5152,"_stem":5153,"_extension":43},"/en-us/blog/authors/marc-radulescu",{"name":5147,"config":5148},"Marc Radulescu",{"headshot":720,"ctfId":5149},"Marc-Radulescu",{"template":689},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5155,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5156,"config":5161,"_id":5162,"_type":38,"title":5157,"_source":40,"_file":5163,"_stem":5164,"_extension":43},"/en-us/blog/authors/marc-shaw",{"name":5157,"config":5158},"Marc Shaw",{"headshot":5159,"ctfId":5160},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":689},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5166,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5167,"config":5172,"_id":5173,"_type":38,"title":5174,"_source":40,"_file":5175,"_stem":5176,"_extension":43},"/en-us/blog/authors/marcel-van-remmerden",{"name":5168,"config":5169},"Marcel van Remmerden",{"headshot":5170,"ctfId":5171},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":689},"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":5178,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5179,"config":5183,"_id":5184,"_type":38,"title":5180,"_source":40,"_file":5185,"_stem":5186,"_extension":43},"/en-us/blog/authors/marcia-ramos",{"name":5180,"config":5181},"Marcia Ramos",{"headshot":720,"ctfId":5182},"Marcia-Ramos",{"template":689},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5188,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5189,"config":5193,"_id":5194,"_type":38,"title":5190,"_source":40,"_file":5195,"_stem":5196,"_extension":43},"/en-us/blog/authors/marco-lenzo",{"name":5190,"config":5191},"Marco Lenzo",{"headshot":720,"ctfId":5192},"Marco-Lenzo",{"template":689},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5198,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5199,"config":5203,"_id":5204,"_type":38,"title":5200,"_source":40,"_file":5205,"_stem":5206,"_extension":43},"/en-us/blog/authors/marie-hargitt",{"name":5200,"config":5201},"Marie Hargitt",{"headshot":720,"ctfId":5202},"Marie-Hargitt",{"template":689},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5208,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5209,"config":5214,"_id":5215,"_type":38,"title":5210,"_source":40,"_file":5216,"_stem":5217,"_extension":43},"/en-us/blog/authors/marin-jankovski",{"name":5210,"config":5211},"Marin Jankovski",{"headshot":5212,"ctfId":5213},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":689},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5219,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5220,"config":5224,"_id":5225,"_type":38,"title":5226,"_source":40,"_file":5227,"_stem":5228,"_extension":43},"/en-us/blog/authors/marin-job",{"name":5221,"config":5222},"Marin, Job",{"headshot":720,"ctfId":5223},"Marin-Job",{"template":689},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5230,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5231,"config":5235,"_id":5236,"_type":38,"title":5237,"_source":40,"_file":5238,"_stem":5239,"_extension":43},"/en-us/blog/authors/mario-de-la-ossa",{"name":5232,"config":5233},"Mario de la Ossa",{"headshot":7,"ctfId":5234},"mdelaossa",{"template":689},"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":5241,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5242,"config":5246,"_id":5247,"_type":38,"title":5243,"_source":40,"_file":5248,"_stem":5249,"_extension":43},"/en-us/blog/authors/mark-art",{"name":5243,"config":5244},"Mark Art",{"headshot":720,"ctfId":5245},"55KCfyNmgPaJRmBZhiN7k5",{"template":689},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5251,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5252,"config":5256,"_id":5257,"_type":38,"title":5253,"_source":40,"_file":5258,"_stem":5259,"_extension":43},"/en-us/blog/authors/mark-fletcher",{"name":5253,"config":5254},"Mark Fletcher",{"headshot":7,"ctfId":5255},"markglenfletcher",{"template":689},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5261,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5262,"config":5267,"_id":5268,"_type":38,"title":5263,"_source":40,"_file":5269,"_stem":5270,"_extension":43},"/en-us/blog/authors/mark-lapierre",{"name":5263,"config":5264},"Mark Lapierre",{"headshot":5265,"ctfId":5266},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":689},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5272,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5273,"config":5278,"_id":5279,"_type":38,"title":5274,"_source":40,"_file":5280,"_stem":5281,"_extension":43},"/en-us/blog/authors/mark-loveless",{"name":5274,"config":5275},"Mark Loveless",{"headshot":5276,"ctfId":5277},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":689},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5283,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5284,"config":5288,"_id":5289,"_type":38,"title":5285,"_source":40,"_file":5290,"_stem":5291,"_extension":43},"/en-us/blog/authors/mark-pundsack",{"name":5285,"config":5286},"Mark Pundsack",{"headshot":720,"ctfId":5287},"markpundsack",{"template":689},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5293,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5294,"config":5299,"_id":5300,"_type":38,"title":5301,"_source":40,"_file":5302,"_stem":5303,"_extension":43},"/en-us/blog/authors/martin-brmmer",{"name":5295,"config":5296},"Martin Brümmer",{"headshot":5297,"ctfId":5298},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":689},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5305,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5306,"config":5310,"_id":5311,"_type":38,"title":5307,"_source":40,"_file":5312,"_stem":5313,"_extension":43},"/en-us/blog/authors/martynas-krupskis",{"name":5307,"config":5308},"Martynas Krupskis",{"headshot":720,"ctfId":5309},"3tK5S0f4QshGFGRrdEl7rn",{"template":689},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5315,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5316,"config":5320,"_id":5321,"_type":38,"title":5317,"_source":40,"_file":5322,"_stem":5323,"_extension":43},"/en-us/blog/authors/matej-latin",{"name":5317,"config":5318},"Matej Latin",{"headshot":7,"ctfId":5319},"matejlatin",{"template":689},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5325,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5326,"config":5331,"_id":5332,"_type":38,"title":5327,"_source":40,"_file":5333,"_stem":5334,"_extension":43},"/en-us/blog/authors/mathias-ewald",{"name":5327,"config":5328},"Mathias Ewald",{"headshot":5329,"ctfId":5330},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":689},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5336,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5337,"config":5341,"_id":5342,"_type":38,"title":5338,"_source":40,"_file":5343,"_stem":5344,"_extension":43},"/en-us/blog/authors/matt-baldwin",{"name":5338,"config":5339},"Matt Baldwin",{"headshot":720,"ctfId":5340},"Matt-Baldwin",{"template":689},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5346,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5347,"config":5352,"_id":5353,"_type":38,"title":5348,"_source":40,"_file":5354,"_stem":5355,"_extension":43},"/en-us/blog/authors/matt-coons",{"name":5348,"config":5349},"Matt Coons",{"headshot":5350,"ctfId":5351},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":689},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5357,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5358,"config":5363,"_id":5364,"_type":38,"title":5365,"_source":40,"_file":5366,"_stem":5367,"_extension":43},"/en-us/blog/authors/matt-delaney",{"name":5359,"config":5360},"Matt DeLaney",{"headshot":5361,"ctfId":5362},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":689},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5369,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5370,"config":5375,"_id":5376,"_type":38,"title":5371,"_source":40,"_file":5377,"_stem":5378,"_extension":43},"/en-us/blog/authors/matt-genelin",{"name":5371,"config":5372},"Matt Genelin",{"headshot":5373,"ctfId":5374},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":689},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5380,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5381,"config":5385,"_id":5386,"_type":38,"title":5382,"_source":40,"_file":5387,"_stem":5388,"_extension":43},"/en-us/blog/authors/matt-nguyen",{"name":5382,"config":5383},"Matt Nguyen",{"headshot":720,"ctfId":5384},"Matt-Nguyen",{"template":689},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5390,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5391,"config":5396,"_id":5397,"_type":38,"title":5392,"_source":40,"_file":5398,"_stem":5399,"_extension":43},"/en-us/blog/authors/matt-nohr",{"name":5392,"config":5393},"Matt Nohr",{"headshot":5394,"ctfId":5395},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":689},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5401,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5402,"config":5407,"_id":5408,"_type":38,"title":5403,"_source":40,"_file":5409,"_stem":5410,"_extension":43},"/en-us/blog/authors/matt-smiley",{"name":5403,"config":5404},"Matt Smiley",{"headshot":5405,"ctfId":5406},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":689},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5412,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5413,"config":5417,"_id":5418,"_type":38,"title":5414,"_source":40,"_file":5419,"_stem":5420,"_extension":43},"/en-us/blog/authors/matt-wilson",{"name":5414,"config":5415},"Matt Wilson",{"headshot":720,"ctfId":5416},"mattwilson",{"template":689},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5422,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5423,"config":5428,"_id":5429,"_type":38,"title":5424,"_source":40,"_file":5430,"_stem":5431,"_extension":43},"/en-us/blog/authors/matthew-macfarlane",{"name":5424,"config":5425},"Matthew Macfarlane",{"headshot":5426,"ctfId":5427},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":689},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5433,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5434,"config":5439,"_id":5440,"_type":38,"title":5435,"_source":40,"_file":5441,"_stem":5442,"_extension":43},"/en-us/blog/authors/matthew-nearents",{"name":5435,"config":5436},"Matthew Nearents",{"headshot":5437,"ctfId":5438},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":689},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5444,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5445,"config":5450,"_id":5451,"_type":38,"title":5452,"_source":40,"_file":5453,"_stem":5454,"_extension":43},"/en-us/blog/authors/matthias-kppler",{"name":5446,"config":5447},"Matthias Käppler",{"headshot":5448,"ctfId":5449},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":689},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5456,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5457,"config":5461,"_id":5462,"_type":38,"title":5458,"_source":40,"_file":5463,"_stem":5464,"_extension":43},"/en-us/blog/authors/matthieu-fronton",{"name":5458,"config":5459},"Matthieu Fronton",{"headshot":7,"ctfId":5460},"frntn",{"template":689},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5466,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5467,"config":5471,"_id":5472,"_type":38,"title":5468,"_source":40,"_file":5473,"_stem":5474,"_extension":43},"/en-us/blog/authors/max-woolf",{"name":5468,"config":5469},"Max Woolf",{"headshot":720,"ctfId":5470},"Max-Woolf",{"template":689},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5476,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5477,"config":5482,"_id":5483,"_type":38,"title":5478,"_source":40,"_file":5484,"_stem":5485,"_extension":43},"/en-us/blog/authors/maximilien-belinga",{"name":5478,"config":5479},"Maximilien Belinga",{"headshot":5480,"ctfId":5481},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":689},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5487,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5488,"config":5492,"_id":5493,"_type":38,"title":5489,"_source":40,"_file":5494,"_stem":5495,"_extension":43},"/en-us/blog/authors/mayank-tahilramani",{"name":5489,"config":5490},"Mayank Tahilramani",{"headshot":7,"ctfId":5491},"mayanktahil",{"template":689},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5497,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5498,"config":5503,"_id":5504,"_type":38,"title":5499,"_source":40,"_file":5505,"_stem":5506,"_extension":43},"/en-us/blog/authors/mayra-cabrera",{"name":5499,"config":5500},"Mayra Cabrera",{"headshot":5501,"ctfId":5502},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":689},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5508,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5509,"config":5513,"_id":5514,"_type":38,"title":5510,"_source":40,"_file":5515,"_stem":5516,"_extension":43},"/en-us/blog/authors/meghan-maneval",{"name":5510,"config":5511},"Meghan Maneval",{"headshot":7,"ctfId":5512},"mmaneval20",{"template":689},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5518,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5519,"config":5524,"_id":5525,"_type":38,"title":5520,"_source":40,"_file":5526,"_stem":5527,"_extension":43},"/en-us/blog/authors/mek-stittri",{"name":5520,"config":5521},"Mek Stittri",{"headshot":5522,"ctfId":5523},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":689},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5529,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5530,"config":5534,"_id":5535,"_type":38,"title":5531,"_source":40,"_file":5536,"_stem":5537,"_extension":43},"/en-us/blog/authors/melissa-farber",{"name":5531,"config":5532},"Melissa Farber",{"headshot":7,"ctfId":5533},"mfarber",{"template":689},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5539,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5540,"config":5544,"_id":5545,"_type":38,"title":5541,"_source":40,"_file":5546,"_stem":5547,"_extension":43},"/en-us/blog/authors/melissa-smolensky",{"name":5541,"config":5542},"Melissa Smolensky",{"headshot":7,"ctfId":5543},"melsmo",{"template":689},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5549,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5550,"config":5555,"_id":5556,"_type":38,"title":5551,"_source":40,"_file":5557,"_stem":5558,"_extension":43},"/en-us/blog/authors/melissa-ushakov",{"name":5551,"config":5552},"Melissa Ushakov",{"headshot":5553,"ctfId":5554},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":689},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5560,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5561,"config":5565,"_id":5566,"_type":38,"title":5562,"_source":40,"_file":5567,"_stem":5568,"_extension":43},"/en-us/blog/authors/michael-fahey",{"name":5562,"config":5563},"Michael Fahey",{"headshot":7,"ctfId":5564},"mfahey",{"template":689},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5570,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5571,"config":5576,"_id":5577,"_type":38,"title":5572,"_source":40,"_file":5578,"_stem":5579,"_extension":43},"/en-us/blog/authors/michael-friedrich",{"name":5572,"config":5573},"Michael Friedrich",{"headshot":5574,"ctfId":5575},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":689},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5581,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5582,"config":5586,"_id":5587,"_type":38,"title":5583,"_source":40,"_file":5588,"_stem":5589,"_extension":43},"/en-us/blog/authors/michael-henriksen",{"name":5583,"config":5584},"Michael Henriksen",{"headshot":720,"ctfId":5585},"3DmojnawcJFqAgoNMCpFTX",{"template":689},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5591,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5592,"config":5596,"_id":5597,"_type":38,"title":5593,"_source":40,"_file":5598,"_stem":5599,"_extension":43},"/en-us/blog/authors/michael-karampalas",{"name":5593,"config":5594},"Michael Karampalas",{"headshot":7,"ctfId":5595},"mkarampalas",{"template":689},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5601,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5602,"config":5607,"_id":5608,"_type":38,"title":5603,"_source":40,"_file":5609,"_stem":5610,"_extension":43},"/en-us/blog/authors/michael-kozono",{"name":5603,"config":5604},"Michael Kozono",{"headshot":5605,"ctfId":5606},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":689},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5612,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5613,"config":5617,"_id":5618,"_type":38,"title":5614,"_source":40,"_file":5619,"_stem":5620,"_extension":43},"/en-us/blog/authors/michael-miranda",{"name":5614,"config":5615},"Michael Miranda",{"headshot":7,"ctfId":5616},"mikemiranda",{"template":689},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5622,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5623,"config":5628,"_id":5629,"_type":38,"title":5624,"_source":40,"_file":5630,"_stem":5631,"_extension":43},"/en-us/blog/authors/michelle-gill",{"name":5624,"config":5625},"Michelle Gill",{"headshot":5626,"ctfId":5627},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":689},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5633,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5634,"config":5639,"_id":5640,"_type":38,"title":5635,"_source":40,"_file":5641,"_stem":5642,"_extension":43},"/en-us/blog/authors/miguel-rincon",{"name":5635,"config":5636},"Miguel Rincon",{"headshot":5637,"ctfId":5638},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":689},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5644,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5645,"config":5649,"_id":5650,"_type":38,"title":5646,"_source":40,"_file":5651,"_stem":5652,"_extension":43},"/en-us/blog/authors/mike-bartlett",{"name":5646,"config":5647},"Mike Bartlett",{"headshot":7,"ctfId":5648},"mydigitalself",{"template":689},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5654,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5655,"config":5659,"_id":5660,"_type":38,"title":5656,"_source":40,"_file":5661,"_stem":5662,"_extension":43},"/en-us/blog/authors/mike-eddington",{"name":5656,"config":5657},"Mike Eddington",{"headshot":720,"ctfId":5658},"q5tK0TgB1ZovSwShKSvOJ",{"template":689},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5664,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5665,"config":5670,"_id":5671,"_type":38,"title":5666,"_source":40,"_file":5672,"_stem":5673,"_extension":43},"/en-us/blog/authors/mike-flouton",{"name":5666,"config":5667},"Mike Flouton",{"headshot":5668,"ctfId":5669},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":689},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5675,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5676,"config":5680,"_id":5681,"_type":38,"title":5677,"_source":40,"_file":5682,"_stem":5683,"_extension":43},"/en-us/blog/authors/mike-gerwitz",{"name":5677,"config":5678},"Mike Gerwitz",{"headshot":720,"ctfId":5679},"Mike-Gerwitz",{"template":689},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5685,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5686,"config":5690,"_id":5691,"_type":38,"title":5687,"_source":40,"_file":5692,"_stem":5693,"_extension":43},"/en-us/blog/authors/mike-greiling",{"name":5687,"config":5688},"Mike Greiling",{"headshot":7,"ctfId":5689},"mikegreiling",{"template":689},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5695,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5696,"config":5700,"_id":5701,"_type":38,"title":5697,"_source":40,"_file":5702,"_stem":5703,"_extension":43},"/en-us/blog/authors/mike-vanbuskirk",{"name":5697,"config":5698},"Mike Vanbuskirk",{"headshot":720,"ctfId":5699},"Mike-Vanbuskirk",{"template":689},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5705,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5706,"config":5710,"_id":5711,"_type":38,"title":5707,"_source":40,"_file":5712,"_stem":5713,"_extension":43},"/en-us/blog/authors/miranda-carter",{"name":5707,"config":5708},"Miranda Carter",{"headshot":720,"ctfId":5709},"4xT4dbRh6N9i7jW5xuPhVp",{"template":689},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5715,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5716,"config":5721,"_id":5722,"_type":38,"title":5717,"_source":40,"_file":5723,"_stem":5724,"_extension":43},"/en-us/blog/authors/mitra-jozenazemian",{"name":5717,"config":5718},"Mitra Jozenazemian",{"headshot":5719,"ctfId":5720},"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":689},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5726,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5727,"config":5732,"_id":5733,"_type":38,"title":5728,"_source":40,"_file":5734,"_stem":5735,"_extension":43},"/en-us/blog/authors/monmayuri-ray",{"name":5728,"config":5729},"Monmayuri Ray",{"headshot":5730,"ctfId":5731},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":689},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5737,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5738,"config":5743,"_id":5745,"_type":38,"title":5739,"_source":40,"_file":5746,"_stem":5747,"_extension":43},"/en-us/blog/authors/naoharu-sasaki",{"name":5739,"config":5740,"role":5742},"Naoharu Sasaki",{"headshot":5741},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":689,"gitlabHandle":5744},"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":5749,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5750,"config":5755,"_id":5756,"_type":38,"title":5751,"_source":40,"_file":5757,"_stem":5758,"_extension":43},"/en-us/blog/authors/nate-rosandich",{"name":5751,"config":5752},"Nate Rosandich",{"headshot":5753,"ctfId":5754},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":689},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5760,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5761,"config":5766,"_id":5767,"_type":38,"title":5762,"_source":40,"_file":5768,"_stem":5769,"_extension":43},"/en-us/blog/authors/neha-khalwadekar",{"name":5762,"config":5763},"Neha Khalwadekar",{"headshot":5764,"ctfId":5765},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":689},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5771,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5772,"config":5777,"_id":5778,"_type":38,"title":5779,"_source":40,"_file":5780,"_stem":5781,"_extension":43},"/en-us/blog/authors/neil-mccorrison",{"name":5773,"config":5774},"Neil McCorrison",{"headshot":5775,"ctfId":5776},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":689},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5783,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5784,"config":5789,"_id":5790,"_type":38,"title":5791,"_source":40,"_file":5792,"_stem":5793,"_extension":43},"/en-us/blog/authors/neil-mcdonald",{"name":5785,"config":5786},"Neil McDonald",{"headshot":5787,"ctfId":5788},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":689},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5795,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5796,"config":5800,"_id":5802,"_type":38,"title":5797,"_source":40,"_file":5803,"_stem":5804,"_extension":43},"/en-us/blog/authors/nick-cayou",{"name":5797,"config":5798,"role":7},"Nick Cayou",{"headshot":5799},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":689,"gitlabHandle":5801},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5806,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5807,"config":5812,"_id":5813,"_type":38,"title":5808,"_source":40,"_file":5814,"_stem":5815,"_extension":43},"/en-us/blog/authors/nick-malcolm",{"name":5808,"config":5809},"Nick Malcolm",{"headshot":5810,"ctfId":5811},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":689},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5817,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5818,"config":5822,"_id":5823,"_type":38,"title":5819,"_source":40,"_file":5824,"_stem":5825,"_extension":43},"/en-us/blog/authors/nick-thomas",{"name":5819,"config":5820},"Nick Thomas",{"headshot":7,"ctfId":5821},"nickthomas",{"template":689},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5827,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5828,"config":5833,"_id":5834,"_type":38,"title":5829,"_source":40,"_file":5835,"_stem":5836,"_extension":43},"/en-us/blog/authors/nick-veenhof",{"name":5829,"config":5830},"Nick Veenhof",{"headshot":5831,"ctfId":5832},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":689},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5838,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5839,"config":5843,"_id":5844,"_type":38,"title":5840,"_source":40,"_file":5845,"_stem":5846,"_extension":43},"/en-us/blog/authors/nico-meisenzahl",{"name":5840,"config":5841},"Nico Meisenzahl",{"headshot":7,"ctfId":5842},"nicomeisenzahl",{"template":689},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5848,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5849,"config":5853,"_id":5854,"_type":38,"title":5850,"_source":40,"_file":5855,"_stem":5856,"_extension":43},"/en-us/blog/authors/nicole-schwartz",{"name":5850,"config":5851},"Nicole Schwartz",{"headshot":7,"ctfId":5852},"nicoleschwartz",{"template":689},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5858,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5859,"config":5864,"_id":5865,"_type":38,"title":5860,"_source":40,"_file":5866,"_stem":5867,"_extension":43},"/en-us/blog/authors/nikhil-george",{"name":5860,"config":5861},"Nikhil George",{"headshot":5862,"ctfId":5863},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":689},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5869,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5870,"config":5875,"_id":5876,"_type":38,"title":5871,"_source":40,"_file":5877,"_stem":5878,"_extension":43},"/en-us/blog/authors/nima-badiey",{"name":5871,"config":5872},"Nima Badiey",{"headshot":5873,"ctfId":5874},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":689},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5880,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5881,"config":5886,"_id":5887,"_type":38,"title":5882,"_source":40,"_file":5888,"_stem":5889,"_extension":43},"/en-us/blog/authors/noah-ing",{"name":5882,"config":5883},"Noah Ing",{"headshot":5884,"ctfId":5885},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":689},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5891,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5892,"config":5896,"_id":5897,"_type":38,"title":5893,"_source":40,"_file":5898,"_stem":5899,"_extension":43},"/en-us/blog/authors/noah-manger",{"name":5893,"config":5894},"Noah Manger",{"headshot":720,"ctfId":5895},"Noah-Manger",{"template":689},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5901,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5902,"config":5906,"_id":5907,"_type":38,"title":5903,"_source":40,"_file":5908,"_stem":5909,"_extension":43},"/en-us/blog/authors/noah-zoschke",{"name":5903,"config":5904},"Noah Zoschke",{"headshot":720,"ctfId":5905},"Noah-Zoschke",{"template":689},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5911,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5912,"config":5916,"_id":5917,"_type":38,"title":5913,"_source":40,"_file":5918,"_stem":5919,"_extension":43},"/en-us/blog/authors/nolan-myers",{"name":5913,"config":5914},"Nolan Myers",{"headshot":720,"ctfId":5915},"Nolan-Myers",{"template":689},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5921,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5922,"config":5926,"_id":5927,"_type":38,"title":5923,"_source":40,"_file":5928,"_stem":5929,"_extension":43},"/en-us/blog/authors/nupur-sharma",{"name":5923,"config":5924},"Nupur Sharma",{"headshot":720,"ctfId":5925},"6p7RQDl0cDWnAxU8yu2vVK",{"template":689},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5931,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5932,"config":5936,"_id":5937,"_type":38,"title":5933,"_source":40,"_file":5938,"_stem":5939,"_extension":43},"/en-us/blog/authors/nuritzi-sanchez",{"name":5933,"config":5934},"Nuritzi Sanchez",{"headshot":7,"ctfId":5935},"nuritzi",{"template":689},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5941,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5942,"config":5947,"_id":5948,"_type":38,"title":5943,"_source":40,"_file":5949,"_stem":5950,"_extension":43},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5943,"config":5944},"Oleksandr Pysaryuk",{"headshot":5945,"ctfId":5946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":689},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":5952,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5953,"config":5958,"_id":5959,"_type":38,"title":5960,"_source":40,"_file":5961,"_stem":5962,"_extension":43},"/en-us/blog/authors/olena-horal-koretska",{"name":5954,"config":5955},"Olena Horal-Koretska",{"headshot":5956,"ctfId":5957},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":689},"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":5964,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5965,"config":5969,"_id":5971,"_type":38,"title":5966,"_source":40,"_file":5972,"_stem":5973,"_extension":43},"/en-us/blog/authors/olivier-campeau",{"name":5966,"config":5967},"Olivier Campeau",{"headshot":5968},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":689,"gitlabHandle":5970},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5975,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5976,"config":5981,"_id":5982,"_type":38,"title":5983,"_source":40,"_file":5984,"_stem":5985,"_extension":43},"/en-us/blog/authors/olivier-dupr",{"name":5977,"config":5978},"Olivier Dupré",{"headshot":5979,"ctfId":5980},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":689},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":5987,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5988,"config":5993,"_id":5994,"_type":38,"title":5989,"_source":40,"_file":5995,"_stem":5996,"_extension":43},"/en-us/blog/authors/omar-fernandez",{"name":5989,"config":5990},"Omar Fernandez",{"headshot":5991,"ctfId":5992},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":689},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":5998,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":5999,"config":6003,"_id":6004,"_type":38,"title":6000,"_source":40,"_file":6005,"_stem":6006,"_extension":43},"/en-us/blog/authors/opher-vishnia",{"name":6000,"config":6001},"Opher Vishnia",{"headshot":720,"ctfId":6002},"O0F3sw3av9pRAxeP9iR7N",{"template":689},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":6008,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6009,"config":6013,"_id":6014,"_type":38,"title":6010,"_source":40,"_file":6015,"_stem":6016,"_extension":43},"/en-us/blog/authors/orit-golowinski",{"name":6010,"config":6011},"Orit Golowinski",{"headshot":7,"ctfId":6012},"ogolowinski",{"template":689},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6018,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6019,"config":6024,"_id":6025,"_type":38,"title":6020,"_source":40,"_file":6026,"_stem":6027,"_extension":43},"/en-us/blog/authors/ottilia-westerlund",{"name":6020,"config":6021},"Ottilia Westerlund",{"headshot":6022,"ctfId":6023},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":689},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6029,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6030,"config":6034,"_id":6035,"_type":38,"title":6031,"_source":40,"_file":6036,"_stem":6037,"_extension":43},"/en-us/blog/authors/owen-williams",{"name":6031,"config":6032},"Owen Williams",{"headshot":720,"ctfId":6033},"Owen-Williams",{"template":689},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6039,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6040,"config":6044,"_id":6045,"_type":38,"title":6041,"_source":40,"_file":6046,"_stem":6047,"_extension":43},"/en-us/blog/authors/pablo-carranza",{"name":6041,"config":6042},"Pablo Carranza",{"headshot":720,"ctfId":6043},"Pablo-Carranza",{"template":689},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6049,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6050,"config":6054,"_id":6055,"_type":38,"title":6051,"_source":40,"_file":6056,"_stem":6057,"_extension":43},"/en-us/blog/authors/parker-ennis",{"name":6051,"config":6052},"Parker Ennis",{"headshot":7,"ctfId":6053},"parkerennis",{"template":689},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6059,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6060,"config":6064,"_id":6065,"_type":38,"title":6061,"_source":40,"_file":6066,"_stem":6067,"_extension":43},"/en-us/blog/authors/patricio-cano",{"name":6061,"config":6062},"Patricio Cano",{"headshot":720,"ctfId":6063},"Patricio-Cano",{"template":689},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6069,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6070,"config":6074,"_id":6075,"_type":38,"title":6071,"_source":40,"_file":6076,"_stem":6077,"_extension":43},"/en-us/blog/authors/patrick-deuley",{"name":6071,"config":6072},"Patrick Deuley",{"headshot":720,"ctfId":6073},"4YYemtKKpxKC4yukyFavai",{"template":689},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6079,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6080,"config":6084,"_id":6085,"_type":38,"title":6081,"_source":40,"_file":6086,"_stem":6087,"_extension":43},"/en-us/blog/authors/patrick-foster",{"name":6081,"config":6082},"Patrick Foster",{"headshot":720,"ctfId":6083},"Patrick-Foster",{"template":689},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6089,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6090,"config":6095,"_id":6096,"_type":38,"title":6091,"_source":40,"_file":6097,"_stem":6098,"_extension":43},"/en-us/blog/authors/patrick-steinhardt",{"name":6091,"config":6092},"Patrick Steinhardt",{"headshot":6093,"ctfId":6094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":689},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6100,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6101,"config":6105,"_id":6106,"_type":38,"title":6102,"_source":40,"_file":6107,"_stem":6108,"_extension":43},"/en-us/blog/authors/patty-cheung",{"name":6102,"config":6103},"Patty Cheung",{"headshot":720,"ctfId":6104},"pattycheung",{"template":689},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6110,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6111,"config":6115,"_id":6116,"_type":38,"title":6112,"_source":40,"_file":6117,"_stem":6118,"_extension":43},"/en-us/blog/authors/paul-badcock",{"name":6112,"config":6113},"Paul Badcock",{"headshot":720,"ctfId":6114},"TbNQIdiD4vlFB7XYXeArb",{"template":689},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6120,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6121,"config":6125,"_id":6126,"_type":38,"title":6127,"_source":40,"_file":6128,"_stem":6129,"_extension":43},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6122,"config":6123},"Paul Gascou-Vaillancourt",{"headshot":720,"ctfId":6124},"6Yg7HWPoy2E5vwudH0EZja",{"template":689},"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":6131,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6132,"config":6136,"_id":6137,"_type":38,"title":6133,"_source":40,"_file":6138,"_stem":6139,"_extension":43},"/en-us/blog/authors/paul-hibbitts",{"name":6133,"config":6134},"Paul Hibbitts",{"headshot":720,"ctfId":6135},"Paul-Hibbitts",{"template":689},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6141,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6142,"config":6146,"_id":6147,"_type":38,"title":6143,"_source":40,"_file":6148,"_stem":6149,"_extension":43},"/en-us/blog/authors/paul-machle",{"name":6143,"config":6144},"Paul Machle",{"headshot":720,"ctfId":6145},"Paul-Machle",{"template":689},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6151,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6152,"config":6156,"_id":6158,"_type":38,"title":6153,"_source":40,"_file":6159,"_stem":6160,"_extension":43},"/en-us/blog/authors/paul-meresanu",{"name":6153,"role":7,"config":6154},"Paul Meresanu",{"headshot":6155},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":689,"gitlabHandle":6157},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6162,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6163,"config":6168,"_id":6169,"_type":38,"title":6164,"_source":40,"_file":6170,"_stem":6171,"_extension":43},"/en-us/blog/authors/payton-burdette",{"name":6164,"config":6165},"Payton Burdette",{"headshot":6166,"ctfId":6167},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":689},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6173,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6174,"config":6178,"_id":6179,"_type":38,"title":6175,"_source":40,"_file":6180,"_stem":6181,"_extension":43},"/en-us/blog/authors/pedro-fortuna",{"name":6175,"config":6176},"Pedro Fortuna",{"headshot":720,"ctfId":6177},"7JwB4WZYF19OKwOo4yk5n4",{"template":689},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6183,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6184,"config":6189,"_id":6190,"_type":38,"title":6191,"_source":40,"_file":6192,"_stem":6193,"_extension":43},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6185,"config":6186},"Pedro Moreira da Silva",{"headshot":6187,"ctfId":6188},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":689},"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":6195,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6196,"config":6201,"_id":6202,"_type":38,"title":6197,"_source":40,"_file":6203,"_stem":6204,"_extension":43},"/en-us/blog/authors/phil-hughes",{"name":6197,"config":6198},"Phil Hughes",{"headshot":6199,"ctfId":6200},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":689},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6206,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6207,"config":6211,"_id":6212,"_type":38,"title":6208,"_source":40,"_file":6213,"_stem":6214,"_extension":43},"/en-us/blog/authors/philip-welz",{"name":6208,"config":6209},"Philip Welz",{"headshot":7,"ctfId":6210},"philxx",{"template":689},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6216,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6217,"config":6222,"_id":6223,"_type":38,"title":6224,"_source":40,"_file":6225,"_stem":6226,"_extension":43},"/en-us/blog/authors/philippe-lafoucrire",{"name":6218,"config":6219},"Philippe Lafoucrière",{"headshot":6220,"ctfId":6221},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":689},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6228,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6229,"config":6233,"_id":6234,"_type":38,"title":6235,"_source":40,"_file":6236,"_stem":6237,"_extension":43},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6230,"config":6231},"Pierre de La Morinerie",{"headshot":720,"ctfId":6232},"Pierre-de-La-Morinerie",{"template":689},"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":6239,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6240,"config":6244,"_id":6245,"_type":38,"title":6241,"_source":40,"_file":6246,"_stem":6247,"_extension":43},"/en-us/blog/authors/pierre-smeyers",{"name":6241,"config":6242},"Pierre Smeyers",{"headshot":7,"ctfId":6243},"pismy",{"template":689},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6249,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6250,"config":6255,"_id":6256,"_type":38,"title":6251,"_source":40,"_file":6257,"_stem":6258,"_extension":43},"/en-us/blog/authors/pini-wietchner",{"name":6251,"config":6252},"Pini Wietchner",{"headshot":6253,"ctfId":6254},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":689},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6260,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6261,"config":6265,"_id":6266,"_type":38,"title":6267,"_source":40,"_file":6268,"_stem":6269,"_extension":43},"/en-us/blog/authors/pj-metz",{"name":6262,"config":6263},"PJ Metz",{"headshot":720,"ctfId":6264},"PjMetz",{"template":689},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6271,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6272,"config":6275,"_id":6276,"_type":38,"title":6277,"_source":40,"_file":6278,"_stem":6279,"_extension":43},"/en-us/blog/authors/plapadoo",{"name":6273,"config":6274},"plapadoo",{"headshot":720,"ctfId":6273},{"template":689},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6281,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6282,"config":6286,"_id":6287,"_type":38,"title":6283,"_source":40,"_file":6288,"_stem":6289,"_extension":43},"/en-us/blog/authors/pranay-bakre",{"name":6283,"config":6284},"Pranay Bakre",{"headshot":7,"ctfId":6285},"Darren-Eastman",{"template":689},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6291,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6292,"config":6296,"_id":6297,"_type":38,"title":6293,"_source":40,"_file":6298,"_stem":6299,"_extension":43},"/en-us/blog/authors/priyanka-sharma",{"name":6293,"config":6294},"Priyanka Sharma",{"headshot":7,"ctfId":6295},"pritianka",{"template":689},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6301,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6302,"config":6307,"_id":6308,"_type":38,"title":6309,"_source":40,"_file":6310,"_stem":6311,"_extension":43},"/en-us/blog/authors/pter-bozs",{"name":6303,"config":6304},"Péter Bozsó",{"headshot":6305,"ctfId":6306},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":689},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6313,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6314,"config":6318,"_id":6319,"_type":38,"title":6315,"_source":40,"_file":6320,"_stem":6321,"_extension":43},"/en-us/blog/authors/quan-to",{"name":6315,"config":6316},"Quan To",{"headshot":720,"ctfId":6317},"5dswLnpCobgICjM0RpHMU2",{"template":689},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6323,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6324,"config":6329,"_id":6330,"_type":38,"title":6325,"_source":40,"_file":6331,"_stem":6332,"_extension":43},"/en-us/blog/authors/rachel-nienaber",{"name":6325,"config":6326},"Rachel Nienaber",{"headshot":6327,"ctfId":6328},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":689},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6334,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6335,"config":6339,"_id":6341,"_type":38,"title":6336,"_source":40,"_file":6342,"_stem":6343,"_extension":43},"/en-us/blog/authors/radovan-bacovic",{"name":6336,"config":6337},"Radovan Bacovic",{"headshot":6338},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":689,"gitlabHandle":6340},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6345,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6346,"config":6350,"_id":6351,"_type":38,"title":6352,"_source":40,"_file":6353,"_stem":6354,"_extension":43},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6347,"config":6348},"Rahul Bhargava, CTO, Evolphin",{"headshot":720,"ctfId":6349},"Rahul-Bhargava-CTO-Evolphin",{"template":689},"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":6356,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6357,"config":6362,"_id":6363,"_type":38,"title":6358,"_source":40,"_file":6364,"_stem":6365,"_extension":43},"/en-us/blog/authors/raimund-hook",{"name":6358,"config":6359},"Raimund Hook",{"headshot":6360,"ctfId":6361},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":689},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6367,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6368,"config":6372,"_id":6373,"_type":38,"title":6369,"_source":40,"_file":6374,"_stem":6375,"_extension":43},"/en-us/blog/authors/raquel-campuzano",{"name":6369,"config":6370},"Raquel Campuzano",{"headshot":720,"ctfId":6371},"Raquel-Campuzano",{"template":689},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6377,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6378,"config":6382,"_id":6383,"_type":38,"title":6379,"_source":40,"_file":6384,"_stem":6385,"_extension":43},"/en-us/blog/authors/ray-paik",{"name":6379,"config":6380},"Ray Paik",{"headshot":7,"ctfId":6381},"rpaik",{"template":689},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6387,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6388,"config":6393,"_id":6394,"_type":38,"title":6389,"_source":40,"_file":6395,"_stem":6396,"_extension":43},"/en-us/blog/authors/rayana-verissimo",{"name":6389,"config":6390},"Rayana Verissimo",{"headshot":6391,"ctfId":6392},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":689},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6398,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6399,"config":6403,"_id":6405,"_type":38,"title":6406,"_source":40,"_file":6407,"_stem":6408,"_extension":43},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6400,"config":6401},"Rebeca Fenoy-Anthony",{"headshot":6402},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":689,"gitlabHandle":6404},"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":6410,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6411,"config":6415,"_id":6416,"_type":38,"title":6412,"_source":40,"_file":6417,"_stem":6418,"_extension":43},"/en-us/blog/authors/rebecca-dodd",{"name":6412,"config":6413},"Rebecca Dodd",{"headshot":720,"ctfId":6414},"Rebecca-Dodd",{"template":689},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6420,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6421,"config":6425,"_id":6426,"_type":38,"title":6422,"_source":40,"_file":6427,"_stem":6428,"_extension":43},"/en-us/blog/authors/regis-freyd",{"name":6422,"config":6423},"Regis Freyd",{"headshot":720,"ctfId":6424},"Regis-Freyd",{"template":689},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6430,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6431,"config":6436,"_id":6437,"_type":38,"title":6432,"_source":40,"_file":6438,"_stem":6439,"_extension":43},"/en-us/blog/authors/regnard-raquedan",{"name":6432,"config":6433},"Regnard Raquedan",{"headshot":6434,"ctfId":6435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":689},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6441,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6442,"config":6446,"_id":6447,"_type":38,"title":6443,"_source":40,"_file":6448,"_stem":6449,"_extension":43},"/en-us/blog/authors/renato-stanic",{"name":6443,"config":6444},"Renato Stanic",{"headshot":7,"ctfId":6445},"rstanic12",{"template":689},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6451,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6452,"config":6457,"_id":6458,"_type":38,"title":6453,"_source":40,"_file":6459,"_stem":6460,"_extension":43},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6453,"config":6454},"Ricardo Amarilla Villalba",{"headshot":6455,"ctfId":6456},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":689},"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":6462,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6463,"config":6467,"_id":6468,"_type":38,"title":6464,"_source":40,"_file":6469,"_stem":6470,"_extension":43},"/en-us/blog/authors/riccardo-padovani",{"name":6464,"config":6465},"Riccardo Padovani",{"headshot":720,"ctfId":6466},"Riccardo-Padovani",{"template":689},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6472,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6473,"config":6478,"_id":6479,"_type":38,"title":6480,"_source":40,"_file":6481,"_stem":6482,"_extension":43},"/en-us/blog/authors/rmy-coutable",{"name":6474,"config":6475},"Rémy Coutable",{"headshot":6476,"ctfId":6477},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":689},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6484,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6485,"config":6490,"_id":6491,"_type":38,"title":6486,"_source":40,"_file":6492,"_stem":6493,"_extension":43},"/en-us/blog/authors/rob-jackson",{"name":6486,"config":6487},"Rob Jackson",{"headshot":6488,"ctfId":6489},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":689},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6495,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6496,"config":6500,"_id":6501,"_type":38,"title":6497,"_source":40,"_file":6502,"_stem":6503,"_extension":43},"/en-us/blog/authors/rob-ribeiro",{"name":6497,"config":6498},"Rob Ribeiro",{"headshot":720,"ctfId":6499},"Rob-Ribeiro",{"template":689},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6505,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6506,"config":6510,"_id":6511,"_type":38,"title":6507,"_source":40,"_file":6512,"_stem":6513,"_extension":43},"/en-us/blog/authors/robert-speicher",{"name":6507,"config":6508},"Robert Speicher",{"headshot":7,"ctfId":6509},"rspeicher",{"template":689},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6515,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6516,"config":6521,"_id":6522,"_type":38,"title":6517,"_source":40,"_file":6523,"_stem":6524,"_extension":43},"/en-us/blog/authors/robert-williams",{"name":6517,"config":6518},"Robert Williams",{"headshot":6519,"ctfId":6520},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":689},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6526,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6527,"config":6533,"_id":6534,"_type":38,"title":6528,"_source":40,"_file":6535,"_stem":6536,"_extension":43},"/en-us/blog/authors/robin-schulman",{"name":6528,"config":6529,"role":6532},"Robin Schulman",{"headshot":6530,"ctfId":6531},"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":689},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6538,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6539,"config":6543,"_id":6544,"_type":38,"title":6540,"_source":40,"_file":6545,"_stem":6546,"_extension":43},"/en-us/blog/authors/roger-woo",{"name":6540,"config":6541},"Roger Woo",{"headshot":720,"ctfId":6542},"rogerwoo",{"template":689},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6548,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6549,"config":6555,"_id":6556,"_type":38,"title":6557,"_source":40,"_file":6558,"_stem":6559,"_extension":43},"/en-us/blog/authors/rohit-shambhuni",{"role":6550,"name":6551,"config":6552},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6553,"ctfId":6554},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":689},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6561,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6562,"config":6566,"_id":6567,"_type":38,"title":6563,"_source":40,"_file":6568,"_stem":6569,"_extension":43},"/en-us/blog/authors/roman-kuba",{"name":6563,"config":6564},"Roman Kuba",{"headshot":7,"ctfId":6565},"rkuba",{"template":689},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6571,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6572,"config":6577,"_id":6578,"_type":38,"title":6579,"_source":40,"_file":6580,"_stem":6581,"_extension":43},"/en-us/blog/authors/romuald-atchad",{"name":6573,"config":6574},"Romuald Atchadé",{"headshot":6575,"ctfId":6576},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":689},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6583,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6584,"config":6588,"_id":6589,"_type":38,"title":6590,"_source":40,"_file":6591,"_stem":6592,"_extension":43},"/en-us/blog/authors/ronald-van-zon",{"name":6585,"config":6586},"Ronald van Zon",{"headshot":7,"ctfId":6587},"Eagllus",{"template":689},"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":6594,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6595,"config":6599,"_id":6600,"_type":38,"title":6596,"_source":40,"_file":6601,"_stem":6602,"_extension":43},"/en-us/blog/authors/ross-fuhrman",{"name":6596,"config":6597},"Ross Fuhrman",{"headshot":720,"ctfId":6598},"7dkuWBvIc0AQanUclt3pOk",{"template":689},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6604,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6605,"config":6609,"_id":6610,"_type":38,"title":6606,"_source":40,"_file":6611,"_stem":6612,"_extension":43},"/en-us/blog/authors/roy-taragan",{"name":6606,"config":6607},"Roy Taragan",{"headshot":720,"ctfId":6608},"3pnwP9gqELfda3DCOQJQCL",{"template":689},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6614,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6615,"config":6620,"_id":6621,"_type":38,"title":6616,"_source":40,"_file":6622,"_stem":6623,"_extension":43},"/en-us/blog/authors/ruby-nealon",{"name":6616,"config":6617},"Ruby Nealon",{"headshot":6618,"ctfId":6619},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":689},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6625,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6626,"config":6630,"_id":6631,"_type":38,"title":6627,"_source":40,"_file":6632,"_stem":6633,"_extension":43},"/en-us/blog/authors/rupert-douglas",{"name":6627,"config":6628},"Rupert Douglas",{"headshot":7,"ctfId":6629},"rdouglasgitlab",{"template":689},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6635,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6636,"config":6640,"_id":6641,"_type":38,"title":6642,"_source":40,"_file":6643,"_stem":6644,"_extension":43},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6637,"config":6638},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6639},"3PShSyZ6DJXnkDa5xrQs7V",{"template":689},"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":6646,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6647,"config":6652,"_id":6653,"_type":38,"title":6648,"_source":40,"_file":6654,"_stem":6655,"_extension":43},"/en-us/blog/authors/rutvik-shah",{"name":6648,"config":6649},"Rutvik Shah",{"headshot":6650,"ctfId":6651},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":689},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6657,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6658,"config":6663,"_id":6664,"_type":38,"title":6659,"_source":40,"_file":6665,"_stem":6666,"_extension":43},"/en-us/blog/authors/sacha-guyon",{"name":6659,"config":6660},"Sacha Guyon",{"headshot":6661,"ctfId":6662},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":689},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6668,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6669,"config":6674,"_id":6675,"_type":38,"title":6670,"_source":40,"_file":6676,"_stem":6677,"_extension":43},"/en-us/blog/authors/safwan-ahmed",{"name":6670,"config":6671},"Safwan Ahmed",{"headshot":6672,"ctfId":6673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":689},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6679,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6680,"config":6684,"_id":6686,"_type":38,"title":6681,"_source":40,"_file":6687,"_stem":6688,"_extension":43},"/en-us/blog/authors/salahddine-aberkan",{"name":6681,"config":6682},"Salahddine Aberkan",{"headshot":6683},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":689,"gitlabHandle":6685},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6690,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6691,"config":6696,"_id":6697,"_type":38,"title":6692,"_source":40,"_file":6698,"_stem":6699,"_extension":43},"/en-us/blog/authors/salman-ladha",{"name":6692,"config":6693},"Salman Ladha",{"headshot":6694,"ctfId":6695},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":689},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6701,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6702,"config":6707,"_id":6708,"_type":38,"title":6703,"_source":40,"_file":6709,"_stem":6710,"_extension":43},"/en-us/blog/authors/sam-beckham",{"name":6703,"config":6704},"Sam Beckham",{"headshot":6705,"ctfId":6706},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":689},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6712,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6713,"config":6718,"_id":6719,"_type":38,"title":6714,"_source":40,"_file":6720,"_stem":6721,"_extension":43},"/en-us/blog/authors/sam-kerr",{"name":6714,"config":6715},"Sam Kerr",{"headshot":6716,"ctfId":6717},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":689},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6723,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6724,"config":6729,"_id":6730,"_type":38,"title":6725,"_source":40,"_file":6731,"_stem":6732,"_extension":43},"/en-us/blog/authors/sam-morris",{"name":6725,"config":6726},"Sam Morris",{"headshot":6727,"ctfId":6728},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":689},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6734,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6735,"config":6740,"_id":6741,"_type":38,"title":6736,"_source":40,"_file":6742,"_stem":6743,"_extension":43},"/en-us/blog/authors/sam-white",{"name":6736,"config":6737},"Sam White",{"headshot":6738,"ctfId":6739},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":689},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6745,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6746,"config":6751,"_id":6752,"_type":38,"title":6747,"_source":40,"_file":6753,"_stem":6754,"_extension":43},"/en-us/blog/authors/sam-wiskow",{"name":6747,"config":6748},"Sam Wiskow",{"headshot":6749,"ctfId":6750},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":689},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6756,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6757,"config":6762,"_id":6763,"_type":38,"title":6758,"_source":40,"_file":6764,"_stem":6765,"_extension":43},"/en-us/blog/authors/samantha-lee",{"name":6758,"config":6759},"Samantha Lee",{"headshot":6760,"ctfId":6761},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":689},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6767,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6768,"config":6772,"_id":6773,"_type":38,"title":6774,"_source":40,"_file":6775,"_stem":6776,"_extension":43},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6769,"config":6770},"Sameer Farooqui, OctoML",{"headshot":720,"ctfId":6771},"Sameer-Farooqui-OctoML",{"template":689},"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":6778,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6779,"config":6784,"_id":6785,"_type":38,"title":6780,"_source":40,"_file":6786,"_stem":6787,"_extension":43},"/en-us/blog/authors/sameer-kamani",{"name":6780,"config":6781},"Sameer Kamani",{"headshot":6782,"ctfId":6783},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":689},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6789,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6790,"config":6795,"_id":6796,"_type":38,"title":6791,"_source":40,"_file":6797,"_stem":6798,"_extension":43},"/en-us/blog/authors/samer-akkoub",{"name":6791,"config":6792},"Samer Akkoub",{"headshot":6793,"ctfId":6794},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":689},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6800,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6801,"config":6805,"_id":6806,"_type":38,"title":6802,"_source":40,"_file":6807,"_stem":6808,"_extension":43},"/en-us/blog/authors/samuel-alfageme",{"name":6802,"config":6803},"Samuel Alfageme",{"headshot":720,"ctfId":6804},"Samuel-Alfageme",{"template":689},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6810,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6811,"config":6818,"_id":6819,"_type":38,"title":6813,"_source":40,"_file":6820,"_stem":6821,"_extension":43},"/en-us/blog/authors/sandra-gittlen",{"role":6812,"name":6813,"config":6814},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6815,"linkedin":6816,"ctfId":6817},"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":689},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6823,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6824,"config":6828,"_id":6829,"_type":38,"title":6825,"_source":40,"_file":6830,"_stem":6831,"_extension":43},"/en-us/blog/authors/sandra-salerno",{"name":6825,"config":6826},"Sandra Salerno",{"headshot":720,"ctfId":6827},"Sandra-Salerno",{"template":689},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6833,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6834,"config":6838,"_id":6839,"_type":38,"title":6840,"_source":40,"_file":6841,"_stem":6842,"_extension":43},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6835,"config":6836},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6837},"topodelapradera",{"template":689},"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":6844,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6845,"config":6849,"_id":6850,"_type":38,"title":6846,"_source":40,"_file":6851,"_stem":6852,"_extension":43},"/en-us/blog/authors/sara-kassabian",{"name":6846,"config":6847},"Sara Kassabian",{"headshot":7,"ctfId":6848},"skassabian",{"template":689},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6854,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6855,"config":6860,"_id":6861,"_type":38,"title":6856,"_source":40,"_file":6862,"_stem":6863,"_extension":43},"/en-us/blog/authors/sara-meadzinger",{"name":6856,"config":6857},"Sara Meadzinger",{"headshot":6858,"ctfId":6859},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":689},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6865,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6866,"config":6870,"_id":6871,"_type":38,"title":6867,"_source":40,"_file":6872,"_stem":6873,"_extension":43},"/en-us/blog/authors/sarah-daily",{"name":6867,"config":6868},"Sarah Daily",{"headshot":720,"ctfId":6869},"2YhqRPG08HF0FCF1l7oeZL",{"template":689},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6875,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6876,"config":6880,"_id":6881,"_type":38,"title":6877,"_source":40,"_file":6882,"_stem":6883,"_extension":43},"/en-us/blog/authors/sarah-german",{"name":6877,"config":6878},"Sarah German",{"headshot":6879,"ctfId":4536},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":689},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6885,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6886,"config":6891,"_id":6892,"_type":38,"title":6887,"_source":40,"_file":6893,"_stem":6894,"_extension":43},"/en-us/blog/authors/sarah-matthies",{"name":6887,"config":6888},"Sarah Matthies",{"headshot":6889,"ctfId":6890},"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":689},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6896,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6897,"config":6901,"_id":6902,"_type":38,"title":6903,"_source":40,"_file":6904,"_stem":6905,"_extension":43},"/en-us/blog/authors/sarah-odonnell",{"name":6898,"config":6899},"Sarah O’Donnell",{"headshot":7,"ctfId":6900},"sarahod",{"template":689},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6907,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6908,"config":6913,"_id":6914,"_type":38,"title":6909,"_source":40,"_file":6915,"_stem":6916,"_extension":43},"/en-us/blog/authors/sarah-waldner",{"name":6909,"config":6910},"Sarah Waldner",{"headshot":6911,"ctfId":6912},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":689},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6918,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6919,"config":6923,"_id":6924,"_type":38,"title":6920,"_source":40,"_file":6925,"_stem":6926,"_extension":43},"/en-us/blog/authors/sarrah-vesselov",{"name":6920,"config":6921},"Sarrah Vesselov",{"headshot":7,"ctfId":6922},"sarrahvesselov",{"template":689},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6928,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6929,"config":6933,"_id":6934,"_type":38,"title":6930,"_source":40,"_file":6935,"_stem":6936,"_extension":43},"/en-us/blog/authors/sarup-banskota",{"name":6930,"config":6931},"Sarup Banskota",{"headshot":720,"ctfId":6932},"3sY2Ef0sXxaJKCmArdSLsA",{"template":689},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6938,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6939,"config":6944,"_id":6945,"_type":38,"title":6940,"_source":40,"_file":6946,"_stem":6947,"_extension":43},"/en-us/blog/authors/sascha-eggenberger",{"name":6940,"config":6941},"Sascha Eggenberger",{"headshot":6942,"ctfId":6943},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":689},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":6949,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6950,"config":6954,"_id":6955,"_type":38,"title":6951,"_source":40,"_file":6956,"_stem":6957,"_extension":43},"/en-us/blog/authors/sasha-bannister",{"name":6951,"config":6952},"Sasha Bannister",{"headshot":720,"ctfId":6953},"Sasha-Bannister",{"template":689},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":6959,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6960,"config":6965,"_id":6966,"_type":38,"title":6961,"_source":40,"_file":6967,"_stem":6968,"_extension":43},"/en-us/blog/authors/sasha-gazlay",{"name":6961,"config":6962},"Sasha Gazlay",{"headshot":6963,"ctfId":6964},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":689},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":6970,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6971,"config":6976,"_id":6977,"_type":38,"title":6972,"_source":40,"_file":6978,"_stem":6979,"_extension":43},"/en-us/blog/authors/saumya-upadhyaya",{"name":6972,"config":6973},"Saumya Upadhyaya",{"headshot":6974,"ctfId":6975},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":689},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":6981,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6982,"config":6987,"_id":6988,"_type":38,"title":6989,"_source":40,"_file":6990,"_stem":6991,"_extension":43},"/en-us/blog/authors/scott-de-jonge",{"name":6983,"config":6984},"Scott de Jonge",{"headshot":6985,"ctfId":6986},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":689},"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":6993,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":6994,"config":6999,"_id":7000,"_type":38,"title":6995,"_source":40,"_file":7001,"_stem":7002,"_extension":43},"/en-us/blog/authors/scott-hampton",{"name":6995,"config":6996},"Scott Hampton",{"headshot":6997,"ctfId":6998},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":689},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":7004,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7005,"config":7009,"_id":7010,"_type":38,"title":7006,"_source":40,"_file":7011,"_stem":7012,"_extension":43},"/en-us/blog/authors/scott-williamson",{"name":7006,"config":7007},"Scott Williamson",{"headshot":7,"ctfId":7008},"sfwgitlab",{"template":689},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":7014,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7015,"config":7020,"_id":7021,"_type":38,"title":7016,"_source":40,"_file":7022,"_stem":7023,"_extension":43},"/en-us/blog/authors/sean-arnold",{"name":7016,"config":7017},"Sean Arnold",{"headshot":7018,"ctfId":7019},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":689},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7025,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7026,"config":7030,"_id":7031,"_type":38,"title":7032,"_source":40,"_file":7033,"_stem":7034,"_extension":43},"/en-us/blog/authors/sean-mcgivern",{"name":7027,"config":7028},"Sean McGivern",{"headshot":720,"ctfId":7029},"Sean-McGivern",{"template":689},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7036,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7037,"config":7041,"_id":7042,"_type":38,"title":7038,"_source":40,"_file":7043,"_stem":7044,"_extension":43},"/en-us/blog/authors/sean-packham",{"name":7038,"config":7039},"Sean Packham",{"headshot":720,"ctfId":7040},"Sean-Packham",{"template":689},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7046,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7047,"config":7051,"_id":7052,"_type":38,"title":7048,"_source":40,"_file":7053,"_stem":7054,"_extension":43},"/en-us/blog/authors/sebastian-latacz",{"name":7048,"config":7049},"Sebastian Latacz",{"headshot":720,"ctfId":7050},"4DoWSQV719HEWt2rbDIoQR",{"template":689},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7056,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7057,"config":7061,"_id":7062,"_type":38,"title":7058,"_source":40,"_file":7063,"_stem":7064,"_extension":43},"/en-us/blog/authors/sergey-nuzhdin",{"name":7058,"config":7059},"Sergey Nuzhdin",{"headshot":720,"ctfId":7060},"Sergey-Nuzhdin",{"template":689},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7066,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7067,"config":7071,"_id":7072,"_type":38,"title":7068,"_source":40,"_file":7073,"_stem":7074,"_extension":43},"/en-us/blog/authors/seth-berger",{"name":7068,"config":7069},"Seth Berger",{"headshot":7,"ctfId":7070},"sethgitlab",{"template":689},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7076,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7077,"config":7081,"_id":7082,"_type":38,"title":7078,"_source":40,"_file":7083,"_stem":7084,"_extension":43},"/en-us/blog/authors/shane-rice",{"name":7078,"config":7079},"Shane Rice",{"headshot":720,"ctfId":7080},"3uVL7xMsEf13JzpbXYTCbM",{"template":689},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7086,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7087,"config":7092,"_id":7093,"_type":38,"title":7088,"_source":40,"_file":7094,"_stem":7095,"_extension":43},"/en-us/blog/authors/sharon-gaudin",{"name":7088,"config":7089},"Sharon Gaudin",{"headshot":7090,"ctfId":7091},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":689},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7097,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7098,"config":7102,"_id":7103,"_type":38,"title":7099,"_source":40,"_file":7104,"_stem":7105,"_extension":43},"/en-us/blog/authors/shawn-winters",{"name":7099,"config":7100},"Shawn Winters",{"headshot":7,"ctfId":7101},"ShawnWinters",{"template":689},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7107,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7108,"config":7112,"_id":7113,"_type":38,"title":7114,"_source":40,"_file":7115,"_stem":7116,"_extension":43},"/en-us/blog/authors/sherida-mcmullan",{"name":7109,"config":7110},"Sherida McMullan",{"headshot":720,"ctfId":7111},"BpqiUFXm6aUxjXJdAeKuL",{"template":689},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7118,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7119,"config":7123,"_id":7124,"_type":38,"title":7120,"_source":40,"_file":7125,"_stem":7126,"_extension":43},"/en-us/blog/authors/shinya-maeda",{"name":7120,"config":7121},"Shinya Maeda",{"headshot":7,"ctfId":7122},"dosuken123",{"template":689},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7128,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7129,"config":7134,"_id":7135,"_type":38,"title":7130,"_source":40,"_file":7136,"_stem":7137,"_extension":43},"/en-us/blog/authors/shrishti-choudhary",{"name":7130,"config":7131},"Shrishti Choudhary",{"headshot":7132,"ctfId":7133},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":689},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7139,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7140,"config":7149,"_id":7150,"_type":38,"title":7142,"_source":40,"_file":7151,"_stem":7152,"_extension":43},"/en-us/blog/authors/sid-sijbrandij",{"role":7141,"name":7142,"bio":7143,"config":7144},"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":7145,"twitter":7146,"linkedin":7147,"ctfId":7148},"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":689},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7154,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7155,"config":7160,"_id":7161,"_type":38,"title":7156,"_source":40,"_file":7162,"_stem":7163,"_extension":43},"/en-us/blog/authors/siddharth-mathur",{"name":7156,"config":7157},"Siddharth Mathur",{"headshot":7158,"ctfId":7159},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":689},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7165,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7166,"config":7170,"_id":7171,"_type":38,"title":7167,"_source":40,"_file":7172,"_stem":7173,"_extension":43},"/en-us/blog/authors/simon-tarchichi",{"name":7167,"config":7168},"Simon Tarchichi",{"headshot":7,"ctfId":7169},"kartsims",{"template":689},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7175,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7176,"config":7181,"_id":7182,"_type":38,"title":7177,"_source":40,"_file":7183,"_stem":7184,"_extension":43},"/en-us/blog/authors/sophia-manicor",{"name":7177,"config":7178},"Sophia Manicor",{"headshot":7179,"ctfId":7180},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":689},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7186,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7187,"config":7192,"_id":7193,"_type":38,"title":7188,"_source":40,"_file":7194,"_stem":7195,"_extension":43},"/en-us/blog/authors/sri-rangan",{"name":7188,"config":7189},"Sri Rangan",{"headshot":7190,"ctfId":7191},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":689},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7197,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7198,"config":7203,"_id":7204,"_type":38,"title":7199,"_source":40,"_file":7205,"_stem":7206,"_extension":43},"/en-us/blog/authors/stacy-cline",{"name":7199,"config":7200},"Stacy Cline",{"headshot":7201,"ctfId":7202},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":689},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7208,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7209,"config":7214,"_id":7215,"_type":38,"title":7210,"_source":40,"_file":7216,"_stem":7217,"_extension":43},"/en-us/blog/authors/stan-hu",{"name":7210,"config":7211},"Stan Hu",{"headshot":7212,"ctfId":7213},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":689},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7219,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7220,"config":7224,"_id":7225,"_type":38,"title":7226,"_source":40,"_file":7227,"_stem":7228,"_extension":43},"/en-us/blog/authors/stephan-hochdrfer",{"name":7221,"config":7222},"Stephan Hochdörfer",{"headshot":720,"ctfId":7223},"Stephan-Hochdrfer",{"template":689},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7230,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7231,"config":7235,"_id":7236,"_type":38,"title":7232,"_source":40,"_file":7237,"_stem":7238,"_extension":43},"/en-us/blog/authors/stephanie-garza",{"name":7232,"config":7233},"Stephanie Garza",{"headshot":7,"ctfId":7234},"StephanieGarza",{"template":689},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7240,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7241,"config":7245,"_id":7246,"_type":38,"title":7247,"_source":40,"_file":7248,"_stem":7249,"_extension":43},"/en-us/blog/authors/stephen-mcguinness",{"name":7242,"config":7243},"Stephen McGuinness",{"headshot":7,"ctfId":7244},"smcguinness1",{"template":689},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7251,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7252,"config":7257,"_id":7258,"_type":38,"title":7253,"_source":40,"_file":7259,"_stem":7260,"_extension":43},"/en-us/blog/authors/stephen-walters",{"name":7253,"config":7254},"Stephen Walters",{"headshot":7255,"ctfId":7256},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":689},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7262,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7263,"config":7268,"_id":7269,"_type":38,"title":7264,"_source":40,"_file":7270,"_stem":7271,"_extension":43},"/en-us/blog/authors/steve-abrams",{"name":7264,"config":7265},"Steve Abrams",{"headshot":7266,"ctfId":7267},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":689},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7273,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7274,"config":7278,"_id":7279,"_type":38,"title":7275,"_source":40,"_file":7280,"_stem":7281,"_extension":43},"/en-us/blog/authors/steve-azzopardi",{"name":7275,"config":7276},"Steve Azzopardi",{"headshot":7,"ctfId":7277},"steveazz",{"template":689},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7283,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7284,"config":7289,"_id":7290,"_type":38,"title":7285,"_source":40,"_file":7291,"_stem":7292,"_extension":43},"/en-us/blog/authors/steve-grossman",{"name":7285,"config":7286},"Steve Grossman",{"headshot":7287,"ctfId":7288},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":689},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7294,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7295,"config":7299,"_id":7300,"_type":38,"title":7296,"_source":40,"_file":7301,"_stem":7302,"_extension":43},"/en-us/blog/authors/steve-ropa",{"name":7296,"config":7297},"Steve Ropa",{"headshot":720,"ctfId":7298},"Steve-Ropa",{"template":689},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7304,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7305,"config":7309,"_id":7310,"_type":38,"title":7306,"_source":40,"_file":7311,"_stem":7312,"_extension":43},"/en-us/blog/authors/steve-truong",{"name":7306,"config":7307},"Steve Truong",{"headshot":7,"ctfId":7308},"sttruong",{"template":689},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7314,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7315,"config":7319,"_id":7320,"_type":38,"title":7316,"_source":40,"_file":7321,"_stem":7322,"_extension":43},"/en-us/blog/authors/steven-zinck",{"name":7316,"config":7317},"Steven Zinck",{"headshot":720,"ctfId":7318},"49JllsB7PFUrjj2Wi4Wa2O",{"template":689},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7324,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7325,"config":7329,"_id":7330,"_type":38,"title":7326,"_source":40,"_file":7331,"_stem":7332,"_extension":43},"/en-us/blog/authors/sunil-kowlgi",{"name":7326,"config":7327},"Sunil Kowlgi",{"headshot":720,"ctfId":7328},"Sunil-Kowlgi",{"template":689},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7334,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7335,"config":7339,"_id":7340,"_type":38,"title":7336,"_source":40,"_file":7341,"_stem":7342,"_extension":43},"/en-us/blog/authors/suri-patel",{"name":7336,"config":7337},"Suri Patel",{"headshot":720,"ctfId":7338},"suripatel",{"template":689},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7344,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7345,"config":7350,"_id":7351,"_type":38,"title":7346,"_source":40,"_file":7352,"_stem":7353,"_extension":43},"/en-us/blog/authors/susan-tacker",{"name":7346,"config":7347},"Susan Tacker",{"headshot":7348,"ctfId":7349},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":689},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7355,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7356,"config":7362,"_id":7363,"_type":38,"title":7357,"_source":40,"_file":7364,"_stem":7365,"_extension":43},"/en-us/blog/authors/susie-bitters",{"name":7357,"config":7358},"Susie Bitters",{"headshot":7359,"linkedin":7360,"ctfId":7361},"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":689},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7367,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7368,"config":7372,"_id":7373,"_type":38,"title":7369,"_source":40,"_file":7374,"_stem":7375,"_extension":43},"/en-us/blog/authors/suzanne-selhorn",{"name":7369,"config":7370},"Suzanne Selhorn",{"headshot":7371,"ctfId":4536},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":689},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7377,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7378,"config":7383,"_id":7384,"_type":38,"title":7379,"_source":40,"_file":7385,"_stem":7386,"_extension":43},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7379,"config":7380},"Tanuja Jayarama Raju",{"headshot":7381,"ctfId":7382},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":689},"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":7388,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7389,"config":7394,"_id":7395,"_type":38,"title":7390,"_source":40,"_file":7396,"_stem":7397,"_extension":43},"/en-us/blog/authors/taurie-davis",{"name":7390,"config":7391},"Taurie Davis",{"headshot":7392,"ctfId":7393},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":689},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7399,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7400,"config":7405,"_id":7406,"_type":38,"title":7407,"_source":40,"_file":7408,"_stem":7409,"_extension":43},"/en-us/blog/authors/taylor-mccaslin",{"name":7401,"config":7402},"Taylor McCaslin",{"headshot":7403,"ctfId":7404},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":689},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7411,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7412,"config":7416,"_id":7417,"_type":38,"title":7413,"_source":40,"_file":7418,"_stem":7419,"_extension":43},"/en-us/blog/authors/taylor-murphy",{"name":7413,"config":7414},"Taylor Murphy",{"headshot":7,"ctfId":7415},"tayloramurphy",{"template":689},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7421,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7422,"config":7427,"_id":7428,"_type":38,"title":7423,"_source":40,"_file":7429,"_stem":7430,"_extension":43},"/en-us/blog/authors/ted-gieschen",{"name":7423,"config":7424},"Ted Gieschen",{"headshot":7425,"ctfId":7426},"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":689},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7432,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7433,"config":7437,"_id":7438,"_type":38,"title":7434,"_source":40,"_file":7439,"_stem":7440,"_extension":43},"/en-us/blog/authors/thao-yeager",{"name":7434,"config":7435},"Thao Yeager",{"headshot":7,"ctfId":7436},"thaoyeager",{"template":689},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7442,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7443,"config":7448,"_id":7449,"_type":38,"title":7450,"_source":40,"_file":7451,"_stem":7452,"_extension":43},"/en-us/blog/authors/thiago-figueir",{"name":7444,"config":7445},"Thiago Figueiró",{"headshot":7446,"ctfId":7447},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":689},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7454,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7455,"config":7460,"_id":7461,"_type":38,"title":7456,"_source":40,"_file":7462,"_stem":7463,"_extension":43},"/en-us/blog/authors/thong-kuah",{"name":7456,"config":7457},"Thong Kuah",{"headshot":7458,"ctfId":7459},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":689},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7465,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7466,"config":7470,"_id":7471,"_type":38,"title":7467,"_source":40,"_file":7472,"_stem":7473,"_extension":43},"/en-us/blog/authors/tim-davis",{"name":7467,"config":7468},"Tim Davis",{"headshot":720,"ctfId":7469},"6PksqjEtq1Y8goFUvAUcIn",{"template":689},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7475,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7476,"config":7480,"_id":7481,"_type":38,"title":7477,"_source":40,"_file":7482,"_stem":7483,"_extension":43},"/en-us/blog/authors/tim-lehnen",{"name":7477,"config":7478},"Tim Lehnen",{"headshot":7,"ctfId":7479},"hestenet",{"template":689},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7485,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7486,"config":7491,"_id":7492,"_type":38,"title":7487,"_source":40,"_file":7493,"_stem":7494,"_extension":43},"/en-us/blog/authors/tim-rizzi",{"name":7487,"config":7488},"Tim Rizzi",{"headshot":7489,"ctfId":7490},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":689},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7496,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7497,"config":7501,"_id":7503,"_type":38,"title":7498,"_source":40,"_file":7504,"_stem":7505,"_extension":43},"/en-us/blog/authors/tim-zallmann",{"name":7498,"config":7499},"Tim Zallmann",{"headshot":7500},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":689,"gitlabHandle":7502},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7507,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7508,"config":7512,"_id":7513,"_type":38,"title":7509,"_source":40,"_file":7514,"_stem":7515,"_extension":43},"/en-us/blog/authors/tina-sturgis",{"name":7509,"config":7510},"Tina Sturgis",{"headshot":7,"ctfId":7511},"TinaS",{"template":689},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7517,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7518,"config":7522,"_id":7523,"_type":38,"title":7524,"_source":40,"_file":7525,"_stem":7526,"_extension":43},"/en-us/blog/authors/tobias-gnther",{"name":7519,"config":7520},"Tobias Günther",{"headshot":720,"ctfId":7521},"Tobias-Gnther",{"template":689},"content:en-us:blog:authors:tobias-gnther.yml","Tobias Gnther","en-us/blog/authors/tobias-gnther.yml","en-us/blog/authors/tobias-gnther",{"_path":7528,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7529,"config":7533,"_id":7534,"_type":38,"title":7530,"_source":40,"_file":7535,"_stem":7536,"_extension":43},"/en-us/blog/authors/todd-barr",{"name":7530,"config":7531},"Todd Barr",{"headshot":7,"ctfId":7532},"twbarr",{"template":689},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7538,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7539,"config":7543,"_id":7544,"_type":38,"title":7540,"_source":40,"_file":7545,"_stem":7546,"_extension":43},"/en-us/blog/authors/tom-cooney",{"name":7540,"config":7541},"Tom Cooney",{"headshot":7,"ctfId":7542},"tomcooney",{"template":689},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7548,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7549,"config":7554,"_id":7555,"_type":38,"title":7550,"_source":40,"_file":7556,"_stem":7557,"_extension":43},"/en-us/blog/authors/tomas-vik",{"name":7550,"config":7551},"Tomas Vik",{"headshot":7552,"ctfId":7553},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681785/Blog/Author%20Headshots/viktomas-headshot.jpg","viktomas",{"template":689},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7559,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7560,"config":7565,"_id":7566,"_type":38,"title":7561,"_source":40,"_file":7567,"_stem":7568,"_extension":43},"/en-us/blog/authors/tomasz-maczukin",{"name":7561,"config":7562},"Tomasz Maczukin",{"headshot":7563,"ctfId":7564},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682116/Blog/Author%20Headshots/tmaczukin-headshot.jpg","tmaczukin",{"template":689},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7570,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7571,"config":7576,"_id":7577,"_type":38,"title":7572,"_source":40,"_file":7578,"_stem":7579,"_extension":43},"/en-us/blog/authors/toon-claes",{"name":7572,"config":7573},"Toon Claes",{"headshot":7574,"ctfId":7575},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663082/Blog/Author%20Headshots/toon_claes_headshot.png","toon",{"template":689},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7581,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7582,"config":7587,"_id":7588,"_type":38,"title":7583,"_source":40,"_file":7589,"_stem":7590,"_extension":43},"/en-us/blog/authors/torsten-linz",{"name":7583,"config":7584},"Torsten Linz",{"headshot":7585,"ctfId":7586},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658907/Blog/Author%20Headshots/tlinz-headshot.jpg","tlinz",{"template":689},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7592,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7593,"config":7597,"_id":7598,"_type":38,"title":7594,"_source":40,"_file":7599,"_stem":7600,"_extension":43},"/en-us/blog/authors/trevor-knudsen",{"name":7594,"config":7595},"Trevor Knudsen",{"headshot":7,"ctfId":7596},"Tknudsen",{"template":689},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7602,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7603,"config":7608,"_id":7609,"_type":38,"title":7604,"_source":40,"_file":7610,"_stem":7611,"_extension":43},"/en-us/blog/authors/tristan-read",{"name":7604,"config":7605},"Tristan Read",{"headshot":7606,"ctfId":7607},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679131/Blog/Author%20Headshots/tristan.png","tristanread",{"template":689},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7613,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7614,"config":7619,"_id":7620,"_type":38,"title":7615,"_source":40,"_file":7621,"_stem":7622,"_extension":43},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7615,"config":7616},"Tsukasa Komatsubara",{"headshot":7617,"ctfId":7618},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659784/Blog/Author%20Headshots/gitlab_tsukasa.jpg","31YQLiBRrJPn35BBhY69ly",{"template":689},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7624,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7625,"config":7629,"_id":7630,"_type":38,"title":7626,"_source":40,"_file":7631,"_stem":7632,"_extension":43},"/en-us/blog/authors/tsvi-zandany",{"name":7626,"config":7627},"Tsvi Zandany",{"headshot":720,"ctfId":7628},"Tsvi-Zandany",{"template":689},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7634,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7635,"config":7639,"_id":7640,"_type":38,"title":7636,"_source":40,"_file":7641,"_stem":7642,"_extension":43},"/en-us/blog/authors/tye-davis",{"name":7636,"config":7637},"Tye Davis",{"headshot":7,"ctfId":7638},"davistye",{"template":689},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7644,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7645,"config":7649,"_id":7650,"_type":38,"title":7646,"_source":40,"_file":7651,"_stem":7652,"_extension":43},"/en-us/blog/authors/tyler-williams",{"name":7646,"config":7647},"Tyler Williams",{"headshot":7,"ctfId":7648},"tywilliams",{"template":689},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7654,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7655,"config":7659,"_id":7660,"_type":38,"title":7661,"_source":40,"_file":7662,"_stem":7663,"_extension":43},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7656,"config":7657},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7658},"ulrica1",{"template":689},"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":7665,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7666,"config":7671,"_id":7672,"_type":38,"title":7667,"_source":40,"_file":7673,"_stem":7674,"_extension":43},"/en-us/blog/authors/valentine-mairet",{"name":7667,"config":7668},"Valentine Mairet",{"headshot":7669,"ctfId":7670},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665455/Blog/Author%20Headshots/valentine_mairet_headshot.png","1AQjHTpq6sBauRMdCibxQX",{"template":689},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7676,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7677,"config":7681,"_id":7682,"_type":38,"title":7678,"_source":40,"_file":7683,"_stem":7684,"_extension":43},"/en-us/blog/authors/valerie-silverthorne",{"name":7678,"config":7679},"Valerie Silverthorne",{"headshot":720,"ctfId":7680},"vsilverthorne",{"template":689},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7686,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7687,"config":7691,"_id":7692,"_type":38,"title":7688,"_source":40,"_file":7693,"_stem":7694,"_extension":43},"/en-us/blog/authors/vanessa-wegner",{"name":7688,"config":7689},"Vanessa Wegner",{"headshot":7,"ctfId":7690},"vwegner",{"template":689},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7696,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7697,"config":7702,"_id":7703,"_type":38,"title":7698,"_source":40,"_file":7704,"_stem":7705,"_extension":43},"/en-us/blog/authors/veethika-mishra",{"name":7698,"config":7699},"Veethika Mishra",{"headshot":7700,"ctfId":7701},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664676/Blog/Author%20Headshots/veethika-headshot.jpg","veethika",{"template":689},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7707,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7708,"config":7713,"_id":7714,"_type":38,"title":7709,"_source":40,"_file":7715,"_stem":7716,"_extension":43},"/en-us/blog/authors/vick-kelkar",{"name":7709,"config":7710},"Vick Kelkar",{"headshot":7711,"ctfId":7712},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668508/Blog/Author%20Headshots/vkelkar-headshot.jpg","vkelkar",{"template":689},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7718,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7719,"config":7723,"_id":7724,"_type":38,"title":7720,"_source":40,"_file":7725,"_stem":7726,"_extension":43},"/en-us/blog/authors/vicky-steeves",{"name":7720,"config":7721},"Vicky Steeves",{"headshot":7,"ctfId":7722},"vickysteeves",{"template":689},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7728,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7729,"config":7733,"_id":7734,"_type":38,"title":7730,"_source":40,"_file":7735,"_stem":7736,"_extension":43},"/en-us/blog/authors/victor-hernandez",{"name":7730,"config":7731},"Victor Hernandez",{"headshot":720,"ctfId":7732},"KVTkvySIqkAu34p2jsXZz",{"template":689},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7738,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7739,"config":7743,"_id":7744,"_type":38,"title":7740,"_source":40,"_file":7745,"_stem":7746,"_extension":43},"/en-us/blog/authors/victor-wu",{"name":7740,"config":7741},"Victor Wu",{"headshot":720,"ctfId":7742},"victorwu",{"template":689},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7748,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7749,"config":7754,"_id":7755,"_type":38,"title":7750,"_source":40,"_file":7756,"_stem":7757,"_extension":43},"/en-us/blog/authors/viktor-nagy",{"name":7750,"config":7751},"Viktor Nagy",{"headshot":7752,"ctfId":7753},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662918/Blog/Author%20Headshots/nagy-headshot.jpg","nagyvgitlab",{"template":689},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7759,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7760,"config":7764,"_id":7765,"_type":38,"title":7761,"_source":40,"_file":7766,"_stem":7767,"_extension":43},"/en-us/blog/authors/vincent-jong",{"name":7761,"config":7762},"Vincent Jong",{"headshot":720,"ctfId":7763},"Vincent-Jong",{"template":689},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7769,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7770,"config":7775,"_id":7776,"_type":38,"title":7771,"_source":40,"_file":7777,"_stem":7778,"_extension":43},"/en-us/blog/authors/vincy-wilson",{"name":7771,"config":7772},"Vincy Wilson",{"headshot":7773,"ctfId":7774},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669069/Blog/Author%20Headshots/vincy.jpg","1iyKndVlbE3dQnxOJoSY0q",{"template":689},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7780,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7781,"config":7786,"_id":7787,"_type":38,"title":7782,"_source":40,"_file":7788,"_stem":7789,"_extension":43},"/en-us/blog/authors/vishal-tak",{"name":7782,"config":7783},"Vishal Tak",{"headshot":7784,"ctfId":7785},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663854/Blog/Author%20Headshots/vishal_tak_headshot.png","6BalO1YQUIuDdhUP80bFra",{"template":689},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7791,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7792,"config":7797,"_id":7798,"_type":38,"title":7793,"_source":40,"_file":7799,"_stem":7800,"_extension":43},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7793,"config":7794},"Vitor Meireles De Sousa",{"headshot":7795,"ctfId":7796},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682001/Blog/Author%20Headshots/vdesousa-headshot.png","vdesousa",{"template":689},"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":7802,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7803,"config":7807,"_id":7808,"_type":38,"title":7804,"_source":40,"_file":7809,"_stem":7810,"_extension":43},"/en-us/blog/authors/vlad-budica",{"name":7804,"config":7805},"Vlad Budica",{"headshot":720,"ctfId":7806},"Vlad-Budica",{"template":689},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7812,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7813,"config":7817,"_id":7818,"_type":38,"title":7814,"_source":40,"_file":7819,"_stem":7820,"_extension":43},"/en-us/blog/authors/vlad-stoianovici",{"name":7814,"config":7815},"Vlad Stoianovici",{"headshot":7,"ctfId":7816},"vstoianovici",{"template":689},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7822,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7823,"config":7827,"_id":7828,"_type":38,"title":7824,"_source":40,"_file":7829,"_stem":7830,"_extension":43},"/en-us/blog/authors/wayne-haber",{"name":7824,"config":7825},"Wayne Haber",{"headshot":7,"ctfId":7826},"whaber",{"template":689},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7832,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7833,"config":7837,"_id":7838,"_type":38,"title":7834,"_source":40,"_file":7839,"_stem":7840,"_extension":43},"/en-us/blog/authors/will-chandler",{"name":7834,"config":7835},"Will Chandler",{"headshot":720,"ctfId":7836},"DKiIGSSRIyO6QdTQkRkjs",{"template":689},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7842,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7843,"config":7848,"_id":7849,"_type":38,"title":7844,"_source":40,"_file":7850,"_stem":7851,"_extension":43},"/en-us/blog/authors/will-leidheiser",{"name":7844,"config":7845},"Will Leidheiser",{"headshot":7846,"ctfId":7847},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679335/Blog/Author%20Headshots/wleidheiser-headshot.jpg","wleidheiser",{"template":689},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7853,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7854,"config":7859,"_id":7860,"_type":38,"title":7855,"_source":40,"_file":7861,"_stem":7862,"_extension":43},"/en-us/blog/authors/william-arias",{"name":7855,"config":7856},"William Arias",{"headshot":7857,"ctfId":7858},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667549/Blog/Author%20Headshots/warias-headshot.jpg","warias",{"template":689},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7864,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7865,"config":7869,"_id":7870,"_type":38,"title":7866,"_source":40,"_file":7871,"_stem":7872,"_extension":43},"/en-us/blog/authors/william-chia",{"name":7866,"config":7867},"William Chia",{"headshot":7,"ctfId":7868},"williamchia",{"template":689},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7874,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7875,"config":7879,"_id":7880,"_type":38,"title":7876,"_source":40,"_file":7881,"_stem":7882,"_extension":43},"/en-us/blog/authors/yannis-roussos",{"name":7876,"config":7877},"Yannis Roussos",{"headshot":7,"ctfId":7878},"iroussos",{"template":689},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7884,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7885,"config":7889,"_id":7890,"_type":38,"title":7886,"_source":40,"_file":7891,"_stem":7892,"_extension":43},"/en-us/blog/authors/yevgeny-pats",{"name":7886,"config":7887},"Yevgeny Pats",{"headshot":7,"ctfId":7888},"ypats",{"template":689},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7894,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7895,"config":7899,"_id":7900,"_type":38,"title":7896,"_source":40,"_file":7901,"_stem":7902,"_extension":43},"/en-us/blog/authors/yorick-peterse",{"name":7896,"config":7897},"Yorick Peterse",{"headshot":720,"ctfId":7898},"Yorick-Peterse",{"template":689},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7904,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7905,"config":7909,"_id":7910,"_type":38,"title":7911,"_source":40,"_file":7912,"_stem":7913,"_extension":43},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7906,"config":7907},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7908},"zjgitlab",{"template":689},"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":7915,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":7916,"config":7921,"_id":7922,"_type":38,"title":7917,"_source":40,"_file":7923,"_stem":7924,"_extension":43},"/en-us/blog/authors/zhaochen-li",{"name":7917,"config":7918},"Zhaochen Li",{"headshot":7919,"ctfId":7920},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664331/Blog/Author%20Headshots/Zhaochen_Li_headshot.png","D67XqgLJdlpOsrG3ivCGT",{"template":689},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7926,"_dir":46,"_draft":6,"_partial":6,"_locale":7,"header":7927,"eyebrow":7928,"blurb":7929,"button":7930,"secondaryButton":7934,"_id":7936,"_type":38,"title":7937,"_source":40,"_file":7938,"_stem":7939,"_extension":43},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":54,"config":7931},{"href":7932,"dataGaName":57,"dataGaLocation":7933},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":59,"config":7935},{"href":61,"dataGaName":62,"dataGaLocation":7933},"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":7941,"content":7942,"config":7945,"_id":37,"_type":38,"title":39,"_source":40,"_file":41,"_stem":42,"_extension":43},{"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":7943,"heroImage":11,"date":20,"body":21,"category":22,"tags":7944},[18,19],[24,25,26,27,28,29,30,31,32],{"slug":34,"featured":35,"template":36},1762754860766]