[{"data":1,"prerenderedAt":7943},["ShallowReactive",2],{"/ja-jp/blog/from-code-to-production-a-guide-to-continuous-deployment-with-gitlab":3,"navigation-ja-jp":39,"banner-ja-jp":453,"footer-ja-jp":466,"footer-source-/ja-jp/blog/from-code-to-production-a-guide-to-continuous-deployment-with-gitlab/":676,"blogAuthors-ja-jp":682,"next-steps-ja-jp":7928},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":29,"_id":32,"_type":33,"title":34,"_source":35,"_file":36,"_stem":37,"_extension":38},"/ja-jp/blog/from-code-to-production-a-guide-to-continuous-deployment-with-gitlab","blog",false,"",{"ogTitle":9,"schema":10,"ogImage":11,"ogDescription":12,"ogSiteName":13,"noIndex":6,"ogType":14,"ogUrl":15,"title":9,"canonicalUrls":15,"description":12},"コードから本番環境へ：GitLabを活用した継続的デプロイのガイド","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"コードから本番環境へ：GitLabを活用した継続的デプロイのガイド\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Benjamin Skierlak\"},{\"@type\":\"Person\",\"name\":\"James Wormwell\"}],\n        \"datePublished\": \"2025-01-28\",\n      }","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659478/Blog/Hero%20Images/REFERENCE_-_Use_this_page_as_a_reference_for_thumbnail_sizes.png","GitLabを活用して堅牢な継続的デプロイパイプラインを構築する方法をご紹介します。具体的な手順や例、ベストプラクティスを通して段階的にプロセスを理解できます。","https://about.gitlab.com","article","https://about.gitlab.com/blog/from-code-to-production-a-guide-to-continuous-deployment-with-gitlab",{"heroImage":11,"body":17,"authors":18,"updatedDate":21,"date":22,"title":9,"tags":23,"description":12,"category":27},"継続的デプロイは、チームがより迅速かつ高い信頼性で価値を生み出せる画期的な手法です。しかし、GitOpsやKubernetesを用いたコンテナオーケストレーション、動的環境などの高度なデプロイワークフローに取り組むのは、継続的デプロイの導入を始めたばかりのチームにとってはハードルが高いと感じられるかもしれません。\n\n\nGitLabでは、シームレスかつスケーラブルなデリバリーを実現することに注力しています。チームが基本に集中できるようにすることで、時間をかけてより複雑な戦略へと発展できる、強固な基盤を構築できます。このガイドでは、GitLabを活用した継続的デプロイの導入に必要な基本的なステップを紹介し、長期的な成功のための土台作りをサポートします。\n\n\n## まずはワークフローの計画から\n\n\n技術的な実装に入る前に、デプロイワークフローをしっかりと設計する時間を取りましょう。成功の鍵は、慎重な計画と体系的なアプローチにあります。\n\n\n### アーティファクト管理戦略\n\n\n継続的デプロイにおいて、アーティファクトとは、ビルドプロセスによって生成されるパッケージ化された成果物を指し、保存、バージョン管理、デプロイが必要です。アーティファクトには、次のようなものが含まれます。\n\n\n* アプリケーション用のコンテナイメージ\n\n* パッケージ\n\n* コンパイル済みのバイナリや実行ファイル\n\n* ライブラリ\n\n* 設定ファイル\n\n* ドキュメントパッケージ\n\n* その他のアーティファクト\n\n\n各アーティファクトは、デプロイプロセスにおいて特定の役割を果たします。たとえば、一般的なWebアプリケーションでは、次のようなアーティファクトが生成されることがあります。\n\n\n* バックエンドサービス用のコンテナイメージ\n\n* コンパイル済みフロントエンドアセットのZIPアーカイブ\n\n* データベース変更用のSQLファイル\n\n* 環境ごとの設定ファイル\n\n\nアーティファクトの適切な管理はデプロイを成功させる鍵となります。ここからは、アーティファクト管理のアプローチについて詳しく見ていきましょう。\n\n\n#### アーティファクトとリリースのバージョニング戦略\n\n\nクリーンで整理された構造を保つためのベストプラクティスとして、アーティファクトの明確なバージョニング戦略を確立することが重要です。リリース作成時のポイントは以下のとおりです。\n\n\n* リリースタグにセマンティックバージョニング（major.minor.patch）を使用する\n\n  * 例：安定版リリースが`myapp:1.2.3`の場合\n  * 破壊的な変更がある場合は、メジャーバージョン変更（2.0.0）\n  * 新機能を追加する場合は、マイナーバージョン変更（1.3.0）\n  * バグ修正を行う場合は、パッチバージョン変更（1.2.4）\n* 最新の安定版を示す「latest」タグを維持する\n\n  * 例：`myapp:latest`（自動デプロイ用）\n* コミットSHAを含めることで、正確なバージョン追跡を行う\n\n  * 例：`myapp:1.2.3-abc123f`（デバッグ用）\n* 開発環境向けにブランチベースのタグを使用する\n\n  * 例：`myapp:feature-user-auth`（新機能テスト用）\n\n#### ビルドアーティファクトの保持\n\n\n明確な保持ルールを実装しましょう。\n\n\n* 一時的なアーティファクトの明確な有効期限を設定する\n\n* 永続的に保持する必要があるアーティファクトを定義する\n\n* ストレージ管理のためのクリーンアップポリシーを設定する\n\n\n#### レジストリアクセスと認証\n\n\n適切なアクセス制御でアーティファクトのセキュリティを確保しましょう。\n\n\n* デベロッパーのアクセス用にパーソナルアクセストークンを実装する\n\n* パイプラインの認証にCI/CD変数を設定する\n\n* 適切なアクセススコープを設定する\n\n\n### 環境戦略\n\n\n環境設計はデプロイパイプライン全体の構成に影響を与えるため、早い段階で検討しましょう。\n\n\n* 開発、ステージング環境、本番環境の設定\n\n* 環境ごとの変数とシークレットの管理\n\n* アクセス制御と保護ルールの設定\n\n* デプロイの追跡とモニタリングのアプローチ\n\n\n### デプロイターゲット\n\n\nどこに、どのようにデプロイするのかを慎重に検討しましょう。これらの決定は重要であり、それぞれのメリットとデメリットを考慮する必要があります。\n\n\n* インフラ要件（仮想マシン、コンテナ、クラウドサービス）\n\n* ネットワークアクセスとセキュリティ設定\n\n* 認証メカニズム（SSH鍵、アクセストークン）\n\n* リソースの割り当てとスケーリングの考慮\n\n\nこれで戦略が定まり、基盤となる決定が完了したので、これらの計画を実際に動作するパイプラインに落とし込んでいきます。それでは、実際に機能する例を作ることで概念を深掘りしていきましょう。まずはシンプルなアプリケーションから始め、徐々にデプロイの機能を追加していきます。\n\n\n## CDパイプラインの実装\n\n\n### 具体的な手順\n\n\nWebアプリケーション向けの基本的な継続的デプロイ（CD）パイプラインの実装手順を順を追って説明します。例としてシンプルなHTMLアプリケーションを使用しますが、ここで紹介する原則はどのタイプのアプリケーションにも応用できます。今回は、アプリケーションをDockerイメージとしてパッケージ化し、シンプルな仮想マシン上にデプロイします。これにより、最小限の依存関係を持つ厳選されたイメージを活用し、環境依存の要件が意図せず混入するのを防ぐことができます。また、仮想マシン上で動作させることで、GitLabのネイティブなインテグレーション機能を活用しない設定となります。複雑で本格的な環境ではなく、理解しやすい簡易的な環境から始めてみましょう。\n\n\n#### 前提条件\n\n\nこの例では、クラウドプロバイダーの仮想マシン上で実行するアプリケーションをコンテナ化することを目指します。また、ローカル環境でもこのアプリケーションをテストします。以下の前提条件は、このシナリオにおいてのみ必要なものです。\n\n\n##### [仮想マシン（VM）](https://about.gitlab.com/ja-jp/blog/what-is-vm/)のセットアップ\n\n\n* お好みのクラウドプロバイダーで[VM](https://about.gitlab.com/ja-jp/blog/what-is-vm/)をプロビジョニングします（例：GCP、AWS、Azure）\n\n* ネットワークルールを設定し、ポート22、80、443へのアクセスを許可します\n\n* デプロイ用にマシンのパブリックIPアドレスを記録します\n\n\n##### SSH認証のセットアップ：\n\n\n* マシン用の公開鍵と秘密鍵のペアを生成します\n\n* GitLabで**設定 > CI/CD > 変数**を開きます\n\n* `GITLAB_KEY`という変数を作成します\n\n* タイプを「ファイル」に設定します（SSH認証に必須）\n\n* 秘密鍵を「値」フィールドに貼り付けます\n\n* 「ユーザー」変数を定義します（VMにログインしてスクリプトを実行するユーザー）\n\n\n##### デプロイ変数の設定\n\n\n* デプロイターゲット用の変数を作成します\n\n  * `STAGING_TARGET`：ステージング環境のサーバーIPまたはドメイン\n  * `PRODUCTION_TARGET`：本番環境のサーバーIPまたはドメイン\n\n##### ローカル開発環境のセットアップ\n\n\n* デプロイのテスト用に、ローカルマシンにDockerをインストールします\n\n\n##### GitLabコンテナレジストリへのアクセス\n\n\n* レジストリパスを確認します：\n\n  * **デプロイ > コンテナレジストリ**を開きます\n  * レジストリパスをコピーします（例：registry.gitlab.com/group/project）\n* 認証の設定：\n\n  * **設定 > アクセストークン**を開きます\n  * レジストリアクセス権を持つ新しいトークンを作成します\n  * トークンの有効期限を最大1年に設定します\n  * トークンを安全に保存します\n* ローカルレジストリのアクセス設定：\n\n\n```\n\ndocker login registry.gitlab.com\n\n\n# パーソナルアクセストークンを使用する場合のユーザー名はgitlab-ci-tokenです\n\n\n# Password:（ここにアクセストークンを入力）\n\n```\n\n\n#### 1. アプリケーションを作成する\n\n\n基本的なWebアプリケーションから始めましょう。今回の例では、シンプルなHTMLページを使用します。\n\n\n```\n\n\u003C!|||UNTRANSLATED_CONTENT_START|||-- index.html -->\n\n\n\u003Chtml>\n  \u003Chead>\n    \u003Cstyle>\n      body {\n        background-color: #171321; /* GitLab dark */\n      }\n    \u003C/style>\n  \u003C/head>\n  \u003Cbody>\n    \u003C!|||UNTRANSLATED_CONTENT_END|||-- ここにコンテンツを追加 -->\n  \u003C/body>\n\u003C/html>\n\n```\n\n\n#### 2. アプリケーションをコンテナ化する\n\n\nアプリケーションをパッケージ化するために、Dockerfileを作成します：\n\n\n```\n\nFROM nginx:1.26.2\n\n\nCOPY index.html /usr/share/nginx/html/index.html\n\n```\n\n\nこのDockerfileは\n\n\n* nginxをベースイメージとして使用し、Webコンテンツを配信できるようにします\n\n* 作成したindex.htmlをnginxのディレクトリ構造内の適切な場所にコピーします\n\n\n#### 3. CI/CDパイプラインを設定する\n\n\nGitLabのパイプラインステージを定義するために、`.gitlab-ci.yml`ファイル を作成します：\n\n\n```\n\nvariables:\n  TAG_LATEST: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:latest\n  TAG_COMMIT: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:$CI_COMMIT_SHA\n\nstages:\n  - publish\n  - deploy\n```\n\n\n解説：\n\n\n`TAG_LATEST`は、次の3つの要素で構成されています：\n\n\n* `$CI_REGISTRY_IMAGE`：GitLabのプロジェクトのコンテナレジストリのパス\n\n\n例：`registry.gitlab.com/your-group/your-project`\n\n\n* `$CI_COMMIT_REF_NAME`：ブランチ名またはタグ名\n\n\n例：ブランチの場合は`/main`、フィーチャーブランチの場合は`/feature-login`\n\n\n* `:latest`：固定のサフィックス\n\n\nこれにより、mainブランチの`TAG_LATEST`は次のようになります：`registry.gitlab.com/your-group/your-project/main:latest`\n\n\n`TAG_COMMIT`は`TAG_LATEST`とほぼ同じですが、`:latest`の代わりにコミット識別子の`$CI_COMMIT_SHA`を使います。例：`:abc123def456`\n\n\nしたがって、同じmainブランチでの`TAG_COMMIT`は次のようになります：`registry.gitlab.com/your-group/your-project/main:abc123def456`\n\n\n両方のタグを使用する理由は、`TAG_LATEST`が常に最新バージョンを取得しやすくするのに対し、`TAG_COMMIT`は必要に応じて特定のバージョンに戻れるようにするためです。\n\n\n#### 4. コンテナレジストリに公開する\n\n\nパイプラインに公開ジョブを追加します：\n\n\n```\n\npublish:\n  stage: publish\n  image: docker:latest\n  services:\n    - docker:dind\n  script:\n    - docker build -t $TAG_LATEST -t $TAG_COMMIT .\n    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY\n    - docker push $TAG_LATEST\n    - docker push $TAG_COMMIT\n```\n\n\nこのジョブは\n\n\n* Docker-in-Dockerを使用してイメージをビルドします\n\n* 2つのタグを付けたイメージを作成します\n\n* GitLabレジストリへの認証を行います\n\n* 両方のイメージをレジストリにプッシュします \n\n\nこれで、コンテナイメージが安全にレジストリに保存されました。次は、ターゲット環境へのデプロイを進めていきます。本番環境へ移行する前に、まずローカル環境でテストを行い、設定が正しく機能していることを確認しましょう。 \n\n\n#### 5. 環境へデプロイする\n\n\n本番環境にデプロイする前に、ローカル環境でテストできます。先ほどGitLabレジストリにイメージを公開したので、それをローカル環境でプルしてテストします。コンテナイメージのパスが分からない場合は、GitLabの\\*\\*デプロイ\n\n\n> コンテナレジストリ\\*\\*に移動し、該当のコンテナイメージの行末にあるアイコンをクリックすると、パスをコピーできます。\n\n\n```\n\ndocker login registry.gitlab.com \n\n\ndocker run -p 80:80 registry.gitlab.com/your-project-path/main:latest\n\n```\n\n\nこれにより、Webブラウザからlocalhostにアクセスし、ローカル環境でアプリケーションを確認できるようになります。\n\n\nそれでは、パイプラインにデプロイジョブを追加しましょう：\n\n\n```\n\ndeploy:\n  stage: deploy\n  image: alpine:latest\n  script:\n    - chmod 400 $GITLAB_KEY\n    - apk add openssh-client\n    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY\n    - ssh -i $GITLAB_KEY -o StrictHostKeyChecking=no $USER@$TARGET_SERVER \n      docker pull $TAG_COMMIT &&\n      docker rm -f myapp || true &&\n      docker run -d -p 80:80 --name myapp $TAG_COMMIT\n```\n\n\nこのジョブは\n\n\n* デプロイ先のサーバーへのSSHアクセスを確立します\n\n* 最新のコンテナイメージをプルします\n\n* 既存のコンテナを削除します\n\n* 新しいバージョンのコンテナをデプロイします\n\n\n#### 6. デプロイを追跡する\n\n\n環境設定を追加してデプロイの追跡を有効にします：\n\n\n```\n\ndeploy:\n  environment:\n    name: production\n    url: https://your-application-url.com \n```\n\n\nこれにより、GitLabの**オペレーション > 環境**セクションに環境オブジェクトが作成され、以下の情報が提供されます：\n\n\n* デプロイ履歴\n\n* 現在のデプロイ状況\n\n* アプリケーションへのクイックアクセス\n\n\n単一の環境向けのパイプラインは、最初のステップとしては有効ですが、ほとんどのチームでは適切なテストやステージングを行うために複数の環境を管理する必要があります。このより実践的なシナリオに対応するために、パイプラインを拡張していきましょう。\n\n\n#### 7. 複数環境をセットアップする\n\n\nより堅牢なパイプラインを構築するために、ステージング環境と本番環境のデプロイを設定します：\n\n\n```\n\nstages:\n  - publish\n  - staging\n  - release\n  - version\n  - production\n\nstaging:\n  stage: staging\n  rules:\n    - if: $CI_COMMIT_BRANCH == \"main\" && $CI_COMMIT_TAG == null\n  environment:\n    name: staging\n    url: https://staging.your-app.com\n  # デプロイスクリプトを記述\n\nproduction:\n  stage: production\n  rules:\n    - if: $CI_COMMIT_TAG\n  environment:\n    name: production\n    url: https://your-app.com\n  # デプロイスクリプトを記述\n```\n\n\nこの設定は\n\n\n* mainブランチからステージ環境へデプロイします\n\n* GitLabのタグを利用して本番環境へのデプロイをトリガーします\n\n* 環境ごとに分けてデプロイの状況を管理できるようにします\n\n\nこのステップと次のステップでは、GitLabの非常に便利な機能であるタグを活用しています。GitLabの**コード >\n\nタグ**セクションで手動でタグを作成すると、'$ CI_COMMMIT_TAG\n\n`変数が設定され、本番環境へのデプロイジョブが適切にトリガーされるようになります。\n\n\n#### 8. 自動リリースノートを作成する\n\n\nCI/CDパイプラインを通じてGitLabのリリース機能を使用します。まず、`.gitlab-ci.yml`のstagesを更新 します：\n\n\n```\n\nstages:\n\n\n\n- publish\n\n\n- staging\n\n\n- release # New stage for releases\n\n\n- version\n\n\n- production\n\n```\n\n\n次に、リリースジョブを追加します：\n\n\n```\n\nrelease_job:\n  stage: release\n  image: registry.gitlab.com/gitlab-org/release-cli:latest\n  rules:\n    - if: $CI_COMMIT_TAG                  # タグが作成された場合のみ実行する\n  script:\n    - echo \"Creating release for $CI_COMMIT_TAG\"\n  release:                                # リリース設定\n    name: 'Release $CI_COMMIT_TAG'\n    description: 'Release created from $CI_COMMIT_TAG'\n    tag_name: '$CI_COMMIT_TAG'           # タグを作成する\n    ref: '$CI_COMMIT_TAG'                # リリースのベースとなるタグ\n```\n\n\nコンテナイメージのリンクを追加することで、さらに内容を充実させることができます：\n\n\n```\n\nrelease:\n  name: 'Release $CI_COMMIT_TAG'\n  description: 'Release created from $CI_COMMIT_TAG'\n  tag_name: '$CI_COMMIT_TAG'\n  ref: '$CI_COMMIT_TAG'\n  assets:\n    links:\n      - name: 'Container Image'\n        url: '$CI_REGISTRY_IMAGE/main:$CI_COMMIT_TAG'\n        link_type: 'image'\n```\n\n\nコミットメッセージに基づいて自動リリースノートを生成する場合は次のようにします：\n\n\n```\n\nrelease:\n  name: 'Release $CI_COMMIT_TAG'\n  description: 'Release notes for version $CI_COMMIT_TAG'\n  tag_name: '$CI_COMMIT_TAG'\n  ref: '$CI_COMMIT_TAG'\n  auto_generate_release_notes: true    # Enables automatic notes\n```\n\n\n自動リリースノートを充実させるには\n\n\n* 規則的なコミットメッセージを使用する（例：feat:, fix:）\n\n* イシュー番号を含める（例：#123）\n\n* 件名と本文の間に空行を入れる\n\n\nデプロイ時の情報をリリースノートに記載したい場合は、以下のように設定できます：\n\n\n```\n\nrelease_job:\n  script:\n    - |\n      DEPLOY_TIME=$(date '+%Y-%m-%d %H:%M:%S')\n      CHANGES=$(git log $(git describe --tags --abbrev=0 @^)..@ --pretty=format:\"- %s\")\n      cat > release_notes.md \u003C\u003C EOF\n      ## デプロイ情報\n      - デプロイ日時: $DEPLOY_TIME\n      - 環境: 本番環境\n      - バージョン: $CI_COMMIT_TAG\n\n      ## 変更内容\n      $CHANGES\n\n      ## アーティファクト\n      - コンテナイメージ: \\`$CI_REGISTRY_IMAGE/main:$CI_COMMIT_TAG\\`\n      EOF\n  release:\n    description: './release_notes.md'\n```\n\n\nこの設定を行うと、Gitタグの作成時に自動でリリースが作成されるようになります。作成されたリリースは、GitLabの**デプロイ >\n\nリリース**で確認できます。\n\n\n#### 9. すべてをまとめる\n\n\n最終的なYAMLファイルは以下のようになります：\n\n\n```\n\nvariables:\n  TAG_LATEST: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:latest\n  TAG_COMMIT: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:$CI_COMMIT_SHA\n  STAGING_TARGET: $STAGING_TARGET    # CI/CD変数で設定\n  PRODUCTION_TARGET: $PRODUCTION_TARGET  # CI/CD変数で設定\n\nstages:\n  - publish\n  - staging\n  - release\n  - version\n  - production\n\n# ビルドとレジストリへの公開\n\n\npublish:\n  stage: publish\n  image: docker:latest\n  services:\n    - docker:dind\n  rules:\n    - if: $CI_COMMIT_BRANCH == \"main\" && $CI_COMMIT_TAG == null\n  script:\n    - docker build -t $TAG_LATEST -t $TAG_COMMIT .\n    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY\n    - docker push $TAG_LATEST\n    - docker push $TAG_COMMIT\n\n# stagingへデプロイ\n\n\nstaging:\n  stage: staging\n  image: alpine:latest\n  rules:\n    - if: $CI_COMMIT_BRANCH == \"main\" && $CI_COMMIT_TAG == null\n  script:\n    - chmod 400 $GITLAB_KEY\n    - apk add openssh-client\n    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY\n    - ssh -i $GITLAB_KEY -o StrictHostKeyChecking=no $USER@$STAGING_TARGET \"\n        docker pull $TAG_COMMIT &&\n        docker rm -f myapp || true &&\n        docker run -d -p 80:80 --name myapp $TAG_COMMIT\"\n  environment:\n    name: staging\n    url: http://$STAGING_TARGET\n\n# リリースの作成\n\n\nrelease_job:\n  stage: release\n  image: registry.gitlab.com/gitlab-org/release-cli:latest\n  rules:\n    - if: $CI_COMMIT_TAG\n  script:\n    - |\n      DEPLOY_TIME=$(date '+%Y-%m-%d %H:%M:%S')\n      CHANGES=$(git log $(git describe --tags --abbrev=0 @^)..@ --pretty=format:\"- %s\")\n      cat > release_notes.md \u003C\u003C EOF\n      ## デプロイ情報\n      - デプロイ日時：$DEPLOY_TIME\n      - 環境：本番環境\n      - バージョン：$CI_COMMIT_TAG\n\n      ## 変更内容\n      $CHANGES\n\n      ## アーティファクト\n      - コンテナイメージ：\\`$CI_REGISTRY_IMAGE/main:$CI_COMMIT_TAG\\`\n      EOF\n  release:\n    name: 'Release $CI_COMMIT_TAG'\n    description: './release_notes.md'\n    tag_name: '$CI_COMMIT_TAG'\n    ref: '$CI_COMMIT_TAG'\n    assets:\n      links:\n        - name: 'コンテナイメージ'\n          url: '$CI_REGISTRY_IMAGE/main:$CI_COMMIT_TAG'\n          link_type: 'image'\n\n# リリースタグ付きのバージョンを作成\n\n\nversion_job:\n  stage: version\n  image: docker:latest\n  services:\n    - docker:dind\n  rules:\n    - if: $CI_COMMIT_TAG\n  script:\n    - docker pull $TAG_COMMIT\n    - docker tag $TAG_COMMIT $CI_REGISTRY_IMAGE/main:$CI_COMMIT_TAG\n    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY\n    - docker push $CI_REGISTRY_IMAGE/main:$CI_COMMIT_TAG\n\n# 本番環境へデプロイ\n\n\nproduction:\n  stage: production\n  image: alpine:latest\n  rules:\n    - if: $CI_COMMIT_TAG\n  script:\n    - chmod 400 $GITLAB_KEY\n    - apk add openssh-client\n    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY\n    - ssh -i $GITLAB_KEY -o StrictHostKeyChecking=no $USER@$PRODUCTION_TARGET \"\n        docker pull $CI_REGISTRY_IMAGE/main:$CI_COMMIT_TAG &&\n        docker rm -f myapp || true &&\n        docker run -d -p 80:80 --name myapp $CI_REGISTRY_IMAGE/main:$CI_COMMIT_TAG\"\n  environment:\n    name: production\n    url: http://$PRODUCTION_TARGET\n```\n\n\n完成したパイプラインは\n\n\n* mainブランチでの変更をレジストリに公開します\n\n* mainブランチでの変更をstagingへデプロイします\n\n* タグが作成された際にリリースを作成します\n\n* リリースタグを付けたイメージを作成します\n\n* タグを基に本番環境へデプロイします\n\n\n主なメリット：\n\n\n* クリーンで再現性のあるローカル開発およびテスト環境が完成します\n\n* 構造化された本番環境へのデプロイフローにより、信頼性の高いデプロイを実現できます\n\n* 予期しない障害からの復旧パターンを確立します\n\n* より複雑なデプロイ戦略への拡張/導入に対応できます\n\n*\n\n\n### ベストプラクティス\n\n\n実装の際は、以下の原則を守りましょう：\n\n\n* 変数の使用方法からデプロイ手順まで、すべてを文書化する\n\n* GitLabのビルトイン機能（環境管理、リリース、レジストリ）を活用する\n\n* 適切なアクセス制御とセキュリティ対策を実施する\n\n* 強固なロールバック手順を計画し、障害に備える\n\n* パイプラインの設定はDRY（Don't Repeat Yourself：重複を避ける）を意識する\n\n\n## デプロイ戦略をスケールさせる\n\n\n次は何をすべきでしょうか？ここでは、継続的デプロイ戦略をさらに成熟させるために、検討すべきポイントを紹介します。\n\n\n### 高度なセキュリティ対策\n\n\n以下の方法でセキュリティを強化しましょう：\n\n\n* アクセスを制限した保護環境を設定する\n\n* 本番環境へのデプロイに承認を必須とする\n\n* セキュリティスキャンをパイプラインに統合する\n\n* 自動脆弱性評価を導入する\n\n* デプロイ関連の変更に対するブランチ保護ルールを適用する\n\n\n### 段階的なデリバリー戦略\n\n\n以下のような高度なデプロイ戦略を実装しましょう。\n\n\n* 機能フラグを活用して制御されたロールアウトを行う\n\n* リスクを軽減するためにカナリアデプロイを実施する\n\n* ブルーグリーンデプロイ戦略を導入する\n\n* A/Bテストを実施する\n\n* 動的環境管理を行う\n\n\n### モニタリングと最適化\n\n\n強固なモニタリング体制を確立しましょう：\n\n\n* デプロイ指標を追跡する\n\n* パフォーマンスモニタリングをセットアップする\n\n* デプロイアラートを設定する\n\n* デプロイのサービスレベル目標（SLO）を確立する\n\n* 定期的にパイプラインを最適化する\n\n\n## GitLabが選ばれる理由\n\n\nGitLabの継続的デプロイ機能は、現代のデプロイワークフローに最適です。GitLabは、コンテナレジストリ、環境管理、デプロイ追跡などの機能が1つのインターフェースに集約されており、コードから本番環境へのプロセスを効率化します。また、環境ごとの変数、デプロイ承認ゲート、ロールバック機能を備えており、本番環境へのデプロイ時に求められるセキュリティと管理を実現します。さらに、Review\n\nApps（レビューアプリ）や機能フラグを活用することで、段階的なデリバリー（プログレッシブデリバリー）戦略も可能です。GitLabのDevSecOpsプラットフォームの一部として、これらのCD機能はソフトウェアライフサイクル全体とシームレスに連携します。\n\n\n## 無料トライアルで今すぐスタート！\n\n\n継続的デプロイへの道のりは、革命ではなく進化のプロセスです。まずは基本を押さえ、しっかりとした基盤を築き、チームの成長に応じて徐々に高度な機能を取り入れていきましょう。GitLabは、最初の自動デプロイから、複数環境にまたがる複雑なデリバリーパイプラインまで、あらゆる段階でサポートするためのツールと柔軟性を提供します。 \n\n\n> [GitLab\n\n> Ultimateの無料トライアル](https://about.gitlab.com/ja-jp/free-trial/devsecops/)で、今日から継続的デプロイメントを始めましょう。\n\n\n\u003Cbr>\u003Cbr>\n\n\n\\*監修：川瀬 洋平 [@ykawase](https://gitlab.com/ykawase)\u003Cbr>\n\n\n（GitLab合同会社 カスタマーサクセス本部 シニアカスタマーサクセスマネージャー）*\n",[19,20],"Benjamin Skierlak","James Wormwell","2025-06-11","2025-01-28",[24,25,26,27,28],"CD","CI/CD","features","product","tutorial",{"slug":30,"featured":6,"template":31},"from-code-to-production-a-guide-to-continuous-deployment-with-gitlab","BlogPost","content:ja-jp:blog:from-code-to-production-a-guide-to-continuous-deployment-with-gitlab.yml","yaml","From Code To Production A Guide To Continuous Deployment With Gitlab","content","ja-jp/blog/from-code-to-production-a-guide-to-continuous-deployment-with-gitlab.yml","ja-jp/blog/from-code-to-production-a-guide-to-continuous-deployment-with-gitlab","yml",{"_path":40,"_dir":41,"_draft":6,"_partial":6,"_locale":7,"data":42,"_id":449,"_type":33,"title":450,"_source":35,"_file":451,"_stem":452,"_extension":38},"/shared/ja-jp/main-navigation","ja-jp",{"logo":43,"freeTrial":48,"sales":53,"login":58,"items":63,"search":393,"minimal":427,"duo":440},{"config":44},{"href":45,"dataGaName":46,"dataGaLocation":47},"/ja-jp/","gitlab logo","header",{"text":49,"config":50},"無料トライアルを開始",{"href":51,"dataGaName":52,"dataGaLocation":47},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":54,"config":55},"お問い合わせ",{"href":56,"dataGaName":57,"dataGaLocation":47},"/ja-jp/sales/","sales",{"text":59,"config":60},"サインイン",{"href":61,"dataGaName":62,"dataGaLocation":47},"https://gitlab.com/users/sign_in/","sign in",[64,108,205,210,315,375],{"text":65,"config":66,"cards":68,"footer":91},"プラットフォーム",{"dataNavLevelOne":67},"platform",[69,75,83],{"title":65,"description":70,"link":71},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":72,"config":73},"プラットフォームを詳しく見る",{"href":74,"dataGaName":67,"dataGaLocation":47},"/ja-jp/platform/",{"title":76,"description":77,"link":78},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":79,"config":80},"GitLab Duoのご紹介",{"href":81,"dataGaName":82,"dataGaLocation":47},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":84,"description":85,"link":86},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":87,"config":88},"詳細はこちら",{"href":89,"dataGaName":90,"dataGaLocation":47},"/ja-jp/why-gitlab/","why gitlab",{"title":92,"items":93},"利用を開始：",[94,99,104],{"text":95,"config":96},"プラットフォームエンジニアリング",{"href":97,"dataGaName":98,"dataGaLocation":47},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":100,"config":101},"開発者の経験",{"href":102,"dataGaName":103,"dataGaLocation":47},"/ja-jp/developer-experience/","Developer experience",{"text":105,"config":106},"MLOps",{"href":107,"dataGaName":105,"dataGaLocation":47},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":109,"left":110,"config":111,"link":113,"lists":117,"footer":187},"製品",true,{"dataNavLevelOne":112},"solutions",{"text":114,"config":115},"すべてのソリューションを表示",{"href":116,"dataGaName":112,"dataGaLocation":47},"/ja-jp/solutions/",[118,143,165],{"title":119,"description":120,"link":121,"items":126},"自動化","CI/CDと自動化でデプロイを加速",{"config":122},{"icon":123,"href":124,"dataGaName":125,"dataGaLocation":47},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[127,130,134,139],{"text":25,"config":128},{"href":129,"dataGaLocation":47,"dataGaName":25},"/ja-jp/solutions/continuous-integration/",{"text":131,"config":132},"AIアシストによる開発",{"href":81,"dataGaLocation":47,"dataGaName":133},"AI assisted development",{"text":135,"config":136},"ソースコード管理",{"href":137,"dataGaLocation":47,"dataGaName":138},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":140,"config":141},"自動化されたソフトウェアデリバリー",{"href":124,"dataGaLocation":47,"dataGaName":142},"Automated software delivery",{"title":144,"description":145,"link":146,"items":151},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":147},{"href":148,"dataGaName":149,"dataGaLocation":47,"icon":150},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[152,156,161],{"text":153,"config":154},"Application Security Testing",{"href":148,"dataGaName":155,"dataGaLocation":47},"Application security testing",{"text":157,"config":158},"ソフトウェアサプライチェーンの安全性",{"href":159,"dataGaLocation":47,"dataGaName":160},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":162,"config":163},"Software Compliance",{"href":164,"dataGaName":162,"dataGaLocation":47},"/ja-jp/solutions/software-compliance/",{"title":166,"link":167,"items":172},"測定",{"config":168},{"icon":169,"href":170,"dataGaName":171,"dataGaLocation":47},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[173,177,182],{"text":174,"config":175},"可視性と測定",{"href":170,"dataGaLocation":47,"dataGaName":176},"Visibility and Measurement",{"text":178,"config":179},"バリューストリーム管理",{"href":180,"dataGaLocation":47,"dataGaName":181},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":183,"config":184},"分析とインサイト",{"href":185,"dataGaLocation":47,"dataGaName":186},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":188,"items":189},"GitLabが活躍する場所",[190,195,200],{"text":191,"config":192},"Enterprise",{"href":193,"dataGaLocation":47,"dataGaName":194},"/ja-jp/enterprise/","enterprise",{"text":196,"config":197},"スモールビジネス",{"href":198,"dataGaLocation":47,"dataGaName":199},"/ja-jp/small-business/","small business",{"text":201,"config":202},"公共機関",{"href":203,"dataGaLocation":47,"dataGaName":204},"/ja-jp/solutions/public-sector/","public sector",{"text":206,"config":207},"価格",{"href":208,"dataGaName":209,"dataGaLocation":47,"dataNavLevelOne":209},"/ja-jp/pricing/","pricing",{"text":211,"config":212,"link":214,"lists":218,"feature":302},"関連リソース",{"dataNavLevelOne":213},"resources",{"text":215,"config":216},"すべてのリソースを表示",{"href":217,"dataGaName":213,"dataGaLocation":47},"/ja-jp/resources/",[219,252,274],{"title":220,"items":221},"はじめに",[222,227,232,237,242,247],{"text":223,"config":224},"インストール",{"href":225,"dataGaName":226,"dataGaLocation":47},"/ja-jp/install/","install",{"text":228,"config":229},"クイックスタートガイド",{"href":230,"dataGaName":231,"dataGaLocation":47},"/ja-jp/get-started/","quick setup checklists",{"text":233,"config":234},"学ぶ",{"href":235,"dataGaLocation":47,"dataGaName":236},"https://university.gitlab.com/","learn",{"text":238,"config":239},"製品ドキュメント",{"href":240,"dataGaName":241,"dataGaLocation":47},"https://docs.gitlab.com/","product documentation",{"text":243,"config":244},"ベストプラクティスビデオ",{"href":245,"dataGaName":246,"dataGaLocation":47},"/ja-jp/getting-started-videos/","best practice videos",{"text":248,"config":249},"インテグレーション",{"href":250,"dataGaName":251,"dataGaLocation":47},"/ja-jp/integrations/","integrations",{"title":253,"items":254},"検索する",[255,260,264,269],{"text":256,"config":257},"お客様成功事例",{"href":258,"dataGaName":259,"dataGaLocation":47},"/ja-jp/customers/","customer success stories",{"text":261,"config":262},"ブログ",{"href":263,"dataGaName":5,"dataGaLocation":47},"/ja-jp/blog/",{"text":265,"config":266},"リモート",{"href":267,"dataGaName":268,"dataGaLocation":47},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":270,"config":271},"TeamOps",{"href":272,"dataGaName":273,"dataGaLocation":47},"/ja-jp/teamops/","teamops",{"title":275,"items":276},"つなげる",[277,282,287,292,297],{"text":278,"config":279},"GitLabサービス",{"href":280,"dataGaName":281,"dataGaLocation":47},"/ja-jp/services/","services",{"text":283,"config":284},"コミュニティ",{"href":285,"dataGaName":286,"dataGaLocation":47},"/community/","community",{"text":288,"config":289},"フォーラム",{"href":290,"dataGaName":291,"dataGaLocation":47},"https://forum.gitlab.com/","forum",{"text":293,"config":294},"イベント",{"href":295,"dataGaName":296,"dataGaLocation":47},"/events/","events",{"text":298,"config":299},"パートナー",{"href":300,"dataGaName":301,"dataGaLocation":47},"/ja-jp/partners/","partners",{"backgroundColor":303,"textColor":304,"text":305,"image":306,"link":310},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":307,"config":308},"ソースプロモカード",{"src":309},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":311,"config":312},"最新情報を読む",{"href":313,"dataGaName":314,"dataGaLocation":47},"/ja-jp/the-source/","the source",{"text":316,"config":317,"lists":319},"会社情報",{"dataNavLevelOne":318},"company",[320],{"items":321},[322,327,333,335,340,345,350,355,360,365,370],{"text":323,"config":324},"GitLabについて",{"href":325,"dataGaName":326,"dataGaLocation":47},"/ja-jp/company/","about",{"text":328,"config":329,"footerGa":332},"採用情報",{"href":330,"dataGaName":331,"dataGaLocation":47},"/jobs/","jobs",{"dataGaName":331},{"text":293,"config":334},{"href":295,"dataGaName":296,"dataGaLocation":47},{"text":336,"config":337},"経営陣",{"href":338,"dataGaName":339,"dataGaLocation":47},"/company/team/e-group/","leadership",{"text":341,"config":342},"チーム",{"href":343,"dataGaName":344,"dataGaLocation":47},"/company/team/","team",{"text":346,"config":347},"ハンドブック",{"href":348,"dataGaName":349,"dataGaLocation":47},"https://handbook.gitlab.com/","handbook",{"text":351,"config":352},"投資家向け情報",{"href":353,"dataGaName":354,"dataGaLocation":47},"https://ir.gitlab.com/","investor relations",{"text":356,"config":357},"トラストセンター",{"href":358,"dataGaName":359,"dataGaLocation":47},"/ja-jp/security/","trust center",{"text":361,"config":362},"AI Transparency Center",{"href":363,"dataGaName":364,"dataGaLocation":47},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":366,"config":367},"ニュースレター",{"href":368,"dataGaName":369,"dataGaLocation":47},"/company/contact/","newsletter",{"text":371,"config":372},"プレス",{"href":373,"dataGaName":374,"dataGaLocation":47},"/press/","press",{"text":54,"config":376,"lists":377},{"dataNavLevelOne":318},[378],{"items":379},[380,383,388],{"text":54,"config":381},{"href":56,"dataGaName":382,"dataGaLocation":47},"talk to sales",{"text":384,"config":385},"サポートを受ける",{"href":386,"dataGaName":387,"dataGaLocation":47},"/support/","get help",{"text":389,"config":390},"カスタマーポータル",{"href":391,"dataGaName":392,"dataGaLocation":47},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":394,"login":395,"suggestions":402},"閉じる",{"text":396,"link":397},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":398,"config":399},"GitLab.com",{"href":61,"dataGaName":400,"dataGaLocation":401},"search login","search",{"text":403,"default":404},"提案",[405,408,413,415,419,423],{"text":76,"config":406},{"href":81,"dataGaName":407,"dataGaLocation":401},"GitLab Duo (AI)",{"text":409,"config":410},"コード提案（AI）",{"href":411,"dataGaName":412,"dataGaLocation":401},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":25,"config":414},{"href":129,"dataGaName":25,"dataGaLocation":401},{"text":416,"config":417},"GitLab on AWS",{"href":418,"dataGaName":416,"dataGaLocation":401},"/ja-jp/partners/technology-partners/aws/",{"text":420,"config":421},"GitLab on Google Cloud",{"href":422,"dataGaName":420,"dataGaLocation":401},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":424,"config":425},"GitLabを選ぶ理由",{"href":89,"dataGaName":426,"dataGaLocation":401},"Why GitLab?",{"freeTrial":428,"mobileIcon":432,"desktopIcon":437},{"text":49,"config":429},{"href":430,"dataGaName":52,"dataGaLocation":431},"https://gitlab.com/-/trials/new/","nav",{"altText":433,"config":434},"GitLabアイコン",{"src":435,"dataGaName":436,"dataGaLocation":431},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":433,"config":438},{"src":439,"dataGaName":436,"dataGaLocation":431},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":441,"mobileIcon":445,"desktopIcon":447},{"text":442,"config":443},"GitLab Duoの詳細について",{"href":81,"dataGaName":444,"dataGaLocation":431},"gitlab duo",{"altText":433,"config":446},{"src":435,"dataGaName":436,"dataGaLocation":431},{"altText":433,"config":448},{"src":439,"dataGaName":436,"dataGaLocation":431},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":454,"_dir":41,"_draft":6,"_partial":6,"_locale":7,"title":455,"button":456,"config":461,"_id":463,"_type":33,"_source":35,"_file":464,"_stem":465,"_extension":38},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":457,"config":458},"ベータ版を試す",{"href":459,"dataGaName":460,"dataGaLocation":47},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":462},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":467,"_dir":41,"_draft":6,"_partial":6,"_locale":7,"data":468,"_id":672,"_type":33,"title":673,"_source":35,"_file":674,"_stem":675,"_extension":38},"/shared/ja-jp/main-footer",{"text":469,"source":470,"edit":476,"contribute":481,"config":486,"items":491,"minimal":664},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":471,"config":472},"ページのソースを表示",{"href":473,"dataGaName":474,"dataGaLocation":475},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":477,"config":478},"このページを編集",{"href":479,"dataGaName":480,"dataGaLocation":475},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":482,"config":483},"ご協力をお願いします",{"href":484,"dataGaName":485,"dataGaLocation":475},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":487,"facebook":488,"youtube":489,"linkedin":490},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[492,515,569,601,636],{"title":65,"links":493,"subMenu":498},[494],{"text":495,"config":496},"DevSecOpsプラットフォーム",{"href":74,"dataGaName":497,"dataGaLocation":475},"devsecops platform",[499],{"title":206,"links":500},[501,505,510],{"text":502,"config":503},"プランの表示",{"href":208,"dataGaName":504,"dataGaLocation":475},"view plans",{"text":506,"config":507},"Premiumを選ぶ理由",{"href":508,"dataGaName":509,"dataGaLocation":475},"/ja-jp/pricing/premium/","why premium",{"text":511,"config":512},"Ultimateを選ぶ理由",{"href":513,"dataGaName":514,"dataGaLocation":475},"/ja-jp/pricing/ultimate/","why ultimate",{"title":516,"links":517},"ソリューション",[518,523,526,528,533,538,542,545,548,553,555,557,559,564],{"text":519,"config":520},"デジタルトランスフォーメーション",{"href":521,"dataGaName":522,"dataGaLocation":475},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":524,"config":525},"セキュリティとコンプライアンス",{"href":148,"dataGaName":155,"dataGaLocation":475},{"text":140,"config":527},{"href":124,"dataGaName":125,"dataGaLocation":475},{"text":529,"config":530},"アジャイル開発",{"href":531,"dataGaName":532,"dataGaLocation":475},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":534,"config":535},"クラウドトランスフォーメーション",{"href":536,"dataGaName":537,"dataGaLocation":475},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":539,"config":540},"SCM",{"href":137,"dataGaName":541,"dataGaLocation":475},"source code management",{"text":25,"config":543},{"href":129,"dataGaName":544,"dataGaLocation":475},"continuous integration & delivery",{"text":178,"config":546},{"href":180,"dataGaName":547,"dataGaLocation":475},"value stream management",{"text":549,"config":550},"GitOps",{"href":551,"dataGaName":552,"dataGaLocation":475},"/ja-jp/solutions/gitops/","gitops",{"text":191,"config":554},{"href":193,"dataGaName":194,"dataGaLocation":475},{"text":196,"config":556},{"href":198,"dataGaName":199,"dataGaLocation":475},{"text":201,"config":558},{"href":203,"dataGaName":204,"dataGaLocation":475},{"text":560,"config":561},"教育",{"href":562,"dataGaName":563,"dataGaLocation":475},"/ja-jp/solutions/education/","education",{"text":565,"config":566},"金融サービス",{"href":567,"dataGaName":568,"dataGaLocation":475},"/ja-jp/solutions/finance/","financial services",{"title":211,"links":570},[571,573,575,577,580,582,585,587,589,591,593,595,597,599],{"text":223,"config":572},{"href":225,"dataGaName":226,"dataGaLocation":475},{"text":228,"config":574},{"href":230,"dataGaName":231,"dataGaLocation":475},{"text":233,"config":576},{"href":235,"dataGaName":236,"dataGaLocation":475},{"text":238,"config":578},{"href":240,"dataGaName":579,"dataGaLocation":475},"docs",{"text":261,"config":581},{"href":263,"dataGaName":5},{"text":583,"config":584},"お客様の成功事例",{"href":258,"dataGaLocation":475},{"text":256,"config":586},{"href":258,"dataGaName":259,"dataGaLocation":475},{"text":265,"config":588},{"href":267,"dataGaName":268,"dataGaLocation":475},{"text":278,"config":590},{"href":280,"dataGaName":281,"dataGaLocation":475},{"text":270,"config":592},{"href":272,"dataGaName":273,"dataGaLocation":475},{"text":283,"config":594},{"href":285,"dataGaName":286,"dataGaLocation":475},{"text":288,"config":596},{"href":290,"dataGaName":291,"dataGaLocation":475},{"text":293,"config":598},{"href":295,"dataGaName":296,"dataGaLocation":475},{"text":298,"config":600},{"href":300,"dataGaName":301,"dataGaLocation":475},{"title":602,"links":603},"Company",[604,606,608,610,612,614,616,620,625,627,629,631],{"text":323,"config":605},{"href":325,"dataGaName":318,"dataGaLocation":475},{"text":328,"config":607},{"href":330,"dataGaName":331,"dataGaLocation":475},{"text":336,"config":609},{"href":338,"dataGaName":339,"dataGaLocation":475},{"text":341,"config":611},{"href":343,"dataGaName":344,"dataGaLocation":475},{"text":346,"config":613},{"href":348,"dataGaName":349,"dataGaLocation":475},{"text":351,"config":615},{"href":353,"dataGaName":354,"dataGaLocation":475},{"text":617,"config":618},"Sustainability",{"href":619,"dataGaName":617,"dataGaLocation":475},"/sustainability/",{"text":621,"config":622},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":623,"dataGaName":624,"dataGaLocation":475},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":356,"config":626},{"href":358,"dataGaName":359,"dataGaLocation":475},{"text":366,"config":628},{"href":368,"dataGaName":369,"dataGaLocation":475},{"text":371,"config":630},{"href":373,"dataGaName":374,"dataGaLocation":475},{"text":632,"config":633},"現代奴隷制の透明性に関する声明",{"href":634,"dataGaName":635,"dataGaLocation":475},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":54,"links":637},[638,640,642,644,649,654,659],{"text":54,"config":639},{"href":56,"dataGaName":57,"dataGaLocation":475},{"text":384,"config":641},{"href":386,"dataGaName":387,"dataGaLocation":475},{"text":389,"config":643},{"href":391,"dataGaName":392,"dataGaLocation":475},{"text":645,"config":646},"ステータス",{"href":647,"dataGaName":648,"dataGaLocation":475},"https://status.gitlab.com/","status",{"text":650,"config":651},"利用規約",{"href":652,"dataGaName":653,"dataGaLocation":475},"/terms/","terms of use",{"text":655,"config":656},"プライバシーに関する声明",{"href":657,"dataGaName":658,"dataGaLocation":475},"/ja-jp/privacy/","privacy statement",{"text":660,"config":661},"Cookieの設定",{"dataGaName":662,"dataGaLocation":475,"id":663,"isOneTrustButton":110},"cookie preferences","ot-sdk-btn",{"items":665},[666,668,670],{"text":650,"config":667},{"href":652,"dataGaName":653,"dataGaLocation":475},{"text":655,"config":669},{"href":657,"dataGaName":658,"dataGaLocation":475},{"text":660,"config":671},{"dataGaName":662,"dataGaLocation":475,"id":663,"isOneTrustButton":110},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":677,"content":678,"config":681,"_id":32,"_type":33,"title":34,"_source":35,"_file":36,"_stem":37,"_extension":38},{"ogTitle":9,"schema":10,"ogImage":11,"ogDescription":12,"ogSiteName":13,"noIndex":6,"ogType":14,"ogUrl":15,"title":9,"canonicalUrls":15,"description":12},{"heroImage":11,"body":17,"authors":679,"updatedDate":21,"date":22,"title":9,"tags":680,"description":12,"category":27},[19,20],[24,25,26,27,28],{"slug":30,"featured":6,"template":31},[683,696,707,718,729,740,751,762,772,782,793,804,814,825,836,846,856,866,876,887,897,907,917,928,939,949,960,971,981,992,1002,1013,1024,1035,1046,1056,1067,1078,1088,1099,1109,1120,1131,1141,1151,1162,1172,1182,1192,1203,1214,1225,1236,1246,1257,1268,1279,1290,1300,1311,1323,1334,1345,1355,1367,1378,1388,1398,1408,1419,1429,1440,1451,1461,1471,1481,1492,1502,1512,1522,1532,1543,1553,1564,1574,1585,1595,1605,1615,1626,1637,1648,1659,1670,1682,1692,1703,1713,1724,1735,1746,1757,1767,1778,1789,1800,1811,1821,1832,1843,1854,1864,1877,1887,1898,1909,1920,1930,1941,1952,1963,1973,1983,1993,2003,2014,2024,2034,2045,2055,2066,2076,2087,2098,2108,2119,2129,2139,2149,2160,2170,2180,2191,2202,2212,2223,2234,2245,2255,2268,2279,2289,2301,2313,2323,2333,2344,2354,2365,2377,2388,2399,2410,2422,2433,2443,2453,2464,2474,2484,2495,2506,2516,2527,2538,2548,2558,2569,2580,2590,2601,2611,2622,2633,2644,2654,2664,2675,2686,2696,2706,2717,2729,2739,2749,2759,2770,2781,2791,2801,2811,2821,2831,2842,2853,2863,2874,2884,2894,2904,2914,2924,2935,2945,2955,2966,2976,2986,2997,3008,3018,3030,3040,3050,3062,3073,3084,3094,3105,3116,3127,3137,3149,3160,3170,3181,3192,3203,3214,3225,3236,3247,3257,3268,3279,3290,3300,3310,3321,3331,3341,3352,3363,3376,3387,3398,3408,3419,3431,3442,3453,3464,3474,3484,3495,3505,3516,3527,3538,3548,3558,3568,3578,3589,3600,3611,3622,3634,3645,3657,3668,3678,3688,3700,3710,3721,3731,3742,3752,3762,3773,3785,3795,3805,3815,3826,3836,3846,3856,3866,3877,3888,3899,3911,3922,3932,3943,3954,3964,3974,3985,3996,4007,4018,4028,4039,4050,4061,4071,4082,4093,4103,4114,4125,4136,4146,4156,4167,4178,4188,4199,4210,4221,4231,4241,4252,4263,4274,4285,4296,4306,4317,4328,4338,4348,4358,4370,4382,4392,4404,4414,4425,4436,4447,4458,4471,4481,4492,4503,4513,4523,4533,4544,4554,4565,4576,4586,4597,4607,4618,4629,4640,4651,4662,4673,4683,4693,4704,4715,4725,4735,4745,4756,4767,4777,4787,4797,4807,4818,4828,4838,4849,4859,4870,4880,4891,4902,4912,4922,4933,4943,4953,4964,4975,4986,4997,5007,5019,5030,5041,5051,5061,5071,5082,5093,5104,5115,5125,5136,5147,5157,5168,5180,5190,5200,5210,5221,5232,5243,5253,5263,5274,5285,5295,5307,5317,5327,5338,5348,5359,5371,5382,5392,5403,5414,5424,5435,5446,5458,5468,5478,5489,5499,5510,5520,5531,5541,5551,5562,5572,5583,5593,5603,5614,5624,5635,5646,5656,5666,5677,5687,5697,5707,5717,5728,5739,5751,5762,5773,5785,5797,5808,5819,5829,5840,5850,5860,5871,5882,5893,5903,5913,5923,5933,5943,5954,5966,5977,5989,6000,6010,6020,6031,6041,6051,6061,6071,6081,6091,6102,6112,6122,6133,6143,6153,6164,6175,6185,6197,6208,6218,6230,6241,6251,6262,6273,6283,6293,6303,6315,6325,6336,6347,6358,6369,6379,6389,6400,6412,6422,6432,6443,6453,6464,6474,6486,6497,6507,6517,6528,6540,6550,6563,6573,6585,6596,6606,6616,6627,6637,6648,6659,6670,6681,6692,6703,6714,6725,6736,6747,6758,6769,6780,6791,6802,6812,6825,6835,6846,6856,6867,6877,6887,6898,6909,6920,6930,6940,6951,6961,6972,6983,6995,7006,7016,7027,7038,7048,7058,7068,7078,7088,7099,7109,7120,7130,7141,7156,7167,7177,7188,7199,7210,7221,7232,7242,7253,7264,7275,7285,7296,7306,7316,7326,7336,7346,7357,7369,7379,7390,7401,7413,7423,7434,7444,7456,7467,7477,7487,7498,7509,7519,7530,7540,7550,7561,7572,7583,7594,7604,7615,7626,7636,7646,7656,7667,7678,7688,7698,7709,7720,7730,7740,7750,7761,7771,7782,7793,7804,7814,7824,7834,7844,7855,7866,7876,7886,7896,7906,7917],{"_path":684,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":686,"config":691,"_id":693,"_type":33,"title":687,"_source":35,"_file":694,"_stem":695,"_extension":38},"/en-us/blog/authors/aakriti-gupta","authors",{"name":687,"config":688},"Aakriti Gupta",{"headshot":689,"ctfId":690},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":692},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":697,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":698,"config":702,"_id":703,"_type":33,"title":704,"_source":35,"_file":705,"_stem":706,"_extension":38},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":699,"config":700},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":701},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":692},"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":708,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":709,"config":714,"_id":715,"_type":33,"title":710,"_source":35,"_file":716,"_stem":717,"_extension":38},"/en-us/blog/authors/aathira-nair",{"name":710,"config":711},"Aathira Nair",{"headshot":712,"ctfId":713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":692},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":719,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":720,"config":725,"_id":726,"_type":33,"title":721,"_source":35,"_file":727,"_stem":728,"_extension":38},"/en-us/blog/authors/abdulkader-benchi",{"name":721,"config":722},"Abdulkader Benchi",{"headshot":723,"ctfId":724},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":692},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":730,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":731,"config":736,"_id":737,"_type":33,"title":732,"_source":35,"_file":738,"_stem":739,"_extension":38},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":732,"config":733},"Abubakar Siddiq Ango",{"headshot":734,"ctfId":735},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":692},"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":741,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":742,"config":747,"_id":748,"_type":33,"title":743,"_source":35,"_file":749,"_stem":750,"_extension":38},"/en-us/blog/authors/achilleas-pipinellis",{"name":743,"config":744},"Achilleas Pipinellis",{"headshot":745,"ctfId":746},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":692},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":752,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":753,"config":757,"_id":758,"_type":33,"title":759,"_source":35,"_file":760,"_stem":761,"_extension":38},"/en-us/blog/authors/adfinis-sygroup",{"name":754,"config":755},"Adfinis SyGroup",{"headshot":723,"ctfId":756},"Adfinis-SyGroup",{"template":692},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":763,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":764,"config":768,"_id":769,"_type":33,"title":765,"_source":35,"_file":770,"_stem":771,"_extension":38},"/en-us/blog/authors/ahmet-kizilay",{"name":765,"config":766},"Ahmet Kizilay",{"headshot":723,"ctfId":767},"Ahmet-Kizilay",{"template":692},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":773,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":774,"config":778,"_id":779,"_type":33,"title":775,"_source":35,"_file":780,"_stem":781,"_extension":38},"/en-us/blog/authors/akashdeep-dhar",{"name":775,"config":776},"Akashdeep Dhar",{"headshot":7,"ctfId":777},"t0xic0der",{"template":692},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":783,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":784,"config":789,"_id":790,"_type":33,"title":785,"_source":35,"_file":791,"_stem":792,"_extension":38},"/en-us/blog/authors/alana-bellucci",{"name":785,"config":786},"Alana Bellucci",{"headshot":787,"ctfId":788},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":692},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":794,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":795,"config":800,"_id":801,"_type":33,"title":796,"_source":35,"_file":802,"_stem":803,"_extension":38},"/en-us/blog/authors/alex-fracazo",{"name":796,"config":797},"Alex Fracazo",{"headshot":798,"ctfId":799},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":692},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":805,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":806,"config":810,"_id":811,"_type":33,"title":807,"_source":35,"_file":812,"_stem":813,"_extension":38},"/en-us/blog/authors/alex-groleau",{"name":807,"config":808},"Alex Groleau",{"headshot":723,"ctfId":809},"3VVHytQSHu9ehZgsUEJ3qq",{"template":692},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":815,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":816,"config":821,"_id":822,"_type":33,"title":817,"_source":35,"_file":823,"_stem":824,"_extension":38},"/en-us/blog/authors/alex-mark",{"name":817,"config":818},"Alex Mark",{"headshot":819,"ctfId":820},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":692},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":826,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":827,"config":832,"_id":833,"_type":33,"title":828,"_source":35,"_file":834,"_stem":835,"_extension":38},"/en-us/blog/authors/alex-martin",{"name":828,"config":829},"Alex Martin",{"headshot":830,"ctfId":831},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":692},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":837,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":838,"config":842,"_id":843,"_type":33,"title":839,"_source":35,"_file":844,"_stem":845,"_extension":38},"/en-us/blog/authors/alexander-dietrich",{"name":839,"config":840},"Alexander Dietrich",{"headshot":723,"ctfId":841},"2CzeEOPVjjGKpdblIm0JfO",{"template":692},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":847,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":848,"config":852,"_id":853,"_type":33,"title":849,"_source":35,"_file":854,"_stem":855,"_extension":38},"/en-us/blog/authors/alexander-malaev",{"name":849,"config":850},"Alexander Malaev",{"headshot":723,"ctfId":851},"Alexander-Malaev",{"template":692},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":857,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":858,"config":862,"_id":863,"_type":33,"title":859,"_source":35,"_file":864,"_stem":865,"_extension":38},"/en-us/blog/authors/alexander-pereverzevs",{"name":859,"config":860},"Alexander Pereverzevs",{"headshot":7,"ctfId":861},"lokalise",{"template":692},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":867,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":868,"config":872,"_id":873,"_type":33,"title":869,"_source":35,"_file":874,"_stem":875,"_extension":38},"/en-us/blog/authors/alexis-ginsberg",{"name":869,"config":870},"Alexis Ginsberg",{"headshot":723,"ctfId":871},"lmDIchpcDx48jKuke2B4l",{"template":692},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":877,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":878,"config":883,"_id":884,"_type":33,"title":879,"_source":35,"_file":885,"_stem":886,"_extension":38},"/en-us/blog/authors/allie-holland",{"name":879,"config":880},"Allie Holland",{"headshot":881,"ctfId":882},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":692},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":888,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":889,"config":893,"_id":894,"_type":33,"title":890,"_source":35,"_file":895,"_stem":896,"_extension":38},"/en-us/blog/authors/allison-whilden",{"name":890,"config":891},"Allison Whilden",{"headshot":723,"ctfId":892},"Allison-Whilden",{"template":692},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":898,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":899,"config":903,"_id":904,"_type":33,"title":900,"_source":35,"_file":905,"_stem":906,"_extension":38},"/en-us/blog/authors/alyssa-rock",{"name":900,"config":901},"Alyssa Rock",{"headshot":723,"ctfId":902},"4T2hddEfeK0Kp1zF8Ncvej",{"template":692},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":908,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":909,"config":913,"_id":914,"_type":33,"title":910,"_source":35,"_file":915,"_stem":916,"_extension":38},"/en-us/blog/authors/amanda-folson",{"name":910,"config":911},"Amanda Folson",{"headshot":723,"ctfId":912},"Amanda-Folson",{"template":692},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":918,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":919,"config":924,"_id":925,"_type":33,"title":920,"_source":35,"_file":926,"_stem":927,"_extension":38},"/en-us/blog/authors/amanda-rueda",{"name":920,"config":921},"Amanda Rueda",{"headshot":922,"ctfId":923},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":692},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":929,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":930,"config":935,"_id":936,"_type":33,"title":931,"_source":35,"_file":937,"_stem":938,"_extension":38},"/en-us/blog/authors/amar-patel",{"name":931,"config":932},"Amar Patel",{"headshot":933,"ctfId":934},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":692},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":940,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":941,"config":945,"_id":946,"_type":33,"title":942,"_source":35,"_file":947,"_stem":948,"_extension":38},"/en-us/blog/authors/amara-nwaigwe",{"name":942,"config":943},"Amara Nwaigwe",{"headshot":723,"ctfId":944},"Amara-Nwaigwe",{"template":692},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":950,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":951,"config":956,"_id":957,"_type":33,"title":952,"_source":35,"_file":958,"_stem":959,"_extension":38},"/en-us/blog/authors/amelia-bauerly",{"name":952,"config":953},"Amelia Bauerly",{"headshot":954,"ctfId":955},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":692},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":961,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":962,"config":967,"_id":968,"_type":33,"title":963,"_source":35,"_file":969,"_stem":970,"_extension":38},"/en-us/blog/authors/ameya-darshan",{"name":963,"config":964},"Ameya Darshan",{"headshot":965,"ctfId":966},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":692},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":972,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":973,"config":977,"_id":978,"_type":33,"title":974,"_source":35,"_file":979,"_stem":980,"_extension":38},"/en-us/blog/authors/andrea-borga",{"name":974,"config":975},"Andrea Borga",{"headshot":723,"ctfId":976},"6dPpfov6kpNcMdmyHyhKcN",{"template":692},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":982,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":983,"config":988,"_id":989,"_type":33,"title":984,"_source":35,"_file":990,"_stem":991,"_extension":38},"/en-us/blog/authors/andreas-brandl",{"name":984,"config":985},"Andreas Brandl",{"headshot":986,"ctfId":987},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":692},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":993,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":994,"config":998,"_id":999,"_type":33,"title":995,"_source":35,"_file":1000,"_stem":1001,"_extension":38},"/en-us/blog/authors/andrew-chilton",{"name":995,"config":996},"Andrew Chilton",{"headshot":7,"ctfId":997},"chilts",{"template":692},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":1003,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1004,"config":1009,"_id":1010,"_type":33,"title":1005,"_source":35,"_file":1011,"_stem":1012,"_extension":38},"/en-us/blog/authors/andrew-fontaine",{"name":1005,"config":1006},"Andrew Fontaine",{"headshot":1007,"ctfId":1008},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":692},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1014,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1015,"config":1020,"_id":1021,"_type":33,"title":1016,"_source":35,"_file":1022,"_stem":1023,"_extension":38},"/en-us/blog/authors/andrew-kelly",{"name":1016,"config":1017},"Andrew Kelly",{"headshot":1018,"ctfId":1019},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":692},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1025,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1026,"config":1031,"_id":1032,"_type":33,"title":1027,"_source":35,"_file":1033,"_stem":1034,"_extension":38},"/en-us/blog/authors/andrew-newdigate",{"name":1027,"config":1028},"Andrew Newdigate",{"headshot":1029,"ctfId":1030},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":692},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1036,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1037,"config":1042,"_id":1043,"_type":33,"title":1038,"_source":35,"_file":1044,"_stem":1045,"_extension":38},"/en-us/blog/authors/andrew-patterson",{"name":1038,"config":1039},"Andrew Patterson",{"headshot":1040,"ctfId":1041},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":692},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1047,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1048,"config":1052,"_id":1053,"_type":33,"title":1049,"_source":35,"_file":1054,"_stem":1055,"_extension":38},"/en-us/blog/authors/andrew-taylor",{"name":1049,"config":1050},"Andrew Taylor",{"headshot":723,"ctfId":1051},"Andrew-Taylor",{"template":692},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1057,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1058,"config":1063,"_id":1064,"_type":33,"title":1059,"_source":35,"_file":1065,"_stem":1066,"_extension":38},"/en-us/blog/authors/andrew-thomas",{"name":1059,"config":1060},"Andrew Thomas",{"headshot":1061,"ctfId":1062},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":692},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1068,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1069,"config":1074,"_id":1075,"_type":33,"title":1070,"_source":35,"_file":1076,"_stem":1077,"_extension":38},"/en-us/blog/authors/andy-bradfield",{"name":1070,"role":1071,"config":1072},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1073},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":692},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1079,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1080,"config":1084,"_id":1085,"_type":33,"title":1081,"_source":35,"_file":1086,"_stem":1087,"_extension":38},"/en-us/blog/authors/andy-rogers",{"name":1081,"config":1082},"Andy Rogers",{"headshot":723,"ctfId":1083},"Andy-Rogers",{"template":692},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1089,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1090,"config":1095,"_id":1096,"_type":33,"title":1091,"_source":35,"_file":1097,"_stem":1098,"_extension":38},"/en-us/blog/authors/andy-volpe",{"name":1091,"config":1092},"Andy Volpe",{"headshot":1093,"ctfId":1094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":692},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1100,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1101,"config":1105,"_id":1106,"_type":33,"title":1102,"_source":35,"_file":1107,"_stem":1108,"_extension":38},"/en-us/blog/authors/angelo-stavrow",{"name":1102,"config":1103},"Angelo Stavrow",{"headshot":723,"ctfId":1104},"Angelo-Stavrow",{"template":692},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1110,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1111,"config":1116,"_id":1117,"_type":33,"title":1112,"_source":35,"_file":1118,"_stem":1119,"_extension":38},"/en-us/blog/authors/anna-vovchenko",{"name":1112,"config":1113},"Anna Vovchenko",{"headshot":1114,"ctfId":1115},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":692},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1121,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1122,"config":1127,"_id":1128,"_type":33,"title":1123,"_source":35,"_file":1129,"_stem":1130,"_extension":38},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1123,"config":1124},"Annabel Dunstone Gray",{"headshot":1125,"ctfId":1126},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":692},"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":1132,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1133,"config":1137,"_id":1138,"_type":33,"title":1134,"_source":35,"_file":1139,"_stem":1140,"_extension":38},"/en-us/blog/authors/anshuman-singh",{"name":1134,"config":1135},"Anshuman Singh",{"headshot":723,"ctfId":1136},"4xzrY67JSkxp4j7hlK1DWA",{"template":692},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1142,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1143,"config":1147,"_id":1148,"_type":33,"title":1144,"_source":35,"_file":1149,"_stem":1150,"_extension":38},"/en-us/blog/authors/anthony-davanzo",{"name":1144,"config":1145},"Anthony Davanzo",{"headshot":723,"ctfId":1146},"4KccrB6k5jq46xQRDOdWSb",{"template":692},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1152,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1153,"config":1158,"_id":1159,"_type":33,"title":1154,"_source":35,"_file":1160,"_stem":1161,"_extension":38},"/en-us/blog/authors/anton-smith",{"name":1154,"config":1155},"Anton Smith",{"headshot":1156,"ctfId":1157},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":692},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1163,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1164,"config":1168,"_id":1169,"_type":33,"title":1165,"_source":35,"_file":1170,"_stem":1171,"_extension":38},"/en-us/blog/authors/aricka-flowers",{"name":1165,"config":1166},"Aricka Flowers",{"headshot":7,"ctfId":1167},"atflowers",{"template":692},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1173,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1174,"config":1178,"_id":1179,"_type":33,"title":1175,"_source":35,"_file":1180,"_stem":1181,"_extension":38},"/en-us/blog/authors/ariel-camus",{"name":1175,"config":1176},"Ariel Camus",{"headshot":7,"ctfId":1177},"arielcamus",{"template":692},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1183,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1184,"config":1188,"_id":1189,"_type":33,"title":1185,"_source":35,"_file":1190,"_stem":1191,"_extension":38},"/en-us/blog/authors/arunoda-susiripala",{"name":1185,"config":1186},"Arunoda Susiripala",{"headshot":723,"ctfId":1187},"7kQaq0xFWPi2zRW6NZIDHp",{"template":692},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1193,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1194,"config":1198,"_id":1200,"_type":33,"title":1195,"_source":35,"_file":1201,"_stem":1202,"_extension":38},"/en-us/blog/authors/ashher-syed",{"name":1195,"config":1196},"Ashher Syed",{"headshot":1197},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":692,"gitlabHandle":1199},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1204,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1205,"config":1210,"_id":1211,"_type":33,"title":1206,"_source":35,"_file":1212,"_stem":1213,"_extension":38},"/en-us/blog/authors/ashley-knobloch",{"name":1206,"config":1207},"Ashley Knobloch",{"headshot":1208,"ctfId":1209},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":692},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1215,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1216,"config":1221,"_id":1222,"_type":33,"title":1217,"_source":35,"_file":1223,"_stem":1224,"_extension":38},"/en-us/blog/authors/ashley-kramer",{"name":1217,"config":1218},"Ashley Kramer",{"headshot":1219,"ctfId":1220},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":692},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1226,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1227,"config":1231,"_id":1232,"_type":33,"title":1233,"_source":35,"_file":1234,"_stem":1235,"_extension":38},"/en-us/blog/authors/ashley-mcalpin",{"name":1228,"config":1229},"Ashley McAlpin",{"headshot":723,"ctfId":1230},"Ashley-McAlpin",{"template":692},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1237,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1238,"config":1242,"_id":1243,"_type":33,"title":1239,"_source":35,"_file":1244,"_stem":1245,"_extension":38},"/en-us/blog/authors/ashley-smith",{"name":1239,"config":1240},"Ashley Smith",{"headshot":723,"ctfId":1241},"Ashley-Smith",{"template":692},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1247,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1248,"config":1252,"_id":1253,"_type":33,"title":1254,"_source":35,"_file":1255,"_stem":1256,"_extension":38},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1249,"config":1250},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":723,"ctfId":1251},"Atlassian-Bitbucket-GitHub-GitLab",{"template":692},"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":1258,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1259,"config":1264,"_id":1265,"_type":33,"title":1260,"_source":35,"_file":1266,"_stem":1267,"_extension":38},"/en-us/blog/authors/austin-regnery",{"name":1260,"config":1261},"Austin Regnery",{"headshot":1262,"ctfId":1263},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":692},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1269,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1270,"config":1275,"_id":1276,"_type":33,"title":1271,"_source":35,"_file":1277,"_stem":1278,"_extension":38},"/en-us/blog/authors/ayoub-fandi",{"name":1271,"config":1272},"Ayoub Fandi",{"headshot":1273,"ctfId":1274},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":692},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1280,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1281,"config":1285,"_id":1286,"_type":33,"title":1287,"_source":35,"_file":1288,"_stem":1289,"_extension":38},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1282,"config":1283},"Bahubali (Bill) Shetti",{"headshot":723,"ctfId":1284},"4rFnUJeUt0JNGQwwCZSLMj",{"template":692},"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":1291,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1292,"config":1296,"_id":1297,"_type":33,"title":1293,"_source":35,"_file":1298,"_stem":1299,"_extension":38},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1293,"config":1294},"Baksheesh Singh Ghuman",{"headshot":723,"ctfId":1295},"Baksheesh-Singh-Ghuman",{"template":692},"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":1301,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1302,"config":1307,"_id":1308,"_type":33,"title":1303,"_source":35,"_file":1309,"_stem":1310,"_extension":38},"/en-us/blog/authors/bala-allam",{"name":1303,"config":1304},"Bala Allam",{"headshot":1305,"ctfId":1306},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":692},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1312,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1313,"config":1318,"_id":1319,"_type":33,"title":1320,"_source":35,"_file":1321,"_stem":1322,"_extension":38},"/en-us/blog/authors/balasankar-balu-c",{"name":1314,"config":1315},"Balasankar 'Balu' C",{"headshot":1316,"ctfId":1317},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":692},"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":1324,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1325,"config":1330,"_id":1331,"_type":33,"title":1326,"_source":35,"_file":1332,"_stem":1333,"_extension":38},"/en-us/blog/authors/bart-zhang",{"name":1326,"config":1327},"Bart Zhang",{"headshot":1328,"ctfId":1329},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":692},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1335,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1336,"config":1341,"_id":1342,"_type":33,"title":1337,"_source":35,"_file":1343,"_stem":1344,"_extension":38},"/en-us/blog/authors/beatriz-barbosa",{"name":1337,"config":1338},"Beatriz Barbosa",{"headshot":1339,"ctfId":1340},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":692},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1346,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1347,"config":1351,"_id":1352,"_type":33,"title":1348,"_source":35,"_file":1353,"_stem":1354,"_extension":38},"/en-us/blog/authors/becka-lippert",{"name":1348,"config":1349},"Becka Lippert",{"headshot":723,"ctfId":1350},"7wX6Hbvb3AbKwa6NnClvBX",{"template":692},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1356,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1357,"config":1362,"_id":1363,"_type":33,"title":1364,"_source":35,"_file":1365,"_stem":1366,"_extension":38},"/en-us/blog/authors/ben-leduc-mills",{"name":1358,"config":1359},"Ben Leduc-Mills",{"headshot":1360,"ctfId":1361},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":692},"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":1368,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1369,"config":1374,"_id":1375,"_type":33,"title":1370,"_source":35,"_file":1376,"_stem":1377,"_extension":38},"/en-us/blog/authors/ben-ridley",{"name":1370,"config":1371},"Ben Ridley",{"headshot":1372,"ctfId":1373},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":692},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1379,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1380,"config":1384,"_id":1385,"_type":33,"title":1381,"_source":35,"_file":1386,"_stem":1387,"_extension":38},"/en-us/blog/authors/benedikt-rollik",{"name":1381,"config":1382},"Benedikt Rollik",{"headshot":723,"ctfId":1383},"Benedikt-Rollik",{"template":692},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1389,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1390,"config":1394,"_id":1395,"_type":33,"title":19,"_source":35,"_file":1396,"_stem":1397,"_extension":38},"/en-us/blog/authors/benjamin-skierlak",{"name":19,"config":1391},{"headshot":1392,"ctfId":1393},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":692},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1399,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1400,"config":1404,"_id":1405,"_type":33,"title":1401,"_source":35,"_file":1406,"_stem":1407,"_extension":38},"/en-us/blog/authors/bert-van-eyck",{"name":1401,"config":1402},"Bert Van Eyck",{"headshot":7,"ctfId":1403},"bertveproximus",{"template":692},"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":1409,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1410,"config":1415,"_id":1416,"_type":33,"title":1411,"_source":35,"_file":1417,"_stem":1418,"_extension":38},"/en-us/blog/authors/betsy-bula",{"name":1411,"config":1412},"Betsy Bula",{"headshot":1413,"ctfId":1414},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":692},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1420,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1421,"config":1425,"_id":1426,"_type":33,"title":1422,"_source":35,"_file":1427,"_stem":1428,"_extension":38},"/en-us/blog/authors/betsy-church",{"name":1422,"config":1423},"Betsy Church",{"headshot":7,"ctfId":1424},"bchurch",{"template":692},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1430,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1431,"config":1436,"_id":1437,"_type":33,"title":1432,"_source":35,"_file":1438,"_stem":1439,"_extension":38},"/en-us/blog/authors/bill-staples",{"name":1432,"config":1433,"role":1435},"Bill Staples",{"headshot":1434},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":692},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1441,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1442,"config":1447,"_id":1448,"_type":33,"title":1443,"_source":35,"_file":1449,"_stem":1450,"_extension":38},"/en-us/blog/authors/bob-van-landuyt",{"name":1443,"config":1444},"Bob Van Landuyt",{"headshot":1445,"ctfId":1446},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":692},"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":1452,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1453,"config":1457,"_id":1458,"_type":33,"title":1454,"_source":35,"_file":1459,"_stem":1460,"_extension":38},"/en-us/blog/authors/boris-baldassari",{"name":1454,"config":1455},"Boris Baldassari",{"headshot":7,"ctfId":1456},"bbaldassari",{"template":692},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1462,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1463,"config":1467,"_id":1468,"_type":33,"title":1464,"_source":35,"_file":1469,"_stem":1470,"_extension":38},"/en-us/blog/authors/borivoje-tasovac",{"name":1464,"config":1465},"Borivoje Tasovac",{"headshot":7,"ctfId":1466},"borivoje",{"template":692},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1472,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1473,"config":1477,"_id":1478,"_type":33,"title":1474,"_source":35,"_file":1479,"_stem":1480,"_extension":38},"/en-us/blog/authors/brad-downey",{"name":1474,"config":1475},"Brad Downey",{"headshot":723,"ctfId":1476},"6b6RTu6832NFEju2zKJhbE",{"template":692},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1482,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1483,"config":1488,"_id":1489,"_type":33,"title":1484,"_source":35,"_file":1490,"_stem":1491,"_extension":38},"/en-us/blog/authors/bradley-lee",{"name":1484,"config":1485},"Bradley Lee",{"headshot":1486,"ctfId":1487},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":692},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1493,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1494,"config":1498,"_id":1499,"_type":33,"title":1495,"_source":35,"_file":1500,"_stem":1501,"_extension":38},"/en-us/blog/authors/brandon-foo",{"name":1495,"config":1496},"Brandon Foo",{"headshot":723,"ctfId":1497},"Brandon-Foo",{"template":692},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1503,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1504,"config":1508,"_id":1509,"_type":33,"title":1505,"_source":35,"_file":1510,"_stem":1511,"_extension":38},"/en-us/blog/authors/brandon-jung",{"name":1505,"config":1506},"Brandon Jung",{"headshot":723,"ctfId":1507},"Brandon-Jung",{"template":692},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1513,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1514,"config":1518,"_id":1519,"_type":33,"title":1515,"_source":35,"_file":1520,"_stem":1521,"_extension":38},"/en-us/blog/authors/brandon-lyon",{"name":1515,"config":1516},"Brandon Lyon",{"headshot":7,"ctfId":1517},"brandonlyon",{"template":692},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1523,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1524,"config":1528,"_id":1529,"_type":33,"title":1525,"_source":35,"_file":1530,"_stem":1531,"_extension":38},"/en-us/blog/authors/brein-matturro",{"name":1525,"config":1526},"Brein Matturro",{"headshot":7,"ctfId":1527},"bmatturro",{"template":692},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1533,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1534,"config":1538,"_id":1539,"_type":33,"title":1540,"_source":35,"_file":1541,"_stem":1542,"_extension":38},"/en-us/blog/authors/brendan-oleary",{"name":1535,"config":1536},"Brendan O'Leary",{"headshot":7,"ctfId":1537},"brendan",{"template":692},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1544,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1545,"config":1549,"_id":1550,"_type":33,"title":1546,"_source":35,"_file":1551,"_stem":1552,"_extension":38},"/en-us/blog/authors/brendan-regan",{"name":1546,"config":1547},"Brendan Regan",{"headshot":7,"ctfId":1548},"brendanregan11",{"template":692},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1554,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1555,"config":1560,"_id":1561,"_type":33,"title":1556,"_source":35,"_file":1562,"_stem":1563,"_extension":38},"/en-us/blog/authors/brett-walker",{"name":1556,"config":1557},"Brett Walker",{"headshot":1558,"ctfId":1559},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":692},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1565,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1566,"config":1570,"_id":1571,"_type":33,"title":1567,"_source":35,"_file":1572,"_stem":1573,"_extension":38},"/en-us/blog/authors/brian-glanz",{"name":1567,"config":1568},"Brian Glanz",{"headshot":7,"ctfId":1569},"brianglanz",{"template":692},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1575,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1576,"config":1580,"_id":1581,"_type":33,"title":1582,"_source":35,"_file":1583,"_stem":1584,"_extension":38},"/en-us/blog/authors/brian-oconnell",{"name":1577,"config":1578},"Brian O'Connell",{"headshot":723,"ctfId":1579},"Brian-OConnell",{"template":692},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1586,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1587,"config":1591,"_id":1592,"_type":33,"title":1588,"_source":35,"_file":1593,"_stem":1594,"_extension":38},"/en-us/blog/authors/brian-rhea",{"name":1588,"config":1589},"Brian Rhea",{"headshot":7,"ctfId":1590},"brhea",{"template":692},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1596,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1597,"config":1601,"_id":1602,"_type":33,"title":1598,"_source":35,"_file":1603,"_stem":1604,"_extension":38},"/en-us/blog/authors/brian-wald",{"name":1598,"config":1599},"Brian Wald",{"headshot":723,"ctfId":1600},"78qOxgHKlgDY2IxMrBrgCu",{"template":692},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1606,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1607,"config":1611,"_id":1612,"_type":33,"title":1608,"_source":35,"_file":1613,"_stem":1614,"_extension":38},"/en-us/blog/authors/brittany-rohde",{"name":1608,"config":1609},"Brittany Rohde",{"headshot":7,"ctfId":1610},"brittanyr",{"template":692},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1616,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1617,"config":1622,"_id":1623,"_type":33,"title":1618,"_source":35,"_file":1624,"_stem":1625,"_extension":38},"/en-us/blog/authors/bryan-behrenshausen",{"name":1618,"config":1619},"Bryan Behrenshausen",{"headshot":1620,"ctfId":1621},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":692},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1627,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1628,"config":1633,"_id":1634,"_type":33,"title":1629,"_source":35,"_file":1635,"_stem":1636,"_extension":38},"/en-us/blog/authors/bryan-may",{"name":1629,"config":1630},"Bryan May",{"headshot":1631,"ctfId":1632},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":692},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1638,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1639,"config":1644,"_id":1645,"_type":33,"title":1640,"_source":35,"_file":1646,"_stem":1647,"_extension":38},"/en-us/blog/authors/byron-boots",{"name":1640,"config":1641},"Byron Boots",{"headshot":1642,"ctfId":1643},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":692},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1649,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1650,"config":1655,"_id":1656,"_type":33,"title":1651,"_source":35,"_file":1657,"_stem":1658,"_extension":38},"/en-us/blog/authors/camellia-yang",{"name":1651,"config":1652},"Camellia Yang",{"headshot":1653,"ctfId":1654},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":692},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1660,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1661,"config":1666,"_id":1667,"_type":33,"title":1662,"_source":35,"_file":1668,"_stem":1669,"_extension":38},"/en-us/blog/authors/cameron-swords",{"name":1662,"config":1663},"Cameron Swords",{"headshot":1664,"ctfId":1665},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":692},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1671,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1672,"config":1678,"_id":1679,"_type":33,"title":1674,"_source":35,"_file":1680,"_stem":1681,"_extension":38},"/en-us/blog/authors/carl-myers",{"role":1673,"name":1674,"config":1675},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1676,"ctfId":1677},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":692},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1683,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1684,"config":1688,"_id":1689,"_type":33,"title":1685,"_source":35,"_file":1690,"_stem":1691,"_extension":38},"/en-us/blog/authors/carol-teskey",{"name":1685,"config":1686},"Carol Teskey",{"headshot":7,"ctfId":1687},"cteskey",{"template":692},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1693,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1694,"config":1699,"_id":1700,"_type":33,"title":1695,"_source":35,"_file":1701,"_stem":1702,"_extension":38},"/en-us/blog/authors/cesar-saavedra",{"name":1695,"config":1696},"Cesar Saavedra",{"headshot":1697,"ctfId":1698},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":692},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1704,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1705,"config":1709,"_id":1710,"_type":33,"title":1706,"_source":35,"_file":1711,"_stem":1712,"_extension":38},"/en-us/blog/authors/chad-malchow",{"name":1706,"config":1707},"Chad Malchow",{"headshot":723,"ctfId":1708},"Chad-Malchow",{"template":692},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1714,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1715,"config":1720,"_id":1721,"_type":33,"title":1716,"_source":35,"_file":1722,"_stem":1723,"_extension":38},"/en-us/blog/authors/chance-feick",{"name":1716,"config":1717},"Chance Feick",{"headshot":1718,"ctfId":1719},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666442/Blog/Author%20Headshots/chance_feick_headshot.png","18dtRbXV47xqf5iDrOIduM",{"template":692},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1725,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1726,"config":1731,"_id":1732,"_type":33,"title":1727,"_source":35,"_file":1733,"_stem":1734,"_extension":38},"/en-us/blog/authors/chandler-gibbons",{"name":1727,"config":1728},"Chandler Gibbons",{"headshot":1729,"ctfId":1730},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663276/Blog/Author%20Headshots/chandlergibb-headshot.jpg","chandlergibb",{"template":692},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1736,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1737,"config":1741,"_id":1742,"_type":33,"title":1743,"_source":35,"_file":1744,"_stem":1745,"_extension":38},"/en-us/blog/authors/charl-de-wit",{"name":1738,"config":1739},"Charl de Wit",{"headshot":723,"ctfId":1740},"45mQeypQVLNvvTWMzserbR",{"template":692},"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":1747,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1748,"config":1753,"_id":1754,"_type":33,"title":1749,"_source":35,"_file":1755,"_stem":1756,"_extension":38},"/en-us/blog/authors/charlie-ablett",{"name":1749,"config":1750},"Charlie Ablett",{"headshot":1751,"ctfId":1752},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670131/Blog/Author%20Headshots/cablett-headshot.png","cablett",{"template":692},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1758,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1759,"config":1763,"_id":1764,"_type":33,"title":1760,"_source":35,"_file":1765,"_stem":1766,"_extension":38},"/en-us/blog/authors/charvi-mendiratta",{"name":1760,"config":1761},"Charvi Mendiratta",{"headshot":723,"ctfId":1762},"YV7WvnjPWFS3JhXmSYJLk",{"template":692},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1768,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1769,"config":1774,"_id":1775,"_type":33,"title":1770,"_source":35,"_file":1776,"_stem":1777,"_extension":38},"/en-us/blog/authors/cherry-han",{"name":1770,"config":1771},"Cherry Han",{"headshot":1772,"ctfId":1773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ehktvdbix2o1t0mmcvll.png","6gkuhRkgzCNP1Ee6J14yLu",{"template":692},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1779,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1780,"config":1784,"_id":1786,"_type":33,"title":1781,"_source":35,"_file":1787,"_stem":1788,"_extension":38},"/en-us/blog/authors/chloe-cartron",{"name":1781,"config":1782},"Chloe Cartron",{"headshot":1783},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":692,"gitlabHandle":1785},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1790,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1791,"config":1796,"_id":1797,"_type":33,"title":1792,"_source":35,"_file":1798,"_stem":1799,"_extension":38},"/en-us/blog/authors/chloe-whitestone",{"name":1792,"config":1793},"Chloe Whitestone",{"headshot":1794,"ctfId":1795},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678693/Blog/Author%20Headshots/chloe-headshot.jpg","chloe",{"template":692},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1801,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1802,"config":1807,"_id":1808,"_type":33,"title":1803,"_source":35,"_file":1809,"_stem":1810,"_extension":38},"/en-us/blog/authors/chris-balane",{"name":1803,"config":1804},"Chris Balane",{"headshot":1805,"ctfId":1806},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667630/Blog/Author%20Headshots/chris_balane_headshot.png","40SOCfTl3frynjL3dbg63o",{"template":692},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1812,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1813,"config":1817,"_id":1818,"_type":33,"title":1814,"_source":35,"_file":1819,"_stem":1820,"_extension":38},"/en-us/blog/authors/chris-baus",{"name":1814,"config":1815},"Chris Baus",{"headshot":7,"ctfId":1816},"chrisbaus",{"template":692},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1822,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1823,"config":1828,"_id":1829,"_type":33,"title":1824,"_source":35,"_file":1830,"_stem":1831,"_extension":38},"/en-us/blog/authors/chris-micek",{"name":1824,"config":1825},"Chris Micek",{"headshot":1826,"ctfId":1827},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666144/Blog/Author%20Headshots/chris_micek_headshot.png","62ZsvfXlttQEQ1tnikgoq9",{"template":692},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1833,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1834,"config":1839,"_id":1840,"_type":33,"title":1835,"_source":35,"_file":1841,"_stem":1842,"_extension":38},"/en-us/blog/authors/chris-moberly",{"name":1835,"config":1836},"Chris Moberly",{"headshot":1837,"ctfId":1838},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664235/Blog/Author%20Headshots/cmoberly-headshot.jpg","cmoberly",{"template":692},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1844,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1845,"config":1849,"_id":1850,"_type":33,"title":1851,"_source":35,"_file":1852,"_stem":1853,"_extension":38},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1846,"config":1847},"Chris Sterry, Dotscience",{"headshot":723,"ctfId":1848},"Chris-Sterry-Dotscience",{"template":692},"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":1855,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1856,"config":1860,"_id":1861,"_type":33,"title":1857,"_source":35,"_file":1862,"_stem":1863,"_extension":38},"/en-us/blog/authors/chris-ward",{"name":1857,"config":1858},"Chris Ward",{"headshot":7,"ctfId":1859},"chrischinchilla",{"template":692},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1865,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1866,"config":1873,"_id":1874,"_type":33,"title":1868,"_source":35,"_file":1875,"_stem":1876,"_extension":38},"/en-us/blog/authors/chris-weber",{"role":1867,"name":1868,"config":1869},"CRO ","Chris Weber",{"headshot":1870,"linkedin":1871,"ctfId":1872},"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":692},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1878,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1879,"config":1883,"_id":1884,"_type":33,"title":1880,"_source":35,"_file":1885,"_stem":1886,"_extension":38},"/en-us/blog/authors/chrissie-buchanan",{"name":1880,"config":1881},"Chrissie Buchanan",{"headshot":723,"ctfId":1882},"cbuchanan",{"template":692},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1888,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1889,"config":1894,"_id":1895,"_type":33,"title":1890,"_source":35,"_file":1896,"_stem":1897,"_extension":38},"/en-us/blog/authors/christen-dybenko",{"name":1890,"config":1891},"Christen Dybenko",{"headshot":1892,"ctfId":1893},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668811/Blog/Author%20Headshots/cdybenko-headshot.jpg","cdybenko",{"template":692},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1899,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1900,"config":1905,"_id":1906,"_type":33,"title":1901,"_source":35,"_file":1907,"_stem":1908,"_extension":38},"/en-us/blog/authors/christian-couder",{"name":1901,"config":1902},"Christian Couder",{"headshot":1903,"ctfId":1904},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool",{"template":692},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1910,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1911,"config":1916,"_id":1917,"_type":33,"title":1912,"_source":35,"_file":1918,"_stem":1919,"_extension":38},"/en-us/blog/authors/christian-nnachi",{"name":1912,"config":1913},"Christian Nnachi",{"headshot":1914,"ctfId":1915},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665343/Blog/Author%20Headshots/christian_nnachi_headshot.png","6pE7HjtzzpRhBFVdwTFjEX",{"template":692},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1921,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1922,"config":1926,"_id":1927,"_type":33,"title":1923,"_source":35,"_file":1928,"_stem":1929,"_extension":38},"/en-us/blog/authors/christian-simko",{"name":1923,"config":1924},"Christian Simko",{"headshot":7,"ctfId":1925},"csimko",{"template":692},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1931,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1932,"config":1937,"_id":1938,"_type":33,"title":1933,"_source":35,"_file":1939,"_stem":1940,"_extension":38},"/en-us/blog/authors/christie-lenneville",{"name":1933,"config":1934},"Christie Lenneville",{"headshot":1935,"ctfId":1936},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670047/Blog/Author%20Headshots/clenneville-headshot.jpg","clenneville",{"template":692},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1942,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1943,"config":1947,"_id":1948,"_type":33,"title":1949,"_source":35,"_file":1950,"_stem":1951,"_extension":38},"/en-us/blog/authors/christina-hupy-phd",{"name":1944,"config":1945},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1946},"chupy",{"template":692},"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":1953,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1954,"config":1959,"_id":1960,"_type":33,"title":1955,"_source":35,"_file":1961,"_stem":1962,"_extension":38},"/en-us/blog/authors/christina-lohr",{"name":1955,"config":1956},"Christina Lohr",{"headshot":1957,"ctfId":1958},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662499/Blog/Author%20Headshots/lohrc-headshot.jpg","lohrc",{"template":692},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":1964,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1965,"config":1969,"_id":1970,"_type":33,"title":1966,"_source":35,"_file":1971,"_stem":1972,"_extension":38},"/en-us/blog/authors/christine-yoshida",{"name":1966,"config":1967},"Christine Yoshida",{"headshot":7,"ctfId":1968},"cyoshida",{"template":692},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":1974,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1975,"config":1979,"_id":1980,"_type":33,"title":1976,"_source":35,"_file":1981,"_stem":1982,"_extension":38},"/en-us/blog/authors/christopher-watson",{"name":1976,"config":1977},"Christopher Watson",{"headshot":723,"ctfId":1978},"Christopher-Watson",{"template":692},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":1984,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1985,"config":1989,"_id":1990,"_type":33,"title":1986,"_source":35,"_file":1991,"_stem":1992,"_extension":38},"/en-us/blog/authors/christos-bacharakis",{"name":1986,"config":1987},"Christos Bacharakis",{"headshot":723,"ctfId":1988},"Christos-Bacharakis",{"template":692},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":1994,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":1995,"config":1999,"_id":2000,"_type":33,"title":1996,"_source":35,"_file":2001,"_stem":2002,"_extension":38},"/en-us/blog/authors/cindy-blake",{"name":1996,"config":1997},"Cindy Blake",{"headshot":723,"ctfId":1998},"cblake",{"template":692},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":2004,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2005,"config":2010,"_id":2011,"_type":33,"title":2006,"_source":35,"_file":2012,"_stem":2013,"_extension":38},"/en-us/blog/authors/claire-champernowne",{"name":2006,"config":2007},"Claire Champernowne",{"headshot":2008,"ctfId":2009},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ",{"template":692},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2015,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2016,"config":2020,"_id":2021,"_type":33,"title":2017,"_source":35,"_file":2022,"_stem":2023,"_extension":38},"/en-us/blog/authors/clement-ho",{"name":2017,"config":2018},"Clement Ho",{"headshot":7,"ctfId":2019},"ClemMakesApps",{"template":692},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2025,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2026,"config":2030,"_id":2031,"_type":33,"title":2027,"_source":35,"_file":2032,"_stem":2033,"_extension":38},"/en-us/blog/authors/colin-fletcher",{"name":2027,"config":2028},"Colin Fletcher",{"headshot":7,"ctfId":2029},"cfletcher1",{"template":692},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2035,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2036,"config":2041,"_id":2042,"_type":33,"title":2037,"_source":35,"_file":2043,"_stem":2044,"_extension":38},"/en-us/blog/authors/connor-gilbert",{"name":2037,"config":2038},"Connor Gilbert",{"headshot":2039,"ctfId":2040},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665913/Blog/Author%20Headshots/connorgilbert-headshot.jpg","connorgilbert",{"template":692},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2046,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2047,"config":2051,"_id":2052,"_type":33,"title":2048,"_source":35,"_file":2053,"_stem":2054,"_extension":38},"/en-us/blog/authors/connor-shea",{"name":2048,"config":2049},"Connor Shea",{"headshot":723,"ctfId":2050},"Connor-Shea",{"template":692},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2056,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2057,"config":2062,"_id":2063,"_type":33,"title":2058,"_source":35,"_file":2064,"_stem":2065,"_extension":38},"/en-us/blog/authors/corey-oas",{"name":2058,"config":2059},"Corey Oas",{"headshot":2060,"ctfId":2061},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667633/Blog/Author%20Headshots/corey_oas_headshot.png","1Dd1lJ4aKCv36YWdlUhlPf",{"template":692},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2067,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2068,"config":2072,"_id":2073,"_type":33,"title":2069,"_source":35,"_file":2074,"_stem":2075,"_extension":38},"/en-us/blog/authors/cormac-foster",{"name":2069,"config":2070},"Cormac Foster",{"headshot":7,"ctfId":2071},"cfoster3",{"template":692},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2077,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2078,"config":2083,"_id":2084,"_type":33,"title":2079,"_source":35,"_file":2085,"_stem":2086,"_extension":38},"/en-us/blog/authors/costel-maxim",{"name":2079,"config":2080},"Costel Maxim",{"headshot":2081,"ctfId":2082},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663173/Blog/Author%20Headshots/costel_maxim_headshot.png","3QzzrMksaRD9ZPytt0SPPL",{"template":692},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2088,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2089,"config":2094,"_id":2095,"_type":33,"title":2090,"_source":35,"_file":2096,"_stem":2097,"_extension":38},"/en-us/blog/authors/courtney-meddaugh",{"name":2090,"config":2091},"Courtney Meddaugh",{"headshot":2092,"ctfId":2093},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665168/Blog/Author%20Headshots/courtney_meddaugh_headshot.png","5avtK3YS9MrDBkaOnB9ZmG",{"template":692},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2099,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2100,"config":2104,"_id":2105,"_type":33,"title":2101,"_source":35,"_file":2106,"_stem":2107,"_extension":38},"/en-us/blog/authors/craig-gomes",{"name":2101,"config":2102},"Craig Gomes",{"headshot":7,"ctfId":2103},"craiggomes",{"template":692},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2109,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2110,"config":2115,"_id":2116,"_type":33,"title":2111,"_source":35,"_file":2117,"_stem":2118,"_extension":38},"/en-us/blog/authors/craig-miskell",{"name":2111,"config":2112},"Craig Miskell",{"headshot":2113,"ctfId":2114},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667372/Blog/Author%20Headshots/cmiskell-headshot.jpg","cmiskell",{"template":692},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2120,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2121,"config":2125,"_id":2126,"_type":33,"title":2122,"_source":35,"_file":2127,"_stem":2128,"_extension":38},"/en-us/blog/authors/creighton-swank",{"name":2122,"config":2123},"Creighton Swank",{"headshot":723,"ctfId":2124},"5uf3k9lutpbelxJQ373eWu",{"template":692},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2130,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2131,"config":2135,"_id":2136,"_type":33,"title":2132,"_source":35,"_file":2137,"_stem":2138,"_extension":38},"/en-us/blog/authors/daisy-miclat",{"name":2132,"config":2133},"Daisy Miclat",{"headshot":723,"ctfId":2134},"IU4zOKoPhWS7hok7qsy7w",{"template":692},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2140,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2141,"config":2145,"_id":2146,"_type":33,"title":2142,"_source":35,"_file":2147,"_stem":2148,"_extension":38},"/en-us/blog/authors/dan-luhring",{"name":2142,"config":2143},"Dan Luhring",{"headshot":7,"ctfId":2144},"danluhring",{"template":692},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2150,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2151,"config":2156,"_id":2157,"_type":33,"title":2152,"_source":35,"_file":2158,"_stem":2159,"_extension":38},"/en-us/blog/authors/dan-rabinovitz",{"name":2152,"config":2153},"Dan Rabinovitz",{"headshot":2154,"ctfId":2155},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664796/Blog/Author%20Headshots/dan_rabinovitz_headshot.png","31AXb267jy94budCWQZQyr",{"template":692},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2161,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2162,"config":2166,"_id":2167,"_type":33,"title":2163,"_source":35,"_file":2168,"_stem":2169,"_extension":38},"/en-us/blog/authors/daniel-berman",{"name":2163,"config":2164},"Daniel Berman",{"headshot":723,"ctfId":2165},"Daniel-Berman",{"template":692},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2171,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2172,"config":2176,"_id":2177,"_type":33,"title":2173,"_source":35,"_file":2178,"_stem":2179,"_extension":38},"/en-us/blog/authors/daniel-gruesso",{"name":2173,"config":2174},"Daniel Gruesso",{"headshot":7,"ctfId":2175},"danielgruesso",{"template":692},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2181,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2182,"config":2187,"_id":2188,"_type":33,"title":2183,"_source":35,"_file":2189,"_stem":2190,"_extension":38},"/en-us/blog/authors/daniel-hauenstein",{"name":2183,"config":2184},"Daniel Hauenstein",{"headshot":2185,"ctfId":2186},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662434/Blog/Author%20Headshots/daniel_hauenstein_headshot.png","2gXGuSmuvZSxv0iCn4sinV",{"template":692},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2192,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2193,"config":2198,"_id":2199,"_type":33,"title":2194,"_source":35,"_file":2200,"_stem":2201,"_extension":38},"/en-us/blog/authors/daniel-helfand",{"name":2194,"config":2195},"Daniel Helfand",{"headshot":2196,"ctfId":2197},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662418/Blog/Author%20Headshots/dhelfand.png","b9sRP0HJhdPsOEruWUfih",{"template":692},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2203,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2204,"config":2208,"_id":2209,"_type":33,"title":2205,"_source":35,"_file":2210,"_stem":2211,"_extension":38},"/en-us/blog/authors/daniel-mora",{"name":2205,"config":2206},"Daniel Mora",{"headshot":7,"ctfId":2207},"dmoraberlin",{"template":692},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2213,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2214,"config":2218,"_id":2220,"_type":33,"title":2215,"_source":35,"_file":2221,"_stem":2222,"_extension":38},"/en-us/blog/authors/daniel-murphy",{"name":2215,"config":2216},"Daniel Murphy",{"headshot":2217},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":692,"gitlabHandle":2219},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2224,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2225,"config":2230,"_id":2231,"_type":33,"title":2226,"_source":35,"_file":2232,"_stem":2233,"_extension":38},"/en-us/blog/authors/darby-frey",{"name":2226,"config":2227},"Darby Frey",{"headshot":2228,"ctfId":2229},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey",{"template":692},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2235,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2236,"config":2241,"_id":2242,"_type":33,"title":2237,"_source":35,"_file":2243,"_stem":2244,"_extension":38},"/en-us/blog/authors/darren-eastman",{"name":2237,"config":2238},"Darren Eastman",{"headshot":2239,"ctfId":2240},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman",{"template":692},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2246,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2247,"config":2251,"_id":2252,"_type":33,"title":2248,"_source":35,"_file":2253,"_stem":2254,"_extension":38},"/en-us/blog/authors/darren-murph",{"name":2248,"config":2249},"Darren Murph",{"headshot":7,"ctfId":2250},"dmurph",{"template":692},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2256,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2257,"config":2264,"_id":2265,"_type":33,"title":2259,"_source":35,"_file":2266,"_stem":2267,"_extension":38},"/en-us/blog/authors/darwin-sanoy",{"role":2258,"name":2259,"config":2260},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2261,"linkedin":2262,"ctfId":2263},"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":692},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2269,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2270,"config":2275,"_id":2276,"_type":33,"title":2271,"_source":35,"_file":2277,"_stem":2278,"_extension":38},"/en-us/blog/authors/dave-steer",{"name":2271,"config":2272},"Dave Steer",{"headshot":2273,"ctfId":2274},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658895/Blog/Author%20Headshots/dsteer-headshot.jpg","dsteer",{"template":692},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2280,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2281,"config":2285,"_id":2286,"_type":33,"title":2282,"_source":35,"_file":2287,"_stem":2288,"_extension":38},"/en-us/blog/authors/dave-wentzel",{"name":2282,"config":2283},"Dave Wentzel",{"headshot":723,"ctfId":2284},"Dave-Wentzel",{"template":692},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2290,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2291,"config":2296,"_id":2297,"_type":33,"title":2298,"_source":35,"_file":2299,"_stem":2300,"_extension":38},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2292,"config":2293},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2294,"ctfId":2295},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660185/Blog/Author%20Headshots/david-headshot.jpg","david",{"template":692},"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":2302,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2303,"config":2308,"_id":2309,"_type":33,"title":2310,"_source":35,"_file":2311,"_stem":2312,"_extension":38},"/en-us/blog/authors/david-oregan",{"name":2304,"config":2305},"David O'Regan",{"headshot":2306,"ctfId":2307},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659853/Blog/Author%20Headshots/oregand-headshot.png","oregand",{"template":692},"content:en-us:blog:authors:david-oregan.yml","David Oregan","en-us/blog/authors/david-oregan.yml","en-us/blog/authors/david-oregan",{"_path":2314,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2315,"config":2319,"_id":2320,"_type":33,"title":2316,"_source":35,"_file":2321,"_stem":2322,"_extension":38},"/en-us/blog/authors/david-planella",{"name":2316,"config":2317},"David Planella",{"headshot":723,"ctfId":2318},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":692},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2324,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2325,"config":2329,"_id":2330,"_type":33,"title":2326,"_source":35,"_file":2331,"_stem":2332,"_extension":38},"/en-us/blog/authors/david-russell",{"name":2326,"config":2327},"David Russell",{"headshot":723,"ctfId":2328},"David-Russell",{"template":692},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2334,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2335,"config":2340,"_id":2341,"_type":33,"title":2336,"_source":35,"_file":2342,"_stem":2343,"_extension":38},"/en-us/blog/authors/david-smith",{"name":2336,"config":2337},"David Smith",{"headshot":2338,"ctfId":2339},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671135/Blog/Author%20Headshots/dawsmith-headshot.jpg","dawsmith",{"template":692},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2345,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2346,"config":2350,"_id":2351,"_type":33,"title":2347,"_source":35,"_file":2352,"_stem":2353,"_extension":38},"/en-us/blog/authors/davis-townsend",{"name":2347,"config":2348},"Davis Townsend",{"headshot":7,"ctfId":2349},"davistownsend",{"template":692},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2355,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2356,"config":2360,"_id":2362,"_type":33,"title":2357,"_source":35,"_file":2363,"_stem":2364,"_extension":38},"/en-us/blog/authors/davoud-tu",{"name":2357,"config":2358},"Davoud Tu",{"headshot":2359},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":692,"gitlabHandle":2361},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2366,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2367,"config":2372,"_id":2373,"_type":33,"title":2374,"_source":35,"_file":2375,"_stem":2376,"_extension":38},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2368,"config":2369},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2370,"ctfId":2371},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671963/Blog/Author%20Headshots/Dean_Photo__1_.jpg","6wQ0QwFZdbzAtYGZgnALkw",{"template":692},"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":2378,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2379,"config":2384,"_id":2385,"_type":33,"title":2380,"_source":35,"_file":2386,"_stem":2387,"_extension":38},"/en-us/blog/authors/deepa-mahalingam",{"name":2380,"config":2381},"Deepa Mahalingam",{"headshot":2382,"ctfId":2383},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662019/Blog/Author%20Headshots/deepa-headshot.jpg","M54z9AWDuU7L9nBR9gRF4",{"template":692},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2389,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2390,"config":2395,"_id":2396,"_type":33,"title":2391,"_source":35,"_file":2397,"_stem":2398,"_extension":38},"/en-us/blog/authors/dennis-appelt",{"name":2391,"config":2392},"Dennis Appelt",{"headshot":2393,"ctfId":2394},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt",{"template":692},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2400,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2401,"config":2406,"_id":2407,"_type":33,"title":2402,"_source":35,"_file":2408,"_stem":2409,"_extension":38},"/en-us/blog/authors/dennis-tang",{"name":2402,"config":2403},"Dennis Tang",{"headshot":2404,"ctfId":2405},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672189/Blog/Author%20Headshots/dennis-headshot.jpg","dennis",{"template":692},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2411,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2412,"config":2416,"_id":2418,"_type":33,"title":2419,"_source":35,"_file":2420,"_stem":2421,"_extension":38},"/en-us/blog/authors/dennis-van-rooijen",{"name":2413,"config":2414},"Dennis van Rooijen",{"headshot":2415},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":692,"gitlabHandle":2417},"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":2423,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2424,"config":2429,"_id":2430,"_type":33,"title":2425,"_source":35,"_file":2431,"_stem":2432,"_extension":38},"/en-us/blog/authors/devin-sylva",{"name":2425,"config":2426},"Devin Sylva",{"headshot":2427,"ctfId":2428},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679087/Blog/Author%20Headshots/devin-headshot.jpg","devin",{"template":692},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2434,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2435,"config":2439,"_id":2440,"_type":33,"title":2436,"_source":35,"_file":2441,"_stem":2442,"_extension":38},"/en-us/blog/authors/dhruv-jain",{"name":2436,"config":2437},"Dhruv Jain",{"headshot":723,"ctfId":2438},"2wyibk9HBKn6PjgaEuzXuZ",{"template":692},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2444,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2445,"config":2449,"_id":2450,"_type":33,"title":2446,"_source":35,"_file":2451,"_stem":2452,"_extension":38},"/en-us/blog/authors/diana-logan",{"name":2446,"config":2447},"Diana Logan",{"headshot":723,"ctfId":2448},"6poIwhQe6W9ysm5rBuSPXX",{"template":692},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2454,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2455,"config":2460,"_id":2461,"_type":33,"title":2456,"_source":35,"_file":2462,"_stem":2463,"_extension":38},"/en-us/blog/authors/dilan-orrino",{"name":2456,"config":2457},"Dilan Orrino",{"headshot":2458,"ctfId":2459},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666180/Blog/Author%20Headshots/dorrino-headshot.png","dorrino",{"template":692},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2465,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2466,"config":2470,"_id":2471,"_type":33,"title":2467,"_source":35,"_file":2472,"_stem":2473,"_extension":38},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2467,"config":2468},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2469},"dimitrieh",{"template":692},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2475,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2476,"config":2480,"_id":2481,"_type":33,"title":2477,"_source":35,"_file":2482,"_stem":2483,"_extension":38},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2477,"config":2478},"Dinesh Bolkensteyn",{"headshot":723,"ctfId":2479},"EpylYWgjPmFOL5NX3Zxmk",{"template":692},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2485,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2486,"config":2490,"_id":2491,"_type":33,"title":2492,"_source":35,"_file":2493,"_stem":2494,"_extension":38},"/en-us/blog/authors/dj-mountney",{"name":2487,"config":2488},"DJ Mountney",{"headshot":723,"ctfId":2489},"DJ-Mountney",{"template":692},"content:en-us:blog:authors:dj-mountney.yml","Dj Mountney","en-us/blog/authors/dj-mountney.yml","en-us/blog/authors/dj-mountney",{"_path":2496,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2497,"config":2501,"_id":2502,"_type":33,"title":2503,"_source":35,"_file":2504,"_stem":2505,"_extension":38},"/en-us/blog/authors/dmitriy-job",{"name":2498,"config":2499},"Dmitriy, Job",{"headshot":723,"ctfId":2500},"Dmitriy-Job",{"template":692},"content:en-us:blog:authors:dmitriy-job.yml","Dmitriy Job","en-us/blog/authors/dmitriy-job.yml","en-us/blog/authors/dmitriy-job",{"_path":2507,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2508,"config":2512,"_id":2513,"_type":33,"title":2509,"_source":35,"_file":2514,"_stem":2515,"_extension":38},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2509,"config":2510},"Dmitriy Zaporozhets",{"headshot":723,"ctfId":2511},"Dmitriy-Zaporozhets",{"template":692},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2517,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2518,"config":2523,"_id":2524,"_type":33,"title":2519,"_source":35,"_file":2525,"_stem":2526,"_extension":38},"/en-us/blog/authors/dmitry-gruzd",{"name":2519,"config":2520},"Dmitry Gruzd",{"headshot":2521,"ctfId":2522},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682014/Blog/Author%20Headshots/dgruzd-headshot.jpg","dgruzd",{"template":692},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2528,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2529,"config":2534,"_id":2535,"_type":33,"title":2530,"_source":35,"_file":2536,"_stem":2537,"_extension":38},"/en-us/blog/authors/dominic-couture",{"name":2530,"config":2531},"Dominic Couture",{"headshot":2532,"ctfId":2533},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683783/Blog/Author%20Headshots/dominic.png","3K2DmuMWV5isBeVtKsplia",{"template":692},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2539,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2540,"config":2544,"_id":2545,"_type":33,"title":2541,"_source":35,"_file":2546,"_stem":2547,"_extension":38},"/en-us/blog/authors/douglas-alexandre",{"name":2541,"config":2542},"Douglas Alexandre",{"headshot":723,"ctfId":2543},"Douglas-Alexandre",{"template":692},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2549,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2550,"config":2554,"_id":2555,"_type":33,"title":2551,"_source":35,"_file":2556,"_stem":2557,"_extension":38},"/en-us/blog/authors/douwe-maan",{"name":2551,"config":2552},"Douwe Maan",{"headshot":7,"ctfId":2553},"DouweM",{"template":692},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2559,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2560,"config":2565,"_id":2566,"_type":33,"title":2561,"_source":35,"_file":2567,"_stem":2568,"_extension":38},"/en-us/blog/authors/dov-hershkovitch",{"name":2561,"config":2562},"Dov Hershkovitch",{"headshot":2563,"ctfId":2564},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665628/Blog/Author%20Headshots/dhershkovitch-headshot.png","dhershkovitch",{"template":692},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2570,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2571,"config":2575,"_id":2576,"_type":33,"title":2577,"_source":35,"_file":2578,"_stem":2579,"_extension":38},"/en-us/blog/authors/dr-elle-obrien",{"name":2572,"config":2573},"Dr. Elle O'Brien",{"headshot":723,"ctfId":2574},"Dr-Elle-OBrien",{"template":692},"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":2581,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2582,"config":2586,"_id":2587,"_type":33,"title":2583,"_source":35,"_file":2588,"_stem":2589,"_extension":38},"/en-us/blog/authors/drew-blessing",{"name":2583,"config":2584},"Drew Blessing",{"headshot":723,"ctfId":2585},"Drew-Blessing",{"template":692},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2591,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2592,"config":2597,"_id":2598,"_type":33,"title":2593,"_source":35,"_file":2599,"_stem":2600,"_extension":38},"/en-us/blog/authors/dylan-griffith",{"name":2593,"config":2594},"Dylan Griffith",{"headshot":2595,"ctfId":2596},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672822/Blog/Author%20Headshots/DylanGriffith-headshot.jpg","DylanGriffith",{"template":692},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2602,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2603,"config":2607,"_id":2608,"_type":33,"title":2604,"_source":35,"_file":2609,"_stem":2610,"_extension":38},"/en-us/blog/authors/eddie-glenn",{"name":2604,"config":2605},"Eddie Glenn",{"headshot":7,"ctfId":2606},"eglenn",{"template":692},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2612,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2613,"config":2618,"_id":2619,"_type":33,"title":2614,"_source":35,"_file":2620,"_stem":2621,"_extension":38},"/en-us/blog/authors/eduardo-bonet",{"name":2614,"config":2615},"Eduardo Bonet",{"headshot":2616,"ctfId":2617},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682722/Blog/Author%20Headshots/eduardobonet-headshot.jpg","eduardobonet",{"template":692},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2623,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2624,"config":2629,"_id":2630,"_type":33,"title":2625,"_source":35,"_file":2631,"_stem":2632,"_extension":38},"/en-us/blog/authors/eliran-mesika",{"name":2625,"config":2626},"Eliran Mesika",{"headshot":2627,"ctfId":2628},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670111/Blog/Author%20Headshots/eliran.jpg","eliranmesika",{"template":692},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2634,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2635,"config":2640,"_id":2641,"_type":33,"title":2636,"_source":35,"_file":2642,"_stem":2643,"_extension":38},"/en-us/blog/authors/elisabeth-burrows",{"name":2636,"config":2637},"Elisabeth Burrows",{"headshot":2638,"ctfId":2639},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659535/Blog/Author%20Headshots/liz_burrows_headshot.png","6Nj2Lio5W7HdeNYoysVgCf",{"template":692},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2645,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2646,"config":2650,"_id":2651,"_type":33,"title":2647,"_source":35,"_file":2652,"_stem":2653,"_extension":38},"/en-us/blog/authors/elliot-rushton",{"name":2647,"config":2648},"Elliot Rushton",{"headshot":7,"ctfId":2649},"erushton",{"template":692},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2655,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2656,"config":2660,"_id":2661,"_type":33,"title":2657,"_source":35,"_file":2662,"_stem":2663,"_extension":38},"/en-us/blog/authors/emilie-schario",{"name":2657,"config":2658},"Emilie Schario",{"headshot":7,"ctfId":2659},"emilie",{"template":692},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2665,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2666,"config":2671,"_id":2672,"_type":33,"title":2667,"_source":35,"_file":2673,"_stem":2674,"_extension":38},"/en-us/blog/authors/emilio-salvador",{"name":2667,"config":2668},"Emilio Salvador",{"headshot":2669,"ctfId":2670},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660161/Blog/Author%20Headshots/esalvadorp-headshot.png","esalvadorp",{"template":692},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2676,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2677,"config":2682,"_id":2683,"_type":33,"title":2678,"_source":35,"_file":2684,"_stem":2685,"_extension":38},"/en-us/blog/authors/emily-bauman",{"name":2678,"config":2679},"Emily Bauman",{"headshot":2680,"ctfId":2681},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664145/Blog/Author%20Headshots/emilybauman-headshot.jpg","emilybauman",{"template":692},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2687,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2688,"config":2692,"_id":2693,"_type":33,"title":2689,"_source":35,"_file":2694,"_stem":2695,"_extension":38},"/en-us/blog/authors/emily-chin",{"name":2689,"config":2690},"Emily Chin",{"headshot":7,"ctfId":2691},"echin",{"template":692},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2697,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2698,"config":2702,"_id":2703,"_type":33,"title":2699,"_source":35,"_file":2704,"_stem":2705,"_extension":38},"/en-us/blog/authors/emily-kyle",{"name":2699,"config":2700},"Emily Kyle",{"headshot":723,"ctfId":2701},"Emily-Kyle",{"template":692},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2707,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2708,"config":2712,"_id":2713,"_type":33,"title":2714,"_source":35,"_file":2715,"_stem":2716,"_extension":38},"/en-us/blog/authors/emily-von-hoffmann",{"name":2709,"config":2710},"Emily von Hoffmann",{"headshot":723,"ctfId":2711},"evhoffmann",{"template":692},"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":2718,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2719,"config":2724,"_id":2725,"_type":33,"title":2726,"_source":35,"_file":2727,"_stem":2728,"_extension":38},"/en-us/blog/authors/enrique-alcntara",{"name":2720,"config":2721},"Enrique Alcántara",{"headshot":2722,"ctfId":2723},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669746/Blog/Author%20Headshots/ealcantara-headshot.jpg","3E3c30ZWRUTq6rlFiYrjtq",{"template":692},"content:en-us:blog:authors:enrique-alcntara.yml","Enrique Alcntara","en-us/blog/authors/enrique-alcntara.yml","en-us/blog/authors/enrique-alcntara",{"_path":2730,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2731,"config":2735,"_id":2736,"_type":33,"title":2732,"_source":35,"_file":2737,"_stem":2738,"_extension":38},"/en-us/blog/authors/eric-brinkman",{"name":2732,"config":2733},"Eric Brinkman",{"headshot":7,"ctfId":2734},"ebrinkman",{"template":692},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2740,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2741,"config":2745,"_id":2746,"_type":33,"title":2742,"_source":35,"_file":2747,"_stem":2748,"_extension":38},"/en-us/blog/authors/eric-eastwood",{"name":2742,"config":2743},"Eric Eastwood",{"headshot":7,"ctfId":2744},"MadLittleMods",{"template":692},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2750,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2751,"config":2755,"_id":2756,"_type":33,"title":2752,"_source":35,"_file":2757,"_stem":2758,"_extension":38},"/en-us/blog/authors/eric-rosenberg",{"name":2752,"config":2753},"Eric Rosenberg",{"headshot":7,"ctfId":2754},"ericrosenberg88",{"template":692},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2760,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2761,"config":2766,"_id":2767,"_type":33,"title":2762,"_source":35,"_file":2768,"_stem":2769,"_extension":38},"/en-us/blog/authors/eric-rubin",{"name":2762,"config":2763},"Eric Rubin",{"headshot":2764,"ctfId":2765},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682494/Blog/Author%20Headshots/ericrubin-headshot.png","ericrubin",{"template":692},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2771,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2772,"config":2777,"_id":2778,"_type":33,"title":2773,"_source":35,"_file":2779,"_stem":2780,"_extension":38},"/en-us/blog/authors/eric-schurter",{"name":2773,"config":2774},"Eric Schurter",{"headshot":2775,"ctfId":2776},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679281/Blog/Author%20Headshots/ericschurter-headshot.jpg","ericschurter",{"template":692},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2782,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2783,"config":2787,"_id":2788,"_type":33,"title":2784,"_source":35,"_file":2789,"_stem":2790,"_extension":38},"/en-us/blog/authors/erica-huang",{"name":2784,"config":2785},"Erica Huang",{"headshot":7,"ctfId":2786},"exhuang",{"template":692},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2792,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2793,"config":2797,"_id":2798,"_type":33,"title":2794,"_source":35,"_file":2799,"_stem":2800,"_extension":38},"/en-us/blog/authors/erica-lindberg",{"name":2794,"config":2795},"Erica Lindberg",{"headshot":723,"ctfId":2796},"Erica-Lindberg",{"template":692},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2802,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2803,"config":2807,"_id":2808,"_type":33,"title":2804,"_source":35,"_file":2809,"_stem":2810,"_extension":38},"/en-us/blog/authors/erich-wegscheider",{"name":2804,"config":2805},"Erich Wegscheider",{"headshot":7,"ctfId":2806},"ewegscheider",{"template":692},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2812,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2813,"config":2817,"_id":2818,"_type":33,"title":2814,"_source":35,"_file":2819,"_stem":2820,"_extension":38},"/en-us/blog/authors/erick-banks",{"name":2814,"config":2815},"Erick Banks",{"headshot":723,"ctfId":2816},"4CGXhAxudTq69aZOtPnLfu",{"template":692},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2822,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2823,"config":2827,"_id":2828,"_type":33,"title":2824,"_source":35,"_file":2829,"_stem":2830,"_extension":38},"/en-us/blog/authors/erika-feldman",{"name":2824,"config":2825},"Erika Feldman",{"headshot":723,"ctfId":2826},"78oCat8vvbl6mzXsLawd9d",{"template":692},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2832,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2833,"config":2837,"_id":2838,"_type":33,"title":2839,"_source":35,"_file":2840,"_stem":2841,"_extension":38},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2834,"config":2835},"Erin Krengel, Pulumi",{"headshot":723,"ctfId":2836},"Erin-Krengel-Pulumi",{"template":692},"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":2843,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2844,"config":2848,"_id":2849,"_type":33,"title":2850,"_source":35,"_file":2851,"_stem":2852,"_extension":38},"/en-us/blog/authors/ernst-van-nierop",{"name":2845,"config":2846},"Ernst van Nierop",{"headshot":7,"ctfId":2847},"ernstvn",{"template":692},"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":2854,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2855,"config":2859,"_id":2860,"_type":33,"title":2856,"_source":35,"_file":2861,"_stem":2862,"_extension":38},"/en-us/blog/authors/esther-shein",{"name":2856,"config":2857},"Esther Shein",{"headshot":723,"ctfId":2858},"Esther-Shein",{"template":692},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2864,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2865,"config":2870,"_id":2871,"_type":33,"title":2866,"_source":35,"_file":2872,"_stem":2873,"_extension":38},"/en-us/blog/authors/ethan-strike",{"name":2866,"config":2867},"Ethan Strike",{"headshot":2868,"ctfId":2869},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679067/Blog/Author%20Headshots/estrike-headshot.png","estrike",{"template":692},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2875,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2876,"config":2880,"_id":2881,"_type":33,"title":2877,"_source":35,"_file":2882,"_stem":2883,"_extension":38},"/en-us/blog/authors/ethan-urie",{"name":2877,"config":2878},"Ethan Urie",{"headshot":723,"ctfId":2879},"mJhtQw4TY9ZRNF7dfitIF",{"template":692},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2885,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2886,"config":2890,"_id":2891,"_type":33,"title":2887,"_source":35,"_file":2892,"_stem":2893,"_extension":38},"/en-us/blog/authors/eugene-lim",{"name":2887,"config":2888},"Eugene Lim",{"headshot":723,"ctfId":2889},"6KHdIdghkUfSTzV2MzxNcj",{"template":692},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2895,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2896,"config":2900,"_id":2901,"_type":33,"title":2897,"_source":35,"_file":2902,"_stem":2903,"_extension":38},"/en-us/blog/authors/eugenia-hannon",{"name":2897,"config":2898},"Eugenia Hannon",{"headshot":7,"ctfId":2899},"eugeniah",{"template":692},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2905,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2906,"config":2910,"_id":2911,"_type":33,"title":2907,"_source":35,"_file":2912,"_stem":2913,"_extension":38},"/en-us/blog/authors/ev-kontsevoy",{"name":2907,"config":2908},"Ev Kontsevoy",{"headshot":7,"ctfId":2909},"ekontsevoy",{"template":692},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2915,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2916,"config":2920,"_id":2921,"_type":33,"title":2917,"_source":35,"_file":2922,"_stem":2923,"_extension":38},"/en-us/blog/authors/eva-sasson",{"name":2917,"config":2918},"Eva Sasson",{"headshot":723,"ctfId":2919},"Eva-Sasson",{"template":692},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2925,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2926,"config":2931,"_id":2932,"_type":33,"title":2927,"_source":35,"_file":2933,"_stem":2934,"_extension":38},"/en-us/blog/authors/fabian-zimmer",{"name":2927,"config":2928},"Fabian Zimmer",{"headshot":2929,"ctfId":2930},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/q6awwqbxtg0a4x9gtmhs.png","3TK88UogcX5lx83kWMVuvI",{"template":692},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2936,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2937,"config":2941,"_id":2942,"_type":33,"title":2938,"_source":35,"_file":2943,"_stem":2944,"_extension":38},"/en-us/blog/authors/fabio-akita",{"name":2938,"config":2939},"Fabio Akita",{"headshot":723,"ctfId":2940},"Fabio-Akita",{"template":692},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2946,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2947,"config":2951,"_id":2952,"_type":33,"title":2948,"_source":35,"_file":2953,"_stem":2954,"_extension":38},"/en-us/blog/authors/fabio-busatto",{"name":2948,"config":2949},"Fabio Busatto",{"headshot":7,"ctfId":2950},"bikebilly",{"template":692},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":2956,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2957,"config":2962,"_id":2963,"_type":33,"title":2958,"_source":35,"_file":2964,"_stem":2965,"_extension":38},"/en-us/blog/authors/fabio-pitino",{"name":2958,"config":2959},"Fabio Pitino",{"headshot":2960,"ctfId":2961},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659958/Blog/Author%20Headshots/fabiopitino-headshot.jpg","fabiopitino",{"template":692},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":2967,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2968,"config":2972,"_id":2973,"_type":33,"title":2969,"_source":35,"_file":2974,"_stem":2975,"_extension":38},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2969,"config":2970},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2971},"fseifoddini",{"template":692},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":2977,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2978,"config":2982,"_id":2983,"_type":33,"title":2979,"_source":35,"_file":2984,"_stem":2985,"_extension":38},"/en-us/blog/authors/fatih-acet",{"name":2979,"config":2980},"Fatih Acet",{"headshot":7,"ctfId":2981},"fatihacet",{"template":692},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":2987,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2988,"config":2993,"_id":2994,"_type":33,"title":2989,"_source":35,"_file":2995,"_stem":2996,"_extension":38},"/en-us/blog/authors/fatima-sarah-khalid",{"name":2989,"config":2990},"Fatima Sarah Khalid",{"headshot":2991,"ctfId":2992},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663337/Blog/Author%20Headshots/sugaroverflow-headshot.jpg","sugaroverflow",{"template":692},"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":2998,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":2999,"config":3004,"_id":3005,"_type":33,"title":3000,"_source":35,"_file":3006,"_stem":3007,"_extension":38},"/en-us/blog/authors/fernando-diaz",{"name":3000,"config":3001},"Fernando Diaz",{"headshot":3002,"ctfId":3003},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659556/Blog/Author%20Headshots/fern_diaz.png","fjdiaz",{"template":692},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3009,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3010,"config":3014,"_id":3015,"_type":33,"title":3011,"_source":35,"_file":3016,"_stem":3017,"_extension":38},"/en-us/blog/authors/filipa-lacerda",{"name":3011,"config":3012},"Filipa Lacerda",{"headshot":7,"ctfId":3013},"filipa",{"template":692},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3019,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3020,"config":3025,"_id":3026,"_type":33,"title":3027,"_source":35,"_file":3028,"_stem":3029,"_extension":38},"/en-us/blog/authors/flix-veillette-potvin",{"name":3021,"config":3022}," Félix Veillette-Potvin",{"headshot":3023,"ctfId":3024},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662606/Blog/Author%20Headshots/_F%C3%A9lix_Veillette-Potvin_headshot.png","3nkwcdE5K3Uw9nrovEngxW",{"template":692},"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":3031,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3032,"config":3036,"_id":3037,"_type":33,"title":3033,"_source":35,"_file":3038,"_stem":3039,"_extension":38},"/en-us/blog/authors/forrest-brazeal",{"name":3033,"config":3034},"Forrest Brazeal",{"headshot":7,"ctfId":3035},"fbrazeal",{"template":692},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3041,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3042,"config":3046,"_id":3047,"_type":33,"title":3043,"_source":35,"_file":3048,"_stem":3049,"_extension":38},"/en-us/blog/authors/francis-ofungwu",{"name":3043,"config":3044},"Francis Ofungwu",{"headshot":723,"ctfId":3045},"fofungwu",{"template":692},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3051,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3052,"config":3057,"_id":3058,"_type":33,"title":3059,"_source":35,"_file":3060,"_stem":3061,"_extension":38},"/en-us/blog/authors/frdric-caplette",{"name":3053,"config":3054},"Frédéric Caplette",{"headshot":3055,"ctfId":3056},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661878/Blog/Author%20Headshots/frederic_caplette_headshot.png","6nMRwNMwciKSX03zmbBbPF",{"template":692},"content:en-us:blog:authors:frdric-caplette.yml","Frdric Caplette","en-us/blog/authors/frdric-caplette.yml","en-us/blog/authors/frdric-caplette",{"_path":3063,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3064,"config":3069,"_id":3070,"_type":33,"title":3065,"_source":35,"_file":3071,"_stem":3072,"_extension":38},"/en-us/blog/authors/gabe-weaver",{"name":3065,"config":3066},"Gabe Weaver",{"headshot":3067,"ctfId":3068},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667605/Blog/Author%20Headshots/gweaver-headshot.jpg","gweaver",{"template":692},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3074,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3075,"config":3080,"_id":3081,"_type":33,"title":3076,"_source":35,"_file":3082,"_stem":3083,"_extension":38},"/en-us/blog/authors/gabriel-engel",{"name":3076,"config":3077},"Gabriel Engel",{"headshot":3078,"ctfId":3079},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664747/Blog/Author%20Headshots/gabrielengel_gl-headshot.jpg","gabrielengelgl",{"template":692},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3085,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3086,"config":3090,"_id":3091,"_type":33,"title":3087,"_source":35,"_file":3092,"_stem":3093,"_extension":38},"/en-us/blog/authors/gabriel-le-breton",{"name":3087,"config":3088},"Gabriel Le Breton",{"headshot":723,"ctfId":3089},"Gabriel-Le-Breton",{"template":692},"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":3095,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3096,"config":3101,"_id":3102,"_type":33,"title":3097,"_source":35,"_file":3103,"_stem":3104,"_extension":38},"/en-us/blog/authors/gabriel-mazetto",{"name":3097,"config":3098},"Gabriel Mazetto",{"headshot":3099,"ctfId":3100},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678982/Blog/Author%20Headshots/brodock-headshot.jpg","brodock",{"template":692},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3106,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3107,"config":3112,"_id":3113,"_type":33,"title":3108,"_source":35,"_file":3114,"_stem":3115,"_extension":38},"/en-us/blog/authors/gavin-peltz",{"name":3108,"config":3109},"Gavin Peltz",{"headshot":3110,"ctfId":3111},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662831/Blog/Author%20Headshots/gavin_peltz.png","27UwgXDMqa0oBWV93rXTgN",{"template":692},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3117,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3118,"config":3123,"_id":3124,"_type":33,"title":3119,"_source":35,"_file":3125,"_stem":3126,"_extension":38},"/en-us/blog/authors/george-kichukov",{"name":3119,"config":3120},"George Kichukov",{"headshot":3121,"ctfId":3122},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664866/Blog/Author%20Headshots/george_kichukov.png","7e8bn05u4pXwYjkRrqdprE",{"template":692},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3128,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3129,"config":3133,"_id":3134,"_type":33,"title":3130,"_source":35,"_file":3135,"_stem":3136,"_extension":38},"/en-us/blog/authors/gerard-hickey",{"name":3130,"config":3131},"Gerard Hickey",{"headshot":7,"ctfId":3132},"ghickey",{"template":692},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3138,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3139,"config":3144,"_id":3145,"_type":33,"title":3146,"_source":35,"_file":3147,"_stem":3148,"_extension":38},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3140,"config":3141},"Gerardo Lopez-Fernandez",{"headshot":3142,"ctfId":3143},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679925/Blog/Author%20Headshots/glopezfernandez-headshot.jpg","glopezfernandez",{"template":692},"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":3150,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3151,"config":3156,"_id":3157,"_type":33,"title":3152,"_source":35,"_file":3158,"_stem":3159,"_extension":38},"/en-us/blog/authors/gina-doyle",{"name":3152,"config":3153},"Gina Doyle",{"headshot":3154,"ctfId":3155},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679201/Blog/Author%20Headshots/gdoyle-headshot.png","gdoyle",{"template":692},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3161,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3162,"config":3165,"_id":3166,"_type":33,"title":3167,"_source":35,"_file":3168,"_stem":3169,"_extension":38},"/en-us/blog/authors/gitlab",{"name":3163,"config":3164},"GitLab",{"headshot":723,"ctfId":3163},{"template":692},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3171,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3172,"config":3176,"_id":3177,"_type":33,"title":3178,"_source":35,"_file":3179,"_stem":3180,"_extension":38},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3173,"config":3174},"GitLab AI Assisted Group",{"headshot":723,"ctfId":3175},"GitLab-AI-Assisted-Group",{"template":692},"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":3182,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3183,"config":3187,"_id":3188,"_type":33,"title":3189,"_source":35,"_file":3190,"_stem":3191,"_extension":38},"/en-us/blog/authors/gitlab-france-team",{"name":3184,"config":3185},"GitLab France Team",{"headshot":723,"ctfId":3186},"1gfblqN0ibYIuWGk7MOTny",{"template":692},"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":3193,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3194,"config":3198,"_id":3199,"_type":33,"title":3200,"_source":35,"_file":3201,"_stem":3202,"_extension":38},"/en-us/blog/authors/gitlab-germany-team",{"name":3195,"config":3196},"GitLab Germany Team",{"headshot":723,"ctfId":3197},"6tNquF8jQeRRRi8k3ZXpvS",{"template":692},"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":3204,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3205,"config":3209,"_id":3210,"_type":33,"title":3211,"_source":35,"_file":3212,"_stem":3213,"_extension":38},"/en-us/blog/authors/gitlab-japan-team",{"name":3206,"config":3207},"GitLab Japan Team",{"headshot":723,"ctfId":3208},"5YWHF8vG80rluQ41QjgP7V",{"template":692},"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":3215,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3216,"config":3220,"_id":3221,"_type":33,"title":3222,"_source":35,"_file":3223,"_stem":3224,"_extension":38},"/en-us/blog/authors/gitlab-security-team",{"name":3217,"config":3218},"GitLab Security Team",{"headshot":723,"ctfId":3219},"GitLab-Security-Team",{"template":692},"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":3226,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3227,"config":3231,"_id":3232,"_type":33,"title":3233,"_source":35,"_file":3234,"_stem":3235,"_extension":38},"/en-us/blog/authors/gitlab-team",{"name":3228,"config":3229},"GitLab Team",{"headshot":723,"ctfId":3230},"GitLab-Team",{"template":692},"content:en-us:blog:authors:gitlab-team.yml","Gitlab Team","en-us/blog/authors/gitlab-team.yml","en-us/blog/authors/gitlab-team",{"_path":3237,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3238,"config":3242,"_id":3243,"_type":33,"title":3244,"_source":35,"_file":3245,"_stem":3246,"_extension":38},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3239,"config":3240},"GitLab Vulnerability Research Team",{"headshot":723,"ctfId":3241},"GitLab-Vulnerability-Research-Team",{"template":692},"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":3248,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3249,"config":3253,"_id":3254,"_type":33,"title":3250,"_source":35,"_file":3255,"_stem":3256,"_extension":38},"/en-us/blog/authors/goetz-buerkle",{"name":3250,"config":3251},"Goetz Buerkle",{"headshot":723,"ctfId":3252},"Goetz-Buerkle",{"template":692},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3258,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3259,"config":3264,"_id":3265,"_type":33,"title":3260,"_source":35,"_file":3266,"_stem":3267,"_extension":38},"/en-us/blog/authors/gosia-ksionek",{"name":3260,"config":3261},"Gosia Ksionek",{"headshot":3262,"ctfId":3263},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680521/Blog/Author%20Headshots/mksionek-headshot.jpg","mksionek",{"template":692},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3269,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3270,"config":3275,"_id":3276,"_type":33,"title":3271,"_source":35,"_file":3277,"_stem":3278,"_extension":38},"/en-us/blog/authors/grant-hickman",{"name":3271,"config":3272},"Grant Hickman",{"headshot":3273,"ctfId":3274},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682570/Blog/Author%20Headshots/g.png","ghickman",{"template":692},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3280,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3281,"config":3286,"_id":3287,"_type":33,"title":3282,"_source":35,"_file":3288,"_stem":3289,"_extension":38},"/en-us/blog/authors/grant-young",{"name":3282,"config":3283},"Grant Young",{"headshot":3284,"ctfId":3285},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666346/Blog/Author%20Headshots/grantyoung-headshot.jpg","grantyoung",{"template":692},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3291,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3292,"config":3296,"_id":3297,"_type":33,"title":3293,"_source":35,"_file":3298,"_stem":3299,"_extension":38},"/en-us/blog/authors/greg-alfaro",{"name":3293,"config":3294},"Greg Alfaro",{"headshot":7,"ctfId":3295},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":692},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3301,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3302,"config":3306,"_id":3307,"_type":33,"title":3303,"_source":35,"_file":3308,"_stem":3309,"_extension":38},"/en-us/blog/authors/greg-johnson",{"name":3303,"config":3304},"Greg Johnson",{"headshot":7,"ctfId":3305},"codeEmitter",{"template":692},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3311,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3312,"config":3317,"_id":3318,"_type":33,"title":3313,"_source":35,"_file":3319,"_stem":3320,"_extension":38},"/en-us/blog/authors/greg-myers",{"name":3313,"config":3314},"Greg Myers",{"headshot":3315,"ctfId":3316},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665570/Blog/Author%20Headshots/greg_myers_headshot.png","2uUYKgdtszyGfoOHbakiQX",{"template":692},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3322,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3323,"config":3327,"_id":3328,"_type":33,"title":3324,"_source":35,"_file":3329,"_stem":3330,"_extension":38},"/en-us/blog/authors/grzegorz-bizon",{"name":3324,"config":3325},"Grzegorz Bizon",{"headshot":723,"ctfId":3326},"Grzegorz-Bizon",{"template":692},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3332,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3333,"config":3337,"_id":3338,"_type":33,"title":3334,"_source":35,"_file":3339,"_stem":3340,"_extension":38},"/en-us/blog/authors/guenjun-yoo",{"name":3334,"config":3335},"Guenjun Yoo",{"headshot":7,"ctfId":3336},"gyoo",{"template":692},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3342,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3343,"config":3347,"_id":3348,"_type":33,"title":3349,"_source":35,"_file":3350,"_stem":3351,"_extension":38},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3344,"config":3345},"Guest author André Arko of Ruby Together",{"headshot":723,"ctfId":3346},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":692},"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":3353,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3354,"config":3358,"_id":3359,"_type":33,"title":3360,"_source":35,"_file":3361,"_stem":3362,"_extension":38},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3355,"config":3356},"Guest author André Miranda",{"headshot":723,"ctfId":3357},"Guest-author-Andr-Miranda",{"template":692},"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":3364,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3365,"config":3371,"_id":3372,"_type":33,"title":3373,"_source":35,"_file":3374,"_stem":3375,"_extension":38},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3366,"config":3367},"Gufran Yeşilyurt, OBSS",{"headshot":3368,"linkedin":3369,"ctfId":3370},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666380/Blog/Author%20Headshots/1643972670650.jpg","https://www.linkedin.com/in/gufran-yesilyurt/","2ydYMU86my71BUASual2EI",{"template":692},"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":3377,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3378,"config":3382,"_id":3383,"_type":33,"title":3384,"_source":35,"_file":3385,"_stem":3386,"_extension":38},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3379,"config":3380},"Gustaw Fit of Zoopla",{"headshot":723,"ctfId":3381},"Gustaw-Fit-of-Zoopla",{"template":692},"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":3388,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3389,"config":3393,"_id":3394,"_type":33,"title":3395,"_source":35,"_file":3396,"_stem":3397,"_extension":38},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3390,"config":3391},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":723,"ctfId":3392},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":692},"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":3399,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3400,"config":3404,"_id":3405,"_type":33,"title":3401,"_source":35,"_file":3406,"_stem":3407,"_extension":38},"/en-us/blog/authors/gyan-chawdhary",{"name":3401,"config":3402},"Gyan Chawdhary",{"headshot":723,"ctfId":3403},"Gyan-Chawdhary",{"template":692},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3409,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3410,"config":3415,"_id":3416,"_type":33,"title":3411,"_source":35,"_file":3417,"_stem":3418,"_extension":38},"/en-us/blog/authors/haim-snir",{"name":3411,"config":3412},"Haim Snir",{"headshot":3413,"ctfId":3414},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664386/Blog/Author%20Headshots/hsnir1-headshot.jpg","hsnir1",{"template":692},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3420,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3421,"config":3426,"_id":3427,"_type":33,"title":3428,"_source":35,"_file":3429,"_stem":3430,"_extension":38},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3422,"config":3423},"Hakeem Abdul-Razak",{"headshot":3424,"ctfId":3425},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662077/Blog/Author%20Headshots/Hakeem_Abdul-Razak_headshot.png","7H6nuZfVCK5mqJBK4fuaDH",{"template":692},"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":3432,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3433,"config":3437,"_id":3439,"_type":33,"title":3434,"_source":35,"_file":3440,"_stem":3441,"_extension":38},"/en-us/blog/authors/halil-coban",{"name":3434,"config":3435},"Halil Coban",{"headshot":3436},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":692,"gitlabHandle":3438},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3443,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3444,"config":3449,"_id":3450,"_type":33,"title":3445,"_source":35,"_file":3451,"_stem":3452,"_extension":38},"/en-us/blog/authors/hannah-sutor",{"name":3445,"config":3446},"Hannah Sutor",{"headshot":3447,"ctfId":3448},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665588/Blog/Author%20Headshots/hsutor-headshot.png","hsutor",{"template":692},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3454,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3455,"config":3460,"_id":3461,"_type":33,"title":3456,"_source":35,"_file":3462,"_stem":3463,"_extension":38},"/en-us/blog/authors/harjeet-sharma",{"name":3456,"config":3457},"Harjeet Sharma",{"headshot":3458,"ctfId":3459},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665497/Blog/Author%20Headshots/harjeet_sharma_headshot.png","723O6GGQQEu75MCuhw6lqh",{"template":692},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3465,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3466,"config":3470,"_id":3471,"_type":33,"title":3467,"_source":35,"_file":3472,"_stem":3473,"_extension":38},"/en-us/blog/authors/haydn-mackay",{"name":3467,"config":3468},"Haydn Mackay",{"headshot":723,"ctfId":3469},"Haydn-Mackay",{"template":692},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3475,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3476,"config":3480,"_id":3481,"_type":33,"title":3477,"_source":35,"_file":3482,"_stem":3483,"_extension":38},"/en-us/blog/authors/hazel-yang",{"name":3477,"config":3478},"Hazel Yang",{"headshot":7,"ctfId":3479},"hazelyang",{"template":692},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3485,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3486,"config":3490,"_id":3491,"_type":33,"title":3492,"_source":35,"_file":3493,"_stem":3494,"_extension":38},"/en-us/blog/authors/heather-mcnamee",{"name":3487,"config":3488},"Heather McNamee",{"headshot":723,"ctfId":3489},"Heather-McNamee",{"template":692},"content:en-us:blog:authors:heather-mcnamee.yml","Heather Mcnamee","en-us/blog/authors/heather-mcnamee.yml","en-us/blog/authors/heather-mcnamee",{"_path":3496,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3497,"config":3501,"_id":3502,"_type":33,"title":3498,"_source":35,"_file":3503,"_stem":3504,"_extension":38},"/en-us/blog/authors/heather-simpson",{"name":3498,"config":3499},"Heather Simpson",{"headshot":723,"ctfId":3500},"hsimpson",{"template":692},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3506,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3507,"config":3512,"_id":3513,"_type":33,"title":3508,"_source":35,"_file":3514,"_stem":3515,"_extension":38},"/en-us/blog/authors/hillary-benson",{"name":3508,"config":3509},"Hillary Benson",{"headshot":3510,"ctfId":3511},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683387/Blog/Author%20Headshots/hillarybensonheadshot.png","45VEFoISCoOhRXzyPyAf1x",{"template":692},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3517,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3518,"config":3522,"_id":3524,"_type":33,"title":3519,"_source":35,"_file":3525,"_stem":3526,"_extension":38},"/en-us/blog/authors/himanshu-kapoor",{"name":3519,"config":3520},"Himanshu Kapoor",{"headshot":3521},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":692,"gitlabHandle":3523},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3528,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3529,"config":3534,"_id":3535,"_type":33,"title":3530,"_source":35,"_file":3536,"_stem":3537,"_extension":38},"/en-us/blog/authors/hiroki-suezawa",{"name":3530,"config":3531},"Hiroki Suezawa",{"headshot":3532,"ctfId":3533},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662370/Blog/Author%20Headshots/hiroki_suezawa.png","cw6ZIj0yjr1uw2LAFr23h",{"template":692},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3539,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3540,"config":3544,"_id":3545,"_type":33,"title":3541,"_source":35,"_file":3546,"_stem":3547,"_extension":38},"/en-us/blog/authors/holly-reynolds",{"name":3541,"config":3542},"Holly Reynolds",{"headshot":7,"ctfId":3543},"hollyreynolds",{"template":692},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3549,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3550,"config":3554,"_id":3555,"_type":33,"title":3551,"_source":35,"_file":3556,"_stem":3557,"_extension":38},"/en-us/blog/authors/huldra",{"name":3551,"config":3552},"Huldra",{"headshot":7,"ctfId":3553},"huldra",{"template":692},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3559,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3560,"config":3564,"_id":3565,"_type":33,"title":3561,"_source":35,"_file":3566,"_stem":3567,"_extension":38},"/en-us/blog/authors/iain-camacho",{"name":3561,"config":3562},"Iain Camacho",{"headshot":7,"ctfId":3563},"icamacho",{"template":692},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3569,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3570,"config":3574,"_id":3575,"_type":33,"title":3571,"_source":35,"_file":3576,"_stem":3577,"_extension":38},"/en-us/blog/authors/ian-bartholomew",{"name":3571,"config":3572},"Ian Bartholomew",{"headshot":723,"ctfId":3573},"7D4PE43CXfi8pgOSCmipH0",{"template":692},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3579,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3580,"config":3585,"_id":3586,"_type":33,"title":3581,"_source":35,"_file":3587,"_stem":3588,"_extension":38},"/en-us/blog/authors/ian-khor",{"name":3581,"config":3582},"Ian Khor",{"headshot":3583,"ctfId":3584},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662933/Blog/Author%20Headshots/ian_khor_headshot.png","nSk8fzDwtG3LVFWwg8HrF",{"template":692},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3590,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3591,"config":3596,"_id":3597,"_type":33,"title":3592,"_source":35,"_file":3598,"_stem":3599,"_extension":38},"/en-us/blog/authors/ian-pedowitz",{"name":3592,"config":3593},"Ian Pedowitz",{"headshot":3594,"ctfId":3595},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683040/Blog/Author%20Headshots/ipedowitz-headshot.jpg","ipedowitz",{"template":692},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3601,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3602,"config":3607,"_id":3608,"_type":33,"title":3603,"_source":35,"_file":3609,"_stem":3610,"_extension":38},"/en-us/blog/authors/igor-drozdov",{"name":3603,"config":3604},"Igor Drozdov",{"headshot":3605,"ctfId":3606},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672455/Blog/Author%20Headshots/igor.png","igordrozdov",{"template":692},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3612,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3613,"config":3618,"_id":3619,"_type":33,"title":3614,"_source":35,"_file":3620,"_stem":3621,"_extension":38},"/en-us/blog/authors/igor-wiedler",{"name":3614,"config":3615},"Igor Wiedler",{"headshot":3616,"ctfId":3617},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681841/Blog/Author%20Headshots/igorwwwwwwwwwwwwwwwwwwww-headshot.png","igorwwwwwwwwwwwwwwwwwwww",{"template":692},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3623,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3624,"config":3629,"_id":3630,"_type":33,"title":3631,"_source":35,"_file":3632,"_stem":3633,"_extension":38},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3625,"config":3626},"Inchul Yoo, Sunjung Park",{"headshot":3627,"ctfId":3628},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669731/Blog/Author%20Headshots/sunjungp-headshot.png","sunjungp",{"template":692},"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":3635,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3636,"config":3641,"_id":3642,"_type":33,"title":3637,"_source":35,"_file":3643,"_stem":3644,"_extension":38},"/en-us/blog/authors/isaac-dawson",{"name":3637,"config":3638},"Isaac Dawson",{"headshot":3639,"ctfId":3640},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669814/Blog/Author%20Headshots/idawson-headshot.jpg","idawson",{"template":692},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3646,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3647,"config":3651,"_id":3653,"_type":33,"title":3654,"_source":35,"_file":3655,"_stem":3656,"_extension":38},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3648,"name":3650},{"headshot":3649},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":692,"gitlabHandle":3652},"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":3658,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3659,"config":3664,"_id":3665,"_type":33,"title":3660,"_source":35,"_file":3666,"_stem":3667,"_extension":38},"/en-us/blog/authors/itzik-gan-baruch",{"name":3660,"config":3661},"Itzik Gan Baruch",{"headshot":3662,"ctfId":3663},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch",{"template":692},"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":3669,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3670,"config":3674,"_id":3675,"_type":33,"title":3671,"_source":35,"_file":3676,"_stem":3677,"_extension":38},"/en-us/blog/authors/ivan-lychev",{"name":3671,"config":3672},"Ivan Lychev",{"headshot":7,"ctfId":3673},"iLychevAD",{"template":692},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3679,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3680,"config":3684,"_id":3685,"_type":33,"title":3681,"_source":35,"_file":3686,"_stem":3687,"_extension":38},"/en-us/blog/authors/ivan-nemytchenko",{"name":3681,"config":3682},"Ivan Nemytchenko",{"headshot":723,"ctfId":3683},"Ivan-Nemytchenko",{"template":692},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3689,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3690,"config":3696,"_id":3697,"_type":33,"title":3692,"_source":35,"_file":3698,"_stem":3699,"_extension":38},"/en-us/blog/authors/ivanha-paz",{"role":3691,"name":3692,"config":3693},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3694,"ctfId":3695},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":692},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3701,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3702,"config":3706,"_id":3707,"_type":33,"title":3703,"_source":35,"_file":3708,"_stem":3709,"_extension":38},"/en-us/blog/authors/jacie-bandur",{"name":3703,"config":3704},"Jacie Bandur",{"headshot":7,"ctfId":3705},"jbandur",{"template":692},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3711,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3712,"config":3717,"_id":3718,"_type":33,"title":3713,"_source":35,"_file":3719,"_stem":3720,"_extension":38},"/en-us/blog/authors/jacki-bauer",{"name":3713,"config":3714},"Jacki Bauer",{"headshot":3715,"ctfId":3716},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":692},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3722,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3723,"config":3727,"_id":3728,"_type":33,"title":3724,"_source":35,"_file":3729,"_stem":3730,"_extension":38},"/en-us/blog/authors/jackie-meshell",{"name":3724,"config":3725},"Jackie Meshell",{"headshot":7,"ctfId":3726},"jmeshell",{"template":692},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3732,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3733,"config":3738,"_id":3739,"_type":33,"title":3734,"_source":35,"_file":3740,"_stem":3741,"_extension":38},"/en-us/blog/authors/jackie-porter",{"name":3734,"config":3735},"Jackie Porter",{"headshot":3736,"ctfId":3737},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":692},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3743,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3744,"config":3748,"_id":3749,"_type":33,"title":3745,"_source":35,"_file":3750,"_stem":3751,"_extension":38},"/en-us/blog/authors/jacob-schatz",{"name":3745,"config":3746},"Jacob Schatz",{"headshot":7,"ctfId":3747},"jschatz1",{"template":692},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3753,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3754,"config":3758,"_id":3759,"_type":33,"title":3755,"_source":35,"_file":3760,"_stem":3761,"_extension":38},"/en-us/blog/authors/jacob-vosmaer",{"name":3755,"config":3756},"Jacob Vosmaer",{"headshot":723,"ctfId":3757},"Jacob-Vosmaer",{"template":692},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3763,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3764,"config":3769,"_id":3770,"_type":33,"title":3765,"_source":35,"_file":3771,"_stem":3772,"_extension":38},"/en-us/blog/authors/jacques-erasmus",{"name":3765,"config":3766},"Jacques Erasmus",{"headshot":3767,"ctfId":3768},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":692},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3774,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3775,"config":3780,"_id":3781,"_type":33,"title":3782,"_source":35,"_file":3783,"_stem":3784,"_extension":38},"/en-us/blog/authors/jaime-martnez",{"name":3776,"config":3777},"Jaime Martínez",{"headshot":3778,"ctfId":3779},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":692},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3786,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3787,"config":3791,"_id":3792,"_type":33,"title":3788,"_source":35,"_file":3793,"_stem":3794,"_extension":38},"/en-us/blog/authors/jake-foster",{"name":3788,"config":3789},"Jake Foster",{"headshot":723,"ctfId":3790},"jakefoster1",{"template":692},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3796,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3797,"config":3801,"_id":3802,"_type":33,"title":3798,"_source":35,"_file":3803,"_stem":3804,"_extension":38},"/en-us/blog/authors/jake-stein",{"name":3798,"config":3799},"Jake Stein",{"headshot":723,"ctfId":3800},"Jake-Stein",{"template":692},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3806,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3807,"config":3811,"_id":3812,"_type":33,"title":3808,"_source":35,"_file":3813,"_stem":3814,"_extension":38},"/en-us/blog/authors/james-dang",{"name":3808,"config":3809},"James Dang",{"headshot":723,"ctfId":3810},"James-Dang",{"template":692},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3816,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3817,"config":3822,"_id":3823,"_type":33,"title":3818,"_source":35,"_file":3824,"_stem":3825,"_extension":38},"/en-us/blog/authors/james-heimbuck",{"name":3818,"config":3819},"James Heimbuck",{"headshot":3820,"ctfId":3821},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":692},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3827,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3828,"config":3832,"_id":3833,"_type":33,"title":3829,"_source":35,"_file":3834,"_stem":3835,"_extension":38},"/en-us/blog/authors/james-ramsay",{"name":3829,"config":3830},"James Ramsay",{"headshot":7,"ctfId":3831},"jramsay",{"template":692},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3837,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3838,"config":3842,"_id":3843,"_type":33,"title":20,"_source":35,"_file":3844,"_stem":3845,"_extension":38},"/en-us/blog/authors/james-wormwell",{"name":20,"config":3839},{"headshot":3840,"ctfId":3841},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":692},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3847,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3848,"config":3852,"_id":3853,"_type":33,"title":3849,"_source":35,"_file":3854,"_stem":3855,"_extension":38},"/en-us/blog/authors/jamie-hurewitz",{"name":3849,"config":3850},"Jamie Hurewitz",{"headshot":723,"ctfId":3851},"Jamie-Hurewitz",{"template":692},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3857,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3858,"config":3862,"_id":3863,"_type":33,"title":3859,"_source":35,"_file":3864,"_stem":3865,"_extension":38},"/en-us/blog/authors/jamie-rachel",{"name":3859,"config":3860},"Jamie Rachel",{"headshot":7,"ctfId":3861},"jrachel1",{"template":692},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3867,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3868,"config":3873,"_id":3874,"_type":33,"title":3869,"_source":35,"_file":3875,"_stem":3876,"_extension":38},"/en-us/blog/authors/jan-provaznik",{"name":3869,"config":3870},"Jan Provaznik",{"headshot":3871,"ctfId":3872},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":692},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3878,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3879,"config":3884,"_id":3885,"_type":33,"title":3880,"_source":35,"_file":3886,"_stem":3887,"_extension":38},"/en-us/blog/authors/janis-altherr",{"name":3880,"config":3881},"Janis Altherr",{"headshot":3882,"ctfId":3883},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":692},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3889,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3890,"config":3895,"_id":3896,"_type":33,"title":3891,"_source":35,"_file":3897,"_stem":3898,"_extension":38},"/en-us/blog/authors/jannik-lehmann",{"name":3891,"config":3892},"Jannik Lehmann",{"headshot":3893,"ctfId":3894},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":692},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3900,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3901,"config":3906,"_id":3907,"_type":33,"title":3908,"_source":35,"_file":3909,"_stem":3910,"_extension":38},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3902,"config":3903},"Jarka Košanová et al",{"headshot":3904,"ctfId":3905},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":692},"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":3912,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3913,"config":3917,"_id":3918,"_type":33,"title":3919,"_source":35,"_file":3920,"_stem":3921,"_extension":38},"/en-us/blog/authors/jason-blais-mattermost",{"name":3914,"config":3915},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3916},"jasonblais",{"template":692},"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":3923,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3924,"config":3928,"_id":3929,"_type":33,"title":3925,"_source":35,"_file":3930,"_stem":3931,"_extension":38},"/en-us/blog/authors/jason-chen",{"name":3925,"config":3926},"Jason Chen",{"headshot":723,"ctfId":3927},"Jason-Chen",{"template":692},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3933,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3934,"config":3939,"_id":3940,"_type":33,"title":3935,"_source":35,"_file":3941,"_stem":3942,"_extension":38},"/en-us/blog/authors/jason-colyer",{"name":3935,"config":3936},"Jason Colyer",{"headshot":3937,"ctfId":3938},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":692},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3944,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3945,"config":3950,"_id":3951,"_type":33,"title":3946,"_source":35,"_file":3952,"_stem":3953,"_extension":38},"/en-us/blog/authors/jason-plum",{"name":3946,"config":3947},"Jason Plum",{"headshot":3948,"ctfId":3949},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":692},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":3955,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3956,"config":3960,"_id":3961,"_type":33,"title":3957,"_source":35,"_file":3962,"_stem":3963,"_extension":38},"/en-us/blog/authors/jason-yavorska",{"name":3957,"config":3958},"Jason Yavorska",{"headshot":7,"ctfId":3959},"jyavorska",{"template":692},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":3965,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3966,"config":3970,"_id":3971,"_type":33,"title":3967,"_source":35,"_file":3972,"_stem":3973,"_extension":38},"/en-us/blog/authors/jay-newman",{"name":3967,"config":3968},"Jay Newman",{"headshot":723,"ctfId":3969},"Jay-Newman",{"template":692},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":3975,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3976,"config":3981,"_id":3982,"_type":33,"title":3977,"_source":35,"_file":3983,"_stem":3984,"_extension":38},"/en-us/blog/authors/jayson-salazar",{"name":3977,"config":3978},"Jayson Salazar",{"headshot":3979,"ctfId":3980},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":692},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":3986,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3987,"config":3991,"_id":3992,"_type":33,"title":3993,"_source":35,"_file":3994,"_stem":3995,"_extension":38},"/en-us/blog/authors/jd-alex",{"name":3988,"config":3989},"JD Alex",{"headshot":7,"ctfId":3990},"jalex1",{"template":692},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":3997,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":3998,"config":4002,"_id":4003,"_type":33,"title":4004,"_source":35,"_file":4005,"_stem":4006,"_extension":38},"/en-us/blog/authors/jean-philippe-baconnais",{"name":3999,"config":4000},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":4001},"jeanphibaconnais",{"template":692},"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":4008,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4009,"config":4014,"_id":4015,"_type":33,"title":4010,"_source":35,"_file":4016,"_stem":4017,"_extension":38},"/en-us/blog/authors/jeff-burrows",{"name":4010,"config":4011},"Jeff Burrows",{"headshot":4012,"ctfId":4013},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":692},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4019,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4020,"config":4024,"_id":4025,"_type":33,"title":4021,"_source":35,"_file":4026,"_stem":4027,"_extension":38},"/en-us/blog/authors/jeff-kelsey",{"name":4021,"config":4022},"Jeff Kelsey",{"headshot":723,"ctfId":4023},"Jeff-Kelsey",{"template":692},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4029,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4030,"config":4035,"_id":4036,"_type":33,"title":4031,"_source":35,"_file":4037,"_stem":4038,"_extension":38},"/en-us/blog/authors/jeff-park",{"name":4031,"config":4032},"Jeff Park",{"headshot":4033,"ctfId":4034},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":692},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4040,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4041,"config":4046,"_id":4047,"_type":33,"title":4042,"_source":35,"_file":4048,"_stem":4049,"_extension":38},"/en-us/blog/authors/jeff-tucker",{"name":4042,"config":4043},"Jeff Tucker",{"headshot":4044,"ctfId":4045},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":692},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4051,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4052,"config":4057,"_id":4058,"_type":33,"title":4053,"_source":35,"_file":4059,"_stem":4060,"_extension":38},"/en-us/blog/authors/jensen-stava",{"name":4053,"config":4054},"Jensen Stava",{"headshot":4055,"ctfId":4056},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":692},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4062,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4063,"config":4067,"_id":4068,"_type":33,"title":4064,"_source":35,"_file":4069,"_stem":4070,"_extension":38},"/en-us/blog/authors/jeremy-cooper",{"name":4064,"config":4065},"Jeremy Cooper",{"headshot":723,"ctfId":4066},"6sXs62l8jODDcUlS9OPgTu",{"template":692},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4072,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4073,"config":4078,"_id":4079,"_type":33,"title":4074,"_source":35,"_file":4080,"_stem":4081,"_extension":38},"/en-us/blog/authors/jeremy-elder",{"name":4074,"config":4075},"Jeremy Elder",{"headshot":4076,"ctfId":4077},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":692},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4083,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4084,"config":4089,"_id":4090,"_type":33,"title":4085,"_source":35,"_file":4091,"_stem":4092,"_extension":38},"/en-us/blog/authors/jeremy-wagner",{"name":4085,"config":4086},"Jeremy Wagner",{"headshot":4087,"ctfId":4088},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":692},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4094,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4095,"config":4099,"_id":4100,"_type":33,"title":4096,"_source":35,"_file":4101,"_stem":4102,"_extension":38},"/en-us/blog/authors/jeremy-watson",{"name":4096,"config":4097},"Jeremy Watson",{"headshot":7,"ctfId":4098},"jeremy",{"template":692},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4104,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4105,"config":4110,"_id":4111,"_type":33,"title":4106,"_source":35,"_file":4112,"_stem":4113,"_extension":38},"/en-us/blog/authors/jerez-solis",{"name":4106,"config":4107},"Jerez Solis",{"headshot":4108,"ctfId":4109},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":692},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4115,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4116,"config":4120,"_id":4121,"_type":33,"title":4122,"_source":35,"_file":4123,"_stem":4124,"_extension":38},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4117,"config":4118},"Jeroen van Baarsen",{"headshot":723,"ctfId":4119},"Jeroen-van-Baarsen",{"template":692},"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":4126,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4127,"config":4132,"_id":4133,"_type":33,"title":4128,"_source":35,"_file":4134,"_stem":4135,"_extension":38},"/en-us/blog/authors/jessica-hurwitz",{"name":4128,"config":4129},"Jessica Hurwitz",{"headshot":4130,"ctfId":4131},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":692},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4137,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4138,"config":4142,"_id":4143,"_type":33,"title":4139,"_source":35,"_file":4144,"_stem":4145,"_extension":38},"/en-us/blog/authors/jim-riley",{"name":4139,"config":4140},"Jim Riley",{"headshot":7,"ctfId":4141},"GitLabcom-username-jrileyinva",{"template":692},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4147,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4148,"config":4152,"_id":4153,"_type":33,"title":4149,"_source":35,"_file":4154,"_stem":4155,"_extension":38},"/en-us/blog/authors/jim-thavisouk",{"name":4149,"config":4150},"Jim Thavisouk",{"headshot":723,"ctfId":4151},"jimthavisouk",{"template":692},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4157,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4158,"config":4162,"_id":4163,"_type":33,"title":4164,"_source":35,"_file":4165,"_stem":4166,"_extension":38},"/en-us/blog/authors/job-van-der-voort",{"name":4159,"config":4160},"Job van der Voort",{"headshot":723,"ctfId":4161},"Job-van-der-Voort",{"template":692},"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":4168,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4169,"config":4174,"_id":4175,"_type":33,"title":4170,"_source":35,"_file":4176,"_stem":4177,"_extension":38},"/en-us/blog/authors/jocelyn-eillis",{"name":4170,"config":4171},"Jocelyn Eillis",{"headshot":4172,"ctfId":4173},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":692},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4179,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4180,"config":4184,"_id":4185,"_type":33,"title":4181,"_source":35,"_file":4186,"_stem":4187,"_extension":38},"/en-us/blog/authors/jochen-roth",{"name":4181,"config":4182},"Jochen Roth",{"headshot":7,"ctfId":4183},"ochorocho",{"template":692},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4189,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4190,"config":4195,"_id":4196,"_type":33,"title":4191,"_source":35,"_file":4197,"_stem":4198,"_extension":38},"/en-us/blog/authors/joe-randazzo",{"name":4191,"config":4192},"Joe Randazzo",{"headshot":4193,"ctfId":4194},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":692},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4200,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4201,"config":4206,"_id":4207,"_type":33,"title":4202,"_source":35,"_file":4208,"_stem":4209,"_extension":38},"/en-us/blog/authors/joel-krooswyk",{"name":4202,"config":4203},"Joel Krooswyk",{"headshot":4204,"ctfId":4205},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":692},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4211,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4212,"config":4217,"_id":4218,"_type":33,"title":4213,"_source":35,"_file":4219,"_stem":4220,"_extension":38},"/en-us/blog/authors/joern-schneeweisz",{"name":4213,"config":4214},"Joern Schneeweisz",{"headshot":4215,"ctfId":4216},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":692},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4222,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4223,"config":4227,"_id":4228,"_type":33,"title":4224,"_source":35,"_file":4229,"_stem":4230,"_extension":38},"/en-us/blog/authors/joey-salazar",{"name":4224,"config":4225},"Joey Salazar",{"headshot":723,"ctfId":4226},"4LgUP4bzQV6kuhoZNFID9r",{"template":692},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4232,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4233,"config":4237,"_id":4238,"_type":33,"title":4234,"_source":35,"_file":4239,"_stem":4240,"_extension":38},"/en-us/blog/authors/johanna-ambrosio",{"name":4234,"config":4235},"Johanna Ambrosio",{"headshot":723,"ctfId":4236},"Johanna-Ambrosio",{"template":692},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4242,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4243,"config":4248,"_id":4249,"_type":33,"title":4244,"_source":35,"_file":4250,"_stem":4251,"_extension":38},"/en-us/blog/authors/johannes-bauer",{"name":4244,"config":4245},"Johannes Bauer",{"headshot":4246,"ctfId":4247},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":692},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4253,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4254,"config":4259,"_id":4260,"_type":33,"title":4255,"_source":35,"_file":4261,"_stem":4262,"_extension":38},"/en-us/blog/authors/john-cai",{"name":4255,"config":4256},"John Cai",{"headshot":4257,"ctfId":4258},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":692},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4264,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4265,"config":4270,"_id":4271,"_type":33,"title":4266,"_source":35,"_file":4272,"_stem":4273,"_extension":38},"/en-us/blog/authors/john-coghlan",{"name":4266,"config":4267},"John Coghlan",{"headshot":4268,"ctfId":4269},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":692},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4275,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4276,"config":4281,"_id":4282,"_type":33,"title":4277,"_source":35,"_file":4283,"_stem":4284,"_extension":38},"/en-us/blog/authors/john-crowley",{"name":4277,"config":4278},"John Crowley",{"headshot":4279,"ctfId":4280},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":692},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4286,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4287,"config":4292,"_id":4293,"_type":33,"title":4288,"_source":35,"_file":4294,"_stem":4295,"_extension":38},"/en-us/blog/authors/john-jarvis",{"name":4288,"config":4289},"John Jarvis",{"headshot":4290,"ctfId":4291},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":692},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4297,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4298,"config":4302,"_id":4303,"_type":33,"title":4299,"_source":35,"_file":4304,"_stem":4305,"_extension":38},"/en-us/blog/authors/john-jeremiah",{"name":4299,"config":4300},"John Jeremiah",{"headshot":723,"ctfId":4301},"johnjeremiah",{"template":692},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4307,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4308,"config":4312,"_id":4313,"_type":33,"title":4314,"_source":35,"_file":4315,"_stem":4316,"_extension":38},"/en-us/blog/authors/john-mcguire",{"name":4309,"config":4310},"John McGuire",{"headshot":723,"ctfId":4311},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":692},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4318,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4319,"config":4323,"_id":4325,"_type":33,"title":4320,"_source":35,"_file":4326,"_stem":4327,"_extension":38},"/en-us/blog/authors/john-skarbek",{"name":4320,"config":4321},"John Skarbek",{"headshot":4322},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":692,"gitlabHandle":4324},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4329,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4330,"config":4334,"_id":4335,"_type":33,"title":4331,"_source":35,"_file":4336,"_stem":4337,"_extension":38},"/en-us/blog/authors/john-sparrow",{"name":4331,"config":4332},"John Sparrow",{"headshot":723,"ctfId":4333},"John-Sparrow",{"template":692},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4339,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4340,"config":4344,"_id":4345,"_type":33,"title":4341,"_source":35,"_file":4346,"_stem":4347,"_extension":38},"/en-us/blog/authors/johnathan-hunt",{"name":4341,"config":4342},"Johnathan Hunt",{"headshot":723,"ctfId":4343},"JohnathanHunt",{"template":692},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4349,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4350,"config":4354,"_id":4355,"_type":33,"title":4351,"_source":35,"_file":4356,"_stem":4357,"_extension":38},"/en-us/blog/authors/joni-klippert",{"name":4351,"config":4352},"Joni Klippert",{"headshot":723,"ctfId":4353},"Joni-Klippert",{"template":692},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4359,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4360,"config":4365,"_id":4366,"_type":33,"title":4367,"_source":35,"_file":4368,"_stem":4369,"_extension":38},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4361,"config":4362},"João Alexandre Prado Tavares Cunha",{"headshot":4363,"ctfId":4364},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":692},"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":4371,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4372,"config":4377,"_id":4378,"_type":33,"title":4379,"_source":35,"_file":4380,"_stem":4381,"_extension":38},"/en-us/blog/authors/joo-pereira",{"name":4373,"config":4374},"João Pereira",{"headshot":4375,"ctfId":4376},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":692},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4383,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4384,"config":4388,"_id":4389,"_type":33,"title":4385,"_source":35,"_file":4390,"_stem":4391,"_extension":38},"/en-us/blog/authors/jordi-mon",{"name":4385,"config":4386},"Jordi Mon",{"headshot":7,"ctfId":4387},"jordimon",{"template":692},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4393,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4394,"config":4399,"_id":4400,"_type":33,"title":4401,"_source":35,"_file":4402,"_stem":4403,"_extension":38},"/en-us/blog/authors/jos-ivn-vargas",{"name":4395,"config":4396},"José Iván Vargas",{"headshot":4397,"ctfId":4398},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":692},"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":4405,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4406,"config":4410,"_id":4411,"_type":33,"title":4407,"_source":35,"_file":4412,"_stem":4413,"_extension":38},"/en-us/blog/authors/jose-finotto",{"name":4407,"config":4408},"Jose Finotto",{"headshot":7,"ctfId":4409},"finotto",{"template":692},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4415,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4416,"config":4420,"_id":4422,"_type":33,"title":4419,"_source":35,"_file":4423,"_stem":4424,"_extension":38},"/en-us/blog/authors/joseph-burnett",{"config":4417,"name":4419},{"headshot":4418},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":692,"gitlabHandle":4421},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4426,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4427,"config":4432,"_id":4433,"_type":33,"title":4428,"_source":35,"_file":4434,"_stem":4435,"_extension":38},"/en-us/blog/authors/joseph-longo",{"name":4428,"config":4429},"Joseph Longo",{"headshot":4430,"ctfId":4431},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":692},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4437,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4438,"config":4442,"_id":4443,"_type":33,"title":4444,"_source":35,"_file":4445,"_stem":4446,"_extension":38},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4439,"config":4440},"Joseph Schorr from CoreOS",{"headshot":723,"ctfId":4441},"Joseph-Schorr-from-CoreOS",{"template":692},"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":4448,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4449,"config":4454,"_id":4455,"_type":33,"title":4450,"_source":35,"_file":4456,"_stem":4457,"_extension":38},"/en-us/blog/authors/josh-feehs",{"name":4450,"config":4451},"Josh Feehs",{"headshot":4452,"ctfId":4453},"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":692},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4459,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4460,"config":4466,"_id":4467,"_type":33,"title":4468,"_source":35,"_file":4469,"_stem":4470,"_extension":38},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4461,"name":4462,"config":4463},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4464,"ctfId":4465},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":692},"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":4472,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4473,"config":4477,"_id":4478,"_type":33,"title":4474,"_source":35,"_file":4479,"_stem":4480,"_extension":38},"/en-us/blog/authors/josh-zimmerman",{"name":4474,"config":4475},"Josh Zimmerman",{"headshot":7,"ctfId":4476},"JoshZimmerman",{"template":692},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4482,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4483,"config":4488,"_id":4489,"_type":33,"title":4484,"_source":35,"_file":4490,"_stem":4491,"_extension":38},"/en-us/blog/authors/joshua-carroll",{"name":4484,"config":4485},"Joshua Carroll",{"headshot":4486,"ctfId":4487},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":692},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4493,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4494,"config":4499,"_id":4500,"_type":33,"title":4495,"_source":35,"_file":4501,"_stem":4502,"_extension":38},"/en-us/blog/authors/joshua-lambert",{"name":4495,"config":4496},"Joshua Lambert",{"headshot":4497,"ctfId":4498},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":692},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4504,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4505,"config":4509,"_id":4510,"_type":33,"title":4506,"_source":35,"_file":4511,"_stem":4512,"_extension":38},"/en-us/blog/authors/joyce-tompsett",{"name":4506,"config":4507},"Joyce Tompsett",{"headshot":7,"ctfId":4508},"Tompsett",{"template":692},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4514,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4515,"config":4519,"_id":4520,"_type":33,"title":4516,"_source":35,"_file":4521,"_stem":4522,"_extension":38},"/en-us/blog/authors/juan-broullon",{"name":4516,"config":4517},"Juan Broullon",{"headshot":7,"ctfId":4518},"jbroullon",{"template":692},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4524,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4525,"config":4529,"_id":4530,"_type":33,"title":4526,"_source":35,"_file":4531,"_stem":4532,"_extension":38},"/en-us/blog/authors/julia-lake",{"name":4526,"config":4527},"Julia Lake",{"headshot":723,"ctfId":4528},"5i9IDwCDDg3lfkiu9T3edZ",{"template":692},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4534,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4535,"config":4540,"_id":4541,"_type":33,"title":4536,"_source":35,"_file":4542,"_stem":4543,"_extension":38},"/en-us/blog/authors/julia-miocene",{"name":4536,"config":4537},"Julia Miocene",{"headshot":4538,"ctfId":4539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":692},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4545,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4546,"config":4550,"_id":4551,"_type":33,"title":4547,"_source":35,"_file":4552,"_stem":4553,"_extension":38},"/en-us/blog/authors/julian-thome",{"name":4547,"config":4548},"Julian Thome",{"headshot":7,"ctfId":4549},"jthome",{"template":692},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4555,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4556,"config":4561,"_id":4562,"_type":33,"title":4557,"_source":35,"_file":4563,"_stem":4564,"_extension":38},"/en-us/blog/authors/julie-byrne",{"name":4557,"config":4558},"Julie Byrne",{"headshot":4559,"ctfId":4560},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":692},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4566,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4567,"config":4572,"_id":4573,"_type":33,"title":4568,"_source":35,"_file":4574,"_stem":4575,"_extension":38},"/en-us/blog/authors/julie-griffin",{"name":4568,"config":4569},"Julie Griffin",{"headshot":4570,"ctfId":4571},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":692},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4577,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4578,"config":4582,"_id":4583,"_type":33,"title":4579,"_source":35,"_file":4584,"_stem":4585,"_extension":38},"/en-us/blog/authors/julien-andrieux",{"name":4579,"config":4580},"Julien Andrieux",{"headshot":723,"ctfId":4581},"Julien-Andrieux",{"template":692},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4587,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4588,"config":4593,"_id":4594,"_type":33,"title":4589,"_source":35,"_file":4595,"_stem":4596,"_extension":38},"/en-us/blog/authors/juliet-wanjohi",{"name":4589,"config":4590},"Juliet Wanjohi",{"headshot":4591,"ctfId":4592},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":692},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4598,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4599,"config":4603,"_id":4604,"_type":33,"title":4600,"_source":35,"_file":4605,"_stem":4606,"_extension":38},"/en-us/blog/authors/justin-farris",{"name":4600,"config":4601},"Justin Farris",{"headshot":723,"ctfId":4602},"5RHYudAlWLmSj5U7AOIcbG",{"template":692},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4608,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4609,"config":4614,"_id":4615,"_type":33,"title":4610,"_source":35,"_file":4616,"_stem":4617,"_extension":38},"/en-us/blog/authors/justin-tobler",{"name":4610,"config":4611},"Justin Tobler",{"headshot":4612,"ctfId":4613},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":692},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4619,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4620,"config":4625,"_id":4626,"_type":33,"title":4621,"_source":35,"_file":4627,"_stem":4628,"_extension":38},"/en-us/blog/authors/kai-armstrong",{"name":4621,"config":4622},"Kai Armstrong",{"headshot":4623,"ctfId":4624},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":692},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4630,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4631,"config":4635,"_id":4636,"_type":33,"title":4637,"_source":35,"_file":4638,"_stem":4639,"_extension":38},"/en-us/blog/authors/kamil-trzciski",{"name":4632,"config":4633},"Kamil Trzciński",{"headshot":723,"ctfId":4634},"Kamil-Trzciski",{"template":692},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4641,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4642,"config":4646,"_id":4647,"_type":33,"title":4648,"_source":35,"_file":4649,"_stem":4650,"_extension":38},"/en-us/blog/authors/karen-caras",{"name":4643,"config":4644},"Karen Carías",{"headshot":723,"ctfId":4645},"Karen-Caras",{"template":692},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4652,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4653,"config":4657,"_id":4659,"_type":33,"title":4654,"_source":35,"_file":4660,"_stem":4661,"_extension":38},"/en-us/blog/authors/karishma-kumar",{"name":4654,"config":4655},"Karishma Kumar",{"headshot":4656},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1761931048/z7wcdkw5czs9uwtpmfwg.png",{"template":692,"gitlabHandle":4658},"karishmakumar","content:en-us:blog:authors:karishma-kumar.yml","en-us/blog/authors/karishma-kumar.yml","en-us/blog/authors/karishma-kumar",{"_path":4663,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4664,"config":4669,"_id":4670,"_type":33,"title":4665,"_source":35,"_file":4671,"_stem":4672,"_extension":38},"/en-us/blog/authors/karthik-nayak",{"name":4665,"config":4666},"Karthik Nayak",{"headshot":4667,"ctfId":4668},"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":692},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4674,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4675,"config":4679,"_id":4680,"_type":33,"title":4676,"_source":35,"_file":4681,"_stem":4682,"_extension":38},"/en-us/blog/authors/katherine-okpara",{"name":4676,"config":4677},"Katherine Okpara",{"headshot":7,"ctfId":4678},"katokpara",{"template":692},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4684,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4685,"config":4689,"_id":4690,"_type":33,"title":4686,"_source":35,"_file":4691,"_stem":4692,"_extension":38},"/en-us/blog/authors/kathy-wang",{"name":4686,"config":4687},"Kathy Wang",{"headshot":7,"ctfId":4688},"kathyw",{"template":692},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4694,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4695,"config":4699,"_id":4700,"_type":33,"title":4701,"_source":35,"_file":4702,"_stem":4703,"_extension":38},"/en-us/blog/authors/keanon-okeefe",{"name":4696,"config":4697},"Keanon O’Keefe",{"headshot":7,"ctfId":4698},"kokeefe",{"template":692},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4705,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4706,"config":4711,"_id":4712,"_type":33,"title":4707,"_source":35,"_file":4713,"_stem":4714,"_extension":38},"/en-us/blog/authors/kees-valkhof",{"name":4707,"role":4708,"config":4709},"Kees Valkhof","Configuration manager at Lely",{"headshot":4710},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":692},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4716,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4717,"config":4721,"_id":4722,"_type":33,"title":4718,"_source":35,"_file":4723,"_stem":4724,"_extension":38},"/en-us/blog/authors/kelly-hair",{"name":4718,"config":4719},"Kelly Hair",{"headshot":723,"ctfId":4720},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":692},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4726,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4727,"config":4731,"_id":4732,"_type":33,"title":4728,"_source":35,"_file":4733,"_stem":4734,"_extension":38},"/en-us/blog/authors/kendra-marquart",{"name":4728,"config":4729},"Kendra Marquart",{"headshot":7,"ctfId":4730},"kmarquart",{"template":692},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4736,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4737,"config":4741,"_id":4742,"_type":33,"title":4738,"_source":35,"_file":4743,"_stem":4744,"_extension":38},"/en-us/blog/authors/kenny-johnston",{"name":4738,"config":4739},"Kenny Johnston",{"headshot":7,"ctfId":4740},"kencjohnston",{"template":692},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4746,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4747,"config":4752,"_id":4753,"_type":33,"title":4748,"_source":35,"_file":4754,"_stem":4755,"_extension":38},"/en-us/blog/authors/kevin-chu",{"name":4748,"config":4749},"Kevin Chu",{"headshot":4750,"ctfId":4751},"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":692},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4757,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4758,"config":4763,"_id":4764,"_type":33,"title":4759,"_source":35,"_file":4765,"_stem":4766,"_extension":38},"/en-us/blog/authors/kevin-morrison",{"name":4759,"config":4760},"Kevin Morrison",{"headshot":4761,"ctfId":4762},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":692},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4768,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4769,"config":4773,"_id":4774,"_type":33,"title":4770,"_source":35,"_file":4775,"_stem":4776,"_extension":38},"/en-us/blog/authors/khrystyna-humenna",{"name":4770,"config":4771},"Khrystyna Humenna",{"headshot":723,"ctfId":4772},"Khrystyna-Humenna",{"template":692},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4778,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4779,"config":4783,"_id":4784,"_type":33,"title":4780,"_source":35,"_file":4785,"_stem":4786,"_extension":38},"/en-us/blog/authors/kim-lock",{"name":4780,"config":4781},"Kim Lock",{"headshot":7,"ctfId":4782},"KimLock",{"template":692},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4788,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4789,"config":4793,"_id":4794,"_type":33,"title":4790,"_source":35,"_file":4795,"_stem":4796,"_extension":38},"/en-us/blog/authors/kirsten-abma",{"name":4790,"config":4791},"Kirsten Abma",{"headshot":723,"ctfId":4792},"Kirsten-Abma",{"template":692},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4798,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4799,"config":4803,"_id":4804,"_type":33,"title":4800,"_source":35,"_file":4805,"_stem":4806,"_extension":38},"/en-us/blog/authors/kristian-larsson",{"name":4800,"config":4801},"Kristian Larsson",{"headshot":723,"ctfId":4802},"Kristian-Larsson",{"template":692},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4808,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4809,"config":4814,"_id":4815,"_type":33,"title":4810,"_source":35,"_file":4816,"_stem":4817,"_extension":38},"/en-us/blog/authors/kristina-weis",{"name":4810,"config":4811},"Kristina Weis",{"headshot":4812,"ctfId":4813},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":692},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4819,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4820,"config":4824,"_id":4825,"_type":33,"title":4821,"_source":35,"_file":4826,"_stem":4827,"_extension":38},"/en-us/blog/authors/kurt-dusek",{"name":4821,"config":4822},"Kurt Dusek",{"headshot":7,"ctfId":4823},"kdusek",{"template":692},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4829,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4830,"config":4834,"_id":4835,"_type":33,"title":4831,"_source":35,"_file":4836,"_stem":4837,"_extension":38},"/en-us/blog/authors/kushal-koolwal",{"name":4831,"config":4832},"Kushal Koolwal",{"headshot":723,"ctfId":4833},"Kushal-Koolwal",{"template":692},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4839,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4840,"config":4845,"_id":4846,"_type":33,"title":4841,"_source":35,"_file":4847,"_stem":4848,"_extension":38},"/en-us/blog/authors/kushal-pandya",{"name":4841,"config":4842},"Kushal Pandya",{"headshot":4843,"ctfId":4844},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":692},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4850,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4851,"config":4855,"_id":4856,"_type":33,"title":4852,"_source":35,"_file":4857,"_stem":4858,"_extension":38},"/en-us/blog/authors/kwan-lee",{"name":4852,"config":4853},"Kwan Lee",{"headshot":723,"ctfId":4854},"Kwan-Lee",{"template":692},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4860,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4861,"config":4866,"_id":4867,"_type":33,"title":4862,"_source":35,"_file":4868,"_stem":4869,"_extension":38},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4862,"config":4863},"Kyla Gradin Dahl",{"headshot":4864,"ctfId":4865},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":692},"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":4871,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4872,"config":4876,"_id":4877,"_type":33,"title":4873,"_source":35,"_file":4878,"_stem":4879,"_extension":38},"/en-us/blog/authors/kyle-mann",{"name":4873,"config":4874},"Kyle Mann",{"headshot":723,"ctfId":4875},"44YiW1r6sTpbC9wKBeHGgE",{"template":692},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4881,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4882,"config":4887,"_id":4888,"_type":33,"title":4883,"_source":35,"_file":4889,"_stem":4890,"_extension":38},"/en-us/blog/authors/kyle-smith",{"name":4883,"config":4884},"Kyle Smith",{"headshot":4885,"ctfId":4886},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":692},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4892,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4893,"config":4897,"_id":4899,"_type":33,"title":4894,"_source":35,"_file":4900,"_stem":4901,"_extension":38},"/en-us/blog/authors/kymberlee-price",{"name":4894,"config":4895},"Kymberlee Price",{"headshot":4896},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":692,"gitlabHandle":4898},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4903,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4904,"config":4908,"_id":4909,"_type":33,"title":4905,"_source":35,"_file":4910,"_stem":4911,"_extension":38},"/en-us/blog/authors/lasse-schuirmann",{"name":4905,"config":4906},"Lasse Schuirmann",{"headshot":723,"ctfId":4907},"5vpo2ZOrPIS8PBp3k47S6w",{"template":692},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4913,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4914,"config":4918,"_id":4919,"_type":33,"title":4915,"_source":35,"_file":4920,"_stem":4921,"_extension":38},"/en-us/blog/authors/laura-montemayor",{"name":4915,"config":4916},"Laura Montemayor",{"headshot":7,"ctfId":4917},"lauraMon",{"template":692},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4923,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4924,"config":4929,"_id":4930,"_type":33,"title":4925,"_source":35,"_file":4931,"_stem":4932,"_extension":38},"/en-us/blog/authors/lauren-barker",{"name":4925,"config":4926},"Lauren Barker",{"headshot":4927,"ctfId":4928},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":692},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4934,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4935,"config":4939,"_id":4940,"_type":33,"title":4936,"_source":35,"_file":4941,"_stem":4942,"_extension":38},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4936,"config":4937},"Lauren Gibbons Paul",{"headshot":723,"ctfId":4938},"Lauren-Gibbons-Paul",{"template":692},"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":4944,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4945,"config":4949,"_id":4950,"_type":33,"title":4946,"_source":35,"_file":4951,"_stem":4952,"_extension":38},"/en-us/blog/authors/lauren-minning",{"name":4946,"config":4947},"Lauren Minning",{"headshot":7,"ctfId":4948},"lminning",{"template":692},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":4954,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4955,"config":4960,"_id":4961,"_type":33,"title":4956,"_source":35,"_file":4962,"_stem":4963,"_extension":38},"/en-us/blog/authors/laurena-alves",{"name":4956,"config":4957},"Laurena Alves",{"headshot":4958,"ctfId":4959},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":692},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":4965,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4966,"config":4971,"_id":4972,"_type":33,"title":4967,"_source":35,"_file":4973,"_stem":4974,"_extension":38},"/en-us/blog/authors/lee-faus",{"name":4967,"config":4968},"Lee Faus",{"headshot":4969,"ctfId":4970},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":692},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":4976,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4977,"config":4982,"_id":4983,"_type":33,"title":4978,"_source":35,"_file":4984,"_stem":4985,"_extension":38},"/en-us/blog/authors/lee-matos",{"name":4978,"config":4979},"Lee Matos",{"headshot":4980,"ctfId":4981},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":692},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":4987,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4988,"config":4993,"_id":4994,"_type":33,"title":4989,"_source":35,"_file":4995,"_stem":4996,"_extension":38},"/en-us/blog/authors/lee-tickett",{"name":4989,"config":4990},"Lee Tickett",{"headshot":4991,"ctfId":4992},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":692},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":4998,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":4999,"config":5003,"_id":5004,"_type":33,"title":5000,"_source":35,"_file":5005,"_stem":5006,"_extension":38},"/en-us/blog/authors/levente-polyak",{"name":5000,"config":5001},"Levente Polyak",{"headshot":7,"ctfId":5002},"anthraxx",{"template":692},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":5008,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5009,"config":5014,"_id":5015,"_type":33,"title":5016,"_source":35,"_file":5017,"_stem":5018,"_extension":38},"/en-us/blog/authors/lin-jen-shin",{"name":5010,"config":5011},"Lin Jen-Shin",{"headshot":5012,"ctfId":5013},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":692},"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":5020,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5021,"config":5026,"_id":5027,"_type":33,"title":5022,"_source":35,"_file":5028,"_stem":5029,"_extension":38},"/en-us/blog/authors/liz-coleman",{"name":5022,"config":5023},"Liz Coleman",{"headshot":5024,"ctfId":5025},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":692},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5031,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5032,"config":5037,"_id":5038,"_type":33,"title":5033,"_source":35,"_file":5039,"_stem":5040,"_extension":38},"/en-us/blog/authors/loryn-bortins",{"name":5033,"config":5034},"Loryn Bortins",{"headshot":5035,"ctfId":5036},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":692},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5042,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5043,"config":5047,"_id":5048,"_type":33,"title":5044,"_source":35,"_file":5049,"_stem":5050,"_extension":38},"/en-us/blog/authors/lucas-charles",{"name":5044,"config":5045},"Lucas Charles",{"headshot":723,"ctfId":5046},"01OUkmRJImMowxMk3YHGNS",{"template":692},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5052,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5053,"config":5057,"_id":5058,"_type":33,"title":5054,"_source":35,"_file":5059,"_stem":5060,"_extension":38},"/en-us/blog/authors/luka-trbojevic",{"name":5054,"config":5055},"Luka Trbojevic",{"headshot":7,"ctfId":5056},"ltrbojevic",{"template":692},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5062,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5063,"config":5067,"_id":5068,"_type":33,"title":5064,"_source":35,"_file":5069,"_stem":5070,"_extension":38},"/en-us/blog/authors/lukas-eipert",{"name":5064,"config":5065},"Lukas Eipert",{"headshot":723,"ctfId":5066},"37PO8stm7JUQgglr4tWcmw",{"template":692},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5072,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5073,"config":5078,"_id":5079,"_type":33,"title":5074,"_source":35,"_file":5080,"_stem":5081,"_extension":38},"/en-us/blog/authors/lyle-kozloff",{"name":5074,"config":5075},"Lyle Kozloff",{"headshot":5076,"ctfId":5077},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":692},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5083,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5084,"config":5089,"_id":5090,"_type":33,"title":5085,"_source":35,"_file":5091,"_stem":5092,"_extension":38},"/en-us/blog/authors/madeline-lake",{"name":5085,"config":5086},"Madeline Lake",{"headshot":5087,"ctfId":5088},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":692},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5094,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5095,"config":5100,"_id":5101,"_type":33,"title":5096,"_source":35,"_file":5102,"_stem":5103,"_extension":38},"/en-us/blog/authors/madou-coulibaly",{"name":5096,"config":5097},"Madou Coulibaly",{"headshot":5098,"ctfId":5099},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":692},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5105,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5106,"config":5111,"_id":5112,"_type":33,"title":5107,"_source":35,"_file":5113,"_stem":5114,"_extension":38},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5107,"config":5108},"Magdalena Frankiewicz",{"headshot":5109,"ctfId":5110},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":692},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5116,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5117,"config":5121,"_id":5122,"_type":33,"title":5118,"_source":35,"_file":5123,"_stem":5124,"_extension":38},"/en-us/blog/authors/mahesh-kumar",{"name":5118,"config":5119},"Mahesh Kumar",{"headshot":723,"ctfId":5120},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":692},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5126,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5127,"config":5132,"_id":5133,"_type":33,"title":5128,"_source":35,"_file":5134,"_stem":5135,"_extension":38},"/en-us/blog/authors/manav-khurana",{"name":5128,"config":5129,"role":5131},"Manav Khurana",{"headshot":5130},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":692,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5137,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5138,"config":5143,"_id":5144,"_type":33,"title":5139,"_source":35,"_file":5145,"_stem":5146,"_extension":38},"/en-us/blog/authors/manuel-kraft",{"name":5139,"config":5140},"Manuel Kraft",{"headshot":5141,"ctfId":5142},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":692},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5148,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5149,"config":5153,"_id":5154,"_type":33,"title":5150,"_source":35,"_file":5155,"_stem":5156,"_extension":38},"/en-us/blog/authors/marc-radulescu",{"name":5150,"config":5151},"Marc Radulescu",{"headshot":723,"ctfId":5152},"Marc-Radulescu",{"template":692},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5158,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5159,"config":5164,"_id":5165,"_type":33,"title":5160,"_source":35,"_file":5166,"_stem":5167,"_extension":38},"/en-us/blog/authors/marc-shaw",{"name":5160,"config":5161},"Marc Shaw",{"headshot":5162,"ctfId":5163},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":692},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5169,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5170,"config":5175,"_id":5176,"_type":33,"title":5177,"_source":35,"_file":5178,"_stem":5179,"_extension":38},"/en-us/blog/authors/marcel-van-remmerden",{"name":5171,"config":5172},"Marcel van Remmerden",{"headshot":5173,"ctfId":5174},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":692},"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":5181,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5182,"config":5186,"_id":5187,"_type":33,"title":5183,"_source":35,"_file":5188,"_stem":5189,"_extension":38},"/en-us/blog/authors/marcia-ramos",{"name":5183,"config":5184},"Marcia Ramos",{"headshot":723,"ctfId":5185},"Marcia-Ramos",{"template":692},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5191,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5192,"config":5196,"_id":5197,"_type":33,"title":5193,"_source":35,"_file":5198,"_stem":5199,"_extension":38},"/en-us/blog/authors/marco-lenzo",{"name":5193,"config":5194},"Marco Lenzo",{"headshot":723,"ctfId":5195},"Marco-Lenzo",{"template":692},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5201,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5202,"config":5206,"_id":5207,"_type":33,"title":5203,"_source":35,"_file":5208,"_stem":5209,"_extension":38},"/en-us/blog/authors/marie-hargitt",{"name":5203,"config":5204},"Marie Hargitt",{"headshot":723,"ctfId":5205},"Marie-Hargitt",{"template":692},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5211,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5212,"config":5217,"_id":5218,"_type":33,"title":5213,"_source":35,"_file":5219,"_stem":5220,"_extension":38},"/en-us/blog/authors/marin-jankovski",{"name":5213,"config":5214},"Marin Jankovski",{"headshot":5215,"ctfId":5216},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":692},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5222,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5223,"config":5227,"_id":5228,"_type":33,"title":5229,"_source":35,"_file":5230,"_stem":5231,"_extension":38},"/en-us/blog/authors/marin-job",{"name":5224,"config":5225},"Marin, Job",{"headshot":723,"ctfId":5226},"Marin-Job",{"template":692},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5233,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5234,"config":5238,"_id":5239,"_type":33,"title":5240,"_source":35,"_file":5241,"_stem":5242,"_extension":38},"/en-us/blog/authors/mario-de-la-ossa",{"name":5235,"config":5236},"Mario de la Ossa",{"headshot":7,"ctfId":5237},"mdelaossa",{"template":692},"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":5244,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5245,"config":5249,"_id":5250,"_type":33,"title":5246,"_source":35,"_file":5251,"_stem":5252,"_extension":38},"/en-us/blog/authors/mark-art",{"name":5246,"config":5247},"Mark Art",{"headshot":723,"ctfId":5248},"55KCfyNmgPaJRmBZhiN7k5",{"template":692},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5254,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5255,"config":5259,"_id":5260,"_type":33,"title":5256,"_source":35,"_file":5261,"_stem":5262,"_extension":38},"/en-us/blog/authors/mark-fletcher",{"name":5256,"config":5257},"Mark Fletcher",{"headshot":7,"ctfId":5258},"markglenfletcher",{"template":692},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5264,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5265,"config":5270,"_id":5271,"_type":33,"title":5266,"_source":35,"_file":5272,"_stem":5273,"_extension":38},"/en-us/blog/authors/mark-lapierre",{"name":5266,"config":5267},"Mark Lapierre",{"headshot":5268,"ctfId":5269},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":692},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5275,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5276,"config":5281,"_id":5282,"_type":33,"title":5277,"_source":35,"_file":5283,"_stem":5284,"_extension":38},"/en-us/blog/authors/mark-loveless",{"name":5277,"config":5278},"Mark Loveless",{"headshot":5279,"ctfId":5280},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":692},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5286,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5287,"config":5291,"_id":5292,"_type":33,"title":5288,"_source":35,"_file":5293,"_stem":5294,"_extension":38},"/en-us/blog/authors/mark-pundsack",{"name":5288,"config":5289},"Mark Pundsack",{"headshot":723,"ctfId":5290},"markpundsack",{"template":692},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5296,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5297,"config":5302,"_id":5303,"_type":33,"title":5304,"_source":35,"_file":5305,"_stem":5306,"_extension":38},"/en-us/blog/authors/martin-brmmer",{"name":5298,"config":5299},"Martin Brümmer",{"headshot":5300,"ctfId":5301},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":692},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5308,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5309,"config":5313,"_id":5314,"_type":33,"title":5310,"_source":35,"_file":5315,"_stem":5316,"_extension":38},"/en-us/blog/authors/martynas-krupskis",{"name":5310,"config":5311},"Martynas Krupskis",{"headshot":723,"ctfId":5312},"3tK5S0f4QshGFGRrdEl7rn",{"template":692},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5318,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5319,"config":5323,"_id":5324,"_type":33,"title":5320,"_source":35,"_file":5325,"_stem":5326,"_extension":38},"/en-us/blog/authors/matej-latin",{"name":5320,"config":5321},"Matej Latin",{"headshot":7,"ctfId":5322},"matejlatin",{"template":692},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5328,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5329,"config":5334,"_id":5335,"_type":33,"title":5330,"_source":35,"_file":5336,"_stem":5337,"_extension":38},"/en-us/blog/authors/mathias-ewald",{"name":5330,"config":5331},"Mathias Ewald",{"headshot":5332,"ctfId":5333},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":692},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5339,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5340,"config":5344,"_id":5345,"_type":33,"title":5341,"_source":35,"_file":5346,"_stem":5347,"_extension":38},"/en-us/blog/authors/matt-baldwin",{"name":5341,"config":5342},"Matt Baldwin",{"headshot":723,"ctfId":5343},"Matt-Baldwin",{"template":692},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5349,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5350,"config":5355,"_id":5356,"_type":33,"title":5351,"_source":35,"_file":5357,"_stem":5358,"_extension":38},"/en-us/blog/authors/matt-coons",{"name":5351,"config":5352},"Matt Coons",{"headshot":5353,"ctfId":5354},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":692},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5360,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5361,"config":5366,"_id":5367,"_type":33,"title":5368,"_source":35,"_file":5369,"_stem":5370,"_extension":38},"/en-us/blog/authors/matt-delaney",{"name":5362,"config":5363},"Matt DeLaney",{"headshot":5364,"ctfId":5365},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":692},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5372,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5373,"config":5378,"_id":5379,"_type":33,"title":5374,"_source":35,"_file":5380,"_stem":5381,"_extension":38},"/en-us/blog/authors/matt-genelin",{"name":5374,"config":5375},"Matt Genelin",{"headshot":5376,"ctfId":5377},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":692},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5383,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5384,"config":5388,"_id":5389,"_type":33,"title":5385,"_source":35,"_file":5390,"_stem":5391,"_extension":38},"/en-us/blog/authors/matt-nguyen",{"name":5385,"config":5386},"Matt Nguyen",{"headshot":723,"ctfId":5387},"Matt-Nguyen",{"template":692},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5393,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5394,"config":5399,"_id":5400,"_type":33,"title":5395,"_source":35,"_file":5401,"_stem":5402,"_extension":38},"/en-us/blog/authors/matt-nohr",{"name":5395,"config":5396},"Matt Nohr",{"headshot":5397,"ctfId":5398},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":692},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5404,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5405,"config":5410,"_id":5411,"_type":33,"title":5406,"_source":35,"_file":5412,"_stem":5413,"_extension":38},"/en-us/blog/authors/matt-smiley",{"name":5406,"config":5407},"Matt Smiley",{"headshot":5408,"ctfId":5409},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":692},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5415,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5416,"config":5420,"_id":5421,"_type":33,"title":5417,"_source":35,"_file":5422,"_stem":5423,"_extension":38},"/en-us/blog/authors/matt-wilson",{"name":5417,"config":5418},"Matt Wilson",{"headshot":723,"ctfId":5419},"mattwilson",{"template":692},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5425,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5426,"config":5431,"_id":5432,"_type":33,"title":5427,"_source":35,"_file":5433,"_stem":5434,"_extension":38},"/en-us/blog/authors/matthew-macfarlane",{"name":5427,"config":5428},"Matthew Macfarlane",{"headshot":5429,"ctfId":5430},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":692},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5436,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5437,"config":5442,"_id":5443,"_type":33,"title":5438,"_source":35,"_file":5444,"_stem":5445,"_extension":38},"/en-us/blog/authors/matthew-nearents",{"name":5438,"config":5439},"Matthew Nearents",{"headshot":5440,"ctfId":5441},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":692},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5447,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5448,"config":5453,"_id":5454,"_type":33,"title":5455,"_source":35,"_file":5456,"_stem":5457,"_extension":38},"/en-us/blog/authors/matthias-kppler",{"name":5449,"config":5450},"Matthias Käppler",{"headshot":5451,"ctfId":5452},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":692},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5459,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5460,"config":5464,"_id":5465,"_type":33,"title":5461,"_source":35,"_file":5466,"_stem":5467,"_extension":38},"/en-us/blog/authors/matthieu-fronton",{"name":5461,"config":5462},"Matthieu Fronton",{"headshot":7,"ctfId":5463},"frntn",{"template":692},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5469,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5470,"config":5474,"_id":5475,"_type":33,"title":5471,"_source":35,"_file":5476,"_stem":5477,"_extension":38},"/en-us/blog/authors/max-woolf",{"name":5471,"config":5472},"Max Woolf",{"headshot":723,"ctfId":5473},"Max-Woolf",{"template":692},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5479,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5480,"config":5485,"_id":5486,"_type":33,"title":5481,"_source":35,"_file":5487,"_stem":5488,"_extension":38},"/en-us/blog/authors/maximilien-belinga",{"name":5481,"config":5482},"Maximilien Belinga",{"headshot":5483,"ctfId":5484},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":692},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5490,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5491,"config":5495,"_id":5496,"_type":33,"title":5492,"_source":35,"_file":5497,"_stem":5498,"_extension":38},"/en-us/blog/authors/mayank-tahilramani",{"name":5492,"config":5493},"Mayank Tahilramani",{"headshot":7,"ctfId":5494},"mayanktahil",{"template":692},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5500,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5501,"config":5506,"_id":5507,"_type":33,"title":5502,"_source":35,"_file":5508,"_stem":5509,"_extension":38},"/en-us/blog/authors/mayra-cabrera",{"name":5502,"config":5503},"Mayra Cabrera",{"headshot":5504,"ctfId":5505},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":692},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5511,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5512,"config":5516,"_id":5517,"_type":33,"title":5513,"_source":35,"_file":5518,"_stem":5519,"_extension":38},"/en-us/blog/authors/meghan-maneval",{"name":5513,"config":5514},"Meghan Maneval",{"headshot":7,"ctfId":5515},"mmaneval20",{"template":692},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5521,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5522,"config":5527,"_id":5528,"_type":33,"title":5523,"_source":35,"_file":5529,"_stem":5530,"_extension":38},"/en-us/blog/authors/mek-stittri",{"name":5523,"config":5524},"Mek Stittri",{"headshot":5525,"ctfId":5526},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":692},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5532,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5533,"config":5537,"_id":5538,"_type":33,"title":5534,"_source":35,"_file":5539,"_stem":5540,"_extension":38},"/en-us/blog/authors/melissa-farber",{"name":5534,"config":5535},"Melissa Farber",{"headshot":7,"ctfId":5536},"mfarber",{"template":692},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5542,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5543,"config":5547,"_id":5548,"_type":33,"title":5544,"_source":35,"_file":5549,"_stem":5550,"_extension":38},"/en-us/blog/authors/melissa-smolensky",{"name":5544,"config":5545},"Melissa Smolensky",{"headshot":7,"ctfId":5546},"melsmo",{"template":692},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5552,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5553,"config":5558,"_id":5559,"_type":33,"title":5554,"_source":35,"_file":5560,"_stem":5561,"_extension":38},"/en-us/blog/authors/melissa-ushakov",{"name":5554,"config":5555},"Melissa Ushakov",{"headshot":5556,"ctfId":5557},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":692},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5563,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5564,"config":5568,"_id":5569,"_type":33,"title":5565,"_source":35,"_file":5570,"_stem":5571,"_extension":38},"/en-us/blog/authors/michael-fahey",{"name":5565,"config":5566},"Michael Fahey",{"headshot":7,"ctfId":5567},"mfahey",{"template":692},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5573,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5574,"config":5579,"_id":5580,"_type":33,"title":5575,"_source":35,"_file":5581,"_stem":5582,"_extension":38},"/en-us/blog/authors/michael-friedrich",{"name":5575,"config":5576},"Michael Friedrich",{"headshot":5577,"ctfId":5578},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":692},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5584,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5585,"config":5589,"_id":5590,"_type":33,"title":5586,"_source":35,"_file":5591,"_stem":5592,"_extension":38},"/en-us/blog/authors/michael-henriksen",{"name":5586,"config":5587},"Michael Henriksen",{"headshot":723,"ctfId":5588},"3DmojnawcJFqAgoNMCpFTX",{"template":692},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5594,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5595,"config":5599,"_id":5600,"_type":33,"title":5596,"_source":35,"_file":5601,"_stem":5602,"_extension":38},"/en-us/blog/authors/michael-karampalas",{"name":5596,"config":5597},"Michael Karampalas",{"headshot":7,"ctfId":5598},"mkarampalas",{"template":692},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5604,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5605,"config":5610,"_id":5611,"_type":33,"title":5606,"_source":35,"_file":5612,"_stem":5613,"_extension":38},"/en-us/blog/authors/michael-kozono",{"name":5606,"config":5607},"Michael Kozono",{"headshot":5608,"ctfId":5609},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":692},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5615,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5616,"config":5620,"_id":5621,"_type":33,"title":5617,"_source":35,"_file":5622,"_stem":5623,"_extension":38},"/en-us/blog/authors/michael-miranda",{"name":5617,"config":5618},"Michael Miranda",{"headshot":7,"ctfId":5619},"mikemiranda",{"template":692},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5625,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5626,"config":5631,"_id":5632,"_type":33,"title":5627,"_source":35,"_file":5633,"_stem":5634,"_extension":38},"/en-us/blog/authors/michelle-gill",{"name":5627,"config":5628},"Michelle Gill",{"headshot":5629,"ctfId":5630},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":692},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5636,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5637,"config":5642,"_id":5643,"_type":33,"title":5638,"_source":35,"_file":5644,"_stem":5645,"_extension":38},"/en-us/blog/authors/miguel-rincon",{"name":5638,"config":5639},"Miguel Rincon",{"headshot":5640,"ctfId":5641},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":692},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5647,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5648,"config":5652,"_id":5653,"_type":33,"title":5649,"_source":35,"_file":5654,"_stem":5655,"_extension":38},"/en-us/blog/authors/mike-bartlett",{"name":5649,"config":5650},"Mike Bartlett",{"headshot":7,"ctfId":5651},"mydigitalself",{"template":692},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5657,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5658,"config":5662,"_id":5663,"_type":33,"title":5659,"_source":35,"_file":5664,"_stem":5665,"_extension":38},"/en-us/blog/authors/mike-eddington",{"name":5659,"config":5660},"Mike Eddington",{"headshot":723,"ctfId":5661},"q5tK0TgB1ZovSwShKSvOJ",{"template":692},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5667,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5668,"config":5673,"_id":5674,"_type":33,"title":5669,"_source":35,"_file":5675,"_stem":5676,"_extension":38},"/en-us/blog/authors/mike-flouton",{"name":5669,"config":5670},"Mike Flouton",{"headshot":5671,"ctfId":5672},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":692},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5678,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5679,"config":5683,"_id":5684,"_type":33,"title":5680,"_source":35,"_file":5685,"_stem":5686,"_extension":38},"/en-us/blog/authors/mike-gerwitz",{"name":5680,"config":5681},"Mike Gerwitz",{"headshot":723,"ctfId":5682},"Mike-Gerwitz",{"template":692},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5688,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5689,"config":5693,"_id":5694,"_type":33,"title":5690,"_source":35,"_file":5695,"_stem":5696,"_extension":38},"/en-us/blog/authors/mike-greiling",{"name":5690,"config":5691},"Mike Greiling",{"headshot":7,"ctfId":5692},"mikegreiling",{"template":692},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5698,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5699,"config":5703,"_id":5704,"_type":33,"title":5700,"_source":35,"_file":5705,"_stem":5706,"_extension":38},"/en-us/blog/authors/mike-vanbuskirk",{"name":5700,"config":5701},"Mike Vanbuskirk",{"headshot":723,"ctfId":5702},"Mike-Vanbuskirk",{"template":692},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5708,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5709,"config":5713,"_id":5714,"_type":33,"title":5710,"_source":35,"_file":5715,"_stem":5716,"_extension":38},"/en-us/blog/authors/miranda-carter",{"name":5710,"config":5711},"Miranda Carter",{"headshot":723,"ctfId":5712},"4xT4dbRh6N9i7jW5xuPhVp",{"template":692},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5718,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5719,"config":5724,"_id":5725,"_type":33,"title":5720,"_source":35,"_file":5726,"_stem":5727,"_extension":38},"/en-us/blog/authors/mitra-jozenazemian",{"name":5720,"config":5721},"Mitra Jozenazemian",{"headshot":5722,"ctfId":5723},"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":692},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5729,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5730,"config":5735,"_id":5736,"_type":33,"title":5731,"_source":35,"_file":5737,"_stem":5738,"_extension":38},"/en-us/blog/authors/monmayuri-ray",{"name":5731,"config":5732},"Monmayuri Ray",{"headshot":5733,"ctfId":5734},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":692},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5740,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5741,"config":5746,"_id":5748,"_type":33,"title":5742,"_source":35,"_file":5749,"_stem":5750,"_extension":38},"/en-us/blog/authors/naoharu-sasaki",{"name":5742,"config":5743,"role":5745},"Naoharu Sasaki",{"headshot":5744},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":692,"gitlabHandle":5747},"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":5752,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5753,"config":5758,"_id":5759,"_type":33,"title":5754,"_source":35,"_file":5760,"_stem":5761,"_extension":38},"/en-us/blog/authors/nate-rosandich",{"name":5754,"config":5755},"Nate Rosandich",{"headshot":5756,"ctfId":5757},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":692},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5763,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5764,"config":5769,"_id":5770,"_type":33,"title":5765,"_source":35,"_file":5771,"_stem":5772,"_extension":38},"/en-us/blog/authors/neha-khalwadekar",{"name":5765,"config":5766},"Neha Khalwadekar",{"headshot":5767,"ctfId":5768},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":692},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5774,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5775,"config":5780,"_id":5781,"_type":33,"title":5782,"_source":35,"_file":5783,"_stem":5784,"_extension":38},"/en-us/blog/authors/neil-mccorrison",{"name":5776,"config":5777},"Neil McCorrison",{"headshot":5778,"ctfId":5779},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":692},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5786,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5787,"config":5792,"_id":5793,"_type":33,"title":5794,"_source":35,"_file":5795,"_stem":5796,"_extension":38},"/en-us/blog/authors/neil-mcdonald",{"name":5788,"config":5789},"Neil McDonald",{"headshot":5790,"ctfId":5791},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":692},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5798,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5799,"config":5803,"_id":5805,"_type":33,"title":5800,"_source":35,"_file":5806,"_stem":5807,"_extension":38},"/en-us/blog/authors/nick-cayou",{"name":5800,"config":5801,"role":7},"Nick Cayou",{"headshot":5802},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":692,"gitlabHandle":5804},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5809,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5810,"config":5815,"_id":5816,"_type":33,"title":5811,"_source":35,"_file":5817,"_stem":5818,"_extension":38},"/en-us/blog/authors/nick-malcolm",{"name":5811,"config":5812},"Nick Malcolm",{"headshot":5813,"ctfId":5814},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":692},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5820,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5821,"config":5825,"_id":5826,"_type":33,"title":5822,"_source":35,"_file":5827,"_stem":5828,"_extension":38},"/en-us/blog/authors/nick-thomas",{"name":5822,"config":5823},"Nick Thomas",{"headshot":7,"ctfId":5824},"nickthomas",{"template":692},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5830,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5831,"config":5836,"_id":5837,"_type":33,"title":5832,"_source":35,"_file":5838,"_stem":5839,"_extension":38},"/en-us/blog/authors/nick-veenhof",{"name":5832,"config":5833},"Nick Veenhof",{"headshot":5834,"ctfId":5835},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":692},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5841,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5842,"config":5846,"_id":5847,"_type":33,"title":5843,"_source":35,"_file":5848,"_stem":5849,"_extension":38},"/en-us/blog/authors/nico-meisenzahl",{"name":5843,"config":5844},"Nico Meisenzahl",{"headshot":7,"ctfId":5845},"nicomeisenzahl",{"template":692},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5851,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5852,"config":5856,"_id":5857,"_type":33,"title":5853,"_source":35,"_file":5858,"_stem":5859,"_extension":38},"/en-us/blog/authors/nicole-schwartz",{"name":5853,"config":5854},"Nicole Schwartz",{"headshot":7,"ctfId":5855},"nicoleschwartz",{"template":692},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5861,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5862,"config":5867,"_id":5868,"_type":33,"title":5863,"_source":35,"_file":5869,"_stem":5870,"_extension":38},"/en-us/blog/authors/nikhil-george",{"name":5863,"config":5864},"Nikhil George",{"headshot":5865,"ctfId":5866},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":692},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5872,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5873,"config":5878,"_id":5879,"_type":33,"title":5874,"_source":35,"_file":5880,"_stem":5881,"_extension":38},"/en-us/blog/authors/nima-badiey",{"name":5874,"config":5875},"Nima Badiey",{"headshot":5876,"ctfId":5877},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":692},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5883,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5884,"config":5889,"_id":5890,"_type":33,"title":5885,"_source":35,"_file":5891,"_stem":5892,"_extension":38},"/en-us/blog/authors/noah-ing",{"name":5885,"config":5886},"Noah Ing",{"headshot":5887,"ctfId":5888},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":692},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5894,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5895,"config":5899,"_id":5900,"_type":33,"title":5896,"_source":35,"_file":5901,"_stem":5902,"_extension":38},"/en-us/blog/authors/noah-manger",{"name":5896,"config":5897},"Noah Manger",{"headshot":723,"ctfId":5898},"Noah-Manger",{"template":692},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5904,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5905,"config":5909,"_id":5910,"_type":33,"title":5906,"_source":35,"_file":5911,"_stem":5912,"_extension":38},"/en-us/blog/authors/noah-zoschke",{"name":5906,"config":5907},"Noah Zoschke",{"headshot":723,"ctfId":5908},"Noah-Zoschke",{"template":692},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5914,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5915,"config":5919,"_id":5920,"_type":33,"title":5916,"_source":35,"_file":5921,"_stem":5922,"_extension":38},"/en-us/blog/authors/nolan-myers",{"name":5916,"config":5917},"Nolan Myers",{"headshot":723,"ctfId":5918},"Nolan-Myers",{"template":692},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5924,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5925,"config":5929,"_id":5930,"_type":33,"title":5926,"_source":35,"_file":5931,"_stem":5932,"_extension":38},"/en-us/blog/authors/nupur-sharma",{"name":5926,"config":5927},"Nupur Sharma",{"headshot":723,"ctfId":5928},"6p7RQDl0cDWnAxU8yu2vVK",{"template":692},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5934,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5935,"config":5939,"_id":5940,"_type":33,"title":5936,"_source":35,"_file":5941,"_stem":5942,"_extension":38},"/en-us/blog/authors/nuritzi-sanchez",{"name":5936,"config":5937},"Nuritzi Sanchez",{"headshot":7,"ctfId":5938},"nuritzi",{"template":692},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5944,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5945,"config":5950,"_id":5951,"_type":33,"title":5946,"_source":35,"_file":5952,"_stem":5953,"_extension":38},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5946,"config":5947},"Oleksandr Pysaryuk",{"headshot":5948,"ctfId":5949},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":692},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":5955,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5956,"config":5961,"_id":5962,"_type":33,"title":5963,"_source":35,"_file":5964,"_stem":5965,"_extension":38},"/en-us/blog/authors/olena-horal-koretska",{"name":5957,"config":5958},"Olena Horal-Koretska",{"headshot":5959,"ctfId":5960},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":692},"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":5967,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5968,"config":5972,"_id":5974,"_type":33,"title":5969,"_source":35,"_file":5975,"_stem":5976,"_extension":38},"/en-us/blog/authors/olivier-campeau",{"name":5969,"config":5970},"Olivier Campeau",{"headshot":5971},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":692,"gitlabHandle":5973},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5978,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5979,"config":5984,"_id":5985,"_type":33,"title":5986,"_source":35,"_file":5987,"_stem":5988,"_extension":38},"/en-us/blog/authors/olivier-dupr",{"name":5980,"config":5981},"Olivier Dupré",{"headshot":5982,"ctfId":5983},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":692},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":5990,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":5991,"config":5996,"_id":5997,"_type":33,"title":5992,"_source":35,"_file":5998,"_stem":5999,"_extension":38},"/en-us/blog/authors/omar-fernandez",{"name":5992,"config":5993},"Omar Fernandez",{"headshot":5994,"ctfId":5995},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":692},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":6001,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6002,"config":6006,"_id":6007,"_type":33,"title":6003,"_source":35,"_file":6008,"_stem":6009,"_extension":38},"/en-us/blog/authors/opher-vishnia",{"name":6003,"config":6004},"Opher Vishnia",{"headshot":723,"ctfId":6005},"O0F3sw3av9pRAxeP9iR7N",{"template":692},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":6011,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6012,"config":6016,"_id":6017,"_type":33,"title":6013,"_source":35,"_file":6018,"_stem":6019,"_extension":38},"/en-us/blog/authors/orit-golowinski",{"name":6013,"config":6014},"Orit Golowinski",{"headshot":7,"ctfId":6015},"ogolowinski",{"template":692},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6021,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6022,"config":6027,"_id":6028,"_type":33,"title":6023,"_source":35,"_file":6029,"_stem":6030,"_extension":38},"/en-us/blog/authors/ottilia-westerlund",{"name":6023,"config":6024},"Ottilia Westerlund",{"headshot":6025,"ctfId":6026},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":692},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6032,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6033,"config":6037,"_id":6038,"_type":33,"title":6034,"_source":35,"_file":6039,"_stem":6040,"_extension":38},"/en-us/blog/authors/owen-williams",{"name":6034,"config":6035},"Owen Williams",{"headshot":723,"ctfId":6036},"Owen-Williams",{"template":692},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6042,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6043,"config":6047,"_id":6048,"_type":33,"title":6044,"_source":35,"_file":6049,"_stem":6050,"_extension":38},"/en-us/blog/authors/pablo-carranza",{"name":6044,"config":6045},"Pablo Carranza",{"headshot":723,"ctfId":6046},"Pablo-Carranza",{"template":692},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6052,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6053,"config":6057,"_id":6058,"_type":33,"title":6054,"_source":35,"_file":6059,"_stem":6060,"_extension":38},"/en-us/blog/authors/parker-ennis",{"name":6054,"config":6055},"Parker Ennis",{"headshot":7,"ctfId":6056},"parkerennis",{"template":692},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6062,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6063,"config":6067,"_id":6068,"_type":33,"title":6064,"_source":35,"_file":6069,"_stem":6070,"_extension":38},"/en-us/blog/authors/patricio-cano",{"name":6064,"config":6065},"Patricio Cano",{"headshot":723,"ctfId":6066},"Patricio-Cano",{"template":692},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6072,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6073,"config":6077,"_id":6078,"_type":33,"title":6074,"_source":35,"_file":6079,"_stem":6080,"_extension":38},"/en-us/blog/authors/patrick-deuley",{"name":6074,"config":6075},"Patrick Deuley",{"headshot":723,"ctfId":6076},"4YYemtKKpxKC4yukyFavai",{"template":692},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6082,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6083,"config":6087,"_id":6088,"_type":33,"title":6084,"_source":35,"_file":6089,"_stem":6090,"_extension":38},"/en-us/blog/authors/patrick-foster",{"name":6084,"config":6085},"Patrick Foster",{"headshot":723,"ctfId":6086},"Patrick-Foster",{"template":692},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6092,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6093,"config":6098,"_id":6099,"_type":33,"title":6094,"_source":35,"_file":6100,"_stem":6101,"_extension":38},"/en-us/blog/authors/patrick-steinhardt",{"name":6094,"config":6095},"Patrick Steinhardt",{"headshot":6096,"ctfId":6097},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":692},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6103,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6104,"config":6108,"_id":6109,"_type":33,"title":6105,"_source":35,"_file":6110,"_stem":6111,"_extension":38},"/en-us/blog/authors/patty-cheung",{"name":6105,"config":6106},"Patty Cheung",{"headshot":723,"ctfId":6107},"pattycheung",{"template":692},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6113,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6114,"config":6118,"_id":6119,"_type":33,"title":6115,"_source":35,"_file":6120,"_stem":6121,"_extension":38},"/en-us/blog/authors/paul-badcock",{"name":6115,"config":6116},"Paul Badcock",{"headshot":723,"ctfId":6117},"TbNQIdiD4vlFB7XYXeArb",{"template":692},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6123,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6124,"config":6128,"_id":6129,"_type":33,"title":6130,"_source":35,"_file":6131,"_stem":6132,"_extension":38},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6125,"config":6126},"Paul Gascou-Vaillancourt",{"headshot":723,"ctfId":6127},"6Yg7HWPoy2E5vwudH0EZja",{"template":692},"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":6134,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6135,"config":6139,"_id":6140,"_type":33,"title":6136,"_source":35,"_file":6141,"_stem":6142,"_extension":38},"/en-us/blog/authors/paul-hibbitts",{"name":6136,"config":6137},"Paul Hibbitts",{"headshot":723,"ctfId":6138},"Paul-Hibbitts",{"template":692},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6144,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6145,"config":6149,"_id":6150,"_type":33,"title":6146,"_source":35,"_file":6151,"_stem":6152,"_extension":38},"/en-us/blog/authors/paul-machle",{"name":6146,"config":6147},"Paul Machle",{"headshot":723,"ctfId":6148},"Paul-Machle",{"template":692},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6154,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6155,"config":6159,"_id":6161,"_type":33,"title":6156,"_source":35,"_file":6162,"_stem":6163,"_extension":38},"/en-us/blog/authors/paul-meresanu",{"name":6156,"role":7,"config":6157},"Paul Meresanu",{"headshot":6158},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":692,"gitlabHandle":6160},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6165,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6166,"config":6171,"_id":6172,"_type":33,"title":6167,"_source":35,"_file":6173,"_stem":6174,"_extension":38},"/en-us/blog/authors/payton-burdette",{"name":6167,"config":6168},"Payton Burdette",{"headshot":6169,"ctfId":6170},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":692},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6176,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6177,"config":6181,"_id":6182,"_type":33,"title":6178,"_source":35,"_file":6183,"_stem":6184,"_extension":38},"/en-us/blog/authors/pedro-fortuna",{"name":6178,"config":6179},"Pedro Fortuna",{"headshot":723,"ctfId":6180},"7JwB4WZYF19OKwOo4yk5n4",{"template":692},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6186,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6187,"config":6192,"_id":6193,"_type":33,"title":6194,"_source":35,"_file":6195,"_stem":6196,"_extension":38},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6188,"config":6189},"Pedro Moreira da Silva",{"headshot":6190,"ctfId":6191},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":692},"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":6198,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6199,"config":6204,"_id":6205,"_type":33,"title":6200,"_source":35,"_file":6206,"_stem":6207,"_extension":38},"/en-us/blog/authors/phil-hughes",{"name":6200,"config":6201},"Phil Hughes",{"headshot":6202,"ctfId":6203},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":692},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6209,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6210,"config":6214,"_id":6215,"_type":33,"title":6211,"_source":35,"_file":6216,"_stem":6217,"_extension":38},"/en-us/blog/authors/philip-welz",{"name":6211,"config":6212},"Philip Welz",{"headshot":7,"ctfId":6213},"philxx",{"template":692},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6219,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6220,"config":6225,"_id":6226,"_type":33,"title":6227,"_source":35,"_file":6228,"_stem":6229,"_extension":38},"/en-us/blog/authors/philippe-lafoucrire",{"name":6221,"config":6222},"Philippe Lafoucrière",{"headshot":6223,"ctfId":6224},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":692},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6231,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6232,"config":6236,"_id":6237,"_type":33,"title":6238,"_source":35,"_file":6239,"_stem":6240,"_extension":38},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6233,"config":6234},"Pierre de La Morinerie",{"headshot":723,"ctfId":6235},"Pierre-de-La-Morinerie",{"template":692},"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":6242,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6243,"config":6247,"_id":6248,"_type":33,"title":6244,"_source":35,"_file":6249,"_stem":6250,"_extension":38},"/en-us/blog/authors/pierre-smeyers",{"name":6244,"config":6245},"Pierre Smeyers",{"headshot":7,"ctfId":6246},"pismy",{"template":692},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6252,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6253,"config":6258,"_id":6259,"_type":33,"title":6254,"_source":35,"_file":6260,"_stem":6261,"_extension":38},"/en-us/blog/authors/pini-wietchner",{"name":6254,"config":6255},"Pini Wietchner",{"headshot":6256,"ctfId":6257},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":692},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6263,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6264,"config":6268,"_id":6269,"_type":33,"title":6270,"_source":35,"_file":6271,"_stem":6272,"_extension":38},"/en-us/blog/authors/pj-metz",{"name":6265,"config":6266},"PJ Metz",{"headshot":723,"ctfId":6267},"PjMetz",{"template":692},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6274,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6275,"config":6278,"_id":6279,"_type":33,"title":6280,"_source":35,"_file":6281,"_stem":6282,"_extension":38},"/en-us/blog/authors/plapadoo",{"name":6276,"config":6277},"plapadoo",{"headshot":723,"ctfId":6276},{"template":692},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6284,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6285,"config":6289,"_id":6290,"_type":33,"title":6286,"_source":35,"_file":6291,"_stem":6292,"_extension":38},"/en-us/blog/authors/pranay-bakre",{"name":6286,"config":6287},"Pranay Bakre",{"headshot":7,"ctfId":6288},"Darren-Eastman",{"template":692},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6294,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6295,"config":6299,"_id":6300,"_type":33,"title":6296,"_source":35,"_file":6301,"_stem":6302,"_extension":38},"/en-us/blog/authors/priyanka-sharma",{"name":6296,"config":6297},"Priyanka Sharma",{"headshot":7,"ctfId":6298},"pritianka",{"template":692},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6304,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6305,"config":6310,"_id":6311,"_type":33,"title":6312,"_source":35,"_file":6313,"_stem":6314,"_extension":38},"/en-us/blog/authors/pter-bozs",{"name":6306,"config":6307},"Péter Bozsó",{"headshot":6308,"ctfId":6309},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":692},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6316,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6317,"config":6321,"_id":6322,"_type":33,"title":6318,"_source":35,"_file":6323,"_stem":6324,"_extension":38},"/en-us/blog/authors/quan-to",{"name":6318,"config":6319},"Quan To",{"headshot":723,"ctfId":6320},"5dswLnpCobgICjM0RpHMU2",{"template":692},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6326,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6327,"config":6332,"_id":6333,"_type":33,"title":6328,"_source":35,"_file":6334,"_stem":6335,"_extension":38},"/en-us/blog/authors/rachel-nienaber",{"name":6328,"config":6329},"Rachel Nienaber",{"headshot":6330,"ctfId":6331},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":692},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6337,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6338,"config":6342,"_id":6344,"_type":33,"title":6339,"_source":35,"_file":6345,"_stem":6346,"_extension":38},"/en-us/blog/authors/radovan-bacovic",{"name":6339,"config":6340},"Radovan Bacovic",{"headshot":6341},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":692,"gitlabHandle":6343},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6348,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6349,"config":6353,"_id":6354,"_type":33,"title":6355,"_source":35,"_file":6356,"_stem":6357,"_extension":38},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6350,"config":6351},"Rahul Bhargava, CTO, Evolphin",{"headshot":723,"ctfId":6352},"Rahul-Bhargava-CTO-Evolphin",{"template":692},"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":6359,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6360,"config":6365,"_id":6366,"_type":33,"title":6361,"_source":35,"_file":6367,"_stem":6368,"_extension":38},"/en-us/blog/authors/raimund-hook",{"name":6361,"config":6362},"Raimund Hook",{"headshot":6363,"ctfId":6364},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":692},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6370,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6371,"config":6375,"_id":6376,"_type":33,"title":6372,"_source":35,"_file":6377,"_stem":6378,"_extension":38},"/en-us/blog/authors/raquel-campuzano",{"name":6372,"config":6373},"Raquel Campuzano",{"headshot":723,"ctfId":6374},"Raquel-Campuzano",{"template":692},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6380,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6381,"config":6385,"_id":6386,"_type":33,"title":6382,"_source":35,"_file":6387,"_stem":6388,"_extension":38},"/en-us/blog/authors/ray-paik",{"name":6382,"config":6383},"Ray Paik",{"headshot":7,"ctfId":6384},"rpaik",{"template":692},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6390,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6391,"config":6396,"_id":6397,"_type":33,"title":6392,"_source":35,"_file":6398,"_stem":6399,"_extension":38},"/en-us/blog/authors/rayana-verissimo",{"name":6392,"config":6393},"Rayana Verissimo",{"headshot":6394,"ctfId":6395},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":692},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6401,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6402,"config":6406,"_id":6408,"_type":33,"title":6409,"_source":35,"_file":6410,"_stem":6411,"_extension":38},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6403,"config":6404},"Rebeca Fenoy-Anthony",{"headshot":6405},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":692,"gitlabHandle":6407},"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":6413,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6414,"config":6418,"_id":6419,"_type":33,"title":6415,"_source":35,"_file":6420,"_stem":6421,"_extension":38},"/en-us/blog/authors/rebecca-dodd",{"name":6415,"config":6416},"Rebecca Dodd",{"headshot":723,"ctfId":6417},"Rebecca-Dodd",{"template":692},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6423,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6424,"config":6428,"_id":6429,"_type":33,"title":6425,"_source":35,"_file":6430,"_stem":6431,"_extension":38},"/en-us/blog/authors/regis-freyd",{"name":6425,"config":6426},"Regis Freyd",{"headshot":723,"ctfId":6427},"Regis-Freyd",{"template":692},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6433,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6434,"config":6439,"_id":6440,"_type":33,"title":6435,"_source":35,"_file":6441,"_stem":6442,"_extension":38},"/en-us/blog/authors/regnard-raquedan",{"name":6435,"config":6436},"Regnard Raquedan",{"headshot":6437,"ctfId":6438},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":692},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6444,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6445,"config":6449,"_id":6450,"_type":33,"title":6446,"_source":35,"_file":6451,"_stem":6452,"_extension":38},"/en-us/blog/authors/renato-stanic",{"name":6446,"config":6447},"Renato Stanic",{"headshot":7,"ctfId":6448},"rstanic12",{"template":692},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6454,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6455,"config":6460,"_id":6461,"_type":33,"title":6456,"_source":35,"_file":6462,"_stem":6463,"_extension":38},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6456,"config":6457},"Ricardo Amarilla Villalba",{"headshot":6458,"ctfId":6459},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":692},"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":6465,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6466,"config":6470,"_id":6471,"_type":33,"title":6467,"_source":35,"_file":6472,"_stem":6473,"_extension":38},"/en-us/blog/authors/riccardo-padovani",{"name":6467,"config":6468},"Riccardo Padovani",{"headshot":723,"ctfId":6469},"Riccardo-Padovani",{"template":692},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6475,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6476,"config":6481,"_id":6482,"_type":33,"title":6483,"_source":35,"_file":6484,"_stem":6485,"_extension":38},"/en-us/blog/authors/rmy-coutable",{"name":6477,"config":6478},"Rémy Coutable",{"headshot":6479,"ctfId":6480},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":692},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6487,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6488,"config":6493,"_id":6494,"_type":33,"title":6489,"_source":35,"_file":6495,"_stem":6496,"_extension":38},"/en-us/blog/authors/rob-jackson",{"name":6489,"config":6490},"Rob Jackson",{"headshot":6491,"ctfId":6492},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":692},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6498,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6499,"config":6503,"_id":6504,"_type":33,"title":6500,"_source":35,"_file":6505,"_stem":6506,"_extension":38},"/en-us/blog/authors/rob-ribeiro",{"name":6500,"config":6501},"Rob Ribeiro",{"headshot":723,"ctfId":6502},"Rob-Ribeiro",{"template":692},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6508,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6509,"config":6513,"_id":6514,"_type":33,"title":6510,"_source":35,"_file":6515,"_stem":6516,"_extension":38},"/en-us/blog/authors/robert-speicher",{"name":6510,"config":6511},"Robert Speicher",{"headshot":7,"ctfId":6512},"rspeicher",{"template":692},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6518,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6519,"config":6524,"_id":6525,"_type":33,"title":6520,"_source":35,"_file":6526,"_stem":6527,"_extension":38},"/en-us/blog/authors/robert-williams",{"name":6520,"config":6521},"Robert Williams",{"headshot":6522,"ctfId":6523},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":692},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6529,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6530,"config":6536,"_id":6537,"_type":33,"title":6531,"_source":35,"_file":6538,"_stem":6539,"_extension":38},"/en-us/blog/authors/robin-schulman",{"name":6531,"config":6532,"role":6535},"Robin Schulman",{"headshot":6533,"ctfId":6534},"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":692},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6541,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6542,"config":6546,"_id":6547,"_type":33,"title":6543,"_source":35,"_file":6548,"_stem":6549,"_extension":38},"/en-us/blog/authors/roger-woo",{"name":6543,"config":6544},"Roger Woo",{"headshot":723,"ctfId":6545},"rogerwoo",{"template":692},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6551,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6552,"config":6558,"_id":6559,"_type":33,"title":6560,"_source":35,"_file":6561,"_stem":6562,"_extension":38},"/en-us/blog/authors/rohit-shambhuni",{"role":6553,"name":6554,"config":6555},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6556,"ctfId":6557},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":692},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6564,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6565,"config":6569,"_id":6570,"_type":33,"title":6566,"_source":35,"_file":6571,"_stem":6572,"_extension":38},"/en-us/blog/authors/roman-kuba",{"name":6566,"config":6567},"Roman Kuba",{"headshot":7,"ctfId":6568},"rkuba",{"template":692},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6574,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6575,"config":6580,"_id":6581,"_type":33,"title":6582,"_source":35,"_file":6583,"_stem":6584,"_extension":38},"/en-us/blog/authors/romuald-atchad",{"name":6576,"config":6577},"Romuald Atchadé",{"headshot":6578,"ctfId":6579},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":692},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6586,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6587,"config":6591,"_id":6592,"_type":33,"title":6593,"_source":35,"_file":6594,"_stem":6595,"_extension":38},"/en-us/blog/authors/ronald-van-zon",{"name":6588,"config":6589},"Ronald van Zon",{"headshot":7,"ctfId":6590},"Eagllus",{"template":692},"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":6597,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6598,"config":6602,"_id":6603,"_type":33,"title":6599,"_source":35,"_file":6604,"_stem":6605,"_extension":38},"/en-us/blog/authors/ross-fuhrman",{"name":6599,"config":6600},"Ross Fuhrman",{"headshot":723,"ctfId":6601},"7dkuWBvIc0AQanUclt3pOk",{"template":692},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6607,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6608,"config":6612,"_id":6613,"_type":33,"title":6609,"_source":35,"_file":6614,"_stem":6615,"_extension":38},"/en-us/blog/authors/roy-taragan",{"name":6609,"config":6610},"Roy Taragan",{"headshot":723,"ctfId":6611},"3pnwP9gqELfda3DCOQJQCL",{"template":692},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6617,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6618,"config":6623,"_id":6624,"_type":33,"title":6619,"_source":35,"_file":6625,"_stem":6626,"_extension":38},"/en-us/blog/authors/ruby-nealon",{"name":6619,"config":6620},"Ruby Nealon",{"headshot":6621,"ctfId":6622},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":692},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6628,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6629,"config":6633,"_id":6634,"_type":33,"title":6630,"_source":35,"_file":6635,"_stem":6636,"_extension":38},"/en-us/blog/authors/rupert-douglas",{"name":6630,"config":6631},"Rupert Douglas",{"headshot":7,"ctfId":6632},"rdouglasgitlab",{"template":692},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6638,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6639,"config":6643,"_id":6644,"_type":33,"title":6645,"_source":35,"_file":6646,"_stem":6647,"_extension":38},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6640,"config":6641},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6642},"3PShSyZ6DJXnkDa5xrQs7V",{"template":692},"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":6649,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6650,"config":6655,"_id":6656,"_type":33,"title":6651,"_source":35,"_file":6657,"_stem":6658,"_extension":38},"/en-us/blog/authors/rutvik-shah",{"name":6651,"config":6652},"Rutvik Shah",{"headshot":6653,"ctfId":6654},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":692},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6660,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6661,"config":6666,"_id":6667,"_type":33,"title":6662,"_source":35,"_file":6668,"_stem":6669,"_extension":38},"/en-us/blog/authors/sacha-guyon",{"name":6662,"config":6663},"Sacha Guyon",{"headshot":6664,"ctfId":6665},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":692},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6671,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6672,"config":6677,"_id":6678,"_type":33,"title":6673,"_source":35,"_file":6679,"_stem":6680,"_extension":38},"/en-us/blog/authors/safwan-ahmed",{"name":6673,"config":6674},"Safwan Ahmed",{"headshot":6675,"ctfId":6676},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":692},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6682,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6683,"config":6687,"_id":6689,"_type":33,"title":6684,"_source":35,"_file":6690,"_stem":6691,"_extension":38},"/en-us/blog/authors/salahddine-aberkan",{"name":6684,"config":6685},"Salahddine Aberkan",{"headshot":6686},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":692,"gitlabHandle":6688},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6693,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6694,"config":6699,"_id":6700,"_type":33,"title":6695,"_source":35,"_file":6701,"_stem":6702,"_extension":38},"/en-us/blog/authors/salman-ladha",{"name":6695,"config":6696},"Salman Ladha",{"headshot":6697,"ctfId":6698},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":692},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6704,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6705,"config":6710,"_id":6711,"_type":33,"title":6706,"_source":35,"_file":6712,"_stem":6713,"_extension":38},"/en-us/blog/authors/sam-beckham",{"name":6706,"config":6707},"Sam Beckham",{"headshot":6708,"ctfId":6709},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":692},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6715,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6716,"config":6721,"_id":6722,"_type":33,"title":6717,"_source":35,"_file":6723,"_stem":6724,"_extension":38},"/en-us/blog/authors/sam-kerr",{"name":6717,"config":6718},"Sam Kerr",{"headshot":6719,"ctfId":6720},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":692},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6726,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6727,"config":6732,"_id":6733,"_type":33,"title":6728,"_source":35,"_file":6734,"_stem":6735,"_extension":38},"/en-us/blog/authors/sam-morris",{"name":6728,"config":6729},"Sam Morris",{"headshot":6730,"ctfId":6731},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":692},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6737,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6738,"config":6743,"_id":6744,"_type":33,"title":6739,"_source":35,"_file":6745,"_stem":6746,"_extension":38},"/en-us/blog/authors/sam-white",{"name":6739,"config":6740},"Sam White",{"headshot":6741,"ctfId":6742},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":692},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6748,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6749,"config":6754,"_id":6755,"_type":33,"title":6750,"_source":35,"_file":6756,"_stem":6757,"_extension":38},"/en-us/blog/authors/sam-wiskow",{"name":6750,"config":6751},"Sam Wiskow",{"headshot":6752,"ctfId":6753},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":692},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6759,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6760,"config":6765,"_id":6766,"_type":33,"title":6761,"_source":35,"_file":6767,"_stem":6768,"_extension":38},"/en-us/blog/authors/samantha-lee",{"name":6761,"config":6762},"Samantha Lee",{"headshot":6763,"ctfId":6764},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":692},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6770,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6771,"config":6775,"_id":6776,"_type":33,"title":6777,"_source":35,"_file":6778,"_stem":6779,"_extension":38},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6772,"config":6773},"Sameer Farooqui, OctoML",{"headshot":723,"ctfId":6774},"Sameer-Farooqui-OctoML",{"template":692},"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":6781,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6782,"config":6787,"_id":6788,"_type":33,"title":6783,"_source":35,"_file":6789,"_stem":6790,"_extension":38},"/en-us/blog/authors/sameer-kamani",{"name":6783,"config":6784},"Sameer Kamani",{"headshot":6785,"ctfId":6786},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":692},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6792,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6793,"config":6798,"_id":6799,"_type":33,"title":6794,"_source":35,"_file":6800,"_stem":6801,"_extension":38},"/en-us/blog/authors/samer-akkoub",{"name":6794,"config":6795},"Samer Akkoub",{"headshot":6796,"ctfId":6797},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":692},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6803,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6804,"config":6808,"_id":6809,"_type":33,"title":6805,"_source":35,"_file":6810,"_stem":6811,"_extension":38},"/en-us/blog/authors/samuel-alfageme",{"name":6805,"config":6806},"Samuel Alfageme",{"headshot":723,"ctfId":6807},"Samuel-Alfageme",{"template":692},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6813,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6814,"config":6821,"_id":6822,"_type":33,"title":6816,"_source":35,"_file":6823,"_stem":6824,"_extension":38},"/en-us/blog/authors/sandra-gittlen",{"role":6815,"name":6816,"config":6817},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6818,"linkedin":6819,"ctfId":6820},"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":692},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6826,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6827,"config":6831,"_id":6832,"_type":33,"title":6828,"_source":35,"_file":6833,"_stem":6834,"_extension":38},"/en-us/blog/authors/sandra-salerno",{"name":6828,"config":6829},"Sandra Salerno",{"headshot":723,"ctfId":6830},"Sandra-Salerno",{"template":692},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6836,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6837,"config":6841,"_id":6842,"_type":33,"title":6843,"_source":35,"_file":6844,"_stem":6845,"_extension":38},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6838,"config":6839},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6840},"topodelapradera",{"template":692},"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":6847,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6848,"config":6852,"_id":6853,"_type":33,"title":6849,"_source":35,"_file":6854,"_stem":6855,"_extension":38},"/en-us/blog/authors/sara-kassabian",{"name":6849,"config":6850},"Sara Kassabian",{"headshot":7,"ctfId":6851},"skassabian",{"template":692},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6857,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6858,"config":6863,"_id":6864,"_type":33,"title":6859,"_source":35,"_file":6865,"_stem":6866,"_extension":38},"/en-us/blog/authors/sara-meadzinger",{"name":6859,"config":6860},"Sara Meadzinger",{"headshot":6861,"ctfId":6862},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":692},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6868,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6869,"config":6873,"_id":6874,"_type":33,"title":6870,"_source":35,"_file":6875,"_stem":6876,"_extension":38},"/en-us/blog/authors/sarah-daily",{"name":6870,"config":6871},"Sarah Daily",{"headshot":723,"ctfId":6872},"2YhqRPG08HF0FCF1l7oeZL",{"template":692},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6878,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6879,"config":6883,"_id":6884,"_type":33,"title":6880,"_source":35,"_file":6885,"_stem":6886,"_extension":38},"/en-us/blog/authors/sarah-german",{"name":6880,"config":6881},"Sarah German",{"headshot":6882,"ctfId":4539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":692},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6888,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6889,"config":6894,"_id":6895,"_type":33,"title":6890,"_source":35,"_file":6896,"_stem":6897,"_extension":38},"/en-us/blog/authors/sarah-matthies",{"name":6890,"config":6891},"Sarah Matthies",{"headshot":6892,"ctfId":6893},"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":692},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6899,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6900,"config":6904,"_id":6905,"_type":33,"title":6906,"_source":35,"_file":6907,"_stem":6908,"_extension":38},"/en-us/blog/authors/sarah-odonnell",{"name":6901,"config":6902},"Sarah O’Donnell",{"headshot":7,"ctfId":6903},"sarahod",{"template":692},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6910,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6911,"config":6916,"_id":6917,"_type":33,"title":6912,"_source":35,"_file":6918,"_stem":6919,"_extension":38},"/en-us/blog/authors/sarah-waldner",{"name":6912,"config":6913},"Sarah Waldner",{"headshot":6914,"ctfId":6915},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":692},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6921,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6922,"config":6926,"_id":6927,"_type":33,"title":6923,"_source":35,"_file":6928,"_stem":6929,"_extension":38},"/en-us/blog/authors/sarrah-vesselov",{"name":6923,"config":6924},"Sarrah Vesselov",{"headshot":7,"ctfId":6925},"sarrahvesselov",{"template":692},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6931,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6932,"config":6936,"_id":6937,"_type":33,"title":6933,"_source":35,"_file":6938,"_stem":6939,"_extension":38},"/en-us/blog/authors/sarup-banskota",{"name":6933,"config":6934},"Sarup Banskota",{"headshot":723,"ctfId":6935},"3sY2Ef0sXxaJKCmArdSLsA",{"template":692},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6941,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6942,"config":6947,"_id":6948,"_type":33,"title":6943,"_source":35,"_file":6949,"_stem":6950,"_extension":38},"/en-us/blog/authors/sascha-eggenberger",{"name":6943,"config":6944},"Sascha Eggenberger",{"headshot":6945,"ctfId":6946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":692},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":6952,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6953,"config":6957,"_id":6958,"_type":33,"title":6954,"_source":35,"_file":6959,"_stem":6960,"_extension":38},"/en-us/blog/authors/sasha-bannister",{"name":6954,"config":6955},"Sasha Bannister",{"headshot":723,"ctfId":6956},"Sasha-Bannister",{"template":692},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":6962,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6963,"config":6968,"_id":6969,"_type":33,"title":6964,"_source":35,"_file":6970,"_stem":6971,"_extension":38},"/en-us/blog/authors/sasha-gazlay",{"name":6964,"config":6965},"Sasha Gazlay",{"headshot":6966,"ctfId":6967},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":692},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":6973,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6974,"config":6979,"_id":6980,"_type":33,"title":6975,"_source":35,"_file":6981,"_stem":6982,"_extension":38},"/en-us/blog/authors/saumya-upadhyaya",{"name":6975,"config":6976},"Saumya Upadhyaya",{"headshot":6977,"ctfId":6978},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":692},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":6984,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6985,"config":6990,"_id":6991,"_type":33,"title":6992,"_source":35,"_file":6993,"_stem":6994,"_extension":38},"/en-us/blog/authors/scott-de-jonge",{"name":6986,"config":6987},"Scott de Jonge",{"headshot":6988,"ctfId":6989},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":692},"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":6996,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":6997,"config":7002,"_id":7003,"_type":33,"title":6998,"_source":35,"_file":7004,"_stem":7005,"_extension":38},"/en-us/blog/authors/scott-hampton",{"name":6998,"config":6999},"Scott Hampton",{"headshot":7000,"ctfId":7001},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":692},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":7007,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7008,"config":7012,"_id":7013,"_type":33,"title":7009,"_source":35,"_file":7014,"_stem":7015,"_extension":38},"/en-us/blog/authors/scott-williamson",{"name":7009,"config":7010},"Scott Williamson",{"headshot":7,"ctfId":7011},"sfwgitlab",{"template":692},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":7017,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7018,"config":7023,"_id":7024,"_type":33,"title":7019,"_source":35,"_file":7025,"_stem":7026,"_extension":38},"/en-us/blog/authors/sean-arnold",{"name":7019,"config":7020},"Sean Arnold",{"headshot":7021,"ctfId":7022},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":692},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7028,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7029,"config":7033,"_id":7034,"_type":33,"title":7035,"_source":35,"_file":7036,"_stem":7037,"_extension":38},"/en-us/blog/authors/sean-mcgivern",{"name":7030,"config":7031},"Sean McGivern",{"headshot":723,"ctfId":7032},"Sean-McGivern",{"template":692},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7039,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7040,"config":7044,"_id":7045,"_type":33,"title":7041,"_source":35,"_file":7046,"_stem":7047,"_extension":38},"/en-us/blog/authors/sean-packham",{"name":7041,"config":7042},"Sean Packham",{"headshot":723,"ctfId":7043},"Sean-Packham",{"template":692},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7049,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7050,"config":7054,"_id":7055,"_type":33,"title":7051,"_source":35,"_file":7056,"_stem":7057,"_extension":38},"/en-us/blog/authors/sebastian-latacz",{"name":7051,"config":7052},"Sebastian Latacz",{"headshot":723,"ctfId":7053},"4DoWSQV719HEWt2rbDIoQR",{"template":692},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7059,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7060,"config":7064,"_id":7065,"_type":33,"title":7061,"_source":35,"_file":7066,"_stem":7067,"_extension":38},"/en-us/blog/authors/sergey-nuzhdin",{"name":7061,"config":7062},"Sergey Nuzhdin",{"headshot":723,"ctfId":7063},"Sergey-Nuzhdin",{"template":692},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7069,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7070,"config":7074,"_id":7075,"_type":33,"title":7071,"_source":35,"_file":7076,"_stem":7077,"_extension":38},"/en-us/blog/authors/seth-berger",{"name":7071,"config":7072},"Seth Berger",{"headshot":7,"ctfId":7073},"sethgitlab",{"template":692},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7079,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7080,"config":7084,"_id":7085,"_type":33,"title":7081,"_source":35,"_file":7086,"_stem":7087,"_extension":38},"/en-us/blog/authors/shane-rice",{"name":7081,"config":7082},"Shane Rice",{"headshot":723,"ctfId":7083},"3uVL7xMsEf13JzpbXYTCbM",{"template":692},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7089,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7090,"config":7095,"_id":7096,"_type":33,"title":7091,"_source":35,"_file":7097,"_stem":7098,"_extension":38},"/en-us/blog/authors/sharon-gaudin",{"name":7091,"config":7092},"Sharon Gaudin",{"headshot":7093,"ctfId":7094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":692},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7100,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7101,"config":7105,"_id":7106,"_type":33,"title":7102,"_source":35,"_file":7107,"_stem":7108,"_extension":38},"/en-us/blog/authors/shawn-winters",{"name":7102,"config":7103},"Shawn Winters",{"headshot":7,"ctfId":7104},"ShawnWinters",{"template":692},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7110,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7111,"config":7115,"_id":7116,"_type":33,"title":7117,"_source":35,"_file":7118,"_stem":7119,"_extension":38},"/en-us/blog/authors/sherida-mcmullan",{"name":7112,"config":7113},"Sherida McMullan",{"headshot":723,"ctfId":7114},"BpqiUFXm6aUxjXJdAeKuL",{"template":692},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7121,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7122,"config":7126,"_id":7127,"_type":33,"title":7123,"_source":35,"_file":7128,"_stem":7129,"_extension":38},"/en-us/blog/authors/shinya-maeda",{"name":7123,"config":7124},"Shinya Maeda",{"headshot":7,"ctfId":7125},"dosuken123",{"template":692},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7131,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7132,"config":7137,"_id":7138,"_type":33,"title":7133,"_source":35,"_file":7139,"_stem":7140,"_extension":38},"/en-us/blog/authors/shrishti-choudhary",{"name":7133,"config":7134},"Shrishti Choudhary",{"headshot":7135,"ctfId":7136},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":692},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7142,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7143,"config":7152,"_id":7153,"_type":33,"title":7145,"_source":35,"_file":7154,"_stem":7155,"_extension":38},"/en-us/blog/authors/sid-sijbrandij",{"role":7144,"name":7145,"bio":7146,"config":7147},"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":7148,"twitter":7149,"linkedin":7150,"ctfId":7151},"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":692},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7157,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7158,"config":7163,"_id":7164,"_type":33,"title":7159,"_source":35,"_file":7165,"_stem":7166,"_extension":38},"/en-us/blog/authors/siddharth-mathur",{"name":7159,"config":7160},"Siddharth Mathur",{"headshot":7161,"ctfId":7162},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":692},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7168,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7169,"config":7173,"_id":7174,"_type":33,"title":7170,"_source":35,"_file":7175,"_stem":7176,"_extension":38},"/en-us/blog/authors/simon-tarchichi",{"name":7170,"config":7171},"Simon Tarchichi",{"headshot":7,"ctfId":7172},"kartsims",{"template":692},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7178,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7179,"config":7184,"_id":7185,"_type":33,"title":7180,"_source":35,"_file":7186,"_stem":7187,"_extension":38},"/en-us/blog/authors/sophia-manicor",{"name":7180,"config":7181},"Sophia Manicor",{"headshot":7182,"ctfId":7183},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":692},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7189,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7190,"config":7195,"_id":7196,"_type":33,"title":7191,"_source":35,"_file":7197,"_stem":7198,"_extension":38},"/en-us/blog/authors/sri-rangan",{"name":7191,"config":7192},"Sri Rangan",{"headshot":7193,"ctfId":7194},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":692},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7200,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7201,"config":7206,"_id":7207,"_type":33,"title":7202,"_source":35,"_file":7208,"_stem":7209,"_extension":38},"/en-us/blog/authors/stacy-cline",{"name":7202,"config":7203},"Stacy Cline",{"headshot":7204,"ctfId":7205},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":692},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7211,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7212,"config":7217,"_id":7218,"_type":33,"title":7213,"_source":35,"_file":7219,"_stem":7220,"_extension":38},"/en-us/blog/authors/stan-hu",{"name":7213,"config":7214},"Stan Hu",{"headshot":7215,"ctfId":7216},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":692},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7222,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7223,"config":7227,"_id":7228,"_type":33,"title":7229,"_source":35,"_file":7230,"_stem":7231,"_extension":38},"/en-us/blog/authors/stephan-hochdrfer",{"name":7224,"config":7225},"Stephan Hochdörfer",{"headshot":723,"ctfId":7226},"Stephan-Hochdrfer",{"template":692},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7233,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7234,"config":7238,"_id":7239,"_type":33,"title":7235,"_source":35,"_file":7240,"_stem":7241,"_extension":38},"/en-us/blog/authors/stephanie-garza",{"name":7235,"config":7236},"Stephanie Garza",{"headshot":7,"ctfId":7237},"StephanieGarza",{"template":692},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7243,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7244,"config":7248,"_id":7249,"_type":33,"title":7250,"_source":35,"_file":7251,"_stem":7252,"_extension":38},"/en-us/blog/authors/stephen-mcguinness",{"name":7245,"config":7246},"Stephen McGuinness",{"headshot":7,"ctfId":7247},"smcguinness1",{"template":692},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7254,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7255,"config":7260,"_id":7261,"_type":33,"title":7256,"_source":35,"_file":7262,"_stem":7263,"_extension":38},"/en-us/blog/authors/stephen-walters",{"name":7256,"config":7257},"Stephen Walters",{"headshot":7258,"ctfId":7259},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":692},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7265,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7266,"config":7271,"_id":7272,"_type":33,"title":7267,"_source":35,"_file":7273,"_stem":7274,"_extension":38},"/en-us/blog/authors/steve-abrams",{"name":7267,"config":7268},"Steve Abrams",{"headshot":7269,"ctfId":7270},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":692},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7276,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7277,"config":7281,"_id":7282,"_type":33,"title":7278,"_source":35,"_file":7283,"_stem":7284,"_extension":38},"/en-us/blog/authors/steve-azzopardi",{"name":7278,"config":7279},"Steve Azzopardi",{"headshot":7,"ctfId":7280},"steveazz",{"template":692},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7286,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7287,"config":7292,"_id":7293,"_type":33,"title":7288,"_source":35,"_file":7294,"_stem":7295,"_extension":38},"/en-us/blog/authors/steve-grossman",{"name":7288,"config":7289},"Steve Grossman",{"headshot":7290,"ctfId":7291},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":692},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7297,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7298,"config":7302,"_id":7303,"_type":33,"title":7299,"_source":35,"_file":7304,"_stem":7305,"_extension":38},"/en-us/blog/authors/steve-ropa",{"name":7299,"config":7300},"Steve Ropa",{"headshot":723,"ctfId":7301},"Steve-Ropa",{"template":692},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7307,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7308,"config":7312,"_id":7313,"_type":33,"title":7309,"_source":35,"_file":7314,"_stem":7315,"_extension":38},"/en-us/blog/authors/steve-truong",{"name":7309,"config":7310},"Steve Truong",{"headshot":7,"ctfId":7311},"sttruong",{"template":692},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7317,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7318,"config":7322,"_id":7323,"_type":33,"title":7319,"_source":35,"_file":7324,"_stem":7325,"_extension":38},"/en-us/blog/authors/steven-zinck",{"name":7319,"config":7320},"Steven Zinck",{"headshot":723,"ctfId":7321},"49JllsB7PFUrjj2Wi4Wa2O",{"template":692},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7327,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7328,"config":7332,"_id":7333,"_type":33,"title":7329,"_source":35,"_file":7334,"_stem":7335,"_extension":38},"/en-us/blog/authors/sunil-kowlgi",{"name":7329,"config":7330},"Sunil Kowlgi",{"headshot":723,"ctfId":7331},"Sunil-Kowlgi",{"template":692},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7337,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7338,"config":7342,"_id":7343,"_type":33,"title":7339,"_source":35,"_file":7344,"_stem":7345,"_extension":38},"/en-us/blog/authors/suri-patel",{"name":7339,"config":7340},"Suri Patel",{"headshot":723,"ctfId":7341},"suripatel",{"template":692},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7347,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7348,"config":7353,"_id":7354,"_type":33,"title":7349,"_source":35,"_file":7355,"_stem":7356,"_extension":38},"/en-us/blog/authors/susan-tacker",{"name":7349,"config":7350},"Susan Tacker",{"headshot":7351,"ctfId":7352},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":692},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7358,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7359,"config":7365,"_id":7366,"_type":33,"title":7360,"_source":35,"_file":7367,"_stem":7368,"_extension":38},"/en-us/blog/authors/susie-bitters",{"name":7360,"config":7361},"Susie Bitters",{"headshot":7362,"linkedin":7363,"ctfId":7364},"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":692},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7370,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7371,"config":7375,"_id":7376,"_type":33,"title":7372,"_source":35,"_file":7377,"_stem":7378,"_extension":38},"/en-us/blog/authors/suzanne-selhorn",{"name":7372,"config":7373},"Suzanne Selhorn",{"headshot":7374,"ctfId":4539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":692},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7380,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7381,"config":7386,"_id":7387,"_type":33,"title":7382,"_source":35,"_file":7388,"_stem":7389,"_extension":38},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7382,"config":7383},"Tanuja Jayarama Raju",{"headshot":7384,"ctfId":7385},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":692},"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":7391,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7392,"config":7397,"_id":7398,"_type":33,"title":7393,"_source":35,"_file":7399,"_stem":7400,"_extension":38},"/en-us/blog/authors/taurie-davis",{"name":7393,"config":7394},"Taurie Davis",{"headshot":7395,"ctfId":7396},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":692},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7402,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7403,"config":7408,"_id":7409,"_type":33,"title":7410,"_source":35,"_file":7411,"_stem":7412,"_extension":38},"/en-us/blog/authors/taylor-mccaslin",{"name":7404,"config":7405},"Taylor McCaslin",{"headshot":7406,"ctfId":7407},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":692},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7414,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7415,"config":7419,"_id":7420,"_type":33,"title":7416,"_source":35,"_file":7421,"_stem":7422,"_extension":38},"/en-us/blog/authors/taylor-murphy",{"name":7416,"config":7417},"Taylor Murphy",{"headshot":7,"ctfId":7418},"tayloramurphy",{"template":692},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7424,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7425,"config":7430,"_id":7431,"_type":33,"title":7426,"_source":35,"_file":7432,"_stem":7433,"_extension":38},"/en-us/blog/authors/ted-gieschen",{"name":7426,"config":7427},"Ted Gieschen",{"headshot":7428,"ctfId":7429},"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":692},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7435,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7436,"config":7440,"_id":7441,"_type":33,"title":7437,"_source":35,"_file":7442,"_stem":7443,"_extension":38},"/en-us/blog/authors/thao-yeager",{"name":7437,"config":7438},"Thao Yeager",{"headshot":7,"ctfId":7439},"thaoyeager",{"template":692},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7445,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7446,"config":7451,"_id":7452,"_type":33,"title":7453,"_source":35,"_file":7454,"_stem":7455,"_extension":38},"/en-us/blog/authors/thiago-figueir",{"name":7447,"config":7448},"Thiago Figueiró",{"headshot":7449,"ctfId":7450},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":692},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7457,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7458,"config":7463,"_id":7464,"_type":33,"title":7459,"_source":35,"_file":7465,"_stem":7466,"_extension":38},"/en-us/blog/authors/thong-kuah",{"name":7459,"config":7460},"Thong Kuah",{"headshot":7461,"ctfId":7462},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":692},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7468,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7469,"config":7473,"_id":7474,"_type":33,"title":7470,"_source":35,"_file":7475,"_stem":7476,"_extension":38},"/en-us/blog/authors/tim-davis",{"name":7470,"config":7471},"Tim Davis",{"headshot":723,"ctfId":7472},"6PksqjEtq1Y8goFUvAUcIn",{"template":692},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7478,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7479,"config":7483,"_id":7484,"_type":33,"title":7480,"_source":35,"_file":7485,"_stem":7486,"_extension":38},"/en-us/blog/authors/tim-lehnen",{"name":7480,"config":7481},"Tim Lehnen",{"headshot":7,"ctfId":7482},"hestenet",{"template":692},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7488,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7489,"config":7494,"_id":7495,"_type":33,"title":7490,"_source":35,"_file":7496,"_stem":7497,"_extension":38},"/en-us/blog/authors/tim-rizzi",{"name":7490,"config":7491},"Tim Rizzi",{"headshot":7492,"ctfId":7493},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":692},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7499,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7500,"config":7504,"_id":7506,"_type":33,"title":7501,"_source":35,"_file":7507,"_stem":7508,"_extension":38},"/en-us/blog/authors/tim-zallmann",{"name":7501,"config":7502},"Tim Zallmann",{"headshot":7503},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":692,"gitlabHandle":7505},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7510,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7511,"config":7515,"_id":7516,"_type":33,"title":7512,"_source":35,"_file":7517,"_stem":7518,"_extension":38},"/en-us/blog/authors/tina-sturgis",{"name":7512,"config":7513},"Tina Sturgis",{"headshot":7,"ctfId":7514},"TinaS",{"template":692},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7520,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7521,"config":7525,"_id":7526,"_type":33,"title":7527,"_source":35,"_file":7528,"_stem":7529,"_extension":38},"/en-us/blog/authors/tobias-gnther",{"name":7522,"config":7523},"Tobias Günther",{"headshot":723,"ctfId":7524},"Tobias-Gnther",{"template":692},"content:en-us:blog:authors:tobias-gnther.yml","Tobias Gnther","en-us/blog/authors/tobias-gnther.yml","en-us/blog/authors/tobias-gnther",{"_path":7531,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7532,"config":7536,"_id":7537,"_type":33,"title":7533,"_source":35,"_file":7538,"_stem":7539,"_extension":38},"/en-us/blog/authors/todd-barr",{"name":7533,"config":7534},"Todd Barr",{"headshot":7,"ctfId":7535},"twbarr",{"template":692},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7541,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7542,"config":7546,"_id":7547,"_type":33,"title":7543,"_source":35,"_file":7548,"_stem":7549,"_extension":38},"/en-us/blog/authors/tom-cooney",{"name":7543,"config":7544},"Tom Cooney",{"headshot":7,"ctfId":7545},"tomcooney",{"template":692},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7551,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7552,"config":7557,"_id":7558,"_type":33,"title":7553,"_source":35,"_file":7559,"_stem":7560,"_extension":38},"/en-us/blog/authors/tomas-vik",{"name":7553,"config":7554},"Tomas Vik",{"headshot":7555,"ctfId":7556},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681785/Blog/Author%20Headshots/viktomas-headshot.jpg","viktomas",{"template":692},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7562,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7563,"config":7568,"_id":7569,"_type":33,"title":7564,"_source":35,"_file":7570,"_stem":7571,"_extension":38},"/en-us/blog/authors/tomasz-maczukin",{"name":7564,"config":7565},"Tomasz Maczukin",{"headshot":7566,"ctfId":7567},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682116/Blog/Author%20Headshots/tmaczukin-headshot.jpg","tmaczukin",{"template":692},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7573,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7574,"config":7579,"_id":7580,"_type":33,"title":7575,"_source":35,"_file":7581,"_stem":7582,"_extension":38},"/en-us/blog/authors/toon-claes",{"name":7575,"config":7576},"Toon Claes",{"headshot":7577,"ctfId":7578},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663082/Blog/Author%20Headshots/toon_claes_headshot.png","toon",{"template":692},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7584,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7585,"config":7590,"_id":7591,"_type":33,"title":7586,"_source":35,"_file":7592,"_stem":7593,"_extension":38},"/en-us/blog/authors/torsten-linz",{"name":7586,"config":7587},"Torsten Linz",{"headshot":7588,"ctfId":7589},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658907/Blog/Author%20Headshots/tlinz-headshot.jpg","tlinz",{"template":692},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7595,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7596,"config":7600,"_id":7601,"_type":33,"title":7597,"_source":35,"_file":7602,"_stem":7603,"_extension":38},"/en-us/blog/authors/trevor-knudsen",{"name":7597,"config":7598},"Trevor Knudsen",{"headshot":7,"ctfId":7599},"Tknudsen",{"template":692},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7605,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7606,"config":7611,"_id":7612,"_type":33,"title":7607,"_source":35,"_file":7613,"_stem":7614,"_extension":38},"/en-us/blog/authors/tristan-read",{"name":7607,"config":7608},"Tristan Read",{"headshot":7609,"ctfId":7610},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679131/Blog/Author%20Headshots/tristan.png","tristanread",{"template":692},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7616,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7617,"config":7622,"_id":7623,"_type":33,"title":7618,"_source":35,"_file":7624,"_stem":7625,"_extension":38},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7618,"config":7619},"Tsukasa Komatsubara",{"headshot":7620,"ctfId":7621},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659784/Blog/Author%20Headshots/gitlab_tsukasa.jpg","31YQLiBRrJPn35BBhY69ly",{"template":692},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7627,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7628,"config":7632,"_id":7633,"_type":33,"title":7629,"_source":35,"_file":7634,"_stem":7635,"_extension":38},"/en-us/blog/authors/tsvi-zandany",{"name":7629,"config":7630},"Tsvi Zandany",{"headshot":723,"ctfId":7631},"Tsvi-Zandany",{"template":692},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7637,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7638,"config":7642,"_id":7643,"_type":33,"title":7639,"_source":35,"_file":7644,"_stem":7645,"_extension":38},"/en-us/blog/authors/tye-davis",{"name":7639,"config":7640},"Tye Davis",{"headshot":7,"ctfId":7641},"davistye",{"template":692},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7647,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7648,"config":7652,"_id":7653,"_type":33,"title":7649,"_source":35,"_file":7654,"_stem":7655,"_extension":38},"/en-us/blog/authors/tyler-williams",{"name":7649,"config":7650},"Tyler Williams",{"headshot":7,"ctfId":7651},"tywilliams",{"template":692},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7657,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7658,"config":7662,"_id":7663,"_type":33,"title":7664,"_source":35,"_file":7665,"_stem":7666,"_extension":38},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7659,"config":7660},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7661},"ulrica1",{"template":692},"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":7668,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7669,"config":7674,"_id":7675,"_type":33,"title":7670,"_source":35,"_file":7676,"_stem":7677,"_extension":38},"/en-us/blog/authors/valentine-mairet",{"name":7670,"config":7671},"Valentine Mairet",{"headshot":7672,"ctfId":7673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665455/Blog/Author%20Headshots/valentine_mairet_headshot.png","1AQjHTpq6sBauRMdCibxQX",{"template":692},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7679,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7680,"config":7684,"_id":7685,"_type":33,"title":7681,"_source":35,"_file":7686,"_stem":7687,"_extension":38},"/en-us/blog/authors/valerie-silverthorne",{"name":7681,"config":7682},"Valerie Silverthorne",{"headshot":723,"ctfId":7683},"vsilverthorne",{"template":692},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7689,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7690,"config":7694,"_id":7695,"_type":33,"title":7691,"_source":35,"_file":7696,"_stem":7697,"_extension":38},"/en-us/blog/authors/vanessa-wegner",{"name":7691,"config":7692},"Vanessa Wegner",{"headshot":7,"ctfId":7693},"vwegner",{"template":692},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7699,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7700,"config":7705,"_id":7706,"_type":33,"title":7701,"_source":35,"_file":7707,"_stem":7708,"_extension":38},"/en-us/blog/authors/veethika-mishra",{"name":7701,"config":7702},"Veethika Mishra",{"headshot":7703,"ctfId":7704},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664676/Blog/Author%20Headshots/veethika-headshot.jpg","veethika",{"template":692},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7710,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7711,"config":7716,"_id":7717,"_type":33,"title":7712,"_source":35,"_file":7718,"_stem":7719,"_extension":38},"/en-us/blog/authors/vick-kelkar",{"name":7712,"config":7713},"Vick Kelkar",{"headshot":7714,"ctfId":7715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668508/Blog/Author%20Headshots/vkelkar-headshot.jpg","vkelkar",{"template":692},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7721,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7722,"config":7726,"_id":7727,"_type":33,"title":7723,"_source":35,"_file":7728,"_stem":7729,"_extension":38},"/en-us/blog/authors/vicky-steeves",{"name":7723,"config":7724},"Vicky Steeves",{"headshot":7,"ctfId":7725},"vickysteeves",{"template":692},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7731,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7732,"config":7736,"_id":7737,"_type":33,"title":7733,"_source":35,"_file":7738,"_stem":7739,"_extension":38},"/en-us/blog/authors/victor-hernandez",{"name":7733,"config":7734},"Victor Hernandez",{"headshot":723,"ctfId":7735},"KVTkvySIqkAu34p2jsXZz",{"template":692},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7741,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7742,"config":7746,"_id":7747,"_type":33,"title":7743,"_source":35,"_file":7748,"_stem":7749,"_extension":38},"/en-us/blog/authors/victor-wu",{"name":7743,"config":7744},"Victor Wu",{"headshot":723,"ctfId":7745},"victorwu",{"template":692},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7751,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7752,"config":7757,"_id":7758,"_type":33,"title":7753,"_source":35,"_file":7759,"_stem":7760,"_extension":38},"/en-us/blog/authors/viktor-nagy",{"name":7753,"config":7754},"Viktor Nagy",{"headshot":7755,"ctfId":7756},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662918/Blog/Author%20Headshots/nagy-headshot.jpg","nagyvgitlab",{"template":692},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7762,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7763,"config":7767,"_id":7768,"_type":33,"title":7764,"_source":35,"_file":7769,"_stem":7770,"_extension":38},"/en-us/blog/authors/vincent-jong",{"name":7764,"config":7765},"Vincent Jong",{"headshot":723,"ctfId":7766},"Vincent-Jong",{"template":692},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7772,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7773,"config":7778,"_id":7779,"_type":33,"title":7774,"_source":35,"_file":7780,"_stem":7781,"_extension":38},"/en-us/blog/authors/vincy-wilson",{"name":7774,"config":7775},"Vincy Wilson",{"headshot":7776,"ctfId":7777},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669069/Blog/Author%20Headshots/vincy.jpg","1iyKndVlbE3dQnxOJoSY0q",{"template":692},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7783,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7784,"config":7789,"_id":7790,"_type":33,"title":7785,"_source":35,"_file":7791,"_stem":7792,"_extension":38},"/en-us/blog/authors/vishal-tak",{"name":7785,"config":7786},"Vishal Tak",{"headshot":7787,"ctfId":7788},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663854/Blog/Author%20Headshots/vishal_tak_headshot.png","6BalO1YQUIuDdhUP80bFra",{"template":692},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7794,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7795,"config":7800,"_id":7801,"_type":33,"title":7796,"_source":35,"_file":7802,"_stem":7803,"_extension":38},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7796,"config":7797},"Vitor Meireles De Sousa",{"headshot":7798,"ctfId":7799},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682001/Blog/Author%20Headshots/vdesousa-headshot.png","vdesousa",{"template":692},"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":7805,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7806,"config":7810,"_id":7811,"_type":33,"title":7807,"_source":35,"_file":7812,"_stem":7813,"_extension":38},"/en-us/blog/authors/vlad-budica",{"name":7807,"config":7808},"Vlad Budica",{"headshot":723,"ctfId":7809},"Vlad-Budica",{"template":692},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7815,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7816,"config":7820,"_id":7821,"_type":33,"title":7817,"_source":35,"_file":7822,"_stem":7823,"_extension":38},"/en-us/blog/authors/vlad-stoianovici",{"name":7817,"config":7818},"Vlad Stoianovici",{"headshot":7,"ctfId":7819},"vstoianovici",{"template":692},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7825,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7826,"config":7830,"_id":7831,"_type":33,"title":7827,"_source":35,"_file":7832,"_stem":7833,"_extension":38},"/en-us/blog/authors/wayne-haber",{"name":7827,"config":7828},"Wayne Haber",{"headshot":7,"ctfId":7829},"whaber",{"template":692},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7835,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7836,"config":7840,"_id":7841,"_type":33,"title":7837,"_source":35,"_file":7842,"_stem":7843,"_extension":38},"/en-us/blog/authors/will-chandler",{"name":7837,"config":7838},"Will Chandler",{"headshot":723,"ctfId":7839},"DKiIGSSRIyO6QdTQkRkjs",{"template":692},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7845,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7846,"config":7851,"_id":7852,"_type":33,"title":7847,"_source":35,"_file":7853,"_stem":7854,"_extension":38},"/en-us/blog/authors/will-leidheiser",{"name":7847,"config":7848},"Will Leidheiser",{"headshot":7849,"ctfId":7850},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679335/Blog/Author%20Headshots/wleidheiser-headshot.jpg","wleidheiser",{"template":692},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7856,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7857,"config":7862,"_id":7863,"_type":33,"title":7858,"_source":35,"_file":7864,"_stem":7865,"_extension":38},"/en-us/blog/authors/william-arias",{"name":7858,"config":7859},"William Arias",{"headshot":7860,"ctfId":7861},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667549/Blog/Author%20Headshots/warias-headshot.jpg","warias",{"template":692},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7867,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7868,"config":7872,"_id":7873,"_type":33,"title":7869,"_source":35,"_file":7874,"_stem":7875,"_extension":38},"/en-us/blog/authors/william-chia",{"name":7869,"config":7870},"William Chia",{"headshot":7,"ctfId":7871},"williamchia",{"template":692},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7877,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7878,"config":7882,"_id":7883,"_type":33,"title":7879,"_source":35,"_file":7884,"_stem":7885,"_extension":38},"/en-us/blog/authors/yannis-roussos",{"name":7879,"config":7880},"Yannis Roussos",{"headshot":7,"ctfId":7881},"iroussos",{"template":692},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7887,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7888,"config":7892,"_id":7893,"_type":33,"title":7889,"_source":35,"_file":7894,"_stem":7895,"_extension":38},"/en-us/blog/authors/yevgeny-pats",{"name":7889,"config":7890},"Yevgeny Pats",{"headshot":7,"ctfId":7891},"ypats",{"template":692},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7897,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7898,"config":7902,"_id":7903,"_type":33,"title":7899,"_source":35,"_file":7904,"_stem":7905,"_extension":38},"/en-us/blog/authors/yorick-peterse",{"name":7899,"config":7900},"Yorick Peterse",{"headshot":723,"ctfId":7901},"Yorick-Peterse",{"template":692},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7907,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7908,"config":7912,"_id":7913,"_type":33,"title":7914,"_source":35,"_file":7915,"_stem":7916,"_extension":38},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7909,"config":7910},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7911},"zjgitlab",{"template":692},"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":7918,"_dir":685,"_draft":6,"_partial":6,"_locale":7,"content":7919,"config":7924,"_id":7925,"_type":33,"title":7920,"_source":35,"_file":7926,"_stem":7927,"_extension":38},"/en-us/blog/authors/zhaochen-li",{"name":7920,"config":7921},"Zhaochen Li",{"headshot":7922,"ctfId":7923},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664331/Blog/Author%20Headshots/Zhaochen_Li_headshot.png","D67XqgLJdlpOsrG3ivCGT",{"template":692},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7929,"_dir":41,"_draft":6,"_partial":6,"_locale":7,"header":7930,"eyebrow":7931,"blurb":7932,"button":7933,"secondaryButton":7937,"_id":7939,"_type":33,"title":7940,"_source":35,"_file":7941,"_stem":7942,"_extension":38},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":49,"config":7934},{"href":7935,"dataGaName":52,"dataGaLocation":7936},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":54,"config":7938},{"href":56,"dataGaName":57,"dataGaLocation":7936},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",1762754860763]