[{"data":1,"prerenderedAt":7932},["ShallowReactive",2],{"/ja-jp/blog/refactor-code-into-modern-languages-with-ai-powered-gitlab-duo":3,"navigation-ja-jp":37,"banner-ja-jp":452,"footer-ja-jp":465,"blogAuthors-ja-jp":675,"next-steps-ja-jp":7911,"footer-source-/ja-jp/blog/refactor-code-into-modern-languages-with-ai-powered-gitlab-duo/":7926},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":27,"_id":30,"_type":31,"title":32,"_source":33,"_file":34,"_stem":35,"_extension":36},"/ja-jp/blog/refactor-code-into-modern-languages-with-ai-powered-gitlab-duo","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"AI搭載のGitLab Duoでコードをモダンな言語にリファクタリング","この詳細なチュートリアルでは、デベロッパーがAIを活用し、コードを新しいプログラミング言語に移行してモダナイゼーションを進めるプロセスや、同じ言語における新機能についても学べる内容を紹介しています。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662465/Blog/Hero%20Images/GitLab_Duo_Workflow_Unified_Data_Store__1_.png","https://about.gitlab.com/blog/refactor-code-into-modern-languages-with-ai-powered-gitlab-duo","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"AI搭載のGitLab Duoでコードをモダンな言語にリファクタリング\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Michael Friedrich\"}],\n        \"datePublished\": \"2024-08-26\",\n      }",{"title":9,"description":10,"authors":17,"heroImage":11,"date":19,"body":20,"category":21,"tags":22,"updatedDate":26},[18],"Michael Friedrich","2024-08-26","コードベースやフレームワークのモダナイゼーションを行うために新しいプログラミング言語へ移行する必要があったり、同じ言語内の新しい機能の知識を深めたい場合は、AI搭載の[GitLab Duo](https://about.gitlab.com/gitlab-duo/)が有効です。ここでは、筆者が過去20年にわたるコーディングキャリアで培ったベストプラクティスをもとに、コードリファクタリングの際に直面する課題への効果的なアプローチ方法をご紹介します。\n\nこの記事では、VS CodeとJetBrains IDE（IntelliJ IDEA、PyCharm、CLion）を使用したプロンプトと例を紹介します。いずれのIDEにも[GitLab Duo拡張機能やプラグイン](https://docs.gitlab.com/ee/user/project/repository/code_suggestions/supported_extensions.html)がインストールされています。開発環境としてはGitLab.comが使用されています。ここでは大規模言語モデル（LLM）がAnthropic Claude 3.5にアップデートされており、GitLab Duoの[コード提案](https://docs.gitlab.com/ee/user/gitlab_duo/#code-suggestions)と[Duo Chat](https://docs.gitlab.com/ee/user/gitlab_duo/#gitlab-duo-chat)に適用されています。これらの機能は卓越したパフォーマンスと効率性を発揮します。\n\nこの記事では必要なセクションだけを確認しても良いですし、上から順を追って読んでも構いません。また、自己学習に役立つソースコードや演習問題も用意しています。\n\n- モダンなプログラミング言語標準に合わせたコードのリファクタリング\n    - Java 7のコードを生成し、Java 8にリファクタリング\n    - C++標準に基づいたリファクタリング\n        - 移行：C++03をC++14にリファクタリング\n        - ダウングレード：C++23をC++11にリファクタリング\n    - COBOLの説明とリファクタリング\n- 異なる言語間でのリファクタリング\n    - CをRustにリファクタリング\n    - PerlをPythonにリファクタリング\n- その他のリファクタリング実践例\n    - JavaScriptのリファクタリング\n    - BashをZSHやSHにリファクタリング\n    - その他のユースケースやチュートリアル\n- 重要なポイント\n\n## モダンなプログラミング言語標準に合わせたコードのリファクタリング\n\n次のセクションでは、特定のプログラミング言語におけるリファクタリングの方法、言語固有の違いの説明、および理解の仕方について解説します。\n\n### Java 7のコードを生成し、Java 8にリファクタリング\n\nあるお客様から、GitLab DuoがJava 7をサポートしているかどうかのご質問が寄せられました。Java 7固有のコードを生成するためのコード提案とGitLab Chatのプロンプトをテストしている際、移行支援についても考えました。Anthropic Claude 3.5と同様に、GitLab Duoも言語固有の違いを理解できます。\n\n次の例では、コード提案を使用してJava 7のコードを生成するプロンプトを示しています。\n\n```java\n// Generate a new class for a File Manager. Use Java 7 features only.\nimport java.io.*;\nimport java.nio.file.*;\nimport java.util.*;\n\npublic class FileManager {\n    private Path rootDirectory;\n\n    public FileManager(String rootPath) throws IOException {\n        this.rootDirectory = Paths.get(rootPath);\n        if (!Files.exists(rootDirectory)) {\n            Files.createDirectories(rootDirectory);\n        }\n    }\n\n    public void createFile(String fileName, String content) throws IOException {\n        Path filePath = rootDirectory.resolve(fileName);\n        Files.write(filePath, content.getBytes(), StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING);\n    }\n\n    public String readFile(String fileName) throws IOException {\n        Path filePath = rootDirectory.resolve(fileName);\n        return new String(Files.readAllBytes(filePath));\n    }\n\n    public void deleteFile(String fileName) throws IOException {\n        Path filePath = rootDirectory.resolve(fileName);\n        Files.delete(filePath);\n    }\n\n    public List\u003CString> listFiles() throws IOException {\n        List\u003CString> fileList = new ArrayList\u003C>();\n        try (DirectoryStream\u003CPath> stream = Files.newDirectoryStream(rootDirectory)) {\n            for (Path file : stream) {\n                fileList.add(file.getFileName().toString());\n            }\n        }\n        return fileList;\n    }\n\n    public void copyFile(String sourceFileName, String destinationFileName) throws IOException {\n        Path sourcePath = rootDirectory.resolve(sourceFileName);\n        Path destinationPath = rootDirectory.resolve(destinationFileName);\n        Files.copy(sourcePath, destinationPath, StandardCopyOption.REPLACE_EXISTING);\n    }\n\n    public void moveFile(String sourceFileName, String destinationFileName) throws IOException {\n        Path sourcePath = rootDirectory.resolve(sourceFileName);\n        Path destinationPath = rootDirectory.resolve(destinationFileName);\n        Files.move(sourcePath, destinationPath, StandardCopyOption.REPLACE_EXISTING);\n    }\n\n    public long getFileSize(String fileName) throws IOException {\n        Path filePath = rootDirectory.resolve(fileName);\n        return Files.size(filePath);\n    }\n\n    public boolean fileExists(String fileName) {\n        Path filePath = rootDirectory.resolve(fileName);\n        return Files.exists(filePath);\n    }\n}\n```\n\nご自身のIDEで次の手順を進めてください。\n\n1. 生成されたコードを理解する：エディタでコード部分を選択（スクリーンショットの青色部分）し、GitLab Duo Chatに切り替えて、`/explain` スラッシュ(/) コマンドをプロンプトとして送信します。\n\n![GitLab Duo Chatで `/explain` スラッシュ(/) コマンドを使用して生成したコードを検証する](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675059/Blog/Content%20Images/intellij_java7_generate_refactor.png)\n\n2. Java 7のコードをJava 8にリファクタリングする：エディタでコードを選択し、Chatに切り替えて、プロンプトを `/refactor using Java 8 features` に変更して送信します。\n3. リファクタリングの代替方法を練習する：新しいファイル `java8.java` を作成し、コード提案を使って `// Generate a new class for a File Manager. Use Java 8 features only.` というプロンプトでJava 8固有のコードを生成します。\n4. AI搭載のコード補完機能を使って、同じコンテキストでJava 8のコードの続きを記述します。\n\n次の録画ですべての手順をご覧になれます。\n\n\u003C!-- 空白行 -->\n\u003Cfigure class=\"video_container\">\n  \u003Ciframe src=\"https://www.youtube.com/embed/XKRv6uBkD2I\" frameborder=\"0\" allowfullscreen=\"true\"> \u003C/iframe>\n\u003C/figure>\n\u003C!-- 空白行 -->\n\nソースコードは[GitLab Duo Challenge - Generate and refactor Java 7 to 8 project ]( https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-generate-refactor-java-7-to-8)で取得できます。\n\n### C++標準に基づいたリファクタリング\n\nC++の標準には長い歴史があり、安定性と成熟度には信頼があります。ターゲットとなるアーキテクチャやプラットフォームに応じて、サポートされる標準はホストのオペレーティングシステム上のコンパイラに依存します。\n\n筆者は自身のキャリアを通して、25種類の異なるLinuxおよびWindowsディストリビューションをサポートするオープンソースプロジェクトに関わり、新しい言語機能やC++標準に対するコンパイラのサポートが多様であることを実感してきました。2015年にはC++11の機能を採用し、それ以降C++14やC++17に触れることはありませんでした。\n\n関数やアルゴリズムを新しいC++標準にリファクタリングするのには多大な労力がかかり、その違いを説明する支援が必要でした。当時は、リファクタリングの調べものを、書籍やオンライン検索、Stack Overflow、そして時にはツールの助けを借りて行っていました。\n\nしかし、AI搭載のアシストやGitLab Duoの登場で状況は変わりました。コード提案やDuo Chatに、特定のC++標準に準拠したソースコードを提示するよう指示したり、異なる出力を比較したりできるようになったのです。\nしかし、AI搭載のアシストやGitLab Duoの登場で状況は変わりました。コード提案やDuo Chatに、特定のC++標準に準拠したソースコードを提示するよう指示したり、異なる出力を比較したりできるようになったのです。\n\n次の例では、C++03標準に特化したプロンプトを使用してソースコードを生成しています。これは、`.ini` 構成フォーマット用のシンプルなコンフィグパーサー（configparser）を実装しています。\n\n```c++\n/* iniフォーマットを解析できるconfigparserを作成\nC++03標準のみを使用\n */\n\n#include \u003Ciostream>\n#include \u003Cfstream>\n#include \u003Cstring>\n#include \u003Cmap>\n#include \u003Csstream>\n\nclass ConfigParser {\nprivate:\n    std::map\u003Cstd::string, std::map\u003Cstd::string, std::string> > config;\n\npublic:\n    ConfigParser() {}\n\n    bool parse(const std::string& filename) {\n        std::ifstream file(filename.c_str());\n        if (!file.is_open()) {\n            return false;\n        }\n\n        std::string line;\n        std::string currentSection;\n\n        while (std::getline(file, line)) {\n            // Trim whitespace\n            size_t first = line.find_first_not_of(\" \\t\");\n            size_t last = line.find_last_not_of(\" \\t\");\n            if (first == std::string::npos) continue; // Skip empty lines\n            line = line.substr(first, (last - first + 1));\n\n            if (line[0] == '[' && line[line.length() - 1] == ']') {\n                // This is a section\n                currentSection = line.substr(1, line.length() - 2);\n            } else {\n                // This is a key-value pair\n                size_t delimiterPos = line.find('=');\n                if (delimiterPos != std::string::npos) {\n                    std::string key = line.substr(0, delimiterPos);\n                    std::string value = line.substr(delimiterPos + 1);\n                    config[currentSection][key] = value;\n                }\n            }\n        }\n\n        file.close();\n        return true;\n    }\n\n    std::string getValue(const std::string& section, const std::string& key) const {\n        std::map\u003Cstd::string, std::map\u003Cstd::string, std::string> >::const_iterator sectionIt = config.find(section);\n        if (sectionIt != config.end()) {\n            std::map\u003Cstd::string, std::string>::const_iterator keyIt = sectionIt->second.find(key);\n            if (keyIt != sectionIt->second.end()) {\n                return keyIt->second;\n            }\n        }\n        return \"\";\n    }\n\n    void printConfig() const {\n        std::map\u003Cstd::string, std::map\u003Cstd::string, std::string> >::const_iterator sectionIt;\n        for (sectionIt = config.begin(); sectionIt != config.end(); ++sectionIt) {\n            std::cout \u003C\u003C \"[\" \u003C\u003C sectionIt->first \u003C\u003C \"]\" \u003C\u003C std::endl;\n            std::map\u003Cstd::string, std::string>::const_iterator keyIt;\n            for (keyIt = sectionIt->second.begin(); keyIt != sectionIt->second.end(); ++keyIt) {\n                std::cout \u003C\u003C keyIt->first \u003C\u003C \" = \" \u003C\u003C keyIt->second \u003C\u003C std::endl;\n            }\n            std::cout \u003C\u003C std::endl;\n        }\n    }\n};\n\nint main() {\n    ConfigParser parser;\n    if (parser.parse(\"config.ini\")) {\n        std::cout \u003C\u003C \"Config file parsed successfully.\" \u003C\u003C std::endl;\n        parser.printConfig();\n\n        std::cout \u003C\u003C \"Value of 'key1' in 'section1': \" \u003C\u003C parser.getValue(\"section1\", \"key1\") \u003C\u003C std::endl;\n    } else {\n        std::cout \u003C\u003C \"Failed to parse config file.\" \u003C\u003C std::endl;\n    }\n    return 0;\n}\n```\n\n同じプロンプトを、[コードの説明](https://docs.gitlab.com/ee/user/gitlab_duo_chat/examples.html#explain-code-in-the-ide)、[テスト生成](https://docs.gitlab.com/ee/user/gitlab_duo_chat/examples.html#write-tests-in-the-ide)、さらには[コードのリファクタリング](https://docs.gitlab.com/ee/user/gitlab_duo_chat/examples.html#refactor-code-in-the-ide)にも適用できます。たとえば、`/explain focus on C++03 features`、`/tests for C++03 features`、`/refactor into C++03` などです。 \n\n次のC++標準は、GitLab Duoのコード提案を使用して動作を確認済みです。\n\n- C++03\n- C++11\n- C++14\n- C++17\n- C++20\n- C++23\n\nソースコードは、[Challenge - Refactor Cpp Standards Config Parser project](https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-refactor-cpp-standards-config-parser)で取得できます。\n\nC++標準間でソースコードをリファクタリングする組み合わせは数多く存在します。次の例では、C++コードを最新バージョンにアップグレードするケースに焦点を当てています。一方、熱心なデベロッパーがC++20を使用したいものの、エンタープライズな顧客環境をサポートするためにC++11にダウングレードしなければならなかったというシナリオもテストしています。\n\n#### 移行：C++03をC++14にリファクタリング\n\nここでは、コードのモダナイゼーションを行い、C++03からC++14への変更点を理解することを目標とします。IDEで[03.cpp](https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-refactor-cpp-standards-config-parser/-/blob/main/03.cpp?ref_type=heads)のソースコードを開き、選択した後、次のChatプロンプトを使用します。\n\n```markdown\n/refactor into C++14 and explain the changes\n（日本語訳：/C++14にリファクタリングし、変更を説明してください）\n```\n\nChatの回答例：\n\n```markdown\n…\n\n変更点の説明：\n\n1. デフォルトコンストラクタ: `ConfigParser() {}` を `ConfigParser() = default;` に変更し、デフォルトコンストラクタを使用しました。\n2. ファイルオープン: ファイルを開く際、`.c_str()` を削除しました。C++11以降では、`std::string` が直接サポートされています。\n3. ラムダ関数: 文字列のトリミング処理を行うラムダ関数trimを導入し、コードの可読性と再利用性を向上させました。\n4. 自動キーワード: 型推論のために様々な箇所で `auto` を使用し、コードの可読性を改善しました。\n5. 範囲ベースのforループ:  `printConfig` メソッド内で従来のforループを範囲ベースのforループに置き換え、より簡潔でエラーが少ない構造にしました。\n6. 構造化束縛: 範囲ベースのforループで構造化束縛を使用し、キーと値のペアに直接アクセスできるようにしました。\n7. 初期化付きif文: `getValue` メソッド内で、検索操作と条件チェックを1行で行える初期化付きif文を使用しました。\n8. 文字列メンバー関数: 文字列の最初と最後の文字を取得する際に、配列風のアクセスではなく `front()` と `back()` を使用しました。\n9. 初期化の統一: オブジェクトの生成時に `()` ではなく `{}` を使用する統一された初期化を採用しました。\n10. `std::endl` の削除： `std::endl` を `'\\n'` に置き換え、パフォーマンスを向上させました。`std::endl` は出力バッファーを強制的にフラッシュするためです。\n\nこれらの変更により、コードはよりモダンで簡潔になり、同じ機能を維持しつつ効率性が向上しています。\n\n```\n\n![コードに反映された変更](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675059/Blog/Content%20Images/duo_refactor_cpp_clion_chat_cpp03_to_14_01.png)\n\n![コードに反映された変更2](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675060/Blog/Content%20Images/duo_refactor_cpp_clion_chat_cpp03_to_14_02.png)\n\n#### ダウングレード：C++23をC++11にリファクタリング\n\n時に、デベロッパーはC++20のようなモダンなC++標準で新しい機能の概念実証を開始しますが、エンタープライズな顧客環境で実際にサポートされているバージョンでは、C++11をサポートする古いコンパイラが必要になる場合があります。バージョンをダウングレードするにはコストがかかるほか、どの言語機能がまだサポートされているかを確認し、潜在的なデメリットを検討する必要があります。\n\nIDEで[23.cpp](https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-refactor-cpp-standards-config-parser/-/blob/main/23.cpp?ref_type=heads)のソースコードを開き、選択した後、次のChatプロンプトを使用します。\n\n```markdown\n/refactor into C++11, explain the necessary changes and potential problems\n（日本語訳：/C++14にリファクタリングし、必要な変更点と潜在的な問題点を説明してください）\n```\n\nDuo Chatの回答例：\n\n```markdown\nこのコードをC++11に対応させるために必要な主な変更点は次の通りです：\n\n1. C++23標準のコメントを削除しました。これはもう適用されないためです。\n2. trim関数内で `std::string::find_first_not_of` と  `std::string::find_last_not_of` をC++11対応の代替方法に置き換えました。\n3. ループ変数には `auto` の代わりに `const auto&` を使用し、不要なコピーを避けました。\n\nオリジナルのコードにおける潜在的な問題点は次の通りです：\n\n1. オリジナルのコードはC++23の機能を使用しており、まだ広くサポートされていない可能性があります。\n2. `trim` 関数では `std::string::find_first_not_of` と `std::string::find_last_not_of` を使用しており、これらはC++11には存在しません。\n3. 一部のループで `const auto&` の代わりに `auto` を使用していないと、複雑なオブジェクトが不必要にコピーされる可能性があります。\n\nこれらの問題はリファクタリング版で解決されています。`trim` 関数は、C++11対応の場合と同じ結果を得るために、ラムダ関数を使った `std::find_if_not` を利用するように変更されました。また、 `const auto&` を使用することで、設定マップを反復処理する際に不要なコピーが行われないようにしました。\n```\n\n![`trim` 関数は、C++11に対応する形で、ラムダ関数を使った `std::find_if_not` を使用して同じ結果をもたらすようになりました](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675059/Blog/Content%20Images/duo_refactor_cpp_clion_chat_cpp23_to_11_01.png)\n\n![`const auto&` を使用することで、configマップを反復処理する際の不要なコピーの生成を防ぎ、パフォーマンスを最適化できます](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675059/Blog/Content%20Images/duo_refactor_cpp_clion_chat_cpp23_to_11_02.png)\n\n**非同期練習**：他のバージョンのリファクタリングシナリオをテストしてみましょう。\n\n### COBOLの説明とリファクタリング\n\nGitLab Duoを使用して、COBOLプログラムのソースコードを説明させたり、解析、修正、リファクタリングを実行してもらえます。筆者はCOBOLを書いたことも学んだこともありませんでしたが、この[COBOL Programming Course](https://github.com/openmainframeproject/cobol-programming-course)では豊富な例が紹介されていて有用だと感じました。\n\nその後、次のように、Chatに「COBOLの始め方」「COBOLプログラムの作成方法」「macOSでのCOBOLプログラムのコンパイル方法」について質問しました。\n\n```markdown\nPlease explain what COBOL is and its syntax\n（日本語訳：COBOLとは何か、その構文について説明してください。）\n\nPlease create a COBOL program that shows the first steps\n（日本語訳：COBOLプログラムを作成し、最初のステップを示してください。）\n\nTell me more about the COBOL compiler. Which system do I need? Can I do it on my macOS?\n（日本語訳：COBOLコンパイラについて教えてください。どのようなシステムが必要ですか？ macOSで実行できますか？）\n```\t\n\n![GitLab Duo Chatに説明とその構文を求める](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675059/Blog/Content%20Images/vscode_chat_cobol_generate_example.png)\n\nCOBOLプログラムを開き、ソースコードを選択したら、Duo Chatに切り替えて、`/explain` プロンプトを送信し、目的や機能を説明してもらいましょう。\n\nまた、プロンプトをさらに洗練して、全体像をより反映したサマリーを取得することもできます。\n\n```markdown \n/explain like I am five\n（日本語訳：/explain ５歳児にもわかるように説明してください。）\n```\n\n> ヒント：プログラミング言語は、類似したアルゴリズムや機能を共有しています。COBOLについては、ChatによるPythonを介した説明が提供されたため、以降のプロンプトではPythonでの説明を求めるように調整しました。\n\n```markdown\n/explain in a different programming language\n（日本語訳：/explain 異なるプログラミング言語で説明してください。）\n```\n\nChatでは、`/refactor` スラッシュ（/）コマンドを使用して、コード品質の改善、潜在的な問題の修正、およびCOBOLのPythonへのリファクタリングを実行できます。\n\n```markdown\n/refactor fix the environment error\n（日本語訳：/refactor 環境上のエラーを修正してください。）\n\n/refactor fix potential problems\n（日本語訳：/refactor 潜在的な問題を修正してください。）\n\n/refactor into Python\n（日本語訳：/refactor Pythonにリファクタリングしてください。）\n```\n\n次の[GitLab Duo Coffee Chat - Challenge: Explain and Refactor COBOL programs](https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-explain-refactor-cobol-program)の録画では、欠落しているピリオドの見つけ方など、すべての手順が実際のユースケースをもとに説明されています。\n\n\u003C!-- 空白行 -->\n\u003Cfigure class=\"video_container\">\n  \u003Ciframe src=\"https://www.youtube.com/embed/pwlDmLQMMPo\" frameborder=\"0\" allowfullscreen=\"true\"> \u003C/iframe>\n\u003C/figure>\n\u003C!-- 空白行 -->\n\n## 異なる言語間でのリファクタリング\n\nモダナイゼーションとコード品質の改善には、プログラミング言語の変更が必要になる場合があります。GitLab Duoのリファクタリングプロンプトを使用して、移行プロセスを迅速に進められますCOBOLとPythonの例は、エンタープライズ環境において一般的な要件のひとつに過ぎません。その他のユースケースを詳しく見ていきましょう。\n\n### CをRustにリファクタリング\n\n2024年初頭に、Cを始めとするいくつかのプログラミング言語は、メモリの安全性に問題があると指摘されました。今後のプロジェクトでは、Rustのような[メモリ安全な言語](https://about.gitlab.com/blog/memory-safe-vs-unsafe/)（英語）が推奨されています。ここでは、移行へのアプローチや、想定すべき課題について理解しましょう。\n\n簡単なCの例で試してみましょう。このコードはコード提案を使用して生成されており、オペレーティングシステムの基本情報（名前、バージョン、プラットフォームなど）を表示します。このCコードは、Windows、Linux、macOSでクロスプラットフォームにコンパイルできます。\n\n```c\n// OSファイルを読み込み、プラットフォーム、名前、バージョンを特定する\n// ターミナルに出力する\n#include \u003Cstdio.h>\n#include \u003Cstdlib.h>\n#include \u003Cstring.h>\n\n#ifdef _WIN32\n    #include \u003Cwindows.h>\n#elif __APPLE__\n    #include \u003Csys/utsname.h>\n#else\n    #include \u003Csys/utsname.h>\n#endif\n\nvoid get_os_info() {\n    #ifdef _WIN32\n        OSVERSIONINFOEX info;\n        ZeroMemory(&info, sizeof(OSVERSIONINFOEX));\n        info.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);\n        GetVersionEx((OSVERSIONINFO*)&info);\n\n        printf(\"Platform: Windows\\n\");\n        printf(\"Version: %d.%d\\n\", info.dwMajorVersion, info.dwMinorVersion);\n        printf(\"Build: %d\\n\", info.dwBuildNumber);\n    #elif __APPLE__\n        struct utsname sys_info;\n        uname(&sys_info);\n\n        printf(\"Platform: macOS\\n\");\n        printf(\"Name: %s\\n\", sys_info.sysname);\n        printf(\"Version: %s\\n\", sys_info.release);\n    #else\n        struct utsname sys_info;\n        uname(&sys_info);\n\n        printf(\"Platform: %s\\n\", sys_info.sysname);\n        printf(\"Name: %s\\n\", sys_info.nodename);\n        printf(\"Version: %s\\n\", sys_info.release);\n    #endif\n}\n\nint main() {\n    get_os_info();\n    return 0;\n}\n```\n\nここでは、JetBrains CLionなどを使用して [`os.c`](https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-refactor-c-to-rust/-/blob/897bf57a14bb7be07d842e7f044f93a61456d611/c/os.c) のソースコードを開きます。 ソースコードを選択し、Chatプロンプトで `/explain` を使用して目的や機能を説明します。次に、Chatプロンプトで `/refactor` を使用してCコードをリファクタリングし、さらに `/refactor into Rust` を使用してRustにリファクタリングします。\n\n新しいRustプロジェクトを初期化（ヒント：Duo Chatに質問してみましょう）し、生成されたソースコードを `src/main.rs` ファイルにコピーします。`cargo build` を実行してコードをコンパイルします。\n\n![新しいRustプロジェクトを初期化し、生成されたソースコードを `src/main.rs` ファイルにコピーします。`cargo build` を実行してコードをコンパイルします。](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675059/Blog/Content%20Images/jetbrains_clion_c_rust.png)\n\n[GitLab Duo Coffee Chat: Challenge - Refactor C into Rust ]( https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-refactor-c-to-rust)の録画では、の録画では、すべての手順を確認できるほか、コンパイルエラーが発生し、それがChatと `/refactor` スラッシュ(/) コマンドによって修正される様子もご覧になれます。また、このセッションでは、新しいRustコードのメンテナンス性を向上させるために、エラーハンドリングを追加する方法も紹介されています。\n\n\u003C!-- 空白行 -->\n\u003Cfigure class=\"video_container\">\n  \u003Ciframe src=\"https://www.youtube.com/embed/nf8g2ucqvkI\" frameborder=\"0\" allowfullscreen=\"true\"> \u003C/iframe>\n\u003C/figure>\n\u003C!-- 空白行 -->\n\n### PerlをPythonにリファクタリング\n\n本番環境サーバーでジョブを実行するスクリプトがありますが、作成者は10年前に退社しており、誰もそのスクリプトに手を付けたがりません。この問題は、複数のスクリプトや、さらにはアプリケーション全体にも影響している可能性があります。そこで、すべてをモダンなPython 3に移行する決定が下されました。ここでは、コードのモダナイゼーションを行い、PerlからPythonへの変更点を理解することを目標とします。\n\n最近、GitLab Duoのワークショップに参加したお客様から、GitLab Duoを使って直接移行が可能かどうかという質問がありました。一言でお答えすれば、「可能」です。これを詳しく説明するならば、この記事にある他の例と同様に、洗練されたChatプロンプトを使用することで、PerlコードをPythonにリファクタリングすることができます。\n\n`script.pl` ソースコードをIDEで開き、選択して、Chatを開きます。\n\n```perl\n#!/usr/bin/perl\nuse strict;\nuse warnings;\n\nopen my $md_fh, '\u003C', 'file.md' or die \"Could not open file.md: $!\";\n\nmy $l = 0;\nmy $e = 0;\nmy $h = 0;\n\nwhile (my $line = \u003C$md_fh>) {\n  $l++;\n  if ($line =~ /^\\s*$/) {\n    $e++;\n    next;\n  }\n  if ($line =~ /^#+\\s*(.+)/) {\n    print \"$1\\n\";\n    $h++; \n  }\n}\n\nprint \"\\nS:\\n\"; \nprint \"L: $l\\n\";\nprint \"E: $e\\n\"; \nprint \"H: $h\\n\";\n```\n\n次のプロンプトを使用できます：\n\n1. `/explain` でその目的を説明させ、 `/refactor` でコードを改善させます。\n2. `/refactor into Python`：実行可能なPythonスクリプトを取得します。\n\n![Pythonへのリファクタリング](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675059/Blog/Content%20Images/pycharm_duo_refactor_perl_python.png)\n\n> ヒント：Perlコードは、より多くのターゲット言語にリファクタリングできます。[GitLab Duo Coffee Chat：チャレンジ - PerlからPythonへのリファクタリング](https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-refactor-perl-python)の録画では、PHP、Ruby、Rust、Go、Java、VB.NET、C#などの言語も取り上げています。\n>\n> Perlスクリプトの使用を継続するには、Duoのコード提案で[Perlを追加言語として](https://docs.gitlab.com/ee/user/project/repository/code_suggestions/supported_extensions.html#add-support-for-more-languages)設定できます。ChatはすでにPerlを理解しており、質問やスラッシュ（/） コマンドのプロンプトにも対応できます。次の録画でこれについて確認できます。\n\n\u003C!-- 空白行 -->\n\u003Cfigure class=\"video_container\">\n  \u003Ciframe src=\"https://www.youtube.com/embed/03HGhxXg9lw\" frameborder=\"0\" allowfullscreen=\"true\"> \u003C/iframe>\n\u003C/figure>\n\u003C!-- 空白行 -->\n\n## その他のリファクタリング実践例\n\n### JavaScriptのリファクタリング\n\nJavaScriptをリファクタリングしてコード品質を向上させたり、機能を追加したりする方法について、Eddie Jaoudeが実用的な例を交えて紹介しています。\n\n\u003C!-- 空白行 -->\n\u003Cfigure class=\"video_container\">\n  \u003Ciframe src=\"https://www.youtube.com/embed/mHn8KOzpPNY\" frameborder=\"0\" allowfullscreen=\"true\"> \u003C/iframe>\n\u003C/figure>\n\u003C!-- 空白行 -->\n\n### BashをZSHやSHにリファクタリング\n\n筆者はBashをShellとして20年間使用していましたが、最近になってmacOSのZSHに移行しました。この移行に伴い、スクリプトが機能しなくなったり、端末に不明なエラーが発生したりしました。リファクタリングの別のユースケースとして、Shellの制約があります。たとえば、一部のオペレーティングシステムやLinux/Unixディストリビューション（Alpineなど）では、Bashが提供されておらず、SHしか使用できません。\n\n![シェルスクリプトのリファクタリング](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675059/Blog/Content%20Images/intellj_refactor_shell_scripts.png)\n\n[GitLab Duo Coffee Chat: Challenge - Refactor Shell Scripts ]( https://gitlab.com/gitlab-da/use-cases/ai/ai-workflows/gitlab-duo-challenges/code-challenges/challenge-refactor-shell-scripts)では、syslogファイルを追跡するCプログラムと、Bashで記述されたビルドスクリプトの例が紹介されています。このチャレンジの中では、コードの改善を目的として、Chatに対して `/explain` や `/refactor` のプロンプトが使用されます。また、BashをPOSIX準拠のSHやZSHにリファクタリングすることもできます。セッションの最後では、Chatに5つの異なるShellスクリプトの実装を提供させ、そのサマリーについて説明するようリクエストしています。\n\n\u003C!-- 空白行 -->\n\u003Cfigure class=\"video_container\">\n  \u003Ciframe src=\"https://www.youtube.com/embed/mssqYjlKGzU\" frameborder=\"0\" allowfullscreen=\"true\"> \u003C/iframe>\n\u003C/figure>\n\u003C!-- 空白行 -->\n\n### その他のユースケースとチュートリアル\n\n- [ドキュメント：GitLab Duoのユースケース](https://docs.gitlab.com/ee/user/gitlab_duo/use_cases.html)\n- [チュートリアル：AI搭載のGitLab Duoチャットを使用するためのベストプラクティス【10選】](https://about.gitlab.com/blog/top-tips-for-efficient-ai-powered-code-suggestions-with-gitlab-duo/)\n- [チュートリアル：AI搭載のGitLab Duoチャットを使用するためのベストプラクティス【10選】](https://about.gitlab.com/ja-jp/blog/10-best-practices-for-using-ai-powered-gitlab-duo-chat/)\n\n## 重要なポイント\n\n1. GitLab Duoは、コードの説明やリファクタリングにおいて効率的なサポートを提供します。\n1. 言語標準間でコードをリファクタリングしたり、Chatで追加の質問をしたりできます。\n1. コード提案のプロンプトは、特定の言語標準に基づいたコードを生成できます。また、コード補完は現行のコードのコンテキストを尊重します。\n1. 新しいプログラミング言語へのリファクタリングは、長期的な移行プロセスやモダナイゼーションの計画に有効です。\n1. コードは、古いシステムがサポートする言語標準に「ダウングレード」することもできます。\n1. GitLab Duoは、複雑なコードやプログラミング言語について、異なるプログラミング言語の例を用いて説明できます。\n1. GitLab.comにおけるAnthropic Claude 3.5へのアップデートにより、コード提案およびChatの質と速度がさらに向上しました（Self-Managed版では17.3へのアップグレードを推奨しています）。\n1. 本番環境における問題がある場合を除き、ユースケースはアイデア次第で無限に広がります。\n\nコード提案とChatを活用した効率的なワークフローについて理解を深めましょう。GitLab DuoのAI搭載コードリファクタリングを、今すぐお試しいただけます。\n\n> [GitLab Duoのの無料トライアルを開始しましょう！](https://about.gitlab.com/ja-jp/solutions/gitlab-duo-pro/sales/?type=free-trial&toggle=gitlab-duo-pro_)\n\n*監修：知念 梨果 [@rikachinen](https://gitlab.com/rikachinen)* \u003Cbr>\n*（GitLab合同会社 カスタマーサクセス本部 カスタマーサクセスエンジニア）*\n","ai-ml",[23,24,25],"AI/ML","tutorial","DevSecOps","2025-02-10",{"slug":28,"featured":6,"template":29},"refactor-code-into-modern-languages-with-ai-powered-gitlab-duo","BlogPost","content:ja-jp:blog:refactor-code-into-modern-languages-with-ai-powered-gitlab-duo.yml","yaml","Refactor Code Into Modern Languages With Ai Powered Gitlab Duo","content","ja-jp/blog/refactor-code-into-modern-languages-with-ai-powered-gitlab-duo.yml","ja-jp/blog/refactor-code-into-modern-languages-with-ai-powered-gitlab-duo","yml",{"_path":38,"_dir":39,"_draft":6,"_partial":6,"_locale":7,"data":40,"_id":448,"_type":31,"title":449,"_source":33,"_file":450,"_stem":451,"_extension":36},"/shared/ja-jp/main-navigation","ja-jp",{"logo":41,"freeTrial":46,"sales":51,"login":56,"items":61,"search":392,"minimal":426,"duo":439},{"config":42},{"href":43,"dataGaName":44,"dataGaLocation":45},"/ja-jp/","gitlab logo","header",{"text":47,"config":48},"無料トライアルを開始",{"href":49,"dataGaName":50,"dataGaLocation":45},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":52,"config":53},"お問い合わせ",{"href":54,"dataGaName":55,"dataGaLocation":45},"/ja-jp/sales/","sales",{"text":57,"config":58},"サインイン",{"href":59,"dataGaName":60,"dataGaLocation":45},"https://gitlab.com/users/sign_in/","sign in",[62,106,204,209,314,374],{"text":63,"config":64,"cards":66,"footer":89},"プラットフォーム",{"dataNavLevelOne":65},"platform",[67,73,81],{"title":63,"description":68,"link":69},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":70,"config":71},"プラットフォームを詳しく見る",{"href":72,"dataGaName":65,"dataGaLocation":45},"/ja-jp/platform/",{"title":74,"description":75,"link":76},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":77,"config":78},"GitLab Duoのご紹介",{"href":79,"dataGaName":80,"dataGaLocation":45},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":82,"description":83,"link":84},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":85,"config":86},"詳細はこちら",{"href":87,"dataGaName":88,"dataGaLocation":45},"/ja-jp/why-gitlab/","why gitlab",{"title":90,"items":91},"利用を開始：",[92,97,102],{"text":93,"config":94},"プラットフォームエンジニアリング",{"href":95,"dataGaName":96,"dataGaLocation":45},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":98,"config":99},"開発者の経験",{"href":100,"dataGaName":101,"dataGaLocation":45},"/ja-jp/developer-experience/","Developer experience",{"text":103,"config":104},"MLOps",{"href":105,"dataGaName":103,"dataGaLocation":45},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":107,"left":108,"config":109,"link":111,"lists":115,"footer":186},"製品",true,{"dataNavLevelOne":110},"solutions",{"text":112,"config":113},"すべてのソリューションを表示",{"href":114,"dataGaName":110,"dataGaLocation":45},"/ja-jp/solutions/",[116,142,164],{"title":117,"description":118,"link":119,"items":124},"自動化","CI/CDと自動化でデプロイを加速",{"config":120},{"icon":121,"href":122,"dataGaName":123,"dataGaLocation":45},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[125,129,133,138],{"text":126,"config":127},"CI/CD",{"href":128,"dataGaLocation":45,"dataGaName":126},"/ja-jp/solutions/continuous-integration/",{"text":130,"config":131},"AIアシストによる開発",{"href":79,"dataGaLocation":45,"dataGaName":132},"AI assisted development",{"text":134,"config":135},"ソースコード管理",{"href":136,"dataGaLocation":45,"dataGaName":137},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":139,"config":140},"自動化されたソフトウェアデリバリー",{"href":122,"dataGaLocation":45,"dataGaName":141},"Automated software delivery",{"title":143,"description":144,"link":145,"items":150},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":146},{"href":147,"dataGaName":148,"dataGaLocation":45,"icon":149},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[151,155,160],{"text":152,"config":153},"Application Security Testing",{"href":147,"dataGaName":154,"dataGaLocation":45},"Application security testing",{"text":156,"config":157},"ソフトウェアサプライチェーンの安全性",{"href":158,"dataGaLocation":45,"dataGaName":159},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":161,"config":162},"Software Compliance",{"href":163,"dataGaName":161,"dataGaLocation":45},"/ja-jp/solutions/software-compliance/",{"title":165,"link":166,"items":171},"測定",{"config":167},{"icon":168,"href":169,"dataGaName":170,"dataGaLocation":45},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[172,176,181],{"text":173,"config":174},"可視性と測定",{"href":169,"dataGaLocation":45,"dataGaName":175},"Visibility and Measurement",{"text":177,"config":178},"バリューストリーム管理",{"href":179,"dataGaLocation":45,"dataGaName":180},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":182,"config":183},"分析とインサイト",{"href":184,"dataGaLocation":45,"dataGaName":185},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":187,"items":188},"GitLabが活躍する場所",[189,194,199],{"text":190,"config":191},"Enterprise",{"href":192,"dataGaLocation":45,"dataGaName":193},"/ja-jp/enterprise/","enterprise",{"text":195,"config":196},"スモールビジネス",{"href":197,"dataGaLocation":45,"dataGaName":198},"/ja-jp/small-business/","small business",{"text":200,"config":201},"公共機関",{"href":202,"dataGaLocation":45,"dataGaName":203},"/ja-jp/solutions/public-sector/","public sector",{"text":205,"config":206},"価格",{"href":207,"dataGaName":208,"dataGaLocation":45,"dataNavLevelOne":208},"/ja-jp/pricing/","pricing",{"text":210,"config":211,"link":213,"lists":217,"feature":301},"関連リソース",{"dataNavLevelOne":212},"resources",{"text":214,"config":215},"すべてのリソースを表示",{"href":216,"dataGaName":212,"dataGaLocation":45},"/ja-jp/resources/",[218,251,273],{"title":219,"items":220},"はじめに",[221,226,231,236,241,246],{"text":222,"config":223},"インストール",{"href":224,"dataGaName":225,"dataGaLocation":45},"/ja-jp/install/","install",{"text":227,"config":228},"クイックスタートガイド",{"href":229,"dataGaName":230,"dataGaLocation":45},"/ja-jp/get-started/","quick setup checklists",{"text":232,"config":233},"学ぶ",{"href":234,"dataGaLocation":45,"dataGaName":235},"https://university.gitlab.com/","learn",{"text":237,"config":238},"製品ドキュメント",{"href":239,"dataGaName":240,"dataGaLocation":45},"https://docs.gitlab.com/","product documentation",{"text":242,"config":243},"ベストプラクティスビデオ",{"href":244,"dataGaName":245,"dataGaLocation":45},"/ja-jp/getting-started-videos/","best practice videos",{"text":247,"config":248},"インテグレーション",{"href":249,"dataGaName":250,"dataGaLocation":45},"/ja-jp/integrations/","integrations",{"title":252,"items":253},"検索する",[254,259,263,268],{"text":255,"config":256},"お客様成功事例",{"href":257,"dataGaName":258,"dataGaLocation":45},"/ja-jp/customers/","customer success stories",{"text":260,"config":261},"ブログ",{"href":262,"dataGaName":5,"dataGaLocation":45},"/ja-jp/blog/",{"text":264,"config":265},"リモート",{"href":266,"dataGaName":267,"dataGaLocation":45},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":269,"config":270},"TeamOps",{"href":271,"dataGaName":272,"dataGaLocation":45},"/ja-jp/teamops/","teamops",{"title":274,"items":275},"つなげる",[276,281,286,291,296],{"text":277,"config":278},"GitLabサービス",{"href":279,"dataGaName":280,"dataGaLocation":45},"/ja-jp/services/","services",{"text":282,"config":283},"コミュニティ",{"href":284,"dataGaName":285,"dataGaLocation":45},"/community/","community",{"text":287,"config":288},"フォーラム",{"href":289,"dataGaName":290,"dataGaLocation":45},"https://forum.gitlab.com/","forum",{"text":292,"config":293},"イベント",{"href":294,"dataGaName":295,"dataGaLocation":45},"/events/","events",{"text":297,"config":298},"パートナー",{"href":299,"dataGaName":300,"dataGaLocation":45},"/ja-jp/partners/","partners",{"backgroundColor":302,"textColor":303,"text":304,"image":305,"link":309},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":306,"config":307},"ソースプロモカード",{"src":308},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":310,"config":311},"最新情報を読む",{"href":312,"dataGaName":313,"dataGaLocation":45},"/ja-jp/the-source/","the source",{"text":315,"config":316,"lists":318},"会社情報",{"dataNavLevelOne":317},"company",[319],{"items":320},[321,326,332,334,339,344,349,354,359,364,369],{"text":322,"config":323},"GitLabについて",{"href":324,"dataGaName":325,"dataGaLocation":45},"/ja-jp/company/","about",{"text":327,"config":328,"footerGa":331},"採用情報",{"href":329,"dataGaName":330,"dataGaLocation":45},"/jobs/","jobs",{"dataGaName":330},{"text":292,"config":333},{"href":294,"dataGaName":295,"dataGaLocation":45},{"text":335,"config":336},"経営陣",{"href":337,"dataGaName":338,"dataGaLocation":45},"/company/team/e-group/","leadership",{"text":340,"config":341},"チーム",{"href":342,"dataGaName":343,"dataGaLocation":45},"/company/team/","team",{"text":345,"config":346},"ハンドブック",{"href":347,"dataGaName":348,"dataGaLocation":45},"https://handbook.gitlab.com/","handbook",{"text":350,"config":351},"投資家向け情報",{"href":352,"dataGaName":353,"dataGaLocation":45},"https://ir.gitlab.com/","investor relations",{"text":355,"config":356},"トラストセンター",{"href":357,"dataGaName":358,"dataGaLocation":45},"/ja-jp/security/","trust center",{"text":360,"config":361},"AI Transparency Center",{"href":362,"dataGaName":363,"dataGaLocation":45},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":365,"config":366},"ニュースレター",{"href":367,"dataGaName":368,"dataGaLocation":45},"/company/contact/","newsletter",{"text":370,"config":371},"プレス",{"href":372,"dataGaName":373,"dataGaLocation":45},"/press/","press",{"text":52,"config":375,"lists":376},{"dataNavLevelOne":317},[377],{"items":378},[379,382,387],{"text":52,"config":380},{"href":54,"dataGaName":381,"dataGaLocation":45},"talk to sales",{"text":383,"config":384},"サポートを受ける",{"href":385,"dataGaName":386,"dataGaLocation":45},"/support/","get help",{"text":388,"config":389},"カスタマーポータル",{"href":390,"dataGaName":391,"dataGaLocation":45},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":393,"login":394,"suggestions":401},"閉じる",{"text":395,"link":396},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":397,"config":398},"GitLab.com",{"href":59,"dataGaName":399,"dataGaLocation":400},"search login","search",{"text":402,"default":403},"提案",[404,407,412,414,418,422],{"text":74,"config":405},{"href":79,"dataGaName":406,"dataGaLocation":400},"GitLab Duo (AI)",{"text":408,"config":409},"コード提案（AI）",{"href":410,"dataGaName":411,"dataGaLocation":400},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":126,"config":413},{"href":128,"dataGaName":126,"dataGaLocation":400},{"text":415,"config":416},"GitLab on AWS",{"href":417,"dataGaName":415,"dataGaLocation":400},"/ja-jp/partners/technology-partners/aws/",{"text":419,"config":420},"GitLab on Google Cloud",{"href":421,"dataGaName":419,"dataGaLocation":400},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":423,"config":424},"GitLabを選ぶ理由",{"href":87,"dataGaName":425,"dataGaLocation":400},"Why GitLab?",{"freeTrial":427,"mobileIcon":431,"desktopIcon":436},{"text":47,"config":428},{"href":429,"dataGaName":50,"dataGaLocation":430},"https://gitlab.com/-/trials/new/","nav",{"altText":432,"config":433},"GitLabアイコン",{"src":434,"dataGaName":435,"dataGaLocation":430},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":432,"config":437},{"src":438,"dataGaName":435,"dataGaLocation":430},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":440,"mobileIcon":444,"desktopIcon":446},{"text":441,"config":442},"GitLab Duoの詳細について",{"href":79,"dataGaName":443,"dataGaLocation":430},"gitlab duo",{"altText":432,"config":445},{"src":434,"dataGaName":435,"dataGaLocation":430},{"altText":432,"config":447},{"src":438,"dataGaName":435,"dataGaLocation":430},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":453,"_dir":39,"_draft":6,"_partial":6,"_locale":7,"title":454,"button":455,"config":460,"_id":462,"_type":31,"_source":33,"_file":463,"_stem":464,"_extension":36},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":456,"config":457},"ベータ版を試す",{"href":458,"dataGaName":459,"dataGaLocation":45},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":461},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":466,"_dir":39,"_draft":6,"_partial":6,"_locale":7,"data":467,"_id":671,"_type":31,"title":672,"_source":33,"_file":673,"_stem":674,"_extension":36},"/shared/ja-jp/main-footer",{"text":468,"source":469,"edit":475,"contribute":480,"config":485,"items":490,"minimal":663},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":470,"config":471},"ページのソースを表示",{"href":472,"dataGaName":473,"dataGaLocation":474},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":476,"config":477},"このページを編集",{"href":478,"dataGaName":479,"dataGaLocation":474},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":481,"config":482},"ご協力をお願いします",{"href":483,"dataGaName":484,"dataGaLocation":474},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":486,"facebook":487,"youtube":488,"linkedin":489},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[491,514,568,600,635],{"title":63,"links":492,"subMenu":497},[493],{"text":494,"config":495},"DevSecOpsプラットフォーム",{"href":72,"dataGaName":496,"dataGaLocation":474},"devsecops platform",[498],{"title":205,"links":499},[500,504,509],{"text":501,"config":502},"プランの表示",{"href":207,"dataGaName":503,"dataGaLocation":474},"view plans",{"text":505,"config":506},"Premiumを選ぶ理由",{"href":507,"dataGaName":508,"dataGaLocation":474},"/ja-jp/pricing/premium/","why premium",{"text":510,"config":511},"Ultimateを選ぶ理由",{"href":512,"dataGaName":513,"dataGaLocation":474},"/ja-jp/pricing/ultimate/","why ultimate",{"title":515,"links":516},"ソリューション",[517,522,525,527,532,537,541,544,547,552,554,556,558,563],{"text":518,"config":519},"デジタルトランスフォーメーション",{"href":520,"dataGaName":521,"dataGaLocation":474},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":523,"config":524},"セキュリティとコンプライアンス",{"href":147,"dataGaName":154,"dataGaLocation":474},{"text":139,"config":526},{"href":122,"dataGaName":123,"dataGaLocation":474},{"text":528,"config":529},"アジャイル開発",{"href":530,"dataGaName":531,"dataGaLocation":474},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":533,"config":534},"クラウドトランスフォーメーション",{"href":535,"dataGaName":536,"dataGaLocation":474},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":538,"config":539},"SCM",{"href":136,"dataGaName":540,"dataGaLocation":474},"source code management",{"text":126,"config":542},{"href":128,"dataGaName":543,"dataGaLocation":474},"continuous integration & delivery",{"text":177,"config":545},{"href":179,"dataGaName":546,"dataGaLocation":474},"value stream management",{"text":548,"config":549},"GitOps",{"href":550,"dataGaName":551,"dataGaLocation":474},"/ja-jp/solutions/gitops/","gitops",{"text":190,"config":553},{"href":192,"dataGaName":193,"dataGaLocation":474},{"text":195,"config":555},{"href":197,"dataGaName":198,"dataGaLocation":474},{"text":200,"config":557},{"href":202,"dataGaName":203,"dataGaLocation":474},{"text":559,"config":560},"教育",{"href":561,"dataGaName":562,"dataGaLocation":474},"/ja-jp/solutions/education/","education",{"text":564,"config":565},"金融サービス",{"href":566,"dataGaName":567,"dataGaLocation":474},"/ja-jp/solutions/finance/","financial services",{"title":210,"links":569},[570,572,574,576,579,581,584,586,588,590,592,594,596,598],{"text":222,"config":571},{"href":224,"dataGaName":225,"dataGaLocation":474},{"text":227,"config":573},{"href":229,"dataGaName":230,"dataGaLocation":474},{"text":232,"config":575},{"href":234,"dataGaName":235,"dataGaLocation":474},{"text":237,"config":577},{"href":239,"dataGaName":578,"dataGaLocation":474},"docs",{"text":260,"config":580},{"href":262,"dataGaName":5},{"text":582,"config":583},"お客様の成功事例",{"href":257,"dataGaLocation":474},{"text":255,"config":585},{"href":257,"dataGaName":258,"dataGaLocation":474},{"text":264,"config":587},{"href":266,"dataGaName":267,"dataGaLocation":474},{"text":277,"config":589},{"href":279,"dataGaName":280,"dataGaLocation":474},{"text":269,"config":591},{"href":271,"dataGaName":272,"dataGaLocation":474},{"text":282,"config":593},{"href":284,"dataGaName":285,"dataGaLocation":474},{"text":287,"config":595},{"href":289,"dataGaName":290,"dataGaLocation":474},{"text":292,"config":597},{"href":294,"dataGaName":295,"dataGaLocation":474},{"text":297,"config":599},{"href":299,"dataGaName":300,"dataGaLocation":474},{"title":601,"links":602},"Company",[603,605,607,609,611,613,615,619,624,626,628,630],{"text":322,"config":604},{"href":324,"dataGaName":317,"dataGaLocation":474},{"text":327,"config":606},{"href":329,"dataGaName":330,"dataGaLocation":474},{"text":335,"config":608},{"href":337,"dataGaName":338,"dataGaLocation":474},{"text":340,"config":610},{"href":342,"dataGaName":343,"dataGaLocation":474},{"text":345,"config":612},{"href":347,"dataGaName":348,"dataGaLocation":474},{"text":350,"config":614},{"href":352,"dataGaName":353,"dataGaLocation":474},{"text":616,"config":617},"Sustainability",{"href":618,"dataGaName":616,"dataGaLocation":474},"/sustainability/",{"text":620,"config":621},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":622,"dataGaName":623,"dataGaLocation":474},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":355,"config":625},{"href":357,"dataGaName":358,"dataGaLocation":474},{"text":365,"config":627},{"href":367,"dataGaName":368,"dataGaLocation":474},{"text":370,"config":629},{"href":372,"dataGaName":373,"dataGaLocation":474},{"text":631,"config":632},"現代奴隷制の透明性に関する声明",{"href":633,"dataGaName":634,"dataGaLocation":474},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":52,"links":636},[637,639,641,643,648,653,658],{"text":52,"config":638},{"href":54,"dataGaName":55,"dataGaLocation":474},{"text":383,"config":640},{"href":385,"dataGaName":386,"dataGaLocation":474},{"text":388,"config":642},{"href":390,"dataGaName":391,"dataGaLocation":474},{"text":644,"config":645},"ステータス",{"href":646,"dataGaName":647,"dataGaLocation":474},"https://status.gitlab.com/","status",{"text":649,"config":650},"利用規約",{"href":651,"dataGaName":652,"dataGaLocation":474},"/terms/","terms of use",{"text":654,"config":655},"プライバシーに関する声明",{"href":656,"dataGaName":657,"dataGaLocation":474},"/ja-jp/privacy/","privacy statement",{"text":659,"config":660},"Cookieの設定",{"dataGaName":661,"dataGaLocation":474,"id":662,"isOneTrustButton":108},"cookie preferences","ot-sdk-btn",{"items":664},[665,667,669],{"text":649,"config":666},{"href":651,"dataGaName":652,"dataGaLocation":474},{"text":654,"config":668},{"href":656,"dataGaName":657,"dataGaLocation":474},{"text":659,"config":670},{"dataGaName":661,"dataGaLocation":474,"id":662,"isOneTrustButton":108},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",[676,689,700,711,722,733,744,755,765,775,786,797,807,818,829,839,849,859,869,880,890,900,910,921,932,942,953,964,974,985,995,1006,1017,1028,1039,1049,1060,1071,1081,1092,1102,1113,1124,1134,1144,1155,1165,1175,1185,1196,1207,1218,1229,1239,1250,1261,1272,1283,1293,1304,1316,1327,1338,1348,1360,1371,1381,1392,1402,1413,1423,1434,1445,1455,1465,1475,1486,1496,1506,1516,1526,1537,1547,1558,1568,1579,1589,1599,1609,1620,1631,1642,1653,1664,1676,1686,1697,1707,1718,1729,1740,1751,1761,1772,1783,1794,1805,1815,1826,1837,1848,1858,1871,1881,1892,1903,1914,1924,1935,1946,1957,1967,1977,1987,1997,2008,2018,2028,2039,2049,2060,2070,2081,2092,2102,2113,2123,2133,2143,2154,2164,2174,2185,2196,2206,2217,2228,2239,2249,2262,2273,2283,2295,2307,2317,2327,2338,2348,2359,2371,2382,2393,2404,2416,2427,2437,2447,2458,2468,2478,2489,2500,2510,2521,2532,2542,2552,2563,2574,2584,2595,2605,2616,2627,2638,2648,2658,2669,2680,2690,2700,2711,2723,2733,2743,2753,2764,2775,2785,2795,2805,2815,2825,2836,2847,2857,2868,2878,2888,2898,2908,2918,2929,2939,2949,2960,2970,2980,2991,3002,3012,3024,3034,3044,3056,3067,3078,3088,3099,3110,3121,3131,3143,3154,3164,3175,3186,3197,3208,3219,3230,3241,3251,3262,3273,3284,3294,3304,3315,3325,3335,3346,3357,3370,3381,3392,3402,3413,3425,3436,3447,3458,3468,3478,3489,3499,3510,3521,3532,3542,3552,3562,3572,3583,3594,3605,3616,3628,3639,3651,3662,3672,3682,3694,3704,3715,3725,3736,3746,3756,3767,3779,3789,3799,3809,3820,3830,3841,3851,3861,3872,3883,3894,3906,3917,3927,3938,3949,3959,3969,3980,3991,4002,4013,4023,4034,4045,4056,4066,4077,4088,4098,4109,4120,4131,4141,4151,4162,4173,4183,4194,4205,4216,4226,4236,4247,4258,4269,4280,4291,4301,4312,4323,4333,4343,4353,4365,4377,4387,4399,4409,4420,4431,4442,4453,4466,4476,4487,4498,4508,4518,4528,4539,4549,4560,4571,4581,4592,4602,4613,4624,4635,4646,4657,4667,4677,4688,4699,4709,4719,4729,4740,4751,4761,4771,4781,4791,4802,4812,4822,4833,4843,4854,4864,4875,4886,4896,4906,4917,4927,4937,4948,4959,4970,4981,4991,5003,5014,5025,5035,5045,5055,5066,5077,5088,5099,5109,5120,5131,5141,5152,5164,5174,5184,5194,5205,5216,5227,5237,5247,5258,5269,5279,5291,5301,5311,5322,5332,5343,5355,5366,5376,5387,5398,5408,5419,5430,5442,5452,5462,5473,5483,5494,5504,5515,5525,5535,5546,5556,5566,5576,5586,5597,5607,5618,5629,5639,5649,5660,5670,5680,5690,5700,5711,5722,5734,5745,5756,5768,5780,5791,5802,5812,5823,5833,5843,5854,5865,5876,5886,5896,5906,5916,5926,5937,5949,5960,5972,5983,5993,6003,6014,6024,6034,6044,6054,6064,6074,6085,6095,6105,6116,6126,6136,6147,6158,6168,6180,6191,6201,6213,6224,6234,6245,6256,6266,6276,6286,6298,6308,6319,6330,6341,6352,6362,6372,6383,6395,6405,6415,6426,6436,6447,6457,6469,6480,6490,6500,6511,6523,6533,6546,6556,6568,6579,6589,6599,6610,6620,6631,6642,6653,6664,6675,6686,6697,6708,6719,6730,6741,6752,6763,6774,6785,6795,6808,6818,6829,6839,6850,6860,6870,6881,6892,6903,6913,6923,6934,6944,6955,6966,6978,6989,6999,7010,7021,7031,7041,7051,7061,7071,7082,7092,7103,7113,7124,7139,7150,7160,7171,7182,7193,7204,7215,7225,7236,7247,7258,7268,7279,7289,7299,7309,7319,7329,7340,7352,7362,7373,7384,7396,7406,7417,7427,7439,7450,7460,7470,7481,7492,7502,7513,7523,7533,7544,7555,7566,7577,7587,7598,7609,7619,7629,7639,7650,7661,7671,7681,7692,7703,7713,7723,7733,7744,7754,7765,7776,7787,7797,7807,7817,7827,7838,7849,7859,7869,7879,7889,7900],{"_path":677,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":679,"config":684,"_id":686,"_type":31,"title":680,"_source":33,"_file":687,"_stem":688,"_extension":36},"/en-us/blog/authors/aakriti-gupta","authors",{"name":680,"config":681},"Aakriti Gupta",{"headshot":682,"ctfId":683},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":685},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":690,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":691,"config":695,"_id":696,"_type":31,"title":697,"_source":33,"_file":698,"_stem":699,"_extension":36},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":692,"config":693},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":694},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":685},"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":701,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":702,"config":707,"_id":708,"_type":31,"title":703,"_source":33,"_file":709,"_stem":710,"_extension":36},"/en-us/blog/authors/aathira-nair",{"name":703,"config":704},"Aathira Nair",{"headshot":705,"ctfId":706},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":685},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":712,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":713,"config":718,"_id":719,"_type":31,"title":714,"_source":33,"_file":720,"_stem":721,"_extension":36},"/en-us/blog/authors/abdulkader-benchi",{"name":714,"config":715},"Abdulkader Benchi",{"headshot":716,"ctfId":717},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":685},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":723,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":724,"config":729,"_id":730,"_type":31,"title":725,"_source":33,"_file":731,"_stem":732,"_extension":36},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":725,"config":726},"Abubakar Siddiq Ango",{"headshot":727,"ctfId":728},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":685},"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":734,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":735,"config":740,"_id":741,"_type":31,"title":736,"_source":33,"_file":742,"_stem":743,"_extension":36},"/en-us/blog/authors/achilleas-pipinellis",{"name":736,"config":737},"Achilleas Pipinellis",{"headshot":738,"ctfId":739},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":685},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":745,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":746,"config":750,"_id":751,"_type":31,"title":752,"_source":33,"_file":753,"_stem":754,"_extension":36},"/en-us/blog/authors/adfinis-sygroup",{"name":747,"config":748},"Adfinis SyGroup",{"headshot":716,"ctfId":749},"Adfinis-SyGroup",{"template":685},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":756,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":757,"config":761,"_id":762,"_type":31,"title":758,"_source":33,"_file":763,"_stem":764,"_extension":36},"/en-us/blog/authors/ahmet-kizilay",{"name":758,"config":759},"Ahmet Kizilay",{"headshot":716,"ctfId":760},"Ahmet-Kizilay",{"template":685},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":766,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":767,"config":771,"_id":772,"_type":31,"title":768,"_source":33,"_file":773,"_stem":774,"_extension":36},"/en-us/blog/authors/akashdeep-dhar",{"name":768,"config":769},"Akashdeep Dhar",{"headshot":7,"ctfId":770},"t0xic0der",{"template":685},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":776,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":777,"config":782,"_id":783,"_type":31,"title":778,"_source":33,"_file":784,"_stem":785,"_extension":36},"/en-us/blog/authors/alana-bellucci",{"name":778,"config":779},"Alana Bellucci",{"headshot":780,"ctfId":781},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":685},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":787,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":788,"config":793,"_id":794,"_type":31,"title":789,"_source":33,"_file":795,"_stem":796,"_extension":36},"/en-us/blog/authors/alex-fracazo",{"name":789,"config":790},"Alex Fracazo",{"headshot":791,"ctfId":792},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":685},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":798,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":799,"config":803,"_id":804,"_type":31,"title":800,"_source":33,"_file":805,"_stem":806,"_extension":36},"/en-us/blog/authors/alex-groleau",{"name":800,"config":801},"Alex Groleau",{"headshot":716,"ctfId":802},"3VVHytQSHu9ehZgsUEJ3qq",{"template":685},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":808,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":809,"config":814,"_id":815,"_type":31,"title":810,"_source":33,"_file":816,"_stem":817,"_extension":36},"/en-us/blog/authors/alex-mark",{"name":810,"config":811},"Alex Mark",{"headshot":812,"ctfId":813},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":685},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":819,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":820,"config":825,"_id":826,"_type":31,"title":821,"_source":33,"_file":827,"_stem":828,"_extension":36},"/en-us/blog/authors/alex-martin",{"name":821,"config":822},"Alex Martin",{"headshot":823,"ctfId":824},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":685},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":830,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":831,"config":835,"_id":836,"_type":31,"title":832,"_source":33,"_file":837,"_stem":838,"_extension":36},"/en-us/blog/authors/alexander-dietrich",{"name":832,"config":833},"Alexander Dietrich",{"headshot":716,"ctfId":834},"2CzeEOPVjjGKpdblIm0JfO",{"template":685},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":840,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":841,"config":845,"_id":846,"_type":31,"title":842,"_source":33,"_file":847,"_stem":848,"_extension":36},"/en-us/blog/authors/alexander-malaev",{"name":842,"config":843},"Alexander Malaev",{"headshot":716,"ctfId":844},"Alexander-Malaev",{"template":685},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":850,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":851,"config":855,"_id":856,"_type":31,"title":852,"_source":33,"_file":857,"_stem":858,"_extension":36},"/en-us/blog/authors/alexander-pereverzevs",{"name":852,"config":853},"Alexander Pereverzevs",{"headshot":7,"ctfId":854},"lokalise",{"template":685},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":860,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":861,"config":865,"_id":866,"_type":31,"title":862,"_source":33,"_file":867,"_stem":868,"_extension":36},"/en-us/blog/authors/alexis-ginsberg",{"name":862,"config":863},"Alexis Ginsberg",{"headshot":716,"ctfId":864},"lmDIchpcDx48jKuke2B4l",{"template":685},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":870,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":871,"config":876,"_id":877,"_type":31,"title":872,"_source":33,"_file":878,"_stem":879,"_extension":36},"/en-us/blog/authors/allie-holland",{"name":872,"config":873},"Allie Holland",{"headshot":874,"ctfId":875},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":685},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":881,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":882,"config":886,"_id":887,"_type":31,"title":883,"_source":33,"_file":888,"_stem":889,"_extension":36},"/en-us/blog/authors/allison-whilden",{"name":883,"config":884},"Allison Whilden",{"headshot":716,"ctfId":885},"Allison-Whilden",{"template":685},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":891,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":892,"config":896,"_id":897,"_type":31,"title":893,"_source":33,"_file":898,"_stem":899,"_extension":36},"/en-us/blog/authors/alyssa-rock",{"name":893,"config":894},"Alyssa Rock",{"headshot":716,"ctfId":895},"4T2hddEfeK0Kp1zF8Ncvej",{"template":685},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":901,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":902,"config":906,"_id":907,"_type":31,"title":903,"_source":33,"_file":908,"_stem":909,"_extension":36},"/en-us/blog/authors/amanda-folson",{"name":903,"config":904},"Amanda Folson",{"headshot":716,"ctfId":905},"Amanda-Folson",{"template":685},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":911,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":912,"config":917,"_id":918,"_type":31,"title":913,"_source":33,"_file":919,"_stem":920,"_extension":36},"/en-us/blog/authors/amanda-rueda",{"name":913,"config":914},"Amanda Rueda",{"headshot":915,"ctfId":916},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":685},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":922,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":923,"config":928,"_id":929,"_type":31,"title":924,"_source":33,"_file":930,"_stem":931,"_extension":36},"/en-us/blog/authors/amar-patel",{"name":924,"config":925},"Amar Patel",{"headshot":926,"ctfId":927},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":685},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":933,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":934,"config":938,"_id":939,"_type":31,"title":935,"_source":33,"_file":940,"_stem":941,"_extension":36},"/en-us/blog/authors/amara-nwaigwe",{"name":935,"config":936},"Amara Nwaigwe",{"headshot":716,"ctfId":937},"Amara-Nwaigwe",{"template":685},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":943,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":944,"config":949,"_id":950,"_type":31,"title":945,"_source":33,"_file":951,"_stem":952,"_extension":36},"/en-us/blog/authors/amelia-bauerly",{"name":945,"config":946},"Amelia Bauerly",{"headshot":947,"ctfId":948},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":685},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":954,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":955,"config":960,"_id":961,"_type":31,"title":956,"_source":33,"_file":962,"_stem":963,"_extension":36},"/en-us/blog/authors/ameya-darshan",{"name":956,"config":957},"Ameya Darshan",{"headshot":958,"ctfId":959},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":685},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":965,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":966,"config":970,"_id":971,"_type":31,"title":967,"_source":33,"_file":972,"_stem":973,"_extension":36},"/en-us/blog/authors/andrea-borga",{"name":967,"config":968},"Andrea Borga",{"headshot":716,"ctfId":969},"6dPpfov6kpNcMdmyHyhKcN",{"template":685},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":975,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":976,"config":981,"_id":982,"_type":31,"title":977,"_source":33,"_file":983,"_stem":984,"_extension":36},"/en-us/blog/authors/andreas-brandl",{"name":977,"config":978},"Andreas Brandl",{"headshot":979,"ctfId":980},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":685},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":986,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":987,"config":991,"_id":992,"_type":31,"title":988,"_source":33,"_file":993,"_stem":994,"_extension":36},"/en-us/blog/authors/andrew-chilton",{"name":988,"config":989},"Andrew Chilton",{"headshot":7,"ctfId":990},"chilts",{"template":685},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":996,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":997,"config":1002,"_id":1003,"_type":31,"title":998,"_source":33,"_file":1004,"_stem":1005,"_extension":36},"/en-us/blog/authors/andrew-fontaine",{"name":998,"config":999},"Andrew Fontaine",{"headshot":1000,"ctfId":1001},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":685},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1007,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1008,"config":1013,"_id":1014,"_type":31,"title":1009,"_source":33,"_file":1015,"_stem":1016,"_extension":36},"/en-us/blog/authors/andrew-kelly",{"name":1009,"config":1010},"Andrew Kelly",{"headshot":1011,"ctfId":1012},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":685},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1018,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1019,"config":1024,"_id":1025,"_type":31,"title":1020,"_source":33,"_file":1026,"_stem":1027,"_extension":36},"/en-us/blog/authors/andrew-newdigate",{"name":1020,"config":1021},"Andrew Newdigate",{"headshot":1022,"ctfId":1023},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":685},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1029,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1030,"config":1035,"_id":1036,"_type":31,"title":1031,"_source":33,"_file":1037,"_stem":1038,"_extension":36},"/en-us/blog/authors/andrew-patterson",{"name":1031,"config":1032},"Andrew Patterson",{"headshot":1033,"ctfId":1034},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":685},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1040,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1041,"config":1045,"_id":1046,"_type":31,"title":1042,"_source":33,"_file":1047,"_stem":1048,"_extension":36},"/en-us/blog/authors/andrew-taylor",{"name":1042,"config":1043},"Andrew Taylor",{"headshot":716,"ctfId":1044},"Andrew-Taylor",{"template":685},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1050,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1051,"config":1056,"_id":1057,"_type":31,"title":1052,"_source":33,"_file":1058,"_stem":1059,"_extension":36},"/en-us/blog/authors/andrew-thomas",{"name":1052,"config":1053},"Andrew Thomas",{"headshot":1054,"ctfId":1055},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":685},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1061,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1062,"config":1067,"_id":1068,"_type":31,"title":1063,"_source":33,"_file":1069,"_stem":1070,"_extension":36},"/en-us/blog/authors/andy-bradfield",{"name":1063,"role":1064,"config":1065},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1066},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":685},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1072,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1073,"config":1077,"_id":1078,"_type":31,"title":1074,"_source":33,"_file":1079,"_stem":1080,"_extension":36},"/en-us/blog/authors/andy-rogers",{"name":1074,"config":1075},"Andy Rogers",{"headshot":716,"ctfId":1076},"Andy-Rogers",{"template":685},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1082,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1083,"config":1088,"_id":1089,"_type":31,"title":1084,"_source":33,"_file":1090,"_stem":1091,"_extension":36},"/en-us/blog/authors/andy-volpe",{"name":1084,"config":1085},"Andy Volpe",{"headshot":1086,"ctfId":1087},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":685},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1093,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1094,"config":1098,"_id":1099,"_type":31,"title":1095,"_source":33,"_file":1100,"_stem":1101,"_extension":36},"/en-us/blog/authors/angelo-stavrow",{"name":1095,"config":1096},"Angelo Stavrow",{"headshot":716,"ctfId":1097},"Angelo-Stavrow",{"template":685},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1103,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1104,"config":1109,"_id":1110,"_type":31,"title":1105,"_source":33,"_file":1111,"_stem":1112,"_extension":36},"/en-us/blog/authors/anna-vovchenko",{"name":1105,"config":1106},"Anna Vovchenko",{"headshot":1107,"ctfId":1108},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":685},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1114,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1115,"config":1120,"_id":1121,"_type":31,"title":1116,"_source":33,"_file":1122,"_stem":1123,"_extension":36},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1116,"config":1117},"Annabel Dunstone Gray",{"headshot":1118,"ctfId":1119},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":685},"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":1125,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1126,"config":1130,"_id":1131,"_type":31,"title":1127,"_source":33,"_file":1132,"_stem":1133,"_extension":36},"/en-us/blog/authors/anshuman-singh",{"name":1127,"config":1128},"Anshuman Singh",{"headshot":716,"ctfId":1129},"4xzrY67JSkxp4j7hlK1DWA",{"template":685},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1135,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1136,"config":1140,"_id":1141,"_type":31,"title":1137,"_source":33,"_file":1142,"_stem":1143,"_extension":36},"/en-us/blog/authors/anthony-davanzo",{"name":1137,"config":1138},"Anthony Davanzo",{"headshot":716,"ctfId":1139},"4KccrB6k5jq46xQRDOdWSb",{"template":685},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1145,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1146,"config":1151,"_id":1152,"_type":31,"title":1147,"_source":33,"_file":1153,"_stem":1154,"_extension":36},"/en-us/blog/authors/anton-smith",{"name":1147,"config":1148},"Anton Smith",{"headshot":1149,"ctfId":1150},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":685},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1156,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1157,"config":1161,"_id":1162,"_type":31,"title":1158,"_source":33,"_file":1163,"_stem":1164,"_extension":36},"/en-us/blog/authors/aricka-flowers",{"name":1158,"config":1159},"Aricka Flowers",{"headshot":7,"ctfId":1160},"atflowers",{"template":685},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1166,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1167,"config":1171,"_id":1172,"_type":31,"title":1168,"_source":33,"_file":1173,"_stem":1174,"_extension":36},"/en-us/blog/authors/ariel-camus",{"name":1168,"config":1169},"Ariel Camus",{"headshot":7,"ctfId":1170},"arielcamus",{"template":685},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1176,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1177,"config":1181,"_id":1182,"_type":31,"title":1178,"_source":33,"_file":1183,"_stem":1184,"_extension":36},"/en-us/blog/authors/arunoda-susiripala",{"name":1178,"config":1179},"Arunoda Susiripala",{"headshot":716,"ctfId":1180},"7kQaq0xFWPi2zRW6NZIDHp",{"template":685},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1186,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1187,"config":1191,"_id":1193,"_type":31,"title":1188,"_source":33,"_file":1194,"_stem":1195,"_extension":36},"/en-us/blog/authors/ashher-syed",{"name":1188,"config":1189},"Ashher Syed",{"headshot":1190},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":685,"gitlabHandle":1192},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1197,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1198,"config":1203,"_id":1204,"_type":31,"title":1199,"_source":33,"_file":1205,"_stem":1206,"_extension":36},"/en-us/blog/authors/ashley-knobloch",{"name":1199,"config":1200},"Ashley Knobloch",{"headshot":1201,"ctfId":1202},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":685},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1208,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1209,"config":1214,"_id":1215,"_type":31,"title":1210,"_source":33,"_file":1216,"_stem":1217,"_extension":36},"/en-us/blog/authors/ashley-kramer",{"name":1210,"config":1211},"Ashley Kramer",{"headshot":1212,"ctfId":1213},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":685},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1219,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1220,"config":1224,"_id":1225,"_type":31,"title":1226,"_source":33,"_file":1227,"_stem":1228,"_extension":36},"/en-us/blog/authors/ashley-mcalpin",{"name":1221,"config":1222},"Ashley McAlpin",{"headshot":716,"ctfId":1223},"Ashley-McAlpin",{"template":685},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1230,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1231,"config":1235,"_id":1236,"_type":31,"title":1232,"_source":33,"_file":1237,"_stem":1238,"_extension":36},"/en-us/blog/authors/ashley-smith",{"name":1232,"config":1233},"Ashley Smith",{"headshot":716,"ctfId":1234},"Ashley-Smith",{"template":685},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1240,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1241,"config":1245,"_id":1246,"_type":31,"title":1247,"_source":33,"_file":1248,"_stem":1249,"_extension":36},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1242,"config":1243},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":716,"ctfId":1244},"Atlassian-Bitbucket-GitHub-GitLab",{"template":685},"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":1251,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1252,"config":1257,"_id":1258,"_type":31,"title":1253,"_source":33,"_file":1259,"_stem":1260,"_extension":36},"/en-us/blog/authors/austin-regnery",{"name":1253,"config":1254},"Austin Regnery",{"headshot":1255,"ctfId":1256},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":685},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1262,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1263,"config":1268,"_id":1269,"_type":31,"title":1264,"_source":33,"_file":1270,"_stem":1271,"_extension":36},"/en-us/blog/authors/ayoub-fandi",{"name":1264,"config":1265},"Ayoub Fandi",{"headshot":1266,"ctfId":1267},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":685},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1273,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1274,"config":1278,"_id":1279,"_type":31,"title":1280,"_source":33,"_file":1281,"_stem":1282,"_extension":36},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1275,"config":1276},"Bahubali (Bill) Shetti",{"headshot":716,"ctfId":1277},"4rFnUJeUt0JNGQwwCZSLMj",{"template":685},"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":1284,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1285,"config":1289,"_id":1290,"_type":31,"title":1286,"_source":33,"_file":1291,"_stem":1292,"_extension":36},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1286,"config":1287},"Baksheesh Singh Ghuman",{"headshot":716,"ctfId":1288},"Baksheesh-Singh-Ghuman",{"template":685},"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":1294,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1295,"config":1300,"_id":1301,"_type":31,"title":1296,"_source":33,"_file":1302,"_stem":1303,"_extension":36},"/en-us/blog/authors/bala-allam",{"name":1296,"config":1297},"Bala Allam",{"headshot":1298,"ctfId":1299},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":685},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1305,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1306,"config":1311,"_id":1312,"_type":31,"title":1313,"_source":33,"_file":1314,"_stem":1315,"_extension":36},"/en-us/blog/authors/balasankar-balu-c",{"name":1307,"config":1308},"Balasankar 'Balu' C",{"headshot":1309,"ctfId":1310},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":685},"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":1317,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1318,"config":1323,"_id":1324,"_type":31,"title":1319,"_source":33,"_file":1325,"_stem":1326,"_extension":36},"/en-us/blog/authors/bart-zhang",{"name":1319,"config":1320},"Bart Zhang",{"headshot":1321,"ctfId":1322},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":685},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1328,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1329,"config":1334,"_id":1335,"_type":31,"title":1330,"_source":33,"_file":1336,"_stem":1337,"_extension":36},"/en-us/blog/authors/beatriz-barbosa",{"name":1330,"config":1331},"Beatriz Barbosa",{"headshot":1332,"ctfId":1333},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":685},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1339,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1340,"config":1344,"_id":1345,"_type":31,"title":1341,"_source":33,"_file":1346,"_stem":1347,"_extension":36},"/en-us/blog/authors/becka-lippert",{"name":1341,"config":1342},"Becka Lippert",{"headshot":716,"ctfId":1343},"7wX6Hbvb3AbKwa6NnClvBX",{"template":685},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1349,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1350,"config":1355,"_id":1356,"_type":31,"title":1357,"_source":33,"_file":1358,"_stem":1359,"_extension":36},"/en-us/blog/authors/ben-leduc-mills",{"name":1351,"config":1352},"Ben Leduc-Mills",{"headshot":1353,"ctfId":1354},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":685},"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":1361,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1362,"config":1367,"_id":1368,"_type":31,"title":1363,"_source":33,"_file":1369,"_stem":1370,"_extension":36},"/en-us/blog/authors/ben-ridley",{"name":1363,"config":1364},"Ben Ridley",{"headshot":1365,"ctfId":1366},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":685},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1372,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1373,"config":1377,"_id":1378,"_type":31,"title":1374,"_source":33,"_file":1379,"_stem":1380,"_extension":36},"/en-us/blog/authors/benedikt-rollik",{"name":1374,"config":1375},"Benedikt Rollik",{"headshot":716,"ctfId":1376},"Benedikt-Rollik",{"template":685},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1382,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1383,"config":1388,"_id":1389,"_type":31,"title":1384,"_source":33,"_file":1390,"_stem":1391,"_extension":36},"/en-us/blog/authors/benjamin-skierlak",{"name":1384,"config":1385},"Benjamin Skierlak",{"headshot":1386,"ctfId":1387},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":685},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1393,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1394,"config":1398,"_id":1399,"_type":31,"title":1395,"_source":33,"_file":1400,"_stem":1401,"_extension":36},"/en-us/blog/authors/bert-van-eyck",{"name":1395,"config":1396},"Bert Van Eyck",{"headshot":7,"ctfId":1397},"bertveproximus",{"template":685},"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":1403,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1404,"config":1409,"_id":1410,"_type":31,"title":1405,"_source":33,"_file":1411,"_stem":1412,"_extension":36},"/en-us/blog/authors/betsy-bula",{"name":1405,"config":1406},"Betsy Bula",{"headshot":1407,"ctfId":1408},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":685},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1414,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1415,"config":1419,"_id":1420,"_type":31,"title":1416,"_source":33,"_file":1421,"_stem":1422,"_extension":36},"/en-us/blog/authors/betsy-church",{"name":1416,"config":1417},"Betsy Church",{"headshot":7,"ctfId":1418},"bchurch",{"template":685},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1424,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1425,"config":1430,"_id":1431,"_type":31,"title":1426,"_source":33,"_file":1432,"_stem":1433,"_extension":36},"/en-us/blog/authors/bill-staples",{"name":1426,"config":1427,"role":1429},"Bill Staples",{"headshot":1428},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":685},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1435,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1436,"config":1441,"_id":1442,"_type":31,"title":1437,"_source":33,"_file":1443,"_stem":1444,"_extension":36},"/en-us/blog/authors/bob-van-landuyt",{"name":1437,"config":1438},"Bob Van Landuyt",{"headshot":1439,"ctfId":1440},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":685},"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":1446,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1447,"config":1451,"_id":1452,"_type":31,"title":1448,"_source":33,"_file":1453,"_stem":1454,"_extension":36},"/en-us/blog/authors/boris-baldassari",{"name":1448,"config":1449},"Boris Baldassari",{"headshot":7,"ctfId":1450},"bbaldassari",{"template":685},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1456,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1457,"config":1461,"_id":1462,"_type":31,"title":1458,"_source":33,"_file":1463,"_stem":1464,"_extension":36},"/en-us/blog/authors/borivoje-tasovac",{"name":1458,"config":1459},"Borivoje Tasovac",{"headshot":7,"ctfId":1460},"borivoje",{"template":685},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1466,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1467,"config":1471,"_id":1472,"_type":31,"title":1468,"_source":33,"_file":1473,"_stem":1474,"_extension":36},"/en-us/blog/authors/brad-downey",{"name":1468,"config":1469},"Brad Downey",{"headshot":716,"ctfId":1470},"6b6RTu6832NFEju2zKJhbE",{"template":685},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1476,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1477,"config":1482,"_id":1483,"_type":31,"title":1478,"_source":33,"_file":1484,"_stem":1485,"_extension":36},"/en-us/blog/authors/bradley-lee",{"name":1478,"config":1479},"Bradley Lee",{"headshot":1480,"ctfId":1481},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":685},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1487,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1488,"config":1492,"_id":1493,"_type":31,"title":1489,"_source":33,"_file":1494,"_stem":1495,"_extension":36},"/en-us/blog/authors/brandon-foo",{"name":1489,"config":1490},"Brandon Foo",{"headshot":716,"ctfId":1491},"Brandon-Foo",{"template":685},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1497,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1498,"config":1502,"_id":1503,"_type":31,"title":1499,"_source":33,"_file":1504,"_stem":1505,"_extension":36},"/en-us/blog/authors/brandon-jung",{"name":1499,"config":1500},"Brandon Jung",{"headshot":716,"ctfId":1501},"Brandon-Jung",{"template":685},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1507,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1508,"config":1512,"_id":1513,"_type":31,"title":1509,"_source":33,"_file":1514,"_stem":1515,"_extension":36},"/en-us/blog/authors/brandon-lyon",{"name":1509,"config":1510},"Brandon Lyon",{"headshot":7,"ctfId":1511},"brandonlyon",{"template":685},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1517,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1518,"config":1522,"_id":1523,"_type":31,"title":1519,"_source":33,"_file":1524,"_stem":1525,"_extension":36},"/en-us/blog/authors/brein-matturro",{"name":1519,"config":1520},"Brein Matturro",{"headshot":7,"ctfId":1521},"bmatturro",{"template":685},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1527,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1528,"config":1532,"_id":1533,"_type":31,"title":1534,"_source":33,"_file":1535,"_stem":1536,"_extension":36},"/en-us/blog/authors/brendan-oleary",{"name":1529,"config":1530},"Brendan O'Leary",{"headshot":7,"ctfId":1531},"brendan",{"template":685},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1538,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1539,"config":1543,"_id":1544,"_type":31,"title":1540,"_source":33,"_file":1545,"_stem":1546,"_extension":36},"/en-us/blog/authors/brendan-regan",{"name":1540,"config":1541},"Brendan Regan",{"headshot":7,"ctfId":1542},"brendanregan11",{"template":685},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1548,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1549,"config":1554,"_id":1555,"_type":31,"title":1550,"_source":33,"_file":1556,"_stem":1557,"_extension":36},"/en-us/blog/authors/brett-walker",{"name":1550,"config":1551},"Brett Walker",{"headshot":1552,"ctfId":1553},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":685},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1559,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1560,"config":1564,"_id":1565,"_type":31,"title":1561,"_source":33,"_file":1566,"_stem":1567,"_extension":36},"/en-us/blog/authors/brian-glanz",{"name":1561,"config":1562},"Brian Glanz",{"headshot":7,"ctfId":1563},"brianglanz",{"template":685},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1569,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1570,"config":1574,"_id":1575,"_type":31,"title":1576,"_source":33,"_file":1577,"_stem":1578,"_extension":36},"/en-us/blog/authors/brian-oconnell",{"name":1571,"config":1572},"Brian O'Connell",{"headshot":716,"ctfId":1573},"Brian-OConnell",{"template":685},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1580,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1581,"config":1585,"_id":1586,"_type":31,"title":1582,"_source":33,"_file":1587,"_stem":1588,"_extension":36},"/en-us/blog/authors/brian-rhea",{"name":1582,"config":1583},"Brian Rhea",{"headshot":7,"ctfId":1584},"brhea",{"template":685},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1590,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1591,"config":1595,"_id":1596,"_type":31,"title":1592,"_source":33,"_file":1597,"_stem":1598,"_extension":36},"/en-us/blog/authors/brian-wald",{"name":1592,"config":1593},"Brian Wald",{"headshot":716,"ctfId":1594},"78qOxgHKlgDY2IxMrBrgCu",{"template":685},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1600,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1601,"config":1605,"_id":1606,"_type":31,"title":1602,"_source":33,"_file":1607,"_stem":1608,"_extension":36},"/en-us/blog/authors/brittany-rohde",{"name":1602,"config":1603},"Brittany Rohde",{"headshot":7,"ctfId":1604},"brittanyr",{"template":685},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1610,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1611,"config":1616,"_id":1617,"_type":31,"title":1612,"_source":33,"_file":1618,"_stem":1619,"_extension":36},"/en-us/blog/authors/bryan-behrenshausen",{"name":1612,"config":1613},"Bryan Behrenshausen",{"headshot":1614,"ctfId":1615},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":685},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1621,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1622,"config":1627,"_id":1628,"_type":31,"title":1623,"_source":33,"_file":1629,"_stem":1630,"_extension":36},"/en-us/blog/authors/bryan-may",{"name":1623,"config":1624},"Bryan May",{"headshot":1625,"ctfId":1626},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":685},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1632,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1633,"config":1638,"_id":1639,"_type":31,"title":1634,"_source":33,"_file":1640,"_stem":1641,"_extension":36},"/en-us/blog/authors/byron-boots",{"name":1634,"config":1635},"Byron Boots",{"headshot":1636,"ctfId":1637},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":685},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1643,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1644,"config":1649,"_id":1650,"_type":31,"title":1645,"_source":33,"_file":1651,"_stem":1652,"_extension":36},"/en-us/blog/authors/camellia-yang",{"name":1645,"config":1646},"Camellia Yang",{"headshot":1647,"ctfId":1648},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":685},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1654,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1655,"config":1660,"_id":1661,"_type":31,"title":1656,"_source":33,"_file":1662,"_stem":1663,"_extension":36},"/en-us/blog/authors/cameron-swords",{"name":1656,"config":1657},"Cameron Swords",{"headshot":1658,"ctfId":1659},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":685},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1665,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1666,"config":1672,"_id":1673,"_type":31,"title":1668,"_source":33,"_file":1674,"_stem":1675,"_extension":36},"/en-us/blog/authors/carl-myers",{"role":1667,"name":1668,"config":1669},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1670,"ctfId":1671},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":685},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1677,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1678,"config":1682,"_id":1683,"_type":31,"title":1679,"_source":33,"_file":1684,"_stem":1685,"_extension":36},"/en-us/blog/authors/carol-teskey",{"name":1679,"config":1680},"Carol Teskey",{"headshot":7,"ctfId":1681},"cteskey",{"template":685},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1687,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1688,"config":1693,"_id":1694,"_type":31,"title":1689,"_source":33,"_file":1695,"_stem":1696,"_extension":36},"/en-us/blog/authors/cesar-saavedra",{"name":1689,"config":1690},"Cesar Saavedra",{"headshot":1691,"ctfId":1692},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":685},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1698,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1699,"config":1703,"_id":1704,"_type":31,"title":1700,"_source":33,"_file":1705,"_stem":1706,"_extension":36},"/en-us/blog/authors/chad-malchow",{"name":1700,"config":1701},"Chad Malchow",{"headshot":716,"ctfId":1702},"Chad-Malchow",{"template":685},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1708,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1709,"config":1714,"_id":1715,"_type":31,"title":1710,"_source":33,"_file":1716,"_stem":1717,"_extension":36},"/en-us/blog/authors/chance-feick",{"name":1710,"config":1711},"Chance Feick",{"headshot":1712,"ctfId":1713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666442/Blog/Author%20Headshots/chance_feick_headshot.png","18dtRbXV47xqf5iDrOIduM",{"template":685},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1719,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1720,"config":1725,"_id":1726,"_type":31,"title":1721,"_source":33,"_file":1727,"_stem":1728,"_extension":36},"/en-us/blog/authors/chandler-gibbons",{"name":1721,"config":1722},"Chandler Gibbons",{"headshot":1723,"ctfId":1724},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663276/Blog/Author%20Headshots/chandlergibb-headshot.jpg","chandlergibb",{"template":685},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1730,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1731,"config":1735,"_id":1736,"_type":31,"title":1737,"_source":33,"_file":1738,"_stem":1739,"_extension":36},"/en-us/blog/authors/charl-de-wit",{"name":1732,"config":1733},"Charl de Wit",{"headshot":716,"ctfId":1734},"45mQeypQVLNvvTWMzserbR",{"template":685},"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":1741,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1742,"config":1747,"_id":1748,"_type":31,"title":1743,"_source":33,"_file":1749,"_stem":1750,"_extension":36},"/en-us/blog/authors/charlie-ablett",{"name":1743,"config":1744},"Charlie Ablett",{"headshot":1745,"ctfId":1746},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670131/Blog/Author%20Headshots/cablett-headshot.png","cablett",{"template":685},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1752,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1753,"config":1757,"_id":1758,"_type":31,"title":1754,"_source":33,"_file":1759,"_stem":1760,"_extension":36},"/en-us/blog/authors/charvi-mendiratta",{"name":1754,"config":1755},"Charvi Mendiratta",{"headshot":716,"ctfId":1756},"YV7WvnjPWFS3JhXmSYJLk",{"template":685},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1762,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1763,"config":1768,"_id":1769,"_type":31,"title":1764,"_source":33,"_file":1770,"_stem":1771,"_extension":36},"/en-us/blog/authors/cherry-han",{"name":1764,"config":1765},"Cherry Han",{"headshot":1766,"ctfId":1767},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ehktvdbix2o1t0mmcvll.png","6gkuhRkgzCNP1Ee6J14yLu",{"template":685},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1773,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1774,"config":1778,"_id":1780,"_type":31,"title":1775,"_source":33,"_file":1781,"_stem":1782,"_extension":36},"/en-us/blog/authors/chloe-cartron",{"name":1775,"config":1776},"Chloe Cartron",{"headshot":1777},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":685,"gitlabHandle":1779},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1784,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1785,"config":1790,"_id":1791,"_type":31,"title":1786,"_source":33,"_file":1792,"_stem":1793,"_extension":36},"/en-us/blog/authors/chloe-whitestone",{"name":1786,"config":1787},"Chloe Whitestone",{"headshot":1788,"ctfId":1789},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678693/Blog/Author%20Headshots/chloe-headshot.jpg","chloe",{"template":685},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1795,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1796,"config":1801,"_id":1802,"_type":31,"title":1797,"_source":33,"_file":1803,"_stem":1804,"_extension":36},"/en-us/blog/authors/chris-balane",{"name":1797,"config":1798},"Chris Balane",{"headshot":1799,"ctfId":1800},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667630/Blog/Author%20Headshots/chris_balane_headshot.png","40SOCfTl3frynjL3dbg63o",{"template":685},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1806,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1807,"config":1811,"_id":1812,"_type":31,"title":1808,"_source":33,"_file":1813,"_stem":1814,"_extension":36},"/en-us/blog/authors/chris-baus",{"name":1808,"config":1809},"Chris Baus",{"headshot":7,"ctfId":1810},"chrisbaus",{"template":685},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1816,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1817,"config":1822,"_id":1823,"_type":31,"title":1818,"_source":33,"_file":1824,"_stem":1825,"_extension":36},"/en-us/blog/authors/chris-micek",{"name":1818,"config":1819},"Chris Micek",{"headshot":1820,"ctfId":1821},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666144/Blog/Author%20Headshots/chris_micek_headshot.png","62ZsvfXlttQEQ1tnikgoq9",{"template":685},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1827,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1828,"config":1833,"_id":1834,"_type":31,"title":1829,"_source":33,"_file":1835,"_stem":1836,"_extension":36},"/en-us/blog/authors/chris-moberly",{"name":1829,"config":1830},"Chris Moberly",{"headshot":1831,"ctfId":1832},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664235/Blog/Author%20Headshots/cmoberly-headshot.jpg","cmoberly",{"template":685},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1838,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1839,"config":1843,"_id":1844,"_type":31,"title":1845,"_source":33,"_file":1846,"_stem":1847,"_extension":36},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1840,"config":1841},"Chris Sterry, Dotscience",{"headshot":716,"ctfId":1842},"Chris-Sterry-Dotscience",{"template":685},"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":1849,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1850,"config":1854,"_id":1855,"_type":31,"title":1851,"_source":33,"_file":1856,"_stem":1857,"_extension":36},"/en-us/blog/authors/chris-ward",{"name":1851,"config":1852},"Chris Ward",{"headshot":7,"ctfId":1853},"chrischinchilla",{"template":685},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1859,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1860,"config":1867,"_id":1868,"_type":31,"title":1862,"_source":33,"_file":1869,"_stem":1870,"_extension":36},"/en-us/blog/authors/chris-weber",{"role":1861,"name":1862,"config":1863},"CRO ","Chris Weber",{"headshot":1864,"linkedin":1865,"ctfId":1866},"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":685},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1872,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1873,"config":1877,"_id":1878,"_type":31,"title":1874,"_source":33,"_file":1879,"_stem":1880,"_extension":36},"/en-us/blog/authors/chrissie-buchanan",{"name":1874,"config":1875},"Chrissie Buchanan",{"headshot":716,"ctfId":1876},"cbuchanan",{"template":685},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1882,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1883,"config":1888,"_id":1889,"_type":31,"title":1884,"_source":33,"_file":1890,"_stem":1891,"_extension":36},"/en-us/blog/authors/christen-dybenko",{"name":1884,"config":1885},"Christen Dybenko",{"headshot":1886,"ctfId":1887},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668811/Blog/Author%20Headshots/cdybenko-headshot.jpg","cdybenko",{"template":685},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1893,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1894,"config":1899,"_id":1900,"_type":31,"title":1895,"_source":33,"_file":1901,"_stem":1902,"_extension":36},"/en-us/blog/authors/christian-couder",{"name":1895,"config":1896},"Christian Couder",{"headshot":1897,"ctfId":1898},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool",{"template":685},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1904,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1905,"config":1910,"_id":1911,"_type":31,"title":1906,"_source":33,"_file":1912,"_stem":1913,"_extension":36},"/en-us/blog/authors/christian-nnachi",{"name":1906,"config":1907},"Christian Nnachi",{"headshot":1908,"ctfId":1909},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665343/Blog/Author%20Headshots/christian_nnachi_headshot.png","6pE7HjtzzpRhBFVdwTFjEX",{"template":685},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1915,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1916,"config":1920,"_id":1921,"_type":31,"title":1917,"_source":33,"_file":1922,"_stem":1923,"_extension":36},"/en-us/blog/authors/christian-simko",{"name":1917,"config":1918},"Christian Simko",{"headshot":7,"ctfId":1919},"csimko",{"template":685},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1925,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1926,"config":1931,"_id":1932,"_type":31,"title":1927,"_source":33,"_file":1933,"_stem":1934,"_extension":36},"/en-us/blog/authors/christie-lenneville",{"name":1927,"config":1928},"Christie Lenneville",{"headshot":1929,"ctfId":1930},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670047/Blog/Author%20Headshots/clenneville-headshot.jpg","clenneville",{"template":685},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1936,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1937,"config":1941,"_id":1942,"_type":31,"title":1943,"_source":33,"_file":1944,"_stem":1945,"_extension":36},"/en-us/blog/authors/christina-hupy-phd",{"name":1938,"config":1939},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1940},"chupy",{"template":685},"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":1947,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1948,"config":1953,"_id":1954,"_type":31,"title":1949,"_source":33,"_file":1955,"_stem":1956,"_extension":36},"/en-us/blog/authors/christina-lohr",{"name":1949,"config":1950},"Christina Lohr",{"headshot":1951,"ctfId":1952},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662499/Blog/Author%20Headshots/lohrc-headshot.jpg","lohrc",{"template":685},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":1958,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1959,"config":1963,"_id":1964,"_type":31,"title":1960,"_source":33,"_file":1965,"_stem":1966,"_extension":36},"/en-us/blog/authors/christine-yoshida",{"name":1960,"config":1961},"Christine Yoshida",{"headshot":7,"ctfId":1962},"cyoshida",{"template":685},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":1968,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1969,"config":1973,"_id":1974,"_type":31,"title":1970,"_source":33,"_file":1975,"_stem":1976,"_extension":36},"/en-us/blog/authors/christopher-watson",{"name":1970,"config":1971},"Christopher Watson",{"headshot":716,"ctfId":1972},"Christopher-Watson",{"template":685},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":1978,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1979,"config":1983,"_id":1984,"_type":31,"title":1980,"_source":33,"_file":1985,"_stem":1986,"_extension":36},"/en-us/blog/authors/christos-bacharakis",{"name":1980,"config":1981},"Christos Bacharakis",{"headshot":716,"ctfId":1982},"Christos-Bacharakis",{"template":685},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":1988,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1989,"config":1993,"_id":1994,"_type":31,"title":1990,"_source":33,"_file":1995,"_stem":1996,"_extension":36},"/en-us/blog/authors/cindy-blake",{"name":1990,"config":1991},"Cindy Blake",{"headshot":716,"ctfId":1992},"cblake",{"template":685},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":1998,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":1999,"config":2004,"_id":2005,"_type":31,"title":2000,"_source":33,"_file":2006,"_stem":2007,"_extension":36},"/en-us/blog/authors/claire-champernowne",{"name":2000,"config":2001},"Claire Champernowne",{"headshot":2002,"ctfId":2003},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ",{"template":685},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2009,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2010,"config":2014,"_id":2015,"_type":31,"title":2011,"_source":33,"_file":2016,"_stem":2017,"_extension":36},"/en-us/blog/authors/clement-ho",{"name":2011,"config":2012},"Clement Ho",{"headshot":7,"ctfId":2013},"ClemMakesApps",{"template":685},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2019,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2020,"config":2024,"_id":2025,"_type":31,"title":2021,"_source":33,"_file":2026,"_stem":2027,"_extension":36},"/en-us/blog/authors/colin-fletcher",{"name":2021,"config":2022},"Colin Fletcher",{"headshot":7,"ctfId":2023},"cfletcher1",{"template":685},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2029,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2030,"config":2035,"_id":2036,"_type":31,"title":2031,"_source":33,"_file":2037,"_stem":2038,"_extension":36},"/en-us/blog/authors/connor-gilbert",{"name":2031,"config":2032},"Connor Gilbert",{"headshot":2033,"ctfId":2034},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665913/Blog/Author%20Headshots/connorgilbert-headshot.jpg","connorgilbert",{"template":685},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2040,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2041,"config":2045,"_id":2046,"_type":31,"title":2042,"_source":33,"_file":2047,"_stem":2048,"_extension":36},"/en-us/blog/authors/connor-shea",{"name":2042,"config":2043},"Connor Shea",{"headshot":716,"ctfId":2044},"Connor-Shea",{"template":685},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2050,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2051,"config":2056,"_id":2057,"_type":31,"title":2052,"_source":33,"_file":2058,"_stem":2059,"_extension":36},"/en-us/blog/authors/corey-oas",{"name":2052,"config":2053},"Corey Oas",{"headshot":2054,"ctfId":2055},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667633/Blog/Author%20Headshots/corey_oas_headshot.png","1Dd1lJ4aKCv36YWdlUhlPf",{"template":685},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2061,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2062,"config":2066,"_id":2067,"_type":31,"title":2063,"_source":33,"_file":2068,"_stem":2069,"_extension":36},"/en-us/blog/authors/cormac-foster",{"name":2063,"config":2064},"Cormac Foster",{"headshot":7,"ctfId":2065},"cfoster3",{"template":685},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2071,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2072,"config":2077,"_id":2078,"_type":31,"title":2073,"_source":33,"_file":2079,"_stem":2080,"_extension":36},"/en-us/blog/authors/costel-maxim",{"name":2073,"config":2074},"Costel Maxim",{"headshot":2075,"ctfId":2076},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663173/Blog/Author%20Headshots/costel_maxim_headshot.png","3QzzrMksaRD9ZPytt0SPPL",{"template":685},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2082,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2083,"config":2088,"_id":2089,"_type":31,"title":2084,"_source":33,"_file":2090,"_stem":2091,"_extension":36},"/en-us/blog/authors/courtney-meddaugh",{"name":2084,"config":2085},"Courtney Meddaugh",{"headshot":2086,"ctfId":2087},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665168/Blog/Author%20Headshots/courtney_meddaugh_headshot.png","5avtK3YS9MrDBkaOnB9ZmG",{"template":685},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2093,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2094,"config":2098,"_id":2099,"_type":31,"title":2095,"_source":33,"_file":2100,"_stem":2101,"_extension":36},"/en-us/blog/authors/craig-gomes",{"name":2095,"config":2096},"Craig Gomes",{"headshot":7,"ctfId":2097},"craiggomes",{"template":685},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2103,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2104,"config":2109,"_id":2110,"_type":31,"title":2105,"_source":33,"_file":2111,"_stem":2112,"_extension":36},"/en-us/blog/authors/craig-miskell",{"name":2105,"config":2106},"Craig Miskell",{"headshot":2107,"ctfId":2108},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667372/Blog/Author%20Headshots/cmiskell-headshot.jpg","cmiskell",{"template":685},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2114,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2115,"config":2119,"_id":2120,"_type":31,"title":2116,"_source":33,"_file":2121,"_stem":2122,"_extension":36},"/en-us/blog/authors/creighton-swank",{"name":2116,"config":2117},"Creighton Swank",{"headshot":716,"ctfId":2118},"5uf3k9lutpbelxJQ373eWu",{"template":685},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2124,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2125,"config":2129,"_id":2130,"_type":31,"title":2126,"_source":33,"_file":2131,"_stem":2132,"_extension":36},"/en-us/blog/authors/daisy-miclat",{"name":2126,"config":2127},"Daisy Miclat",{"headshot":716,"ctfId":2128},"IU4zOKoPhWS7hok7qsy7w",{"template":685},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2134,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2135,"config":2139,"_id":2140,"_type":31,"title":2136,"_source":33,"_file":2141,"_stem":2142,"_extension":36},"/en-us/blog/authors/dan-luhring",{"name":2136,"config":2137},"Dan Luhring",{"headshot":7,"ctfId":2138},"danluhring",{"template":685},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2144,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2145,"config":2150,"_id":2151,"_type":31,"title":2146,"_source":33,"_file":2152,"_stem":2153,"_extension":36},"/en-us/blog/authors/dan-rabinovitz",{"name":2146,"config":2147},"Dan Rabinovitz",{"headshot":2148,"ctfId":2149},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664796/Blog/Author%20Headshots/dan_rabinovitz_headshot.png","31AXb267jy94budCWQZQyr",{"template":685},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2155,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2156,"config":2160,"_id":2161,"_type":31,"title":2157,"_source":33,"_file":2162,"_stem":2163,"_extension":36},"/en-us/blog/authors/daniel-berman",{"name":2157,"config":2158},"Daniel Berman",{"headshot":716,"ctfId":2159},"Daniel-Berman",{"template":685},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2165,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2166,"config":2170,"_id":2171,"_type":31,"title":2167,"_source":33,"_file":2172,"_stem":2173,"_extension":36},"/en-us/blog/authors/daniel-gruesso",{"name":2167,"config":2168},"Daniel Gruesso",{"headshot":7,"ctfId":2169},"danielgruesso",{"template":685},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2175,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2176,"config":2181,"_id":2182,"_type":31,"title":2177,"_source":33,"_file":2183,"_stem":2184,"_extension":36},"/en-us/blog/authors/daniel-hauenstein",{"name":2177,"config":2178},"Daniel Hauenstein",{"headshot":2179,"ctfId":2180},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662434/Blog/Author%20Headshots/daniel_hauenstein_headshot.png","2gXGuSmuvZSxv0iCn4sinV",{"template":685},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2186,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2187,"config":2192,"_id":2193,"_type":31,"title":2188,"_source":33,"_file":2194,"_stem":2195,"_extension":36},"/en-us/blog/authors/daniel-helfand",{"name":2188,"config":2189},"Daniel Helfand",{"headshot":2190,"ctfId":2191},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662418/Blog/Author%20Headshots/dhelfand.png","b9sRP0HJhdPsOEruWUfih",{"template":685},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2197,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2198,"config":2202,"_id":2203,"_type":31,"title":2199,"_source":33,"_file":2204,"_stem":2205,"_extension":36},"/en-us/blog/authors/daniel-mora",{"name":2199,"config":2200},"Daniel Mora",{"headshot":7,"ctfId":2201},"dmoraberlin",{"template":685},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2207,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2208,"config":2212,"_id":2214,"_type":31,"title":2209,"_source":33,"_file":2215,"_stem":2216,"_extension":36},"/en-us/blog/authors/daniel-murphy",{"name":2209,"config":2210},"Daniel Murphy",{"headshot":2211},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":685,"gitlabHandle":2213},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2218,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2219,"config":2224,"_id":2225,"_type":31,"title":2220,"_source":33,"_file":2226,"_stem":2227,"_extension":36},"/en-us/blog/authors/darby-frey",{"name":2220,"config":2221},"Darby Frey",{"headshot":2222,"ctfId":2223},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey",{"template":685},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2229,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2230,"config":2235,"_id":2236,"_type":31,"title":2231,"_source":33,"_file":2237,"_stem":2238,"_extension":36},"/en-us/blog/authors/darren-eastman",{"name":2231,"config":2232},"Darren Eastman",{"headshot":2233,"ctfId":2234},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman",{"template":685},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2240,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2241,"config":2245,"_id":2246,"_type":31,"title":2242,"_source":33,"_file":2247,"_stem":2248,"_extension":36},"/en-us/blog/authors/darren-murph",{"name":2242,"config":2243},"Darren Murph",{"headshot":7,"ctfId":2244},"dmurph",{"template":685},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2250,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2251,"config":2258,"_id":2259,"_type":31,"title":2253,"_source":33,"_file":2260,"_stem":2261,"_extension":36},"/en-us/blog/authors/darwin-sanoy",{"role":2252,"name":2253,"config":2254},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2255,"linkedin":2256,"ctfId":2257},"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":685},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2263,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2264,"config":2269,"_id":2270,"_type":31,"title":2265,"_source":33,"_file":2271,"_stem":2272,"_extension":36},"/en-us/blog/authors/dave-steer",{"name":2265,"config":2266},"Dave Steer",{"headshot":2267,"ctfId":2268},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658895/Blog/Author%20Headshots/dsteer-headshot.jpg","dsteer",{"template":685},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2274,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2275,"config":2279,"_id":2280,"_type":31,"title":2276,"_source":33,"_file":2281,"_stem":2282,"_extension":36},"/en-us/blog/authors/dave-wentzel",{"name":2276,"config":2277},"Dave Wentzel",{"headshot":716,"ctfId":2278},"Dave-Wentzel",{"template":685},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2284,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2285,"config":2290,"_id":2291,"_type":31,"title":2292,"_source":33,"_file":2293,"_stem":2294,"_extension":36},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2286,"config":2287},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2288,"ctfId":2289},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660185/Blog/Author%20Headshots/david-headshot.jpg","david",{"template":685},"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":2296,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2297,"config":2302,"_id":2303,"_type":31,"title":2304,"_source":33,"_file":2305,"_stem":2306,"_extension":36},"/en-us/blog/authors/david-oregan",{"name":2298,"config":2299},"David O'Regan",{"headshot":2300,"ctfId":2301},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659853/Blog/Author%20Headshots/oregand-headshot.png","oregand",{"template":685},"content:en-us:blog:authors:david-oregan.yml","David Oregan","en-us/blog/authors/david-oregan.yml","en-us/blog/authors/david-oregan",{"_path":2308,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2309,"config":2313,"_id":2314,"_type":31,"title":2310,"_source":33,"_file":2315,"_stem":2316,"_extension":36},"/en-us/blog/authors/david-planella",{"name":2310,"config":2311},"David Planella",{"headshot":716,"ctfId":2312},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":685},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2318,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2319,"config":2323,"_id":2324,"_type":31,"title":2320,"_source":33,"_file":2325,"_stem":2326,"_extension":36},"/en-us/blog/authors/david-russell",{"name":2320,"config":2321},"David Russell",{"headshot":716,"ctfId":2322},"David-Russell",{"template":685},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2328,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2329,"config":2334,"_id":2335,"_type":31,"title":2330,"_source":33,"_file":2336,"_stem":2337,"_extension":36},"/en-us/blog/authors/david-smith",{"name":2330,"config":2331},"David Smith",{"headshot":2332,"ctfId":2333},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671135/Blog/Author%20Headshots/dawsmith-headshot.jpg","dawsmith",{"template":685},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2339,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2340,"config":2344,"_id":2345,"_type":31,"title":2341,"_source":33,"_file":2346,"_stem":2347,"_extension":36},"/en-us/blog/authors/davis-townsend",{"name":2341,"config":2342},"Davis Townsend",{"headshot":7,"ctfId":2343},"davistownsend",{"template":685},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2349,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2350,"config":2354,"_id":2356,"_type":31,"title":2351,"_source":33,"_file":2357,"_stem":2358,"_extension":36},"/en-us/blog/authors/davoud-tu",{"name":2351,"config":2352},"Davoud Tu",{"headshot":2353},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":685,"gitlabHandle":2355},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2360,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2361,"config":2366,"_id":2367,"_type":31,"title":2368,"_source":33,"_file":2369,"_stem":2370,"_extension":36},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2362,"config":2363},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2364,"ctfId":2365},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671963/Blog/Author%20Headshots/Dean_Photo__1_.jpg","6wQ0QwFZdbzAtYGZgnALkw",{"template":685},"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":2372,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2373,"config":2378,"_id":2379,"_type":31,"title":2374,"_source":33,"_file":2380,"_stem":2381,"_extension":36},"/en-us/blog/authors/deepa-mahalingam",{"name":2374,"config":2375},"Deepa Mahalingam",{"headshot":2376,"ctfId":2377},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662019/Blog/Author%20Headshots/deepa-headshot.jpg","M54z9AWDuU7L9nBR9gRF4",{"template":685},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2383,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2384,"config":2389,"_id":2390,"_type":31,"title":2385,"_source":33,"_file":2391,"_stem":2392,"_extension":36},"/en-us/blog/authors/dennis-appelt",{"name":2385,"config":2386},"Dennis Appelt",{"headshot":2387,"ctfId":2388},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt",{"template":685},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2394,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2395,"config":2400,"_id":2401,"_type":31,"title":2396,"_source":33,"_file":2402,"_stem":2403,"_extension":36},"/en-us/blog/authors/dennis-tang",{"name":2396,"config":2397},"Dennis Tang",{"headshot":2398,"ctfId":2399},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672189/Blog/Author%20Headshots/dennis-headshot.jpg","dennis",{"template":685},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2405,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2406,"config":2410,"_id":2412,"_type":31,"title":2413,"_source":33,"_file":2414,"_stem":2415,"_extension":36},"/en-us/blog/authors/dennis-van-rooijen",{"name":2407,"config":2408},"Dennis van Rooijen",{"headshot":2409},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":685,"gitlabHandle":2411},"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":2417,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2418,"config":2423,"_id":2424,"_type":31,"title":2419,"_source":33,"_file":2425,"_stem":2426,"_extension":36},"/en-us/blog/authors/devin-sylva",{"name":2419,"config":2420},"Devin Sylva",{"headshot":2421,"ctfId":2422},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679087/Blog/Author%20Headshots/devin-headshot.jpg","devin",{"template":685},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2428,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2429,"config":2433,"_id":2434,"_type":31,"title":2430,"_source":33,"_file":2435,"_stem":2436,"_extension":36},"/en-us/blog/authors/dhruv-jain",{"name":2430,"config":2431},"Dhruv Jain",{"headshot":716,"ctfId":2432},"2wyibk9HBKn6PjgaEuzXuZ",{"template":685},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2438,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2439,"config":2443,"_id":2444,"_type":31,"title":2440,"_source":33,"_file":2445,"_stem":2446,"_extension":36},"/en-us/blog/authors/diana-logan",{"name":2440,"config":2441},"Diana Logan",{"headshot":716,"ctfId":2442},"6poIwhQe6W9ysm5rBuSPXX",{"template":685},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2448,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2449,"config":2454,"_id":2455,"_type":31,"title":2450,"_source":33,"_file":2456,"_stem":2457,"_extension":36},"/en-us/blog/authors/dilan-orrino",{"name":2450,"config":2451},"Dilan Orrino",{"headshot":2452,"ctfId":2453},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666180/Blog/Author%20Headshots/dorrino-headshot.png","dorrino",{"template":685},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2459,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2460,"config":2464,"_id":2465,"_type":31,"title":2461,"_source":33,"_file":2466,"_stem":2467,"_extension":36},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2461,"config":2462},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2463},"dimitrieh",{"template":685},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2469,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2470,"config":2474,"_id":2475,"_type":31,"title":2471,"_source":33,"_file":2476,"_stem":2477,"_extension":36},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2471,"config":2472},"Dinesh Bolkensteyn",{"headshot":716,"ctfId":2473},"EpylYWgjPmFOL5NX3Zxmk",{"template":685},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2479,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2480,"config":2484,"_id":2485,"_type":31,"title":2486,"_source":33,"_file":2487,"_stem":2488,"_extension":36},"/en-us/blog/authors/dj-mountney",{"name":2481,"config":2482},"DJ Mountney",{"headshot":716,"ctfId":2483},"DJ-Mountney",{"template":685},"content:en-us:blog:authors:dj-mountney.yml","Dj Mountney","en-us/blog/authors/dj-mountney.yml","en-us/blog/authors/dj-mountney",{"_path":2490,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2491,"config":2495,"_id":2496,"_type":31,"title":2497,"_source":33,"_file":2498,"_stem":2499,"_extension":36},"/en-us/blog/authors/dmitriy-job",{"name":2492,"config":2493},"Dmitriy, Job",{"headshot":716,"ctfId":2494},"Dmitriy-Job",{"template":685},"content:en-us:blog:authors:dmitriy-job.yml","Dmitriy Job","en-us/blog/authors/dmitriy-job.yml","en-us/blog/authors/dmitriy-job",{"_path":2501,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2502,"config":2506,"_id":2507,"_type":31,"title":2503,"_source":33,"_file":2508,"_stem":2509,"_extension":36},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2503,"config":2504},"Dmitriy Zaporozhets",{"headshot":716,"ctfId":2505},"Dmitriy-Zaporozhets",{"template":685},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2511,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2512,"config":2517,"_id":2518,"_type":31,"title":2513,"_source":33,"_file":2519,"_stem":2520,"_extension":36},"/en-us/blog/authors/dmitry-gruzd",{"name":2513,"config":2514},"Dmitry Gruzd",{"headshot":2515,"ctfId":2516},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682014/Blog/Author%20Headshots/dgruzd-headshot.jpg","dgruzd",{"template":685},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2522,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2523,"config":2528,"_id":2529,"_type":31,"title":2524,"_source":33,"_file":2530,"_stem":2531,"_extension":36},"/en-us/blog/authors/dominic-couture",{"name":2524,"config":2525},"Dominic Couture",{"headshot":2526,"ctfId":2527},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683783/Blog/Author%20Headshots/dominic.png","3K2DmuMWV5isBeVtKsplia",{"template":685},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2533,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2534,"config":2538,"_id":2539,"_type":31,"title":2535,"_source":33,"_file":2540,"_stem":2541,"_extension":36},"/en-us/blog/authors/douglas-alexandre",{"name":2535,"config":2536},"Douglas Alexandre",{"headshot":716,"ctfId":2537},"Douglas-Alexandre",{"template":685},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2543,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2544,"config":2548,"_id":2549,"_type":31,"title":2545,"_source":33,"_file":2550,"_stem":2551,"_extension":36},"/en-us/blog/authors/douwe-maan",{"name":2545,"config":2546},"Douwe Maan",{"headshot":7,"ctfId":2547},"DouweM",{"template":685},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2553,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2554,"config":2559,"_id":2560,"_type":31,"title":2555,"_source":33,"_file":2561,"_stem":2562,"_extension":36},"/en-us/blog/authors/dov-hershkovitch",{"name":2555,"config":2556},"Dov Hershkovitch",{"headshot":2557,"ctfId":2558},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665628/Blog/Author%20Headshots/dhershkovitch-headshot.png","dhershkovitch",{"template":685},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2564,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2565,"config":2569,"_id":2570,"_type":31,"title":2571,"_source":33,"_file":2572,"_stem":2573,"_extension":36},"/en-us/blog/authors/dr-elle-obrien",{"name":2566,"config":2567},"Dr. Elle O'Brien",{"headshot":716,"ctfId":2568},"Dr-Elle-OBrien",{"template":685},"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":2575,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2576,"config":2580,"_id":2581,"_type":31,"title":2577,"_source":33,"_file":2582,"_stem":2583,"_extension":36},"/en-us/blog/authors/drew-blessing",{"name":2577,"config":2578},"Drew Blessing",{"headshot":716,"ctfId":2579},"Drew-Blessing",{"template":685},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2585,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2586,"config":2591,"_id":2592,"_type":31,"title":2587,"_source":33,"_file":2593,"_stem":2594,"_extension":36},"/en-us/blog/authors/dylan-griffith",{"name":2587,"config":2588},"Dylan Griffith",{"headshot":2589,"ctfId":2590},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672822/Blog/Author%20Headshots/DylanGriffith-headshot.jpg","DylanGriffith",{"template":685},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2596,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2597,"config":2601,"_id":2602,"_type":31,"title":2598,"_source":33,"_file":2603,"_stem":2604,"_extension":36},"/en-us/blog/authors/eddie-glenn",{"name":2598,"config":2599},"Eddie Glenn",{"headshot":7,"ctfId":2600},"eglenn",{"template":685},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2606,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2607,"config":2612,"_id":2613,"_type":31,"title":2608,"_source":33,"_file":2614,"_stem":2615,"_extension":36},"/en-us/blog/authors/eduardo-bonet",{"name":2608,"config":2609},"Eduardo Bonet",{"headshot":2610,"ctfId":2611},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682722/Blog/Author%20Headshots/eduardobonet-headshot.jpg","eduardobonet",{"template":685},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2617,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2618,"config":2623,"_id":2624,"_type":31,"title":2619,"_source":33,"_file":2625,"_stem":2626,"_extension":36},"/en-us/blog/authors/eliran-mesika",{"name":2619,"config":2620},"Eliran Mesika",{"headshot":2621,"ctfId":2622},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670111/Blog/Author%20Headshots/eliran.jpg","eliranmesika",{"template":685},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2628,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2629,"config":2634,"_id":2635,"_type":31,"title":2630,"_source":33,"_file":2636,"_stem":2637,"_extension":36},"/en-us/blog/authors/elisabeth-burrows",{"name":2630,"config":2631},"Elisabeth Burrows",{"headshot":2632,"ctfId":2633},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659535/Blog/Author%20Headshots/liz_burrows_headshot.png","6Nj2Lio5W7HdeNYoysVgCf",{"template":685},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2639,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2640,"config":2644,"_id":2645,"_type":31,"title":2641,"_source":33,"_file":2646,"_stem":2647,"_extension":36},"/en-us/blog/authors/elliot-rushton",{"name":2641,"config":2642},"Elliot Rushton",{"headshot":7,"ctfId":2643},"erushton",{"template":685},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2649,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2650,"config":2654,"_id":2655,"_type":31,"title":2651,"_source":33,"_file":2656,"_stem":2657,"_extension":36},"/en-us/blog/authors/emilie-schario",{"name":2651,"config":2652},"Emilie Schario",{"headshot":7,"ctfId":2653},"emilie",{"template":685},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2659,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2660,"config":2665,"_id":2666,"_type":31,"title":2661,"_source":33,"_file":2667,"_stem":2668,"_extension":36},"/en-us/blog/authors/emilio-salvador",{"name":2661,"config":2662},"Emilio Salvador",{"headshot":2663,"ctfId":2664},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660161/Blog/Author%20Headshots/esalvadorp-headshot.png","esalvadorp",{"template":685},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2670,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2671,"config":2676,"_id":2677,"_type":31,"title":2672,"_source":33,"_file":2678,"_stem":2679,"_extension":36},"/en-us/blog/authors/emily-bauman",{"name":2672,"config":2673},"Emily Bauman",{"headshot":2674,"ctfId":2675},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664145/Blog/Author%20Headshots/emilybauman-headshot.jpg","emilybauman",{"template":685},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2681,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2682,"config":2686,"_id":2687,"_type":31,"title":2683,"_source":33,"_file":2688,"_stem":2689,"_extension":36},"/en-us/blog/authors/emily-chin",{"name":2683,"config":2684},"Emily Chin",{"headshot":7,"ctfId":2685},"echin",{"template":685},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2691,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2692,"config":2696,"_id":2697,"_type":31,"title":2693,"_source":33,"_file":2698,"_stem":2699,"_extension":36},"/en-us/blog/authors/emily-kyle",{"name":2693,"config":2694},"Emily Kyle",{"headshot":716,"ctfId":2695},"Emily-Kyle",{"template":685},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2701,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2702,"config":2706,"_id":2707,"_type":31,"title":2708,"_source":33,"_file":2709,"_stem":2710,"_extension":36},"/en-us/blog/authors/emily-von-hoffmann",{"name":2703,"config":2704},"Emily von Hoffmann",{"headshot":716,"ctfId":2705},"evhoffmann",{"template":685},"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":2712,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2713,"config":2718,"_id":2719,"_type":31,"title":2720,"_source":33,"_file":2721,"_stem":2722,"_extension":36},"/en-us/blog/authors/enrique-alcntara",{"name":2714,"config":2715},"Enrique Alcántara",{"headshot":2716,"ctfId":2717},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669746/Blog/Author%20Headshots/ealcantara-headshot.jpg","3E3c30ZWRUTq6rlFiYrjtq",{"template":685},"content:en-us:blog:authors:enrique-alcntara.yml","Enrique Alcntara","en-us/blog/authors/enrique-alcntara.yml","en-us/blog/authors/enrique-alcntara",{"_path":2724,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2725,"config":2729,"_id":2730,"_type":31,"title":2726,"_source":33,"_file":2731,"_stem":2732,"_extension":36},"/en-us/blog/authors/eric-brinkman",{"name":2726,"config":2727},"Eric Brinkman",{"headshot":7,"ctfId":2728},"ebrinkman",{"template":685},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2734,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2735,"config":2739,"_id":2740,"_type":31,"title":2736,"_source":33,"_file":2741,"_stem":2742,"_extension":36},"/en-us/blog/authors/eric-eastwood",{"name":2736,"config":2737},"Eric Eastwood",{"headshot":7,"ctfId":2738},"MadLittleMods",{"template":685},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2744,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2745,"config":2749,"_id":2750,"_type":31,"title":2746,"_source":33,"_file":2751,"_stem":2752,"_extension":36},"/en-us/blog/authors/eric-rosenberg",{"name":2746,"config":2747},"Eric Rosenberg",{"headshot":7,"ctfId":2748},"ericrosenberg88",{"template":685},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2754,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2755,"config":2760,"_id":2761,"_type":31,"title":2756,"_source":33,"_file":2762,"_stem":2763,"_extension":36},"/en-us/blog/authors/eric-rubin",{"name":2756,"config":2757},"Eric Rubin",{"headshot":2758,"ctfId":2759},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682494/Blog/Author%20Headshots/ericrubin-headshot.png","ericrubin",{"template":685},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2765,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2766,"config":2771,"_id":2772,"_type":31,"title":2767,"_source":33,"_file":2773,"_stem":2774,"_extension":36},"/en-us/blog/authors/eric-schurter",{"name":2767,"config":2768},"Eric Schurter",{"headshot":2769,"ctfId":2770},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679281/Blog/Author%20Headshots/ericschurter-headshot.jpg","ericschurter",{"template":685},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2776,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2777,"config":2781,"_id":2782,"_type":31,"title":2778,"_source":33,"_file":2783,"_stem":2784,"_extension":36},"/en-us/blog/authors/erica-huang",{"name":2778,"config":2779},"Erica Huang",{"headshot":7,"ctfId":2780},"exhuang",{"template":685},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2786,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2787,"config":2791,"_id":2792,"_type":31,"title":2788,"_source":33,"_file":2793,"_stem":2794,"_extension":36},"/en-us/blog/authors/erica-lindberg",{"name":2788,"config":2789},"Erica Lindberg",{"headshot":716,"ctfId":2790},"Erica-Lindberg",{"template":685},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2796,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2797,"config":2801,"_id":2802,"_type":31,"title":2798,"_source":33,"_file":2803,"_stem":2804,"_extension":36},"/en-us/blog/authors/erich-wegscheider",{"name":2798,"config":2799},"Erich Wegscheider",{"headshot":7,"ctfId":2800},"ewegscheider",{"template":685},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2806,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2807,"config":2811,"_id":2812,"_type":31,"title":2808,"_source":33,"_file":2813,"_stem":2814,"_extension":36},"/en-us/blog/authors/erick-banks",{"name":2808,"config":2809},"Erick Banks",{"headshot":716,"ctfId":2810},"4CGXhAxudTq69aZOtPnLfu",{"template":685},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2816,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2817,"config":2821,"_id":2822,"_type":31,"title":2818,"_source":33,"_file":2823,"_stem":2824,"_extension":36},"/en-us/blog/authors/erika-feldman",{"name":2818,"config":2819},"Erika Feldman",{"headshot":716,"ctfId":2820},"78oCat8vvbl6mzXsLawd9d",{"template":685},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2826,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2827,"config":2831,"_id":2832,"_type":31,"title":2833,"_source":33,"_file":2834,"_stem":2835,"_extension":36},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2828,"config":2829},"Erin Krengel, Pulumi",{"headshot":716,"ctfId":2830},"Erin-Krengel-Pulumi",{"template":685},"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":2837,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2838,"config":2842,"_id":2843,"_type":31,"title":2844,"_source":33,"_file":2845,"_stem":2846,"_extension":36},"/en-us/blog/authors/ernst-van-nierop",{"name":2839,"config":2840},"Ernst van Nierop",{"headshot":7,"ctfId":2841},"ernstvn",{"template":685},"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":2848,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2849,"config":2853,"_id":2854,"_type":31,"title":2850,"_source":33,"_file":2855,"_stem":2856,"_extension":36},"/en-us/blog/authors/esther-shein",{"name":2850,"config":2851},"Esther Shein",{"headshot":716,"ctfId":2852},"Esther-Shein",{"template":685},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2858,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2859,"config":2864,"_id":2865,"_type":31,"title":2860,"_source":33,"_file":2866,"_stem":2867,"_extension":36},"/en-us/blog/authors/ethan-strike",{"name":2860,"config":2861},"Ethan Strike",{"headshot":2862,"ctfId":2863},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679067/Blog/Author%20Headshots/estrike-headshot.png","estrike",{"template":685},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2869,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2870,"config":2874,"_id":2875,"_type":31,"title":2871,"_source":33,"_file":2876,"_stem":2877,"_extension":36},"/en-us/blog/authors/ethan-urie",{"name":2871,"config":2872},"Ethan Urie",{"headshot":716,"ctfId":2873},"mJhtQw4TY9ZRNF7dfitIF",{"template":685},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2879,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2880,"config":2884,"_id":2885,"_type":31,"title":2881,"_source":33,"_file":2886,"_stem":2887,"_extension":36},"/en-us/blog/authors/eugene-lim",{"name":2881,"config":2882},"Eugene Lim",{"headshot":716,"ctfId":2883},"6KHdIdghkUfSTzV2MzxNcj",{"template":685},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2889,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2890,"config":2894,"_id":2895,"_type":31,"title":2891,"_source":33,"_file":2896,"_stem":2897,"_extension":36},"/en-us/blog/authors/eugenia-hannon",{"name":2891,"config":2892},"Eugenia Hannon",{"headshot":7,"ctfId":2893},"eugeniah",{"template":685},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2899,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2900,"config":2904,"_id":2905,"_type":31,"title":2901,"_source":33,"_file":2906,"_stem":2907,"_extension":36},"/en-us/blog/authors/ev-kontsevoy",{"name":2901,"config":2902},"Ev Kontsevoy",{"headshot":7,"ctfId":2903},"ekontsevoy",{"template":685},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2909,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2910,"config":2914,"_id":2915,"_type":31,"title":2911,"_source":33,"_file":2916,"_stem":2917,"_extension":36},"/en-us/blog/authors/eva-sasson",{"name":2911,"config":2912},"Eva Sasson",{"headshot":716,"ctfId":2913},"Eva-Sasson",{"template":685},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2919,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2920,"config":2925,"_id":2926,"_type":31,"title":2921,"_source":33,"_file":2927,"_stem":2928,"_extension":36},"/en-us/blog/authors/fabian-zimmer",{"name":2921,"config":2922},"Fabian Zimmer",{"headshot":2923,"ctfId":2924},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/q6awwqbxtg0a4x9gtmhs.png","3TK88UogcX5lx83kWMVuvI",{"template":685},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2930,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2931,"config":2935,"_id":2936,"_type":31,"title":2932,"_source":33,"_file":2937,"_stem":2938,"_extension":36},"/en-us/blog/authors/fabio-akita",{"name":2932,"config":2933},"Fabio Akita",{"headshot":716,"ctfId":2934},"Fabio-Akita",{"template":685},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2940,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2941,"config":2945,"_id":2946,"_type":31,"title":2942,"_source":33,"_file":2947,"_stem":2948,"_extension":36},"/en-us/blog/authors/fabio-busatto",{"name":2942,"config":2943},"Fabio Busatto",{"headshot":7,"ctfId":2944},"bikebilly",{"template":685},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":2950,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2951,"config":2956,"_id":2957,"_type":31,"title":2952,"_source":33,"_file":2958,"_stem":2959,"_extension":36},"/en-us/blog/authors/fabio-pitino",{"name":2952,"config":2953},"Fabio Pitino",{"headshot":2954,"ctfId":2955},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659958/Blog/Author%20Headshots/fabiopitino-headshot.jpg","fabiopitino",{"template":685},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":2961,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2962,"config":2966,"_id":2967,"_type":31,"title":2963,"_source":33,"_file":2968,"_stem":2969,"_extension":36},"/en-us/blog/authors/farnoosh-seifoddini",{"name":2963,"config":2964},"Farnoosh Seifoddini",{"headshot":7,"ctfId":2965},"fseifoddini",{"template":685},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":2971,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2972,"config":2976,"_id":2977,"_type":31,"title":2973,"_source":33,"_file":2978,"_stem":2979,"_extension":36},"/en-us/blog/authors/fatih-acet",{"name":2973,"config":2974},"Fatih Acet",{"headshot":7,"ctfId":2975},"fatihacet",{"template":685},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":2981,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2982,"config":2987,"_id":2988,"_type":31,"title":2983,"_source":33,"_file":2989,"_stem":2990,"_extension":36},"/en-us/blog/authors/fatima-sarah-khalid",{"name":2983,"config":2984},"Fatima Sarah Khalid",{"headshot":2985,"ctfId":2986},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663337/Blog/Author%20Headshots/sugaroverflow-headshot.jpg","sugaroverflow",{"template":685},"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":2992,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":2993,"config":2998,"_id":2999,"_type":31,"title":2994,"_source":33,"_file":3000,"_stem":3001,"_extension":36},"/en-us/blog/authors/fernando-diaz",{"name":2994,"config":2995},"Fernando Diaz",{"headshot":2996,"ctfId":2997},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659556/Blog/Author%20Headshots/fern_diaz.png","fjdiaz",{"template":685},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3003,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3004,"config":3008,"_id":3009,"_type":31,"title":3005,"_source":33,"_file":3010,"_stem":3011,"_extension":36},"/en-us/blog/authors/filipa-lacerda",{"name":3005,"config":3006},"Filipa Lacerda",{"headshot":7,"ctfId":3007},"filipa",{"template":685},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3013,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3014,"config":3019,"_id":3020,"_type":31,"title":3021,"_source":33,"_file":3022,"_stem":3023,"_extension":36},"/en-us/blog/authors/flix-veillette-potvin",{"name":3015,"config":3016}," Félix Veillette-Potvin",{"headshot":3017,"ctfId":3018},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662606/Blog/Author%20Headshots/_F%C3%A9lix_Veillette-Potvin_headshot.png","3nkwcdE5K3Uw9nrovEngxW",{"template":685},"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":3025,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3026,"config":3030,"_id":3031,"_type":31,"title":3027,"_source":33,"_file":3032,"_stem":3033,"_extension":36},"/en-us/blog/authors/forrest-brazeal",{"name":3027,"config":3028},"Forrest Brazeal",{"headshot":7,"ctfId":3029},"fbrazeal",{"template":685},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3035,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3036,"config":3040,"_id":3041,"_type":31,"title":3037,"_source":33,"_file":3042,"_stem":3043,"_extension":36},"/en-us/blog/authors/francis-ofungwu",{"name":3037,"config":3038},"Francis Ofungwu",{"headshot":716,"ctfId":3039},"fofungwu",{"template":685},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3045,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3046,"config":3051,"_id":3052,"_type":31,"title":3053,"_source":33,"_file":3054,"_stem":3055,"_extension":36},"/en-us/blog/authors/frdric-caplette",{"name":3047,"config":3048},"Frédéric Caplette",{"headshot":3049,"ctfId":3050},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661878/Blog/Author%20Headshots/frederic_caplette_headshot.png","6nMRwNMwciKSX03zmbBbPF",{"template":685},"content:en-us:blog:authors:frdric-caplette.yml","Frdric Caplette","en-us/blog/authors/frdric-caplette.yml","en-us/blog/authors/frdric-caplette",{"_path":3057,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3058,"config":3063,"_id":3064,"_type":31,"title":3059,"_source":33,"_file":3065,"_stem":3066,"_extension":36},"/en-us/blog/authors/gabe-weaver",{"name":3059,"config":3060},"Gabe Weaver",{"headshot":3061,"ctfId":3062},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667605/Blog/Author%20Headshots/gweaver-headshot.jpg","gweaver",{"template":685},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3068,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3069,"config":3074,"_id":3075,"_type":31,"title":3070,"_source":33,"_file":3076,"_stem":3077,"_extension":36},"/en-us/blog/authors/gabriel-engel",{"name":3070,"config":3071},"Gabriel Engel",{"headshot":3072,"ctfId":3073},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664747/Blog/Author%20Headshots/gabrielengel_gl-headshot.jpg","gabrielengelgl",{"template":685},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3079,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3080,"config":3084,"_id":3085,"_type":31,"title":3081,"_source":33,"_file":3086,"_stem":3087,"_extension":36},"/en-us/blog/authors/gabriel-le-breton",{"name":3081,"config":3082},"Gabriel Le Breton",{"headshot":716,"ctfId":3083},"Gabriel-Le-Breton",{"template":685},"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":3089,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3090,"config":3095,"_id":3096,"_type":31,"title":3091,"_source":33,"_file":3097,"_stem":3098,"_extension":36},"/en-us/blog/authors/gabriel-mazetto",{"name":3091,"config":3092},"Gabriel Mazetto",{"headshot":3093,"ctfId":3094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678982/Blog/Author%20Headshots/brodock-headshot.jpg","brodock",{"template":685},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3100,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3101,"config":3106,"_id":3107,"_type":31,"title":3102,"_source":33,"_file":3108,"_stem":3109,"_extension":36},"/en-us/blog/authors/gavin-peltz",{"name":3102,"config":3103},"Gavin Peltz",{"headshot":3104,"ctfId":3105},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662831/Blog/Author%20Headshots/gavin_peltz.png","27UwgXDMqa0oBWV93rXTgN",{"template":685},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3111,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3112,"config":3117,"_id":3118,"_type":31,"title":3113,"_source":33,"_file":3119,"_stem":3120,"_extension":36},"/en-us/blog/authors/george-kichukov",{"name":3113,"config":3114},"George Kichukov",{"headshot":3115,"ctfId":3116},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664866/Blog/Author%20Headshots/george_kichukov.png","7e8bn05u4pXwYjkRrqdprE",{"template":685},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3122,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3123,"config":3127,"_id":3128,"_type":31,"title":3124,"_source":33,"_file":3129,"_stem":3130,"_extension":36},"/en-us/blog/authors/gerard-hickey",{"name":3124,"config":3125},"Gerard Hickey",{"headshot":7,"ctfId":3126},"ghickey",{"template":685},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3132,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3133,"config":3138,"_id":3139,"_type":31,"title":3140,"_source":33,"_file":3141,"_stem":3142,"_extension":36},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3134,"config":3135},"Gerardo Lopez-Fernandez",{"headshot":3136,"ctfId":3137},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679925/Blog/Author%20Headshots/glopezfernandez-headshot.jpg","glopezfernandez",{"template":685},"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":3144,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3145,"config":3150,"_id":3151,"_type":31,"title":3146,"_source":33,"_file":3152,"_stem":3153,"_extension":36},"/en-us/blog/authors/gina-doyle",{"name":3146,"config":3147},"Gina Doyle",{"headshot":3148,"ctfId":3149},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679201/Blog/Author%20Headshots/gdoyle-headshot.png","gdoyle",{"template":685},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3155,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3156,"config":3159,"_id":3160,"_type":31,"title":3161,"_source":33,"_file":3162,"_stem":3163,"_extension":36},"/en-us/blog/authors/gitlab",{"name":3157,"config":3158},"GitLab",{"headshot":716,"ctfId":3157},{"template":685},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3165,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3166,"config":3170,"_id":3171,"_type":31,"title":3172,"_source":33,"_file":3173,"_stem":3174,"_extension":36},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3167,"config":3168},"GitLab AI Assisted Group",{"headshot":716,"ctfId":3169},"GitLab-AI-Assisted-Group",{"template":685},"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":3176,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3177,"config":3181,"_id":3182,"_type":31,"title":3183,"_source":33,"_file":3184,"_stem":3185,"_extension":36},"/en-us/blog/authors/gitlab-france-team",{"name":3178,"config":3179},"GitLab France Team",{"headshot":716,"ctfId":3180},"1gfblqN0ibYIuWGk7MOTny",{"template":685},"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":3187,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3188,"config":3192,"_id":3193,"_type":31,"title":3194,"_source":33,"_file":3195,"_stem":3196,"_extension":36},"/en-us/blog/authors/gitlab-germany-team",{"name":3189,"config":3190},"GitLab Germany Team",{"headshot":716,"ctfId":3191},"6tNquF8jQeRRRi8k3ZXpvS",{"template":685},"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":3198,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3199,"config":3203,"_id":3204,"_type":31,"title":3205,"_source":33,"_file":3206,"_stem":3207,"_extension":36},"/en-us/blog/authors/gitlab-japan-team",{"name":3200,"config":3201},"GitLab Japan Team",{"headshot":716,"ctfId":3202},"5YWHF8vG80rluQ41QjgP7V",{"template":685},"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":3209,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3210,"config":3214,"_id":3215,"_type":31,"title":3216,"_source":33,"_file":3217,"_stem":3218,"_extension":36},"/en-us/blog/authors/gitlab-security-team",{"name":3211,"config":3212},"GitLab Security Team",{"headshot":716,"ctfId":3213},"GitLab-Security-Team",{"template":685},"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":3220,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3221,"config":3225,"_id":3226,"_type":31,"title":3227,"_source":33,"_file":3228,"_stem":3229,"_extension":36},"/en-us/blog/authors/gitlab-team",{"name":3222,"config":3223},"GitLab Team",{"headshot":716,"ctfId":3224},"GitLab-Team",{"template":685},"content:en-us:blog:authors:gitlab-team.yml","Gitlab Team","en-us/blog/authors/gitlab-team.yml","en-us/blog/authors/gitlab-team",{"_path":3231,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3232,"config":3236,"_id":3237,"_type":31,"title":3238,"_source":33,"_file":3239,"_stem":3240,"_extension":36},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3233,"config":3234},"GitLab Vulnerability Research Team",{"headshot":716,"ctfId":3235},"GitLab-Vulnerability-Research-Team",{"template":685},"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":3242,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3243,"config":3247,"_id":3248,"_type":31,"title":3244,"_source":33,"_file":3249,"_stem":3250,"_extension":36},"/en-us/blog/authors/goetz-buerkle",{"name":3244,"config":3245},"Goetz Buerkle",{"headshot":716,"ctfId":3246},"Goetz-Buerkle",{"template":685},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3252,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3253,"config":3258,"_id":3259,"_type":31,"title":3254,"_source":33,"_file":3260,"_stem":3261,"_extension":36},"/en-us/blog/authors/gosia-ksionek",{"name":3254,"config":3255},"Gosia Ksionek",{"headshot":3256,"ctfId":3257},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680521/Blog/Author%20Headshots/mksionek-headshot.jpg","mksionek",{"template":685},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3263,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3264,"config":3269,"_id":3270,"_type":31,"title":3265,"_source":33,"_file":3271,"_stem":3272,"_extension":36},"/en-us/blog/authors/grant-hickman",{"name":3265,"config":3266},"Grant Hickman",{"headshot":3267,"ctfId":3268},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682570/Blog/Author%20Headshots/g.png","ghickman",{"template":685},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3274,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3275,"config":3280,"_id":3281,"_type":31,"title":3276,"_source":33,"_file":3282,"_stem":3283,"_extension":36},"/en-us/blog/authors/grant-young",{"name":3276,"config":3277},"Grant Young",{"headshot":3278,"ctfId":3279},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666346/Blog/Author%20Headshots/grantyoung-headshot.jpg","grantyoung",{"template":685},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3285,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3286,"config":3290,"_id":3291,"_type":31,"title":3287,"_source":33,"_file":3292,"_stem":3293,"_extension":36},"/en-us/blog/authors/greg-alfaro",{"name":3287,"config":3288},"Greg Alfaro",{"headshot":7,"ctfId":3289},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":685},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3295,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3296,"config":3300,"_id":3301,"_type":31,"title":3297,"_source":33,"_file":3302,"_stem":3303,"_extension":36},"/en-us/blog/authors/greg-johnson",{"name":3297,"config":3298},"Greg Johnson",{"headshot":7,"ctfId":3299},"codeEmitter",{"template":685},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3305,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3306,"config":3311,"_id":3312,"_type":31,"title":3307,"_source":33,"_file":3313,"_stem":3314,"_extension":36},"/en-us/blog/authors/greg-myers",{"name":3307,"config":3308},"Greg Myers",{"headshot":3309,"ctfId":3310},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665570/Blog/Author%20Headshots/greg_myers_headshot.png","2uUYKgdtszyGfoOHbakiQX",{"template":685},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3316,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3317,"config":3321,"_id":3322,"_type":31,"title":3318,"_source":33,"_file":3323,"_stem":3324,"_extension":36},"/en-us/blog/authors/grzegorz-bizon",{"name":3318,"config":3319},"Grzegorz Bizon",{"headshot":716,"ctfId":3320},"Grzegorz-Bizon",{"template":685},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3326,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3327,"config":3331,"_id":3332,"_type":31,"title":3328,"_source":33,"_file":3333,"_stem":3334,"_extension":36},"/en-us/blog/authors/guenjun-yoo",{"name":3328,"config":3329},"Guenjun Yoo",{"headshot":7,"ctfId":3330},"gyoo",{"template":685},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3336,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3337,"config":3341,"_id":3342,"_type":31,"title":3343,"_source":33,"_file":3344,"_stem":3345,"_extension":36},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3338,"config":3339},"Guest author André Arko of Ruby Together",{"headshot":716,"ctfId":3340},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":685},"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":3347,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3348,"config":3352,"_id":3353,"_type":31,"title":3354,"_source":33,"_file":3355,"_stem":3356,"_extension":36},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3349,"config":3350},"Guest author André Miranda",{"headshot":716,"ctfId":3351},"Guest-author-Andr-Miranda",{"template":685},"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":3358,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3359,"config":3365,"_id":3366,"_type":31,"title":3367,"_source":33,"_file":3368,"_stem":3369,"_extension":36},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3360,"config":3361},"Gufran Yeşilyurt, OBSS",{"headshot":3362,"linkedin":3363,"ctfId":3364},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666380/Blog/Author%20Headshots/1643972670650.jpg","https://www.linkedin.com/in/gufran-yesilyurt/","2ydYMU86my71BUASual2EI",{"template":685},"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":3371,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3372,"config":3376,"_id":3377,"_type":31,"title":3378,"_source":33,"_file":3379,"_stem":3380,"_extension":36},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3373,"config":3374},"Gustaw Fit of Zoopla",{"headshot":716,"ctfId":3375},"Gustaw-Fit-of-Zoopla",{"template":685},"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":3382,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3383,"config":3387,"_id":3388,"_type":31,"title":3389,"_source":33,"_file":3390,"_stem":3391,"_extension":36},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3384,"config":3385},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":716,"ctfId":3386},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":685},"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":3393,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3394,"config":3398,"_id":3399,"_type":31,"title":3395,"_source":33,"_file":3400,"_stem":3401,"_extension":36},"/en-us/blog/authors/gyan-chawdhary",{"name":3395,"config":3396},"Gyan Chawdhary",{"headshot":716,"ctfId":3397},"Gyan-Chawdhary",{"template":685},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3403,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3404,"config":3409,"_id":3410,"_type":31,"title":3405,"_source":33,"_file":3411,"_stem":3412,"_extension":36},"/en-us/blog/authors/haim-snir",{"name":3405,"config":3406},"Haim Snir",{"headshot":3407,"ctfId":3408},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664386/Blog/Author%20Headshots/hsnir1-headshot.jpg","hsnir1",{"template":685},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3414,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3415,"config":3420,"_id":3421,"_type":31,"title":3422,"_source":33,"_file":3423,"_stem":3424,"_extension":36},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3416,"config":3417},"Hakeem Abdul-Razak",{"headshot":3418,"ctfId":3419},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662077/Blog/Author%20Headshots/Hakeem_Abdul-Razak_headshot.png","7H6nuZfVCK5mqJBK4fuaDH",{"template":685},"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":3426,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3427,"config":3431,"_id":3433,"_type":31,"title":3428,"_source":33,"_file":3434,"_stem":3435,"_extension":36},"/en-us/blog/authors/halil-coban",{"name":3428,"config":3429},"Halil Coban",{"headshot":3430},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":685,"gitlabHandle":3432},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3437,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3438,"config":3443,"_id":3444,"_type":31,"title":3439,"_source":33,"_file":3445,"_stem":3446,"_extension":36},"/en-us/blog/authors/hannah-sutor",{"name":3439,"config":3440},"Hannah Sutor",{"headshot":3441,"ctfId":3442},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665588/Blog/Author%20Headshots/hsutor-headshot.png","hsutor",{"template":685},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3448,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3449,"config":3454,"_id":3455,"_type":31,"title":3450,"_source":33,"_file":3456,"_stem":3457,"_extension":36},"/en-us/blog/authors/harjeet-sharma",{"name":3450,"config":3451},"Harjeet Sharma",{"headshot":3452,"ctfId":3453},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665497/Blog/Author%20Headshots/harjeet_sharma_headshot.png","723O6GGQQEu75MCuhw6lqh",{"template":685},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3459,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3460,"config":3464,"_id":3465,"_type":31,"title":3461,"_source":33,"_file":3466,"_stem":3467,"_extension":36},"/en-us/blog/authors/haydn-mackay",{"name":3461,"config":3462},"Haydn Mackay",{"headshot":716,"ctfId":3463},"Haydn-Mackay",{"template":685},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3469,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3470,"config":3474,"_id":3475,"_type":31,"title":3471,"_source":33,"_file":3476,"_stem":3477,"_extension":36},"/en-us/blog/authors/hazel-yang",{"name":3471,"config":3472},"Hazel Yang",{"headshot":7,"ctfId":3473},"hazelyang",{"template":685},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3479,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3480,"config":3484,"_id":3485,"_type":31,"title":3486,"_source":33,"_file":3487,"_stem":3488,"_extension":36},"/en-us/blog/authors/heather-mcnamee",{"name":3481,"config":3482},"Heather McNamee",{"headshot":716,"ctfId":3483},"Heather-McNamee",{"template":685},"content:en-us:blog:authors:heather-mcnamee.yml","Heather Mcnamee","en-us/blog/authors/heather-mcnamee.yml","en-us/blog/authors/heather-mcnamee",{"_path":3490,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3491,"config":3495,"_id":3496,"_type":31,"title":3492,"_source":33,"_file":3497,"_stem":3498,"_extension":36},"/en-us/blog/authors/heather-simpson",{"name":3492,"config":3493},"Heather Simpson",{"headshot":716,"ctfId":3494},"hsimpson",{"template":685},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3500,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3501,"config":3506,"_id":3507,"_type":31,"title":3502,"_source":33,"_file":3508,"_stem":3509,"_extension":36},"/en-us/blog/authors/hillary-benson",{"name":3502,"config":3503},"Hillary Benson",{"headshot":3504,"ctfId":3505},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683387/Blog/Author%20Headshots/hillarybensonheadshot.png","45VEFoISCoOhRXzyPyAf1x",{"template":685},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3511,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3512,"config":3516,"_id":3518,"_type":31,"title":3513,"_source":33,"_file":3519,"_stem":3520,"_extension":36},"/en-us/blog/authors/himanshu-kapoor",{"name":3513,"config":3514},"Himanshu Kapoor",{"headshot":3515},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":685,"gitlabHandle":3517},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3522,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3523,"config":3528,"_id":3529,"_type":31,"title":3524,"_source":33,"_file":3530,"_stem":3531,"_extension":36},"/en-us/blog/authors/hiroki-suezawa",{"name":3524,"config":3525},"Hiroki Suezawa",{"headshot":3526,"ctfId":3527},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662370/Blog/Author%20Headshots/hiroki_suezawa.png","cw6ZIj0yjr1uw2LAFr23h",{"template":685},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3533,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3534,"config":3538,"_id":3539,"_type":31,"title":3535,"_source":33,"_file":3540,"_stem":3541,"_extension":36},"/en-us/blog/authors/holly-reynolds",{"name":3535,"config":3536},"Holly Reynolds",{"headshot":7,"ctfId":3537},"hollyreynolds",{"template":685},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3543,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3544,"config":3548,"_id":3549,"_type":31,"title":3545,"_source":33,"_file":3550,"_stem":3551,"_extension":36},"/en-us/blog/authors/huldra",{"name":3545,"config":3546},"Huldra",{"headshot":7,"ctfId":3547},"huldra",{"template":685},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3553,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3554,"config":3558,"_id":3559,"_type":31,"title":3555,"_source":33,"_file":3560,"_stem":3561,"_extension":36},"/en-us/blog/authors/iain-camacho",{"name":3555,"config":3556},"Iain Camacho",{"headshot":7,"ctfId":3557},"icamacho",{"template":685},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3563,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3564,"config":3568,"_id":3569,"_type":31,"title":3565,"_source":33,"_file":3570,"_stem":3571,"_extension":36},"/en-us/blog/authors/ian-bartholomew",{"name":3565,"config":3566},"Ian Bartholomew",{"headshot":716,"ctfId":3567},"7D4PE43CXfi8pgOSCmipH0",{"template":685},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3573,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3574,"config":3579,"_id":3580,"_type":31,"title":3575,"_source":33,"_file":3581,"_stem":3582,"_extension":36},"/en-us/blog/authors/ian-khor",{"name":3575,"config":3576},"Ian Khor",{"headshot":3577,"ctfId":3578},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662933/Blog/Author%20Headshots/ian_khor_headshot.png","nSk8fzDwtG3LVFWwg8HrF",{"template":685},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3584,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3585,"config":3590,"_id":3591,"_type":31,"title":3586,"_source":33,"_file":3592,"_stem":3593,"_extension":36},"/en-us/blog/authors/ian-pedowitz",{"name":3586,"config":3587},"Ian Pedowitz",{"headshot":3588,"ctfId":3589},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683040/Blog/Author%20Headshots/ipedowitz-headshot.jpg","ipedowitz",{"template":685},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3595,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3596,"config":3601,"_id":3602,"_type":31,"title":3597,"_source":33,"_file":3603,"_stem":3604,"_extension":36},"/en-us/blog/authors/igor-drozdov",{"name":3597,"config":3598},"Igor Drozdov",{"headshot":3599,"ctfId":3600},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672455/Blog/Author%20Headshots/igor.png","igordrozdov",{"template":685},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3606,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3607,"config":3612,"_id":3613,"_type":31,"title":3608,"_source":33,"_file":3614,"_stem":3615,"_extension":36},"/en-us/blog/authors/igor-wiedler",{"name":3608,"config":3609},"Igor Wiedler",{"headshot":3610,"ctfId":3611},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681841/Blog/Author%20Headshots/igorwwwwwwwwwwwwwwwwwwww-headshot.png","igorwwwwwwwwwwwwwwwwwwww",{"template":685},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3617,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3618,"config":3623,"_id":3624,"_type":31,"title":3625,"_source":33,"_file":3626,"_stem":3627,"_extension":36},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3619,"config":3620},"Inchul Yoo, Sunjung Park",{"headshot":3621,"ctfId":3622},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669731/Blog/Author%20Headshots/sunjungp-headshot.png","sunjungp",{"template":685},"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":3629,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3630,"config":3635,"_id":3636,"_type":31,"title":3631,"_source":33,"_file":3637,"_stem":3638,"_extension":36},"/en-us/blog/authors/isaac-dawson",{"name":3631,"config":3632},"Isaac Dawson",{"headshot":3633,"ctfId":3634},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669814/Blog/Author%20Headshots/idawson-headshot.jpg","idawson",{"template":685},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3640,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3641,"config":3645,"_id":3647,"_type":31,"title":3648,"_source":33,"_file":3649,"_stem":3650,"_extension":36},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3642,"name":3644},{"headshot":3643},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":685,"gitlabHandle":3646},"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":3652,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3653,"config":3658,"_id":3659,"_type":31,"title":3654,"_source":33,"_file":3660,"_stem":3661,"_extension":36},"/en-us/blog/authors/itzik-gan-baruch",{"name":3654,"config":3655},"Itzik Gan Baruch",{"headshot":3656,"ctfId":3657},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch",{"template":685},"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":3663,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3664,"config":3668,"_id":3669,"_type":31,"title":3665,"_source":33,"_file":3670,"_stem":3671,"_extension":36},"/en-us/blog/authors/ivan-lychev",{"name":3665,"config":3666},"Ivan Lychev",{"headshot":7,"ctfId":3667},"iLychevAD",{"template":685},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3673,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3674,"config":3678,"_id":3679,"_type":31,"title":3675,"_source":33,"_file":3680,"_stem":3681,"_extension":36},"/en-us/blog/authors/ivan-nemytchenko",{"name":3675,"config":3676},"Ivan Nemytchenko",{"headshot":716,"ctfId":3677},"Ivan-Nemytchenko",{"template":685},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3683,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3684,"config":3690,"_id":3691,"_type":31,"title":3686,"_source":33,"_file":3692,"_stem":3693,"_extension":36},"/en-us/blog/authors/ivanha-paz",{"role":3685,"name":3686,"config":3687},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3688,"ctfId":3689},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":685},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3695,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3696,"config":3700,"_id":3701,"_type":31,"title":3697,"_source":33,"_file":3702,"_stem":3703,"_extension":36},"/en-us/blog/authors/jacie-bandur",{"name":3697,"config":3698},"Jacie Bandur",{"headshot":7,"ctfId":3699},"jbandur",{"template":685},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3705,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3706,"config":3711,"_id":3712,"_type":31,"title":3707,"_source":33,"_file":3713,"_stem":3714,"_extension":36},"/en-us/blog/authors/jacki-bauer",{"name":3707,"config":3708},"Jacki Bauer",{"headshot":3709,"ctfId":3710},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":685},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3716,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3717,"config":3721,"_id":3722,"_type":31,"title":3718,"_source":33,"_file":3723,"_stem":3724,"_extension":36},"/en-us/blog/authors/jackie-meshell",{"name":3718,"config":3719},"Jackie Meshell",{"headshot":7,"ctfId":3720},"jmeshell",{"template":685},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3726,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3727,"config":3732,"_id":3733,"_type":31,"title":3728,"_source":33,"_file":3734,"_stem":3735,"_extension":36},"/en-us/blog/authors/jackie-porter",{"name":3728,"config":3729},"Jackie Porter",{"headshot":3730,"ctfId":3731},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":685},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3737,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3738,"config":3742,"_id":3743,"_type":31,"title":3739,"_source":33,"_file":3744,"_stem":3745,"_extension":36},"/en-us/blog/authors/jacob-schatz",{"name":3739,"config":3740},"Jacob Schatz",{"headshot":7,"ctfId":3741},"jschatz1",{"template":685},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3747,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3748,"config":3752,"_id":3753,"_type":31,"title":3749,"_source":33,"_file":3754,"_stem":3755,"_extension":36},"/en-us/blog/authors/jacob-vosmaer",{"name":3749,"config":3750},"Jacob Vosmaer",{"headshot":716,"ctfId":3751},"Jacob-Vosmaer",{"template":685},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3757,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3758,"config":3763,"_id":3764,"_type":31,"title":3759,"_source":33,"_file":3765,"_stem":3766,"_extension":36},"/en-us/blog/authors/jacques-erasmus",{"name":3759,"config":3760},"Jacques Erasmus",{"headshot":3761,"ctfId":3762},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":685},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3768,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3769,"config":3774,"_id":3775,"_type":31,"title":3776,"_source":33,"_file":3777,"_stem":3778,"_extension":36},"/en-us/blog/authors/jaime-martnez",{"name":3770,"config":3771},"Jaime Martínez",{"headshot":3772,"ctfId":3773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":685},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3780,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3781,"config":3785,"_id":3786,"_type":31,"title":3782,"_source":33,"_file":3787,"_stem":3788,"_extension":36},"/en-us/blog/authors/jake-foster",{"name":3782,"config":3783},"Jake Foster",{"headshot":716,"ctfId":3784},"jakefoster1",{"template":685},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3790,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3791,"config":3795,"_id":3796,"_type":31,"title":3792,"_source":33,"_file":3797,"_stem":3798,"_extension":36},"/en-us/blog/authors/jake-stein",{"name":3792,"config":3793},"Jake Stein",{"headshot":716,"ctfId":3794},"Jake-Stein",{"template":685},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3800,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3801,"config":3805,"_id":3806,"_type":31,"title":3802,"_source":33,"_file":3807,"_stem":3808,"_extension":36},"/en-us/blog/authors/james-dang",{"name":3802,"config":3803},"James Dang",{"headshot":716,"ctfId":3804},"James-Dang",{"template":685},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3810,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3811,"config":3816,"_id":3817,"_type":31,"title":3812,"_source":33,"_file":3818,"_stem":3819,"_extension":36},"/en-us/blog/authors/james-heimbuck",{"name":3812,"config":3813},"James Heimbuck",{"headshot":3814,"ctfId":3815},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":685},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3821,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3822,"config":3826,"_id":3827,"_type":31,"title":3823,"_source":33,"_file":3828,"_stem":3829,"_extension":36},"/en-us/blog/authors/james-ramsay",{"name":3823,"config":3824},"James Ramsay",{"headshot":7,"ctfId":3825},"jramsay",{"template":685},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3831,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3832,"config":3837,"_id":3838,"_type":31,"title":3833,"_source":33,"_file":3839,"_stem":3840,"_extension":36},"/en-us/blog/authors/james-wormwell",{"name":3833,"config":3834},"James Wormwell",{"headshot":3835,"ctfId":3836},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":685},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3842,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3843,"config":3847,"_id":3848,"_type":31,"title":3844,"_source":33,"_file":3849,"_stem":3850,"_extension":36},"/en-us/blog/authors/jamie-hurewitz",{"name":3844,"config":3845},"Jamie Hurewitz",{"headshot":716,"ctfId":3846},"Jamie-Hurewitz",{"template":685},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3852,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3853,"config":3857,"_id":3858,"_type":31,"title":3854,"_source":33,"_file":3859,"_stem":3860,"_extension":36},"/en-us/blog/authors/jamie-rachel",{"name":3854,"config":3855},"Jamie Rachel",{"headshot":7,"ctfId":3856},"jrachel1",{"template":685},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3862,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3863,"config":3868,"_id":3869,"_type":31,"title":3864,"_source":33,"_file":3870,"_stem":3871,"_extension":36},"/en-us/blog/authors/jan-provaznik",{"name":3864,"config":3865},"Jan Provaznik",{"headshot":3866,"ctfId":3867},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":685},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3873,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3874,"config":3879,"_id":3880,"_type":31,"title":3875,"_source":33,"_file":3881,"_stem":3882,"_extension":36},"/en-us/blog/authors/janis-altherr",{"name":3875,"config":3876},"Janis Altherr",{"headshot":3877,"ctfId":3878},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":685},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3884,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3885,"config":3890,"_id":3891,"_type":31,"title":3886,"_source":33,"_file":3892,"_stem":3893,"_extension":36},"/en-us/blog/authors/jannik-lehmann",{"name":3886,"config":3887},"Jannik Lehmann",{"headshot":3888,"ctfId":3889},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":685},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3895,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3896,"config":3901,"_id":3902,"_type":31,"title":3903,"_source":33,"_file":3904,"_stem":3905,"_extension":36},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3897,"config":3898},"Jarka Košanová et al",{"headshot":3899,"ctfId":3900},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":685},"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":3907,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3908,"config":3912,"_id":3913,"_type":31,"title":3914,"_source":33,"_file":3915,"_stem":3916,"_extension":36},"/en-us/blog/authors/jason-blais-mattermost",{"name":3909,"config":3910},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3911},"jasonblais",{"template":685},"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":3918,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3919,"config":3923,"_id":3924,"_type":31,"title":3920,"_source":33,"_file":3925,"_stem":3926,"_extension":36},"/en-us/blog/authors/jason-chen",{"name":3920,"config":3921},"Jason Chen",{"headshot":716,"ctfId":3922},"Jason-Chen",{"template":685},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3928,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3929,"config":3934,"_id":3935,"_type":31,"title":3930,"_source":33,"_file":3936,"_stem":3937,"_extension":36},"/en-us/blog/authors/jason-colyer",{"name":3930,"config":3931},"Jason Colyer",{"headshot":3932,"ctfId":3933},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":685},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3939,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3940,"config":3945,"_id":3946,"_type":31,"title":3941,"_source":33,"_file":3947,"_stem":3948,"_extension":36},"/en-us/blog/authors/jason-plum",{"name":3941,"config":3942},"Jason Plum",{"headshot":3943,"ctfId":3944},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":685},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":3950,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3951,"config":3955,"_id":3956,"_type":31,"title":3952,"_source":33,"_file":3957,"_stem":3958,"_extension":36},"/en-us/blog/authors/jason-yavorska",{"name":3952,"config":3953},"Jason Yavorska",{"headshot":7,"ctfId":3954},"jyavorska",{"template":685},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":3960,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3961,"config":3965,"_id":3966,"_type":31,"title":3962,"_source":33,"_file":3967,"_stem":3968,"_extension":36},"/en-us/blog/authors/jay-newman",{"name":3962,"config":3963},"Jay Newman",{"headshot":716,"ctfId":3964},"Jay-Newman",{"template":685},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":3970,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3971,"config":3976,"_id":3977,"_type":31,"title":3972,"_source":33,"_file":3978,"_stem":3979,"_extension":36},"/en-us/blog/authors/jayson-salazar",{"name":3972,"config":3973},"Jayson Salazar",{"headshot":3974,"ctfId":3975},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":685},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":3981,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3982,"config":3986,"_id":3987,"_type":31,"title":3988,"_source":33,"_file":3989,"_stem":3990,"_extension":36},"/en-us/blog/authors/jd-alex",{"name":3983,"config":3984},"JD Alex",{"headshot":7,"ctfId":3985},"jalex1",{"template":685},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":3992,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":3993,"config":3997,"_id":3998,"_type":31,"title":3999,"_source":33,"_file":4000,"_stem":4001,"_extension":36},"/en-us/blog/authors/jean-philippe-baconnais",{"name":3994,"config":3995},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":3996},"jeanphibaconnais",{"template":685},"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":4003,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4004,"config":4009,"_id":4010,"_type":31,"title":4005,"_source":33,"_file":4011,"_stem":4012,"_extension":36},"/en-us/blog/authors/jeff-burrows",{"name":4005,"config":4006},"Jeff Burrows",{"headshot":4007,"ctfId":4008},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":685},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4014,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4015,"config":4019,"_id":4020,"_type":31,"title":4016,"_source":33,"_file":4021,"_stem":4022,"_extension":36},"/en-us/blog/authors/jeff-kelsey",{"name":4016,"config":4017},"Jeff Kelsey",{"headshot":716,"ctfId":4018},"Jeff-Kelsey",{"template":685},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4024,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4025,"config":4030,"_id":4031,"_type":31,"title":4026,"_source":33,"_file":4032,"_stem":4033,"_extension":36},"/en-us/blog/authors/jeff-park",{"name":4026,"config":4027},"Jeff Park",{"headshot":4028,"ctfId":4029},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":685},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4035,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4036,"config":4041,"_id":4042,"_type":31,"title":4037,"_source":33,"_file":4043,"_stem":4044,"_extension":36},"/en-us/blog/authors/jeff-tucker",{"name":4037,"config":4038},"Jeff Tucker",{"headshot":4039,"ctfId":4040},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":685},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4046,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4047,"config":4052,"_id":4053,"_type":31,"title":4048,"_source":33,"_file":4054,"_stem":4055,"_extension":36},"/en-us/blog/authors/jensen-stava",{"name":4048,"config":4049},"Jensen Stava",{"headshot":4050,"ctfId":4051},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":685},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4057,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4058,"config":4062,"_id":4063,"_type":31,"title":4059,"_source":33,"_file":4064,"_stem":4065,"_extension":36},"/en-us/blog/authors/jeremy-cooper",{"name":4059,"config":4060},"Jeremy Cooper",{"headshot":716,"ctfId":4061},"6sXs62l8jODDcUlS9OPgTu",{"template":685},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4067,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4068,"config":4073,"_id":4074,"_type":31,"title":4069,"_source":33,"_file":4075,"_stem":4076,"_extension":36},"/en-us/blog/authors/jeremy-elder",{"name":4069,"config":4070},"Jeremy Elder",{"headshot":4071,"ctfId":4072},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":685},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4078,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4079,"config":4084,"_id":4085,"_type":31,"title":4080,"_source":33,"_file":4086,"_stem":4087,"_extension":36},"/en-us/blog/authors/jeremy-wagner",{"name":4080,"config":4081},"Jeremy Wagner",{"headshot":4082,"ctfId":4083},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":685},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4089,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4090,"config":4094,"_id":4095,"_type":31,"title":4091,"_source":33,"_file":4096,"_stem":4097,"_extension":36},"/en-us/blog/authors/jeremy-watson",{"name":4091,"config":4092},"Jeremy Watson",{"headshot":7,"ctfId":4093},"jeremy",{"template":685},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4099,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4100,"config":4105,"_id":4106,"_type":31,"title":4101,"_source":33,"_file":4107,"_stem":4108,"_extension":36},"/en-us/blog/authors/jerez-solis",{"name":4101,"config":4102},"Jerez Solis",{"headshot":4103,"ctfId":4104},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":685},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4110,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4111,"config":4115,"_id":4116,"_type":31,"title":4117,"_source":33,"_file":4118,"_stem":4119,"_extension":36},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4112,"config":4113},"Jeroen van Baarsen",{"headshot":716,"ctfId":4114},"Jeroen-van-Baarsen",{"template":685},"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":4121,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4122,"config":4127,"_id":4128,"_type":31,"title":4123,"_source":33,"_file":4129,"_stem":4130,"_extension":36},"/en-us/blog/authors/jessica-hurwitz",{"name":4123,"config":4124},"Jessica Hurwitz",{"headshot":4125,"ctfId":4126},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":685},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4132,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4133,"config":4137,"_id":4138,"_type":31,"title":4134,"_source":33,"_file":4139,"_stem":4140,"_extension":36},"/en-us/blog/authors/jim-riley",{"name":4134,"config":4135},"Jim Riley",{"headshot":7,"ctfId":4136},"GitLabcom-username-jrileyinva",{"template":685},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4142,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4143,"config":4147,"_id":4148,"_type":31,"title":4144,"_source":33,"_file":4149,"_stem":4150,"_extension":36},"/en-us/blog/authors/jim-thavisouk",{"name":4144,"config":4145},"Jim Thavisouk",{"headshot":716,"ctfId":4146},"jimthavisouk",{"template":685},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4152,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4153,"config":4157,"_id":4158,"_type":31,"title":4159,"_source":33,"_file":4160,"_stem":4161,"_extension":36},"/en-us/blog/authors/job-van-der-voort",{"name":4154,"config":4155},"Job van der Voort",{"headshot":716,"ctfId":4156},"Job-van-der-Voort",{"template":685},"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":4163,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4164,"config":4169,"_id":4170,"_type":31,"title":4165,"_source":33,"_file":4171,"_stem":4172,"_extension":36},"/en-us/blog/authors/jocelyn-eillis",{"name":4165,"config":4166},"Jocelyn Eillis",{"headshot":4167,"ctfId":4168},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":685},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4174,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4175,"config":4179,"_id":4180,"_type":31,"title":4176,"_source":33,"_file":4181,"_stem":4182,"_extension":36},"/en-us/blog/authors/jochen-roth",{"name":4176,"config":4177},"Jochen Roth",{"headshot":7,"ctfId":4178},"ochorocho",{"template":685},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4184,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4185,"config":4190,"_id":4191,"_type":31,"title":4186,"_source":33,"_file":4192,"_stem":4193,"_extension":36},"/en-us/blog/authors/joe-randazzo",{"name":4186,"config":4187},"Joe Randazzo",{"headshot":4188,"ctfId":4189},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":685},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4195,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4196,"config":4201,"_id":4202,"_type":31,"title":4197,"_source":33,"_file":4203,"_stem":4204,"_extension":36},"/en-us/blog/authors/joel-krooswyk",{"name":4197,"config":4198},"Joel Krooswyk",{"headshot":4199,"ctfId":4200},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":685},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4206,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4207,"config":4212,"_id":4213,"_type":31,"title":4208,"_source":33,"_file":4214,"_stem":4215,"_extension":36},"/en-us/blog/authors/joern-schneeweisz",{"name":4208,"config":4209},"Joern Schneeweisz",{"headshot":4210,"ctfId":4211},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":685},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4217,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4218,"config":4222,"_id":4223,"_type":31,"title":4219,"_source":33,"_file":4224,"_stem":4225,"_extension":36},"/en-us/blog/authors/joey-salazar",{"name":4219,"config":4220},"Joey Salazar",{"headshot":716,"ctfId":4221},"4LgUP4bzQV6kuhoZNFID9r",{"template":685},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4227,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4228,"config":4232,"_id":4233,"_type":31,"title":4229,"_source":33,"_file":4234,"_stem":4235,"_extension":36},"/en-us/blog/authors/johanna-ambrosio",{"name":4229,"config":4230},"Johanna Ambrosio",{"headshot":716,"ctfId":4231},"Johanna-Ambrosio",{"template":685},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4237,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4238,"config":4243,"_id":4244,"_type":31,"title":4239,"_source":33,"_file":4245,"_stem":4246,"_extension":36},"/en-us/blog/authors/johannes-bauer",{"name":4239,"config":4240},"Johannes Bauer",{"headshot":4241,"ctfId":4242},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":685},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4248,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4249,"config":4254,"_id":4255,"_type":31,"title":4250,"_source":33,"_file":4256,"_stem":4257,"_extension":36},"/en-us/blog/authors/john-cai",{"name":4250,"config":4251},"John Cai",{"headshot":4252,"ctfId":4253},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":685},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4259,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4260,"config":4265,"_id":4266,"_type":31,"title":4261,"_source":33,"_file":4267,"_stem":4268,"_extension":36},"/en-us/blog/authors/john-coghlan",{"name":4261,"config":4262},"John Coghlan",{"headshot":4263,"ctfId":4264},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":685},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4270,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4271,"config":4276,"_id":4277,"_type":31,"title":4272,"_source":33,"_file":4278,"_stem":4279,"_extension":36},"/en-us/blog/authors/john-crowley",{"name":4272,"config":4273},"John Crowley",{"headshot":4274,"ctfId":4275},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":685},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4281,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4282,"config":4287,"_id":4288,"_type":31,"title":4283,"_source":33,"_file":4289,"_stem":4290,"_extension":36},"/en-us/blog/authors/john-jarvis",{"name":4283,"config":4284},"John Jarvis",{"headshot":4285,"ctfId":4286},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":685},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4292,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4293,"config":4297,"_id":4298,"_type":31,"title":4294,"_source":33,"_file":4299,"_stem":4300,"_extension":36},"/en-us/blog/authors/john-jeremiah",{"name":4294,"config":4295},"John Jeremiah",{"headshot":716,"ctfId":4296},"johnjeremiah",{"template":685},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4302,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4303,"config":4307,"_id":4308,"_type":31,"title":4309,"_source":33,"_file":4310,"_stem":4311,"_extension":36},"/en-us/blog/authors/john-mcguire",{"name":4304,"config":4305},"John McGuire",{"headshot":716,"ctfId":4306},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":685},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4313,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4314,"config":4318,"_id":4320,"_type":31,"title":4315,"_source":33,"_file":4321,"_stem":4322,"_extension":36},"/en-us/blog/authors/john-skarbek",{"name":4315,"config":4316},"John Skarbek",{"headshot":4317},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":685,"gitlabHandle":4319},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4324,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4325,"config":4329,"_id":4330,"_type":31,"title":4326,"_source":33,"_file":4331,"_stem":4332,"_extension":36},"/en-us/blog/authors/john-sparrow",{"name":4326,"config":4327},"John Sparrow",{"headshot":716,"ctfId":4328},"John-Sparrow",{"template":685},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4334,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4335,"config":4339,"_id":4340,"_type":31,"title":4336,"_source":33,"_file":4341,"_stem":4342,"_extension":36},"/en-us/blog/authors/johnathan-hunt",{"name":4336,"config":4337},"Johnathan Hunt",{"headshot":716,"ctfId":4338},"JohnathanHunt",{"template":685},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4344,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4345,"config":4349,"_id":4350,"_type":31,"title":4346,"_source":33,"_file":4351,"_stem":4352,"_extension":36},"/en-us/blog/authors/joni-klippert",{"name":4346,"config":4347},"Joni Klippert",{"headshot":716,"ctfId":4348},"Joni-Klippert",{"template":685},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4354,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4355,"config":4360,"_id":4361,"_type":31,"title":4362,"_source":33,"_file":4363,"_stem":4364,"_extension":36},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4356,"config":4357},"João Alexandre Prado Tavares Cunha",{"headshot":4358,"ctfId":4359},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":685},"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":4366,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4367,"config":4372,"_id":4373,"_type":31,"title":4374,"_source":33,"_file":4375,"_stem":4376,"_extension":36},"/en-us/blog/authors/joo-pereira",{"name":4368,"config":4369},"João Pereira",{"headshot":4370,"ctfId":4371},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":685},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4378,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4379,"config":4383,"_id":4384,"_type":31,"title":4380,"_source":33,"_file":4385,"_stem":4386,"_extension":36},"/en-us/blog/authors/jordi-mon",{"name":4380,"config":4381},"Jordi Mon",{"headshot":7,"ctfId":4382},"jordimon",{"template":685},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4388,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4389,"config":4394,"_id":4395,"_type":31,"title":4396,"_source":33,"_file":4397,"_stem":4398,"_extension":36},"/en-us/blog/authors/jos-ivn-vargas",{"name":4390,"config":4391},"José Iván Vargas",{"headshot":4392,"ctfId":4393},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":685},"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":4400,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4401,"config":4405,"_id":4406,"_type":31,"title":4402,"_source":33,"_file":4407,"_stem":4408,"_extension":36},"/en-us/blog/authors/jose-finotto",{"name":4402,"config":4403},"Jose Finotto",{"headshot":7,"ctfId":4404},"finotto",{"template":685},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4410,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4411,"config":4415,"_id":4417,"_type":31,"title":4414,"_source":33,"_file":4418,"_stem":4419,"_extension":36},"/en-us/blog/authors/joseph-burnett",{"config":4412,"name":4414},{"headshot":4413},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":685,"gitlabHandle":4416},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4421,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4422,"config":4427,"_id":4428,"_type":31,"title":4423,"_source":33,"_file":4429,"_stem":4430,"_extension":36},"/en-us/blog/authors/joseph-longo",{"name":4423,"config":4424},"Joseph Longo",{"headshot":4425,"ctfId":4426},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":685},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4432,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4433,"config":4437,"_id":4438,"_type":31,"title":4439,"_source":33,"_file":4440,"_stem":4441,"_extension":36},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4434,"config":4435},"Joseph Schorr from CoreOS",{"headshot":716,"ctfId":4436},"Joseph-Schorr-from-CoreOS",{"template":685},"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":4443,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4444,"config":4449,"_id":4450,"_type":31,"title":4445,"_source":33,"_file":4451,"_stem":4452,"_extension":36},"/en-us/blog/authors/josh-feehs",{"name":4445,"config":4446},"Josh Feehs",{"headshot":4447,"ctfId":4448},"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":685},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4454,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4455,"config":4461,"_id":4462,"_type":31,"title":4463,"_source":33,"_file":4464,"_stem":4465,"_extension":36},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4456,"name":4457,"config":4458},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4459,"ctfId":4460},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":685},"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":4467,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4468,"config":4472,"_id":4473,"_type":31,"title":4469,"_source":33,"_file":4474,"_stem":4475,"_extension":36},"/en-us/blog/authors/josh-zimmerman",{"name":4469,"config":4470},"Josh Zimmerman",{"headshot":7,"ctfId":4471},"JoshZimmerman",{"template":685},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4477,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4478,"config":4483,"_id":4484,"_type":31,"title":4479,"_source":33,"_file":4485,"_stem":4486,"_extension":36},"/en-us/blog/authors/joshua-carroll",{"name":4479,"config":4480},"Joshua Carroll",{"headshot":4481,"ctfId":4482},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":685},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4488,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4489,"config":4494,"_id":4495,"_type":31,"title":4490,"_source":33,"_file":4496,"_stem":4497,"_extension":36},"/en-us/blog/authors/joshua-lambert",{"name":4490,"config":4491},"Joshua Lambert",{"headshot":4492,"ctfId":4493},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":685},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4499,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4500,"config":4504,"_id":4505,"_type":31,"title":4501,"_source":33,"_file":4506,"_stem":4507,"_extension":36},"/en-us/blog/authors/joyce-tompsett",{"name":4501,"config":4502},"Joyce Tompsett",{"headshot":7,"ctfId":4503},"Tompsett",{"template":685},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4509,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4510,"config":4514,"_id":4515,"_type":31,"title":4511,"_source":33,"_file":4516,"_stem":4517,"_extension":36},"/en-us/blog/authors/juan-broullon",{"name":4511,"config":4512},"Juan Broullon",{"headshot":7,"ctfId":4513},"jbroullon",{"template":685},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4519,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4520,"config":4524,"_id":4525,"_type":31,"title":4521,"_source":33,"_file":4526,"_stem":4527,"_extension":36},"/en-us/blog/authors/julia-lake",{"name":4521,"config":4522},"Julia Lake",{"headshot":716,"ctfId":4523},"5i9IDwCDDg3lfkiu9T3edZ",{"template":685},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4529,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4530,"config":4535,"_id":4536,"_type":31,"title":4531,"_source":33,"_file":4537,"_stem":4538,"_extension":36},"/en-us/blog/authors/julia-miocene",{"name":4531,"config":4532},"Julia Miocene",{"headshot":4533,"ctfId":4534},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":685},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4540,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4541,"config":4545,"_id":4546,"_type":31,"title":4542,"_source":33,"_file":4547,"_stem":4548,"_extension":36},"/en-us/blog/authors/julian-thome",{"name":4542,"config":4543},"Julian Thome",{"headshot":7,"ctfId":4544},"jthome",{"template":685},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4550,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4551,"config":4556,"_id":4557,"_type":31,"title":4552,"_source":33,"_file":4558,"_stem":4559,"_extension":36},"/en-us/blog/authors/julie-byrne",{"name":4552,"config":4553},"Julie Byrne",{"headshot":4554,"ctfId":4555},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":685},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4561,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4562,"config":4567,"_id":4568,"_type":31,"title":4563,"_source":33,"_file":4569,"_stem":4570,"_extension":36},"/en-us/blog/authors/julie-griffin",{"name":4563,"config":4564},"Julie Griffin",{"headshot":4565,"ctfId":4566},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":685},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4572,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4573,"config":4577,"_id":4578,"_type":31,"title":4574,"_source":33,"_file":4579,"_stem":4580,"_extension":36},"/en-us/blog/authors/julien-andrieux",{"name":4574,"config":4575},"Julien Andrieux",{"headshot":716,"ctfId":4576},"Julien-Andrieux",{"template":685},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4582,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4583,"config":4588,"_id":4589,"_type":31,"title":4584,"_source":33,"_file":4590,"_stem":4591,"_extension":36},"/en-us/blog/authors/juliet-wanjohi",{"name":4584,"config":4585},"Juliet Wanjohi",{"headshot":4586,"ctfId":4587},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":685},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4593,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4594,"config":4598,"_id":4599,"_type":31,"title":4595,"_source":33,"_file":4600,"_stem":4601,"_extension":36},"/en-us/blog/authors/justin-farris",{"name":4595,"config":4596},"Justin Farris",{"headshot":716,"ctfId":4597},"5RHYudAlWLmSj5U7AOIcbG",{"template":685},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4603,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4604,"config":4609,"_id":4610,"_type":31,"title":4605,"_source":33,"_file":4611,"_stem":4612,"_extension":36},"/en-us/blog/authors/justin-tobler",{"name":4605,"config":4606},"Justin Tobler",{"headshot":4607,"ctfId":4608},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":685},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4614,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4615,"config":4620,"_id":4621,"_type":31,"title":4616,"_source":33,"_file":4622,"_stem":4623,"_extension":36},"/en-us/blog/authors/kai-armstrong",{"name":4616,"config":4617},"Kai Armstrong",{"headshot":4618,"ctfId":4619},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":685},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4625,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4626,"config":4630,"_id":4631,"_type":31,"title":4632,"_source":33,"_file":4633,"_stem":4634,"_extension":36},"/en-us/blog/authors/kamil-trzciski",{"name":4627,"config":4628},"Kamil Trzciński",{"headshot":716,"ctfId":4629},"Kamil-Trzciski",{"template":685},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4636,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4637,"config":4641,"_id":4642,"_type":31,"title":4643,"_source":33,"_file":4644,"_stem":4645,"_extension":36},"/en-us/blog/authors/karen-caras",{"name":4638,"config":4639},"Karen Carías",{"headshot":716,"ctfId":4640},"Karen-Caras",{"template":685},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4647,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4648,"config":4653,"_id":4654,"_type":31,"title":4649,"_source":33,"_file":4655,"_stem":4656,"_extension":36},"/en-us/blog/authors/karthik-nayak",{"name":4649,"config":4650},"Karthik Nayak",{"headshot":4651,"ctfId":4652},"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":685},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4658,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4659,"config":4663,"_id":4664,"_type":31,"title":4660,"_source":33,"_file":4665,"_stem":4666,"_extension":36},"/en-us/blog/authors/katherine-okpara",{"name":4660,"config":4661},"Katherine Okpara",{"headshot":7,"ctfId":4662},"katokpara",{"template":685},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4668,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4669,"config":4673,"_id":4674,"_type":31,"title":4670,"_source":33,"_file":4675,"_stem":4676,"_extension":36},"/en-us/blog/authors/kathy-wang",{"name":4670,"config":4671},"Kathy Wang",{"headshot":7,"ctfId":4672},"kathyw",{"template":685},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4678,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4679,"config":4683,"_id":4684,"_type":31,"title":4685,"_source":33,"_file":4686,"_stem":4687,"_extension":36},"/en-us/blog/authors/keanon-okeefe",{"name":4680,"config":4681},"Keanon O’Keefe",{"headshot":7,"ctfId":4682},"kokeefe",{"template":685},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4689,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4690,"config":4695,"_id":4696,"_type":31,"title":4691,"_source":33,"_file":4697,"_stem":4698,"_extension":36},"/en-us/blog/authors/kees-valkhof",{"name":4691,"role":4692,"config":4693},"Kees Valkhof","Configuration manager at Lely",{"headshot":4694},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":685},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4700,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4701,"config":4705,"_id":4706,"_type":31,"title":4702,"_source":33,"_file":4707,"_stem":4708,"_extension":36},"/en-us/blog/authors/kelly-hair",{"name":4702,"config":4703},"Kelly Hair",{"headshot":716,"ctfId":4704},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":685},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4710,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4711,"config":4715,"_id":4716,"_type":31,"title":4712,"_source":33,"_file":4717,"_stem":4718,"_extension":36},"/en-us/blog/authors/kendra-marquart",{"name":4712,"config":4713},"Kendra Marquart",{"headshot":7,"ctfId":4714},"kmarquart",{"template":685},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4720,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4721,"config":4725,"_id":4726,"_type":31,"title":4722,"_source":33,"_file":4727,"_stem":4728,"_extension":36},"/en-us/blog/authors/kenny-johnston",{"name":4722,"config":4723},"Kenny Johnston",{"headshot":7,"ctfId":4724},"kencjohnston",{"template":685},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4730,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4731,"config":4736,"_id":4737,"_type":31,"title":4732,"_source":33,"_file":4738,"_stem":4739,"_extension":36},"/en-us/blog/authors/kevin-chu",{"name":4732,"config":4733},"Kevin Chu",{"headshot":4734,"ctfId":4735},"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":685},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4741,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4742,"config":4747,"_id":4748,"_type":31,"title":4743,"_source":33,"_file":4749,"_stem":4750,"_extension":36},"/en-us/blog/authors/kevin-morrison",{"name":4743,"config":4744},"Kevin Morrison",{"headshot":4745,"ctfId":4746},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":685},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4752,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4753,"config":4757,"_id":4758,"_type":31,"title":4754,"_source":33,"_file":4759,"_stem":4760,"_extension":36},"/en-us/blog/authors/khrystyna-humenna",{"name":4754,"config":4755},"Khrystyna Humenna",{"headshot":716,"ctfId":4756},"Khrystyna-Humenna",{"template":685},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4762,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4763,"config":4767,"_id":4768,"_type":31,"title":4764,"_source":33,"_file":4769,"_stem":4770,"_extension":36},"/en-us/blog/authors/kim-lock",{"name":4764,"config":4765},"Kim Lock",{"headshot":7,"ctfId":4766},"KimLock",{"template":685},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4772,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4773,"config":4777,"_id":4778,"_type":31,"title":4774,"_source":33,"_file":4779,"_stem":4780,"_extension":36},"/en-us/blog/authors/kirsten-abma",{"name":4774,"config":4775},"Kirsten Abma",{"headshot":716,"ctfId":4776},"Kirsten-Abma",{"template":685},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4782,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4783,"config":4787,"_id":4788,"_type":31,"title":4784,"_source":33,"_file":4789,"_stem":4790,"_extension":36},"/en-us/blog/authors/kristian-larsson",{"name":4784,"config":4785},"Kristian Larsson",{"headshot":716,"ctfId":4786},"Kristian-Larsson",{"template":685},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4792,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4793,"config":4798,"_id":4799,"_type":31,"title":4794,"_source":33,"_file":4800,"_stem":4801,"_extension":36},"/en-us/blog/authors/kristina-weis",{"name":4794,"config":4795},"Kristina Weis",{"headshot":4796,"ctfId":4797},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":685},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4803,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4804,"config":4808,"_id":4809,"_type":31,"title":4805,"_source":33,"_file":4810,"_stem":4811,"_extension":36},"/en-us/blog/authors/kurt-dusek",{"name":4805,"config":4806},"Kurt Dusek",{"headshot":7,"ctfId":4807},"kdusek",{"template":685},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4813,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4814,"config":4818,"_id":4819,"_type":31,"title":4815,"_source":33,"_file":4820,"_stem":4821,"_extension":36},"/en-us/blog/authors/kushal-koolwal",{"name":4815,"config":4816},"Kushal Koolwal",{"headshot":716,"ctfId":4817},"Kushal-Koolwal",{"template":685},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4823,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4824,"config":4829,"_id":4830,"_type":31,"title":4825,"_source":33,"_file":4831,"_stem":4832,"_extension":36},"/en-us/blog/authors/kushal-pandya",{"name":4825,"config":4826},"Kushal Pandya",{"headshot":4827,"ctfId":4828},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":685},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4834,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4835,"config":4839,"_id":4840,"_type":31,"title":4836,"_source":33,"_file":4841,"_stem":4842,"_extension":36},"/en-us/blog/authors/kwan-lee",{"name":4836,"config":4837},"Kwan Lee",{"headshot":716,"ctfId":4838},"Kwan-Lee",{"template":685},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4844,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4845,"config":4850,"_id":4851,"_type":31,"title":4846,"_source":33,"_file":4852,"_stem":4853,"_extension":36},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4846,"config":4847},"Kyla Gradin Dahl",{"headshot":4848,"ctfId":4849},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":685},"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":4855,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4856,"config":4860,"_id":4861,"_type":31,"title":4857,"_source":33,"_file":4862,"_stem":4863,"_extension":36},"/en-us/blog/authors/kyle-mann",{"name":4857,"config":4858},"Kyle Mann",{"headshot":716,"ctfId":4859},"44YiW1r6sTpbC9wKBeHGgE",{"template":685},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4865,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4866,"config":4871,"_id":4872,"_type":31,"title":4867,"_source":33,"_file":4873,"_stem":4874,"_extension":36},"/en-us/blog/authors/kyle-smith",{"name":4867,"config":4868},"Kyle Smith",{"headshot":4869,"ctfId":4870},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":685},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4876,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4877,"config":4881,"_id":4883,"_type":31,"title":4878,"_source":33,"_file":4884,"_stem":4885,"_extension":36},"/en-us/blog/authors/kymberlee-price",{"name":4878,"config":4879},"Kymberlee Price",{"headshot":4880},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":685,"gitlabHandle":4882},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4887,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4888,"config":4892,"_id":4893,"_type":31,"title":4889,"_source":33,"_file":4894,"_stem":4895,"_extension":36},"/en-us/blog/authors/lasse-schuirmann",{"name":4889,"config":4890},"Lasse Schuirmann",{"headshot":716,"ctfId":4891},"5vpo2ZOrPIS8PBp3k47S6w",{"template":685},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4897,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4898,"config":4902,"_id":4903,"_type":31,"title":4899,"_source":33,"_file":4904,"_stem":4905,"_extension":36},"/en-us/blog/authors/laura-montemayor",{"name":4899,"config":4900},"Laura Montemayor",{"headshot":7,"ctfId":4901},"lauraMon",{"template":685},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4907,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4908,"config":4913,"_id":4914,"_type":31,"title":4909,"_source":33,"_file":4915,"_stem":4916,"_extension":36},"/en-us/blog/authors/lauren-barker",{"name":4909,"config":4910},"Lauren Barker",{"headshot":4911,"ctfId":4912},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":685},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4918,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4919,"config":4923,"_id":4924,"_type":31,"title":4920,"_source":33,"_file":4925,"_stem":4926,"_extension":36},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4920,"config":4921},"Lauren Gibbons Paul",{"headshot":716,"ctfId":4922},"Lauren-Gibbons-Paul",{"template":685},"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":4928,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4929,"config":4933,"_id":4934,"_type":31,"title":4930,"_source":33,"_file":4935,"_stem":4936,"_extension":36},"/en-us/blog/authors/lauren-minning",{"name":4930,"config":4931},"Lauren Minning",{"headshot":7,"ctfId":4932},"lminning",{"template":685},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":4938,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4939,"config":4944,"_id":4945,"_type":31,"title":4940,"_source":33,"_file":4946,"_stem":4947,"_extension":36},"/en-us/blog/authors/laurena-alves",{"name":4940,"config":4941},"Laurena Alves",{"headshot":4942,"ctfId":4943},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":685},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":4949,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4950,"config":4955,"_id":4956,"_type":31,"title":4951,"_source":33,"_file":4957,"_stem":4958,"_extension":36},"/en-us/blog/authors/lee-faus",{"name":4951,"config":4952},"Lee Faus",{"headshot":4953,"ctfId":4954},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":685},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":4960,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4961,"config":4966,"_id":4967,"_type":31,"title":4962,"_source":33,"_file":4968,"_stem":4969,"_extension":36},"/en-us/blog/authors/lee-matos",{"name":4962,"config":4963},"Lee Matos",{"headshot":4964,"ctfId":4965},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":685},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":4971,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4972,"config":4977,"_id":4978,"_type":31,"title":4973,"_source":33,"_file":4979,"_stem":4980,"_extension":36},"/en-us/blog/authors/lee-tickett",{"name":4973,"config":4974},"Lee Tickett",{"headshot":4975,"ctfId":4976},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":685},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":4982,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4983,"config":4987,"_id":4988,"_type":31,"title":4984,"_source":33,"_file":4989,"_stem":4990,"_extension":36},"/en-us/blog/authors/levente-polyak",{"name":4984,"config":4985},"Levente Polyak",{"headshot":7,"ctfId":4986},"anthraxx",{"template":685},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":4992,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":4993,"config":4998,"_id":4999,"_type":31,"title":5000,"_source":33,"_file":5001,"_stem":5002,"_extension":36},"/en-us/blog/authors/lin-jen-shin",{"name":4994,"config":4995},"Lin Jen-Shin",{"headshot":4996,"ctfId":4997},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":685},"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":5004,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5005,"config":5010,"_id":5011,"_type":31,"title":5006,"_source":33,"_file":5012,"_stem":5013,"_extension":36},"/en-us/blog/authors/liz-coleman",{"name":5006,"config":5007},"Liz Coleman",{"headshot":5008,"ctfId":5009},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":685},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5015,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5016,"config":5021,"_id":5022,"_type":31,"title":5017,"_source":33,"_file":5023,"_stem":5024,"_extension":36},"/en-us/blog/authors/loryn-bortins",{"name":5017,"config":5018},"Loryn Bortins",{"headshot":5019,"ctfId":5020},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":685},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5026,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5027,"config":5031,"_id":5032,"_type":31,"title":5028,"_source":33,"_file":5033,"_stem":5034,"_extension":36},"/en-us/blog/authors/lucas-charles",{"name":5028,"config":5029},"Lucas Charles",{"headshot":716,"ctfId":5030},"01OUkmRJImMowxMk3YHGNS",{"template":685},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5036,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5037,"config":5041,"_id":5042,"_type":31,"title":5038,"_source":33,"_file":5043,"_stem":5044,"_extension":36},"/en-us/blog/authors/luka-trbojevic",{"name":5038,"config":5039},"Luka Trbojevic",{"headshot":7,"ctfId":5040},"ltrbojevic",{"template":685},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5046,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5047,"config":5051,"_id":5052,"_type":31,"title":5048,"_source":33,"_file":5053,"_stem":5054,"_extension":36},"/en-us/blog/authors/lukas-eipert",{"name":5048,"config":5049},"Lukas Eipert",{"headshot":716,"ctfId":5050},"37PO8stm7JUQgglr4tWcmw",{"template":685},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5056,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5057,"config":5062,"_id":5063,"_type":31,"title":5058,"_source":33,"_file":5064,"_stem":5065,"_extension":36},"/en-us/blog/authors/lyle-kozloff",{"name":5058,"config":5059},"Lyle Kozloff",{"headshot":5060,"ctfId":5061},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":685},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5067,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5068,"config":5073,"_id":5074,"_type":31,"title":5069,"_source":33,"_file":5075,"_stem":5076,"_extension":36},"/en-us/blog/authors/madeline-lake",{"name":5069,"config":5070},"Madeline Lake",{"headshot":5071,"ctfId":5072},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":685},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5078,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5079,"config":5084,"_id":5085,"_type":31,"title":5080,"_source":33,"_file":5086,"_stem":5087,"_extension":36},"/en-us/blog/authors/madou-coulibaly",{"name":5080,"config":5081},"Madou Coulibaly",{"headshot":5082,"ctfId":5083},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":685},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5089,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5090,"config":5095,"_id":5096,"_type":31,"title":5091,"_source":33,"_file":5097,"_stem":5098,"_extension":36},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5091,"config":5092},"Magdalena Frankiewicz",{"headshot":5093,"ctfId":5094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":685},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5100,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5101,"config":5105,"_id":5106,"_type":31,"title":5102,"_source":33,"_file":5107,"_stem":5108,"_extension":36},"/en-us/blog/authors/mahesh-kumar",{"name":5102,"config":5103},"Mahesh Kumar",{"headshot":716,"ctfId":5104},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":685},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5110,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5111,"config":5116,"_id":5117,"_type":31,"title":5112,"_source":33,"_file":5118,"_stem":5119,"_extension":36},"/en-us/blog/authors/manav-khurana",{"name":5112,"config":5113,"role":5115},"Manav Khurana",{"headshot":5114},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":685,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5121,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5122,"config":5127,"_id":5128,"_type":31,"title":5123,"_source":33,"_file":5129,"_stem":5130,"_extension":36},"/en-us/blog/authors/manuel-kraft",{"name":5123,"config":5124},"Manuel Kraft",{"headshot":5125,"ctfId":5126},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":685},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5132,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5133,"config":5137,"_id":5138,"_type":31,"title":5134,"_source":33,"_file":5139,"_stem":5140,"_extension":36},"/en-us/blog/authors/marc-radulescu",{"name":5134,"config":5135},"Marc Radulescu",{"headshot":716,"ctfId":5136},"Marc-Radulescu",{"template":685},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5142,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5143,"config":5148,"_id":5149,"_type":31,"title":5144,"_source":33,"_file":5150,"_stem":5151,"_extension":36},"/en-us/blog/authors/marc-shaw",{"name":5144,"config":5145},"Marc Shaw",{"headshot":5146,"ctfId":5147},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":685},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5153,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5154,"config":5159,"_id":5160,"_type":31,"title":5161,"_source":33,"_file":5162,"_stem":5163,"_extension":36},"/en-us/blog/authors/marcel-van-remmerden",{"name":5155,"config":5156},"Marcel van Remmerden",{"headshot":5157,"ctfId":5158},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":685},"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":5165,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5166,"config":5170,"_id":5171,"_type":31,"title":5167,"_source":33,"_file":5172,"_stem":5173,"_extension":36},"/en-us/blog/authors/marcia-ramos",{"name":5167,"config":5168},"Marcia Ramos",{"headshot":716,"ctfId":5169},"Marcia-Ramos",{"template":685},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5175,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5176,"config":5180,"_id":5181,"_type":31,"title":5177,"_source":33,"_file":5182,"_stem":5183,"_extension":36},"/en-us/blog/authors/marco-lenzo",{"name":5177,"config":5178},"Marco Lenzo",{"headshot":716,"ctfId":5179},"Marco-Lenzo",{"template":685},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5185,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5186,"config":5190,"_id":5191,"_type":31,"title":5187,"_source":33,"_file":5192,"_stem":5193,"_extension":36},"/en-us/blog/authors/marie-hargitt",{"name":5187,"config":5188},"Marie Hargitt",{"headshot":716,"ctfId":5189},"Marie-Hargitt",{"template":685},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5195,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5196,"config":5201,"_id":5202,"_type":31,"title":5197,"_source":33,"_file":5203,"_stem":5204,"_extension":36},"/en-us/blog/authors/marin-jankovski",{"name":5197,"config":5198},"Marin Jankovski",{"headshot":5199,"ctfId":5200},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":685},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5206,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5207,"config":5211,"_id":5212,"_type":31,"title":5213,"_source":33,"_file":5214,"_stem":5215,"_extension":36},"/en-us/blog/authors/marin-job",{"name":5208,"config":5209},"Marin, Job",{"headshot":716,"ctfId":5210},"Marin-Job",{"template":685},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5217,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5218,"config":5222,"_id":5223,"_type":31,"title":5224,"_source":33,"_file":5225,"_stem":5226,"_extension":36},"/en-us/blog/authors/mario-de-la-ossa",{"name":5219,"config":5220},"Mario de la Ossa",{"headshot":7,"ctfId":5221},"mdelaossa",{"template":685},"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":5228,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5229,"config":5233,"_id":5234,"_type":31,"title":5230,"_source":33,"_file":5235,"_stem":5236,"_extension":36},"/en-us/blog/authors/mark-art",{"name":5230,"config":5231},"Mark Art",{"headshot":716,"ctfId":5232},"55KCfyNmgPaJRmBZhiN7k5",{"template":685},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5238,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5239,"config":5243,"_id":5244,"_type":31,"title":5240,"_source":33,"_file":5245,"_stem":5246,"_extension":36},"/en-us/blog/authors/mark-fletcher",{"name":5240,"config":5241},"Mark Fletcher",{"headshot":7,"ctfId":5242},"markglenfletcher",{"template":685},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5248,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5249,"config":5254,"_id":5255,"_type":31,"title":5250,"_source":33,"_file":5256,"_stem":5257,"_extension":36},"/en-us/blog/authors/mark-lapierre",{"name":5250,"config":5251},"Mark Lapierre",{"headshot":5252,"ctfId":5253},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":685},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5259,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5260,"config":5265,"_id":5266,"_type":31,"title":5261,"_source":33,"_file":5267,"_stem":5268,"_extension":36},"/en-us/blog/authors/mark-loveless",{"name":5261,"config":5262},"Mark Loveless",{"headshot":5263,"ctfId":5264},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":685},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5270,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5271,"config":5275,"_id":5276,"_type":31,"title":5272,"_source":33,"_file":5277,"_stem":5278,"_extension":36},"/en-us/blog/authors/mark-pundsack",{"name":5272,"config":5273},"Mark Pundsack",{"headshot":716,"ctfId":5274},"markpundsack",{"template":685},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5280,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5281,"config":5286,"_id":5287,"_type":31,"title":5288,"_source":33,"_file":5289,"_stem":5290,"_extension":36},"/en-us/blog/authors/martin-brmmer",{"name":5282,"config":5283},"Martin Brümmer",{"headshot":5284,"ctfId":5285},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":685},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5292,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5293,"config":5297,"_id":5298,"_type":31,"title":5294,"_source":33,"_file":5299,"_stem":5300,"_extension":36},"/en-us/blog/authors/martynas-krupskis",{"name":5294,"config":5295},"Martynas Krupskis",{"headshot":716,"ctfId":5296},"3tK5S0f4QshGFGRrdEl7rn",{"template":685},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5302,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5303,"config":5307,"_id":5308,"_type":31,"title":5304,"_source":33,"_file":5309,"_stem":5310,"_extension":36},"/en-us/blog/authors/matej-latin",{"name":5304,"config":5305},"Matej Latin",{"headshot":7,"ctfId":5306},"matejlatin",{"template":685},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5312,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5313,"config":5318,"_id":5319,"_type":31,"title":5314,"_source":33,"_file":5320,"_stem":5321,"_extension":36},"/en-us/blog/authors/mathias-ewald",{"name":5314,"config":5315},"Mathias Ewald",{"headshot":5316,"ctfId":5317},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":685},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5323,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5324,"config":5328,"_id":5329,"_type":31,"title":5325,"_source":33,"_file":5330,"_stem":5331,"_extension":36},"/en-us/blog/authors/matt-baldwin",{"name":5325,"config":5326},"Matt Baldwin",{"headshot":716,"ctfId":5327},"Matt-Baldwin",{"template":685},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5333,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5334,"config":5339,"_id":5340,"_type":31,"title":5335,"_source":33,"_file":5341,"_stem":5342,"_extension":36},"/en-us/blog/authors/matt-coons",{"name":5335,"config":5336},"Matt Coons",{"headshot":5337,"ctfId":5338},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":685},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5344,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5345,"config":5350,"_id":5351,"_type":31,"title":5352,"_source":33,"_file":5353,"_stem":5354,"_extension":36},"/en-us/blog/authors/matt-delaney",{"name":5346,"config":5347},"Matt DeLaney",{"headshot":5348,"ctfId":5349},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":685},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5356,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5357,"config":5362,"_id":5363,"_type":31,"title":5358,"_source":33,"_file":5364,"_stem":5365,"_extension":36},"/en-us/blog/authors/matt-genelin",{"name":5358,"config":5359},"Matt Genelin",{"headshot":5360,"ctfId":5361},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":685},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5367,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5368,"config":5372,"_id":5373,"_type":31,"title":5369,"_source":33,"_file":5374,"_stem":5375,"_extension":36},"/en-us/blog/authors/matt-nguyen",{"name":5369,"config":5370},"Matt Nguyen",{"headshot":716,"ctfId":5371},"Matt-Nguyen",{"template":685},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5377,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5378,"config":5383,"_id":5384,"_type":31,"title":5379,"_source":33,"_file":5385,"_stem":5386,"_extension":36},"/en-us/blog/authors/matt-nohr",{"name":5379,"config":5380},"Matt Nohr",{"headshot":5381,"ctfId":5382},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":685},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5388,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5389,"config":5394,"_id":5395,"_type":31,"title":5390,"_source":33,"_file":5396,"_stem":5397,"_extension":36},"/en-us/blog/authors/matt-smiley",{"name":5390,"config":5391},"Matt Smiley",{"headshot":5392,"ctfId":5393},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":685},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5399,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5400,"config":5404,"_id":5405,"_type":31,"title":5401,"_source":33,"_file":5406,"_stem":5407,"_extension":36},"/en-us/blog/authors/matt-wilson",{"name":5401,"config":5402},"Matt Wilson",{"headshot":716,"ctfId":5403},"mattwilson",{"template":685},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5409,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5410,"config":5415,"_id":5416,"_type":31,"title":5411,"_source":33,"_file":5417,"_stem":5418,"_extension":36},"/en-us/blog/authors/matthew-macfarlane",{"name":5411,"config":5412},"Matthew Macfarlane",{"headshot":5413,"ctfId":5414},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":685},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5420,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5421,"config":5426,"_id":5427,"_type":31,"title":5422,"_source":33,"_file":5428,"_stem":5429,"_extension":36},"/en-us/blog/authors/matthew-nearents",{"name":5422,"config":5423},"Matthew Nearents",{"headshot":5424,"ctfId":5425},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":685},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5431,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5432,"config":5437,"_id":5438,"_type":31,"title":5439,"_source":33,"_file":5440,"_stem":5441,"_extension":36},"/en-us/blog/authors/matthias-kppler",{"name":5433,"config":5434},"Matthias Käppler",{"headshot":5435,"ctfId":5436},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":685},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5443,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5444,"config":5448,"_id":5449,"_type":31,"title":5445,"_source":33,"_file":5450,"_stem":5451,"_extension":36},"/en-us/blog/authors/matthieu-fronton",{"name":5445,"config":5446},"Matthieu Fronton",{"headshot":7,"ctfId":5447},"frntn",{"template":685},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5453,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5454,"config":5458,"_id":5459,"_type":31,"title":5455,"_source":33,"_file":5460,"_stem":5461,"_extension":36},"/en-us/blog/authors/max-woolf",{"name":5455,"config":5456},"Max Woolf",{"headshot":716,"ctfId":5457},"Max-Woolf",{"template":685},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5463,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5464,"config":5469,"_id":5470,"_type":31,"title":5465,"_source":33,"_file":5471,"_stem":5472,"_extension":36},"/en-us/blog/authors/maximilien-belinga",{"name":5465,"config":5466},"Maximilien Belinga",{"headshot":5467,"ctfId":5468},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":685},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5474,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5475,"config":5479,"_id":5480,"_type":31,"title":5476,"_source":33,"_file":5481,"_stem":5482,"_extension":36},"/en-us/blog/authors/mayank-tahilramani",{"name":5476,"config":5477},"Mayank Tahilramani",{"headshot":7,"ctfId":5478},"mayanktahil",{"template":685},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5484,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5485,"config":5490,"_id":5491,"_type":31,"title":5486,"_source":33,"_file":5492,"_stem":5493,"_extension":36},"/en-us/blog/authors/mayra-cabrera",{"name":5486,"config":5487},"Mayra Cabrera",{"headshot":5488,"ctfId":5489},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":685},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5495,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5496,"config":5500,"_id":5501,"_type":31,"title":5497,"_source":33,"_file":5502,"_stem":5503,"_extension":36},"/en-us/blog/authors/meghan-maneval",{"name":5497,"config":5498},"Meghan Maneval",{"headshot":7,"ctfId":5499},"mmaneval20",{"template":685},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5505,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5506,"config":5511,"_id":5512,"_type":31,"title":5507,"_source":33,"_file":5513,"_stem":5514,"_extension":36},"/en-us/blog/authors/mek-stittri",{"name":5507,"config":5508},"Mek Stittri",{"headshot":5509,"ctfId":5510},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":685},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5516,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5517,"config":5521,"_id":5522,"_type":31,"title":5518,"_source":33,"_file":5523,"_stem":5524,"_extension":36},"/en-us/blog/authors/melissa-farber",{"name":5518,"config":5519},"Melissa Farber",{"headshot":7,"ctfId":5520},"mfarber",{"template":685},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5526,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5527,"config":5531,"_id":5532,"_type":31,"title":5528,"_source":33,"_file":5533,"_stem":5534,"_extension":36},"/en-us/blog/authors/melissa-smolensky",{"name":5528,"config":5529},"Melissa Smolensky",{"headshot":7,"ctfId":5530},"melsmo",{"template":685},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5536,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5537,"config":5542,"_id":5543,"_type":31,"title":5538,"_source":33,"_file":5544,"_stem":5545,"_extension":36},"/en-us/blog/authors/melissa-ushakov",{"name":5538,"config":5539},"Melissa Ushakov",{"headshot":5540,"ctfId":5541},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":685},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5547,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5548,"config":5552,"_id":5553,"_type":31,"title":5549,"_source":33,"_file":5554,"_stem":5555,"_extension":36},"/en-us/blog/authors/michael-fahey",{"name":5549,"config":5550},"Michael Fahey",{"headshot":7,"ctfId":5551},"mfahey",{"template":685},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5557,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5558,"config":5562,"_id":5563,"_type":31,"title":18,"_source":33,"_file":5564,"_stem":5565,"_extension":36},"/en-us/blog/authors/michael-friedrich",{"name":18,"config":5559},{"headshot":5560,"ctfId":5561},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":685},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5567,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5568,"config":5572,"_id":5573,"_type":31,"title":5569,"_source":33,"_file":5574,"_stem":5575,"_extension":36},"/en-us/blog/authors/michael-henriksen",{"name":5569,"config":5570},"Michael Henriksen",{"headshot":716,"ctfId":5571},"3DmojnawcJFqAgoNMCpFTX",{"template":685},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5577,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5578,"config":5582,"_id":5583,"_type":31,"title":5579,"_source":33,"_file":5584,"_stem":5585,"_extension":36},"/en-us/blog/authors/michael-karampalas",{"name":5579,"config":5580},"Michael Karampalas",{"headshot":7,"ctfId":5581},"mkarampalas",{"template":685},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5587,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5588,"config":5593,"_id":5594,"_type":31,"title":5589,"_source":33,"_file":5595,"_stem":5596,"_extension":36},"/en-us/blog/authors/michael-kozono",{"name":5589,"config":5590},"Michael Kozono",{"headshot":5591,"ctfId":5592},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":685},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5598,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5599,"config":5603,"_id":5604,"_type":31,"title":5600,"_source":33,"_file":5605,"_stem":5606,"_extension":36},"/en-us/blog/authors/michael-miranda",{"name":5600,"config":5601},"Michael Miranda",{"headshot":7,"ctfId":5602},"mikemiranda",{"template":685},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5608,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5609,"config":5614,"_id":5615,"_type":31,"title":5610,"_source":33,"_file":5616,"_stem":5617,"_extension":36},"/en-us/blog/authors/michelle-gill",{"name":5610,"config":5611},"Michelle Gill",{"headshot":5612,"ctfId":5613},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":685},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5619,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5620,"config":5625,"_id":5626,"_type":31,"title":5621,"_source":33,"_file":5627,"_stem":5628,"_extension":36},"/en-us/blog/authors/miguel-rincon",{"name":5621,"config":5622},"Miguel Rincon",{"headshot":5623,"ctfId":5624},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":685},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5630,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5631,"config":5635,"_id":5636,"_type":31,"title":5632,"_source":33,"_file":5637,"_stem":5638,"_extension":36},"/en-us/blog/authors/mike-bartlett",{"name":5632,"config":5633},"Mike Bartlett",{"headshot":7,"ctfId":5634},"mydigitalself",{"template":685},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5640,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5641,"config":5645,"_id":5646,"_type":31,"title":5642,"_source":33,"_file":5647,"_stem":5648,"_extension":36},"/en-us/blog/authors/mike-eddington",{"name":5642,"config":5643},"Mike Eddington",{"headshot":716,"ctfId":5644},"q5tK0TgB1ZovSwShKSvOJ",{"template":685},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5650,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5651,"config":5656,"_id":5657,"_type":31,"title":5652,"_source":33,"_file":5658,"_stem":5659,"_extension":36},"/en-us/blog/authors/mike-flouton",{"name":5652,"config":5653},"Mike Flouton",{"headshot":5654,"ctfId":5655},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":685},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5661,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5662,"config":5666,"_id":5667,"_type":31,"title":5663,"_source":33,"_file":5668,"_stem":5669,"_extension":36},"/en-us/blog/authors/mike-gerwitz",{"name":5663,"config":5664},"Mike Gerwitz",{"headshot":716,"ctfId":5665},"Mike-Gerwitz",{"template":685},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5671,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5672,"config":5676,"_id":5677,"_type":31,"title":5673,"_source":33,"_file":5678,"_stem":5679,"_extension":36},"/en-us/blog/authors/mike-greiling",{"name":5673,"config":5674},"Mike Greiling",{"headshot":7,"ctfId":5675},"mikegreiling",{"template":685},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5681,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5682,"config":5686,"_id":5687,"_type":31,"title":5683,"_source":33,"_file":5688,"_stem":5689,"_extension":36},"/en-us/blog/authors/mike-vanbuskirk",{"name":5683,"config":5684},"Mike Vanbuskirk",{"headshot":716,"ctfId":5685},"Mike-Vanbuskirk",{"template":685},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5691,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5692,"config":5696,"_id":5697,"_type":31,"title":5693,"_source":33,"_file":5698,"_stem":5699,"_extension":36},"/en-us/blog/authors/miranda-carter",{"name":5693,"config":5694},"Miranda Carter",{"headshot":716,"ctfId":5695},"4xT4dbRh6N9i7jW5xuPhVp",{"template":685},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5701,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5702,"config":5707,"_id":5708,"_type":31,"title":5703,"_source":33,"_file":5709,"_stem":5710,"_extension":36},"/en-us/blog/authors/mitra-jozenazemian",{"name":5703,"config":5704},"Mitra Jozenazemian",{"headshot":5705,"ctfId":5706},"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":685},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5712,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5713,"config":5718,"_id":5719,"_type":31,"title":5714,"_source":33,"_file":5720,"_stem":5721,"_extension":36},"/en-us/blog/authors/monmayuri-ray",{"name":5714,"config":5715},"Monmayuri Ray",{"headshot":5716,"ctfId":5717},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":685},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5723,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5724,"config":5729,"_id":5731,"_type":31,"title":5725,"_source":33,"_file":5732,"_stem":5733,"_extension":36},"/en-us/blog/authors/naoharu-sasaki",{"name":5725,"config":5726,"role":5728},"Naoharu Sasaki",{"headshot":5727},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":685,"gitlabHandle":5730},"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":5735,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5736,"config":5741,"_id":5742,"_type":31,"title":5737,"_source":33,"_file":5743,"_stem":5744,"_extension":36},"/en-us/blog/authors/nate-rosandich",{"name":5737,"config":5738},"Nate Rosandich",{"headshot":5739,"ctfId":5740},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":685},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5746,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5747,"config":5752,"_id":5753,"_type":31,"title":5748,"_source":33,"_file":5754,"_stem":5755,"_extension":36},"/en-us/blog/authors/neha-khalwadekar",{"name":5748,"config":5749},"Neha Khalwadekar",{"headshot":5750,"ctfId":5751},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":685},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5757,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5758,"config":5763,"_id":5764,"_type":31,"title":5765,"_source":33,"_file":5766,"_stem":5767,"_extension":36},"/en-us/blog/authors/neil-mccorrison",{"name":5759,"config":5760},"Neil McCorrison",{"headshot":5761,"ctfId":5762},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":685},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5769,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5770,"config":5775,"_id":5776,"_type":31,"title":5777,"_source":33,"_file":5778,"_stem":5779,"_extension":36},"/en-us/blog/authors/neil-mcdonald",{"name":5771,"config":5772},"Neil McDonald",{"headshot":5773,"ctfId":5774},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":685},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5781,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5782,"config":5786,"_id":5788,"_type":31,"title":5783,"_source":33,"_file":5789,"_stem":5790,"_extension":36},"/en-us/blog/authors/nick-cayou",{"name":5783,"config":5784,"role":7},"Nick Cayou",{"headshot":5785},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":685,"gitlabHandle":5787},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5792,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5793,"config":5798,"_id":5799,"_type":31,"title":5794,"_source":33,"_file":5800,"_stem":5801,"_extension":36},"/en-us/blog/authors/nick-malcolm",{"name":5794,"config":5795},"Nick Malcolm",{"headshot":5796,"ctfId":5797},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":685},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5803,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5804,"config":5808,"_id":5809,"_type":31,"title":5805,"_source":33,"_file":5810,"_stem":5811,"_extension":36},"/en-us/blog/authors/nick-thomas",{"name":5805,"config":5806},"Nick Thomas",{"headshot":7,"ctfId":5807},"nickthomas",{"template":685},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5813,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5814,"config":5819,"_id":5820,"_type":31,"title":5815,"_source":33,"_file":5821,"_stem":5822,"_extension":36},"/en-us/blog/authors/nick-veenhof",{"name":5815,"config":5816},"Nick Veenhof",{"headshot":5817,"ctfId":5818},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":685},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5824,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5825,"config":5829,"_id":5830,"_type":31,"title":5826,"_source":33,"_file":5831,"_stem":5832,"_extension":36},"/en-us/blog/authors/nico-meisenzahl",{"name":5826,"config":5827},"Nico Meisenzahl",{"headshot":7,"ctfId":5828},"nicomeisenzahl",{"template":685},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5834,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5835,"config":5839,"_id":5840,"_type":31,"title":5836,"_source":33,"_file":5841,"_stem":5842,"_extension":36},"/en-us/blog/authors/nicole-schwartz",{"name":5836,"config":5837},"Nicole Schwartz",{"headshot":7,"ctfId":5838},"nicoleschwartz",{"template":685},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5844,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5845,"config":5850,"_id":5851,"_type":31,"title":5846,"_source":33,"_file":5852,"_stem":5853,"_extension":36},"/en-us/blog/authors/nikhil-george",{"name":5846,"config":5847},"Nikhil George",{"headshot":5848,"ctfId":5849},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":685},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5855,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5856,"config":5861,"_id":5862,"_type":31,"title":5857,"_source":33,"_file":5863,"_stem":5864,"_extension":36},"/en-us/blog/authors/nima-badiey",{"name":5857,"config":5858},"Nima Badiey",{"headshot":5859,"ctfId":5860},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":685},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5866,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5867,"config":5872,"_id":5873,"_type":31,"title":5868,"_source":33,"_file":5874,"_stem":5875,"_extension":36},"/en-us/blog/authors/noah-ing",{"name":5868,"config":5869},"Noah Ing",{"headshot":5870,"ctfId":5871},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":685},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5877,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5878,"config":5882,"_id":5883,"_type":31,"title":5879,"_source":33,"_file":5884,"_stem":5885,"_extension":36},"/en-us/blog/authors/noah-manger",{"name":5879,"config":5880},"Noah Manger",{"headshot":716,"ctfId":5881},"Noah-Manger",{"template":685},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5887,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5888,"config":5892,"_id":5893,"_type":31,"title":5889,"_source":33,"_file":5894,"_stem":5895,"_extension":36},"/en-us/blog/authors/noah-zoschke",{"name":5889,"config":5890},"Noah Zoschke",{"headshot":716,"ctfId":5891},"Noah-Zoschke",{"template":685},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5897,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5898,"config":5902,"_id":5903,"_type":31,"title":5899,"_source":33,"_file":5904,"_stem":5905,"_extension":36},"/en-us/blog/authors/nolan-myers",{"name":5899,"config":5900},"Nolan Myers",{"headshot":716,"ctfId":5901},"Nolan-Myers",{"template":685},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5907,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5908,"config":5912,"_id":5913,"_type":31,"title":5909,"_source":33,"_file":5914,"_stem":5915,"_extension":36},"/en-us/blog/authors/nupur-sharma",{"name":5909,"config":5910},"Nupur Sharma",{"headshot":716,"ctfId":5911},"6p7RQDl0cDWnAxU8yu2vVK",{"template":685},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5917,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5918,"config":5922,"_id":5923,"_type":31,"title":5919,"_source":33,"_file":5924,"_stem":5925,"_extension":36},"/en-us/blog/authors/nuritzi-sanchez",{"name":5919,"config":5920},"Nuritzi Sanchez",{"headshot":7,"ctfId":5921},"nuritzi",{"template":685},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5927,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5928,"config":5933,"_id":5934,"_type":31,"title":5929,"_source":33,"_file":5935,"_stem":5936,"_extension":36},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5929,"config":5930},"Oleksandr Pysaryuk",{"headshot":5931,"ctfId":5932},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":685},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":5938,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5939,"config":5944,"_id":5945,"_type":31,"title":5946,"_source":33,"_file":5947,"_stem":5948,"_extension":36},"/en-us/blog/authors/olena-horal-koretska",{"name":5940,"config":5941},"Olena Horal-Koretska",{"headshot":5942,"ctfId":5943},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":685},"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":5950,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5951,"config":5955,"_id":5957,"_type":31,"title":5952,"_source":33,"_file":5958,"_stem":5959,"_extension":36},"/en-us/blog/authors/olivier-campeau",{"name":5952,"config":5953},"Olivier Campeau",{"headshot":5954},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":685,"gitlabHandle":5956},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":5961,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5962,"config":5967,"_id":5968,"_type":31,"title":5969,"_source":33,"_file":5970,"_stem":5971,"_extension":36},"/en-us/blog/authors/olivier-dupr",{"name":5963,"config":5964},"Olivier Dupré",{"headshot":5965,"ctfId":5966},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":685},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":5973,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5974,"config":5979,"_id":5980,"_type":31,"title":5975,"_source":33,"_file":5981,"_stem":5982,"_extension":36},"/en-us/blog/authors/omar-fernandez",{"name":5975,"config":5976},"Omar Fernandez",{"headshot":5977,"ctfId":5978},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":685},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":5984,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5985,"config":5989,"_id":5990,"_type":31,"title":5986,"_source":33,"_file":5991,"_stem":5992,"_extension":36},"/en-us/blog/authors/opher-vishnia",{"name":5986,"config":5987},"Opher Vishnia",{"headshot":716,"ctfId":5988},"O0F3sw3av9pRAxeP9iR7N",{"template":685},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":5994,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":5995,"config":5999,"_id":6000,"_type":31,"title":5996,"_source":33,"_file":6001,"_stem":6002,"_extension":36},"/en-us/blog/authors/orit-golowinski",{"name":5996,"config":5997},"Orit Golowinski",{"headshot":7,"ctfId":5998},"ogolowinski",{"template":685},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6004,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6005,"config":6010,"_id":6011,"_type":31,"title":6006,"_source":33,"_file":6012,"_stem":6013,"_extension":36},"/en-us/blog/authors/ottilia-westerlund",{"name":6006,"config":6007},"Ottilia Westerlund",{"headshot":6008,"ctfId":6009},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":685},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6015,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6016,"config":6020,"_id":6021,"_type":31,"title":6017,"_source":33,"_file":6022,"_stem":6023,"_extension":36},"/en-us/blog/authors/owen-williams",{"name":6017,"config":6018},"Owen Williams",{"headshot":716,"ctfId":6019},"Owen-Williams",{"template":685},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6025,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6026,"config":6030,"_id":6031,"_type":31,"title":6027,"_source":33,"_file":6032,"_stem":6033,"_extension":36},"/en-us/blog/authors/pablo-carranza",{"name":6027,"config":6028},"Pablo Carranza",{"headshot":716,"ctfId":6029},"Pablo-Carranza",{"template":685},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6035,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6036,"config":6040,"_id":6041,"_type":31,"title":6037,"_source":33,"_file":6042,"_stem":6043,"_extension":36},"/en-us/blog/authors/parker-ennis",{"name":6037,"config":6038},"Parker Ennis",{"headshot":7,"ctfId":6039},"parkerennis",{"template":685},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6045,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6046,"config":6050,"_id":6051,"_type":31,"title":6047,"_source":33,"_file":6052,"_stem":6053,"_extension":36},"/en-us/blog/authors/patricio-cano",{"name":6047,"config":6048},"Patricio Cano",{"headshot":716,"ctfId":6049},"Patricio-Cano",{"template":685},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6055,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6056,"config":6060,"_id":6061,"_type":31,"title":6057,"_source":33,"_file":6062,"_stem":6063,"_extension":36},"/en-us/blog/authors/patrick-deuley",{"name":6057,"config":6058},"Patrick Deuley",{"headshot":716,"ctfId":6059},"4YYemtKKpxKC4yukyFavai",{"template":685},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6065,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6066,"config":6070,"_id":6071,"_type":31,"title":6067,"_source":33,"_file":6072,"_stem":6073,"_extension":36},"/en-us/blog/authors/patrick-foster",{"name":6067,"config":6068},"Patrick Foster",{"headshot":716,"ctfId":6069},"Patrick-Foster",{"template":685},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6075,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6076,"config":6081,"_id":6082,"_type":31,"title":6077,"_source":33,"_file":6083,"_stem":6084,"_extension":36},"/en-us/blog/authors/patrick-steinhardt",{"name":6077,"config":6078},"Patrick Steinhardt",{"headshot":6079,"ctfId":6080},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":685},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6086,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6087,"config":6091,"_id":6092,"_type":31,"title":6088,"_source":33,"_file":6093,"_stem":6094,"_extension":36},"/en-us/blog/authors/patty-cheung",{"name":6088,"config":6089},"Patty Cheung",{"headshot":716,"ctfId":6090},"pattycheung",{"template":685},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6096,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6097,"config":6101,"_id":6102,"_type":31,"title":6098,"_source":33,"_file":6103,"_stem":6104,"_extension":36},"/en-us/blog/authors/paul-badcock",{"name":6098,"config":6099},"Paul Badcock",{"headshot":716,"ctfId":6100},"TbNQIdiD4vlFB7XYXeArb",{"template":685},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6106,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6107,"config":6111,"_id":6112,"_type":31,"title":6113,"_source":33,"_file":6114,"_stem":6115,"_extension":36},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6108,"config":6109},"Paul Gascou-Vaillancourt",{"headshot":716,"ctfId":6110},"6Yg7HWPoy2E5vwudH0EZja",{"template":685},"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":6117,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6118,"config":6122,"_id":6123,"_type":31,"title":6119,"_source":33,"_file":6124,"_stem":6125,"_extension":36},"/en-us/blog/authors/paul-hibbitts",{"name":6119,"config":6120},"Paul Hibbitts",{"headshot":716,"ctfId":6121},"Paul-Hibbitts",{"template":685},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6127,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6128,"config":6132,"_id":6133,"_type":31,"title":6129,"_source":33,"_file":6134,"_stem":6135,"_extension":36},"/en-us/blog/authors/paul-machle",{"name":6129,"config":6130},"Paul Machle",{"headshot":716,"ctfId":6131},"Paul-Machle",{"template":685},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6137,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6138,"config":6142,"_id":6144,"_type":31,"title":6139,"_source":33,"_file":6145,"_stem":6146,"_extension":36},"/en-us/blog/authors/paul-meresanu",{"name":6139,"role":7,"config":6140},"Paul Meresanu",{"headshot":6141},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":685,"gitlabHandle":6143},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6148,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6149,"config":6154,"_id":6155,"_type":31,"title":6150,"_source":33,"_file":6156,"_stem":6157,"_extension":36},"/en-us/blog/authors/payton-burdette",{"name":6150,"config":6151},"Payton Burdette",{"headshot":6152,"ctfId":6153},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":685},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6159,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6160,"config":6164,"_id":6165,"_type":31,"title":6161,"_source":33,"_file":6166,"_stem":6167,"_extension":36},"/en-us/blog/authors/pedro-fortuna",{"name":6161,"config":6162},"Pedro Fortuna",{"headshot":716,"ctfId":6163},"7JwB4WZYF19OKwOo4yk5n4",{"template":685},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6169,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6170,"config":6175,"_id":6176,"_type":31,"title":6177,"_source":33,"_file":6178,"_stem":6179,"_extension":36},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6171,"config":6172},"Pedro Moreira da Silva",{"headshot":6173,"ctfId":6174},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":685},"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":6181,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6182,"config":6187,"_id":6188,"_type":31,"title":6183,"_source":33,"_file":6189,"_stem":6190,"_extension":36},"/en-us/blog/authors/phil-hughes",{"name":6183,"config":6184},"Phil Hughes",{"headshot":6185,"ctfId":6186},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":685},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6192,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6193,"config":6197,"_id":6198,"_type":31,"title":6194,"_source":33,"_file":6199,"_stem":6200,"_extension":36},"/en-us/blog/authors/philip-welz",{"name":6194,"config":6195},"Philip Welz",{"headshot":7,"ctfId":6196},"philxx",{"template":685},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6202,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6203,"config":6208,"_id":6209,"_type":31,"title":6210,"_source":33,"_file":6211,"_stem":6212,"_extension":36},"/en-us/blog/authors/philippe-lafoucrire",{"name":6204,"config":6205},"Philippe Lafoucrière",{"headshot":6206,"ctfId":6207},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":685},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6214,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6215,"config":6219,"_id":6220,"_type":31,"title":6221,"_source":33,"_file":6222,"_stem":6223,"_extension":36},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6216,"config":6217},"Pierre de La Morinerie",{"headshot":716,"ctfId":6218},"Pierre-de-La-Morinerie",{"template":685},"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":6225,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6226,"config":6230,"_id":6231,"_type":31,"title":6227,"_source":33,"_file":6232,"_stem":6233,"_extension":36},"/en-us/blog/authors/pierre-smeyers",{"name":6227,"config":6228},"Pierre Smeyers",{"headshot":7,"ctfId":6229},"pismy",{"template":685},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6235,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6236,"config":6241,"_id":6242,"_type":31,"title":6237,"_source":33,"_file":6243,"_stem":6244,"_extension":36},"/en-us/blog/authors/pini-wietchner",{"name":6237,"config":6238},"Pini Wietchner",{"headshot":6239,"ctfId":6240},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":685},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6246,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6247,"config":6251,"_id":6252,"_type":31,"title":6253,"_source":33,"_file":6254,"_stem":6255,"_extension":36},"/en-us/blog/authors/pj-metz",{"name":6248,"config":6249},"PJ Metz",{"headshot":716,"ctfId":6250},"PjMetz",{"template":685},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6257,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6258,"config":6261,"_id":6262,"_type":31,"title":6263,"_source":33,"_file":6264,"_stem":6265,"_extension":36},"/en-us/blog/authors/plapadoo",{"name":6259,"config":6260},"plapadoo",{"headshot":716,"ctfId":6259},{"template":685},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6267,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6268,"config":6272,"_id":6273,"_type":31,"title":6269,"_source":33,"_file":6274,"_stem":6275,"_extension":36},"/en-us/blog/authors/pranay-bakre",{"name":6269,"config":6270},"Pranay Bakre",{"headshot":7,"ctfId":6271},"Darren-Eastman",{"template":685},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6277,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6278,"config":6282,"_id":6283,"_type":31,"title":6279,"_source":33,"_file":6284,"_stem":6285,"_extension":36},"/en-us/blog/authors/priyanka-sharma",{"name":6279,"config":6280},"Priyanka Sharma",{"headshot":7,"ctfId":6281},"pritianka",{"template":685},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6287,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6288,"config":6293,"_id":6294,"_type":31,"title":6295,"_source":33,"_file":6296,"_stem":6297,"_extension":36},"/en-us/blog/authors/pter-bozs",{"name":6289,"config":6290},"Péter Bozsó",{"headshot":6291,"ctfId":6292},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":685},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6299,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6300,"config":6304,"_id":6305,"_type":31,"title":6301,"_source":33,"_file":6306,"_stem":6307,"_extension":36},"/en-us/blog/authors/quan-to",{"name":6301,"config":6302},"Quan To",{"headshot":716,"ctfId":6303},"5dswLnpCobgICjM0RpHMU2",{"template":685},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6309,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6310,"config":6315,"_id":6316,"_type":31,"title":6311,"_source":33,"_file":6317,"_stem":6318,"_extension":36},"/en-us/blog/authors/rachel-nienaber",{"name":6311,"config":6312},"Rachel Nienaber",{"headshot":6313,"ctfId":6314},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":685},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6320,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6321,"config":6325,"_id":6327,"_type":31,"title":6322,"_source":33,"_file":6328,"_stem":6329,"_extension":36},"/en-us/blog/authors/radovan-bacovic",{"name":6322,"config":6323},"Radovan Bacovic",{"headshot":6324},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":685,"gitlabHandle":6326},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6331,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6332,"config":6336,"_id":6337,"_type":31,"title":6338,"_source":33,"_file":6339,"_stem":6340,"_extension":36},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6333,"config":6334},"Rahul Bhargava, CTO, Evolphin",{"headshot":716,"ctfId":6335},"Rahul-Bhargava-CTO-Evolphin",{"template":685},"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":6342,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6343,"config":6348,"_id":6349,"_type":31,"title":6344,"_source":33,"_file":6350,"_stem":6351,"_extension":36},"/en-us/blog/authors/raimund-hook",{"name":6344,"config":6345},"Raimund Hook",{"headshot":6346,"ctfId":6347},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":685},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6353,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6354,"config":6358,"_id":6359,"_type":31,"title":6355,"_source":33,"_file":6360,"_stem":6361,"_extension":36},"/en-us/blog/authors/raquel-campuzano",{"name":6355,"config":6356},"Raquel Campuzano",{"headshot":716,"ctfId":6357},"Raquel-Campuzano",{"template":685},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6363,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6364,"config":6368,"_id":6369,"_type":31,"title":6365,"_source":33,"_file":6370,"_stem":6371,"_extension":36},"/en-us/blog/authors/ray-paik",{"name":6365,"config":6366},"Ray Paik",{"headshot":7,"ctfId":6367},"rpaik",{"template":685},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6373,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6374,"config":6379,"_id":6380,"_type":31,"title":6375,"_source":33,"_file":6381,"_stem":6382,"_extension":36},"/en-us/blog/authors/rayana-verissimo",{"name":6375,"config":6376},"Rayana Verissimo",{"headshot":6377,"ctfId":6378},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":685},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6384,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6385,"config":6389,"_id":6391,"_type":31,"title":6392,"_source":33,"_file":6393,"_stem":6394,"_extension":36},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6386,"config":6387},"Rebeca Fenoy-Anthony",{"headshot":6388},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":685,"gitlabHandle":6390},"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":6396,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6397,"config":6401,"_id":6402,"_type":31,"title":6398,"_source":33,"_file":6403,"_stem":6404,"_extension":36},"/en-us/blog/authors/rebecca-dodd",{"name":6398,"config":6399},"Rebecca Dodd",{"headshot":716,"ctfId":6400},"Rebecca-Dodd",{"template":685},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6406,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6407,"config":6411,"_id":6412,"_type":31,"title":6408,"_source":33,"_file":6413,"_stem":6414,"_extension":36},"/en-us/blog/authors/regis-freyd",{"name":6408,"config":6409},"Regis Freyd",{"headshot":716,"ctfId":6410},"Regis-Freyd",{"template":685},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6416,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6417,"config":6422,"_id":6423,"_type":31,"title":6418,"_source":33,"_file":6424,"_stem":6425,"_extension":36},"/en-us/blog/authors/regnard-raquedan",{"name":6418,"config":6419},"Regnard Raquedan",{"headshot":6420,"ctfId":6421},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":685},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6427,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6428,"config":6432,"_id":6433,"_type":31,"title":6429,"_source":33,"_file":6434,"_stem":6435,"_extension":36},"/en-us/blog/authors/renato-stanic",{"name":6429,"config":6430},"Renato Stanic",{"headshot":7,"ctfId":6431},"rstanic12",{"template":685},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6437,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6438,"config":6443,"_id":6444,"_type":31,"title":6439,"_source":33,"_file":6445,"_stem":6446,"_extension":36},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6439,"config":6440},"Ricardo Amarilla Villalba",{"headshot":6441,"ctfId":6442},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":685},"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":6448,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6449,"config":6453,"_id":6454,"_type":31,"title":6450,"_source":33,"_file":6455,"_stem":6456,"_extension":36},"/en-us/blog/authors/riccardo-padovani",{"name":6450,"config":6451},"Riccardo Padovani",{"headshot":716,"ctfId":6452},"Riccardo-Padovani",{"template":685},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6458,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6459,"config":6464,"_id":6465,"_type":31,"title":6466,"_source":33,"_file":6467,"_stem":6468,"_extension":36},"/en-us/blog/authors/rmy-coutable",{"name":6460,"config":6461},"Rémy Coutable",{"headshot":6462,"ctfId":6463},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":685},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6470,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6471,"config":6476,"_id":6477,"_type":31,"title":6472,"_source":33,"_file":6478,"_stem":6479,"_extension":36},"/en-us/blog/authors/rob-jackson",{"name":6472,"config":6473},"Rob Jackson",{"headshot":6474,"ctfId":6475},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":685},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6481,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6482,"config":6486,"_id":6487,"_type":31,"title":6483,"_source":33,"_file":6488,"_stem":6489,"_extension":36},"/en-us/blog/authors/rob-ribeiro",{"name":6483,"config":6484},"Rob Ribeiro",{"headshot":716,"ctfId":6485},"Rob-Ribeiro",{"template":685},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6491,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6492,"config":6496,"_id":6497,"_type":31,"title":6493,"_source":33,"_file":6498,"_stem":6499,"_extension":36},"/en-us/blog/authors/robert-speicher",{"name":6493,"config":6494},"Robert Speicher",{"headshot":7,"ctfId":6495},"rspeicher",{"template":685},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6501,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6502,"config":6507,"_id":6508,"_type":31,"title":6503,"_source":33,"_file":6509,"_stem":6510,"_extension":36},"/en-us/blog/authors/robert-williams",{"name":6503,"config":6504},"Robert Williams",{"headshot":6505,"ctfId":6506},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":685},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6512,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6513,"config":6519,"_id":6520,"_type":31,"title":6514,"_source":33,"_file":6521,"_stem":6522,"_extension":36},"/en-us/blog/authors/robin-schulman",{"name":6514,"config":6515,"role":6518},"Robin Schulman",{"headshot":6516,"ctfId":6517},"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":685},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6524,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6525,"config":6529,"_id":6530,"_type":31,"title":6526,"_source":33,"_file":6531,"_stem":6532,"_extension":36},"/en-us/blog/authors/roger-woo",{"name":6526,"config":6527},"Roger Woo",{"headshot":716,"ctfId":6528},"rogerwoo",{"template":685},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6534,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6535,"config":6541,"_id":6542,"_type":31,"title":6543,"_source":33,"_file":6544,"_stem":6545,"_extension":36},"/en-us/blog/authors/rohit-shambhuni",{"role":6536,"name":6537,"config":6538},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6539,"ctfId":6540},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":685},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6547,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6548,"config":6552,"_id":6553,"_type":31,"title":6549,"_source":33,"_file":6554,"_stem":6555,"_extension":36},"/en-us/blog/authors/roman-kuba",{"name":6549,"config":6550},"Roman Kuba",{"headshot":7,"ctfId":6551},"rkuba",{"template":685},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6557,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6558,"config":6563,"_id":6564,"_type":31,"title":6565,"_source":33,"_file":6566,"_stem":6567,"_extension":36},"/en-us/blog/authors/romuald-atchad",{"name":6559,"config":6560},"Romuald Atchadé",{"headshot":6561,"ctfId":6562},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":685},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6569,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6570,"config":6574,"_id":6575,"_type":31,"title":6576,"_source":33,"_file":6577,"_stem":6578,"_extension":36},"/en-us/blog/authors/ronald-van-zon",{"name":6571,"config":6572},"Ronald van Zon",{"headshot":7,"ctfId":6573},"Eagllus",{"template":685},"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":6580,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6581,"config":6585,"_id":6586,"_type":31,"title":6582,"_source":33,"_file":6587,"_stem":6588,"_extension":36},"/en-us/blog/authors/ross-fuhrman",{"name":6582,"config":6583},"Ross Fuhrman",{"headshot":716,"ctfId":6584},"7dkuWBvIc0AQanUclt3pOk",{"template":685},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6590,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6591,"config":6595,"_id":6596,"_type":31,"title":6592,"_source":33,"_file":6597,"_stem":6598,"_extension":36},"/en-us/blog/authors/roy-taragan",{"name":6592,"config":6593},"Roy Taragan",{"headshot":716,"ctfId":6594},"3pnwP9gqELfda3DCOQJQCL",{"template":685},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6600,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6601,"config":6606,"_id":6607,"_type":31,"title":6602,"_source":33,"_file":6608,"_stem":6609,"_extension":36},"/en-us/blog/authors/ruby-nealon",{"name":6602,"config":6603},"Ruby Nealon",{"headshot":6604,"ctfId":6605},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":685},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6611,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6612,"config":6616,"_id":6617,"_type":31,"title":6613,"_source":33,"_file":6618,"_stem":6619,"_extension":36},"/en-us/blog/authors/rupert-douglas",{"name":6613,"config":6614},"Rupert Douglas",{"headshot":7,"ctfId":6615},"rdouglasgitlab",{"template":685},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6621,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6622,"config":6626,"_id":6627,"_type":31,"title":6628,"_source":33,"_file":6629,"_stem":6630,"_extension":36},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6623,"config":6624},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6625},"3PShSyZ6DJXnkDa5xrQs7V",{"template":685},"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":6632,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6633,"config":6638,"_id":6639,"_type":31,"title":6634,"_source":33,"_file":6640,"_stem":6641,"_extension":36},"/en-us/blog/authors/rutvik-shah",{"name":6634,"config":6635},"Rutvik Shah",{"headshot":6636,"ctfId":6637},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":685},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6643,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6644,"config":6649,"_id":6650,"_type":31,"title":6645,"_source":33,"_file":6651,"_stem":6652,"_extension":36},"/en-us/blog/authors/sacha-guyon",{"name":6645,"config":6646},"Sacha Guyon",{"headshot":6647,"ctfId":6648},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":685},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6654,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6655,"config":6660,"_id":6661,"_type":31,"title":6656,"_source":33,"_file":6662,"_stem":6663,"_extension":36},"/en-us/blog/authors/safwan-ahmed",{"name":6656,"config":6657},"Safwan Ahmed",{"headshot":6658,"ctfId":6659},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":685},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6665,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6666,"config":6670,"_id":6672,"_type":31,"title":6667,"_source":33,"_file":6673,"_stem":6674,"_extension":36},"/en-us/blog/authors/salahddine-aberkan",{"name":6667,"config":6668},"Salahddine Aberkan",{"headshot":6669},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":685,"gitlabHandle":6671},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6676,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6677,"config":6682,"_id":6683,"_type":31,"title":6678,"_source":33,"_file":6684,"_stem":6685,"_extension":36},"/en-us/blog/authors/salman-ladha",{"name":6678,"config":6679},"Salman Ladha",{"headshot":6680,"ctfId":6681},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":685},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6687,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6688,"config":6693,"_id":6694,"_type":31,"title":6689,"_source":33,"_file":6695,"_stem":6696,"_extension":36},"/en-us/blog/authors/sam-beckham",{"name":6689,"config":6690},"Sam Beckham",{"headshot":6691,"ctfId":6692},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":685},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6698,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6699,"config":6704,"_id":6705,"_type":31,"title":6700,"_source":33,"_file":6706,"_stem":6707,"_extension":36},"/en-us/blog/authors/sam-kerr",{"name":6700,"config":6701},"Sam Kerr",{"headshot":6702,"ctfId":6703},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":685},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6709,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6710,"config":6715,"_id":6716,"_type":31,"title":6711,"_source":33,"_file":6717,"_stem":6718,"_extension":36},"/en-us/blog/authors/sam-morris",{"name":6711,"config":6712},"Sam Morris",{"headshot":6713,"ctfId":6714},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":685},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6720,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6721,"config":6726,"_id":6727,"_type":31,"title":6722,"_source":33,"_file":6728,"_stem":6729,"_extension":36},"/en-us/blog/authors/sam-white",{"name":6722,"config":6723},"Sam White",{"headshot":6724,"ctfId":6725},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":685},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6731,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6732,"config":6737,"_id":6738,"_type":31,"title":6733,"_source":33,"_file":6739,"_stem":6740,"_extension":36},"/en-us/blog/authors/sam-wiskow",{"name":6733,"config":6734},"Sam Wiskow",{"headshot":6735,"ctfId":6736},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":685},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6742,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6743,"config":6748,"_id":6749,"_type":31,"title":6744,"_source":33,"_file":6750,"_stem":6751,"_extension":36},"/en-us/blog/authors/samantha-lee",{"name":6744,"config":6745},"Samantha Lee",{"headshot":6746,"ctfId":6747},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":685},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6753,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6754,"config":6758,"_id":6759,"_type":31,"title":6760,"_source":33,"_file":6761,"_stem":6762,"_extension":36},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6755,"config":6756},"Sameer Farooqui, OctoML",{"headshot":716,"ctfId":6757},"Sameer-Farooqui-OctoML",{"template":685},"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":6764,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6765,"config":6770,"_id":6771,"_type":31,"title":6766,"_source":33,"_file":6772,"_stem":6773,"_extension":36},"/en-us/blog/authors/sameer-kamani",{"name":6766,"config":6767},"Sameer Kamani",{"headshot":6768,"ctfId":6769},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":685},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6775,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6776,"config":6781,"_id":6782,"_type":31,"title":6777,"_source":33,"_file":6783,"_stem":6784,"_extension":36},"/en-us/blog/authors/samer-akkoub",{"name":6777,"config":6778},"Samer Akkoub",{"headshot":6779,"ctfId":6780},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":685},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6786,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6787,"config":6791,"_id":6792,"_type":31,"title":6788,"_source":33,"_file":6793,"_stem":6794,"_extension":36},"/en-us/blog/authors/samuel-alfageme",{"name":6788,"config":6789},"Samuel Alfageme",{"headshot":716,"ctfId":6790},"Samuel-Alfageme",{"template":685},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6796,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6797,"config":6804,"_id":6805,"_type":31,"title":6799,"_source":33,"_file":6806,"_stem":6807,"_extension":36},"/en-us/blog/authors/sandra-gittlen",{"role":6798,"name":6799,"config":6800},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6801,"linkedin":6802,"ctfId":6803},"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":685},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6809,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6810,"config":6814,"_id":6815,"_type":31,"title":6811,"_source":33,"_file":6816,"_stem":6817,"_extension":36},"/en-us/blog/authors/sandra-salerno",{"name":6811,"config":6812},"Sandra Salerno",{"headshot":716,"ctfId":6813},"Sandra-Salerno",{"template":685},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6819,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6820,"config":6824,"_id":6825,"_type":31,"title":6826,"_source":33,"_file":6827,"_stem":6828,"_extension":36},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6821,"config":6822},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6823},"topodelapradera",{"template":685},"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":6830,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6831,"config":6835,"_id":6836,"_type":31,"title":6832,"_source":33,"_file":6837,"_stem":6838,"_extension":36},"/en-us/blog/authors/sara-kassabian",{"name":6832,"config":6833},"Sara Kassabian",{"headshot":7,"ctfId":6834},"skassabian",{"template":685},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6840,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6841,"config":6846,"_id":6847,"_type":31,"title":6842,"_source":33,"_file":6848,"_stem":6849,"_extension":36},"/en-us/blog/authors/sara-meadzinger",{"name":6842,"config":6843},"Sara Meadzinger",{"headshot":6844,"ctfId":6845},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":685},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6851,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6852,"config":6856,"_id":6857,"_type":31,"title":6853,"_source":33,"_file":6858,"_stem":6859,"_extension":36},"/en-us/blog/authors/sarah-daily",{"name":6853,"config":6854},"Sarah Daily",{"headshot":716,"ctfId":6855},"2YhqRPG08HF0FCF1l7oeZL",{"template":685},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6861,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6862,"config":6866,"_id":6867,"_type":31,"title":6863,"_source":33,"_file":6868,"_stem":6869,"_extension":36},"/en-us/blog/authors/sarah-german",{"name":6863,"config":6864},"Sarah German",{"headshot":6865,"ctfId":4534},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":685},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6871,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6872,"config":6877,"_id":6878,"_type":31,"title":6873,"_source":33,"_file":6879,"_stem":6880,"_extension":36},"/en-us/blog/authors/sarah-matthies",{"name":6873,"config":6874},"Sarah Matthies",{"headshot":6875,"ctfId":6876},"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":685},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6882,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6883,"config":6887,"_id":6888,"_type":31,"title":6889,"_source":33,"_file":6890,"_stem":6891,"_extension":36},"/en-us/blog/authors/sarah-odonnell",{"name":6884,"config":6885},"Sarah O’Donnell",{"headshot":7,"ctfId":6886},"sarahod",{"template":685},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6893,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6894,"config":6899,"_id":6900,"_type":31,"title":6895,"_source":33,"_file":6901,"_stem":6902,"_extension":36},"/en-us/blog/authors/sarah-waldner",{"name":6895,"config":6896},"Sarah Waldner",{"headshot":6897,"ctfId":6898},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":685},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6904,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6905,"config":6909,"_id":6910,"_type":31,"title":6906,"_source":33,"_file":6911,"_stem":6912,"_extension":36},"/en-us/blog/authors/sarrah-vesselov",{"name":6906,"config":6907},"Sarrah Vesselov",{"headshot":7,"ctfId":6908},"sarrahvesselov",{"template":685},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6914,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6915,"config":6919,"_id":6920,"_type":31,"title":6916,"_source":33,"_file":6921,"_stem":6922,"_extension":36},"/en-us/blog/authors/sarup-banskota",{"name":6916,"config":6917},"Sarup Banskota",{"headshot":716,"ctfId":6918},"3sY2Ef0sXxaJKCmArdSLsA",{"template":685},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6924,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6925,"config":6930,"_id":6931,"_type":31,"title":6926,"_source":33,"_file":6932,"_stem":6933,"_extension":36},"/en-us/blog/authors/sascha-eggenberger",{"name":6926,"config":6927},"Sascha Eggenberger",{"headshot":6928,"ctfId":6929},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":685},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":6935,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6936,"config":6940,"_id":6941,"_type":31,"title":6937,"_source":33,"_file":6942,"_stem":6943,"_extension":36},"/en-us/blog/authors/sasha-bannister",{"name":6937,"config":6938},"Sasha Bannister",{"headshot":716,"ctfId":6939},"Sasha-Bannister",{"template":685},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":6945,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6946,"config":6951,"_id":6952,"_type":31,"title":6947,"_source":33,"_file":6953,"_stem":6954,"_extension":36},"/en-us/blog/authors/sasha-gazlay",{"name":6947,"config":6948},"Sasha Gazlay",{"headshot":6949,"ctfId":6950},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":685},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":6956,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6957,"config":6962,"_id":6963,"_type":31,"title":6958,"_source":33,"_file":6964,"_stem":6965,"_extension":36},"/en-us/blog/authors/saumya-upadhyaya",{"name":6958,"config":6959},"Saumya Upadhyaya",{"headshot":6960,"ctfId":6961},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":685},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":6967,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6968,"config":6973,"_id":6974,"_type":31,"title":6975,"_source":33,"_file":6976,"_stem":6977,"_extension":36},"/en-us/blog/authors/scott-de-jonge",{"name":6969,"config":6970},"Scott de Jonge",{"headshot":6971,"ctfId":6972},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":685},"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":6979,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6980,"config":6985,"_id":6986,"_type":31,"title":6981,"_source":33,"_file":6987,"_stem":6988,"_extension":36},"/en-us/blog/authors/scott-hampton",{"name":6981,"config":6982},"Scott Hampton",{"headshot":6983,"ctfId":6984},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":685},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":6990,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":6991,"config":6995,"_id":6996,"_type":31,"title":6992,"_source":33,"_file":6997,"_stem":6998,"_extension":36},"/en-us/blog/authors/scott-williamson",{"name":6992,"config":6993},"Scott Williamson",{"headshot":7,"ctfId":6994},"sfwgitlab",{"template":685},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":7000,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7001,"config":7006,"_id":7007,"_type":31,"title":7002,"_source":33,"_file":7008,"_stem":7009,"_extension":36},"/en-us/blog/authors/sean-arnold",{"name":7002,"config":7003},"Sean Arnold",{"headshot":7004,"ctfId":7005},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":685},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7011,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7012,"config":7016,"_id":7017,"_type":31,"title":7018,"_source":33,"_file":7019,"_stem":7020,"_extension":36},"/en-us/blog/authors/sean-mcgivern",{"name":7013,"config":7014},"Sean McGivern",{"headshot":716,"ctfId":7015},"Sean-McGivern",{"template":685},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7022,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7023,"config":7027,"_id":7028,"_type":31,"title":7024,"_source":33,"_file":7029,"_stem":7030,"_extension":36},"/en-us/blog/authors/sean-packham",{"name":7024,"config":7025},"Sean Packham",{"headshot":716,"ctfId":7026},"Sean-Packham",{"template":685},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7032,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7033,"config":7037,"_id":7038,"_type":31,"title":7034,"_source":33,"_file":7039,"_stem":7040,"_extension":36},"/en-us/blog/authors/sebastian-latacz",{"name":7034,"config":7035},"Sebastian Latacz",{"headshot":716,"ctfId":7036},"4DoWSQV719HEWt2rbDIoQR",{"template":685},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7042,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7043,"config":7047,"_id":7048,"_type":31,"title":7044,"_source":33,"_file":7049,"_stem":7050,"_extension":36},"/en-us/blog/authors/sergey-nuzhdin",{"name":7044,"config":7045},"Sergey Nuzhdin",{"headshot":716,"ctfId":7046},"Sergey-Nuzhdin",{"template":685},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7052,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7053,"config":7057,"_id":7058,"_type":31,"title":7054,"_source":33,"_file":7059,"_stem":7060,"_extension":36},"/en-us/blog/authors/seth-berger",{"name":7054,"config":7055},"Seth Berger",{"headshot":7,"ctfId":7056},"sethgitlab",{"template":685},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7062,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7063,"config":7067,"_id":7068,"_type":31,"title":7064,"_source":33,"_file":7069,"_stem":7070,"_extension":36},"/en-us/blog/authors/shane-rice",{"name":7064,"config":7065},"Shane Rice",{"headshot":716,"ctfId":7066},"3uVL7xMsEf13JzpbXYTCbM",{"template":685},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7072,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7073,"config":7078,"_id":7079,"_type":31,"title":7074,"_source":33,"_file":7080,"_stem":7081,"_extension":36},"/en-us/blog/authors/sharon-gaudin",{"name":7074,"config":7075},"Sharon Gaudin",{"headshot":7076,"ctfId":7077},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":685},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7083,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7084,"config":7088,"_id":7089,"_type":31,"title":7085,"_source":33,"_file":7090,"_stem":7091,"_extension":36},"/en-us/blog/authors/shawn-winters",{"name":7085,"config":7086},"Shawn Winters",{"headshot":7,"ctfId":7087},"ShawnWinters",{"template":685},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7093,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7094,"config":7098,"_id":7099,"_type":31,"title":7100,"_source":33,"_file":7101,"_stem":7102,"_extension":36},"/en-us/blog/authors/sherida-mcmullan",{"name":7095,"config":7096},"Sherida McMullan",{"headshot":716,"ctfId":7097},"BpqiUFXm6aUxjXJdAeKuL",{"template":685},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7104,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7105,"config":7109,"_id":7110,"_type":31,"title":7106,"_source":33,"_file":7111,"_stem":7112,"_extension":36},"/en-us/blog/authors/shinya-maeda",{"name":7106,"config":7107},"Shinya Maeda",{"headshot":7,"ctfId":7108},"dosuken123",{"template":685},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7114,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7115,"config":7120,"_id":7121,"_type":31,"title":7116,"_source":33,"_file":7122,"_stem":7123,"_extension":36},"/en-us/blog/authors/shrishti-choudhary",{"name":7116,"config":7117},"Shrishti Choudhary",{"headshot":7118,"ctfId":7119},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":685},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7125,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7126,"config":7135,"_id":7136,"_type":31,"title":7128,"_source":33,"_file":7137,"_stem":7138,"_extension":36},"/en-us/blog/authors/sid-sijbrandij",{"role":7127,"name":7128,"bio":7129,"config":7130},"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":7131,"twitter":7132,"linkedin":7133,"ctfId":7134},"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":685},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7140,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7141,"config":7146,"_id":7147,"_type":31,"title":7142,"_source":33,"_file":7148,"_stem":7149,"_extension":36},"/en-us/blog/authors/siddharth-mathur",{"name":7142,"config":7143},"Siddharth Mathur",{"headshot":7144,"ctfId":7145},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":685},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7151,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7152,"config":7156,"_id":7157,"_type":31,"title":7153,"_source":33,"_file":7158,"_stem":7159,"_extension":36},"/en-us/blog/authors/simon-tarchichi",{"name":7153,"config":7154},"Simon Tarchichi",{"headshot":7,"ctfId":7155},"kartsims",{"template":685},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7161,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7162,"config":7167,"_id":7168,"_type":31,"title":7163,"_source":33,"_file":7169,"_stem":7170,"_extension":36},"/en-us/blog/authors/sophia-manicor",{"name":7163,"config":7164},"Sophia Manicor",{"headshot":7165,"ctfId":7166},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":685},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7172,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7173,"config":7178,"_id":7179,"_type":31,"title":7174,"_source":33,"_file":7180,"_stem":7181,"_extension":36},"/en-us/blog/authors/sri-rangan",{"name":7174,"config":7175},"Sri Rangan",{"headshot":7176,"ctfId":7177},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":685},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7183,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7184,"config":7189,"_id":7190,"_type":31,"title":7185,"_source":33,"_file":7191,"_stem":7192,"_extension":36},"/en-us/blog/authors/stacy-cline",{"name":7185,"config":7186},"Stacy Cline",{"headshot":7187,"ctfId":7188},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":685},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7194,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7195,"config":7200,"_id":7201,"_type":31,"title":7196,"_source":33,"_file":7202,"_stem":7203,"_extension":36},"/en-us/blog/authors/stan-hu",{"name":7196,"config":7197},"Stan Hu",{"headshot":7198,"ctfId":7199},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":685},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7205,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7206,"config":7210,"_id":7211,"_type":31,"title":7212,"_source":33,"_file":7213,"_stem":7214,"_extension":36},"/en-us/blog/authors/stephan-hochdrfer",{"name":7207,"config":7208},"Stephan Hochdörfer",{"headshot":716,"ctfId":7209},"Stephan-Hochdrfer",{"template":685},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7216,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7217,"config":7221,"_id":7222,"_type":31,"title":7218,"_source":33,"_file":7223,"_stem":7224,"_extension":36},"/en-us/blog/authors/stephanie-garza",{"name":7218,"config":7219},"Stephanie Garza",{"headshot":7,"ctfId":7220},"StephanieGarza",{"template":685},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7226,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7227,"config":7231,"_id":7232,"_type":31,"title":7233,"_source":33,"_file":7234,"_stem":7235,"_extension":36},"/en-us/blog/authors/stephen-mcguinness",{"name":7228,"config":7229},"Stephen McGuinness",{"headshot":7,"ctfId":7230},"smcguinness1",{"template":685},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7237,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7238,"config":7243,"_id":7244,"_type":31,"title":7239,"_source":33,"_file":7245,"_stem":7246,"_extension":36},"/en-us/blog/authors/stephen-walters",{"name":7239,"config":7240},"Stephen Walters",{"headshot":7241,"ctfId":7242},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":685},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7248,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7249,"config":7254,"_id":7255,"_type":31,"title":7250,"_source":33,"_file":7256,"_stem":7257,"_extension":36},"/en-us/blog/authors/steve-abrams",{"name":7250,"config":7251},"Steve Abrams",{"headshot":7252,"ctfId":7253},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":685},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7259,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7260,"config":7264,"_id":7265,"_type":31,"title":7261,"_source":33,"_file":7266,"_stem":7267,"_extension":36},"/en-us/blog/authors/steve-azzopardi",{"name":7261,"config":7262},"Steve Azzopardi",{"headshot":7,"ctfId":7263},"steveazz",{"template":685},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7269,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7270,"config":7275,"_id":7276,"_type":31,"title":7271,"_source":33,"_file":7277,"_stem":7278,"_extension":36},"/en-us/blog/authors/steve-grossman",{"name":7271,"config":7272},"Steve Grossman",{"headshot":7273,"ctfId":7274},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":685},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7280,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7281,"config":7285,"_id":7286,"_type":31,"title":7282,"_source":33,"_file":7287,"_stem":7288,"_extension":36},"/en-us/blog/authors/steve-ropa",{"name":7282,"config":7283},"Steve Ropa",{"headshot":716,"ctfId":7284},"Steve-Ropa",{"template":685},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7290,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7291,"config":7295,"_id":7296,"_type":31,"title":7292,"_source":33,"_file":7297,"_stem":7298,"_extension":36},"/en-us/blog/authors/steve-truong",{"name":7292,"config":7293},"Steve Truong",{"headshot":7,"ctfId":7294},"sttruong",{"template":685},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7300,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7301,"config":7305,"_id":7306,"_type":31,"title":7302,"_source":33,"_file":7307,"_stem":7308,"_extension":36},"/en-us/blog/authors/steven-zinck",{"name":7302,"config":7303},"Steven Zinck",{"headshot":716,"ctfId":7304},"49JllsB7PFUrjj2Wi4Wa2O",{"template":685},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7310,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7311,"config":7315,"_id":7316,"_type":31,"title":7312,"_source":33,"_file":7317,"_stem":7318,"_extension":36},"/en-us/blog/authors/sunil-kowlgi",{"name":7312,"config":7313},"Sunil Kowlgi",{"headshot":716,"ctfId":7314},"Sunil-Kowlgi",{"template":685},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7320,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7321,"config":7325,"_id":7326,"_type":31,"title":7322,"_source":33,"_file":7327,"_stem":7328,"_extension":36},"/en-us/blog/authors/suri-patel",{"name":7322,"config":7323},"Suri Patel",{"headshot":716,"ctfId":7324},"suripatel",{"template":685},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7330,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7331,"config":7336,"_id":7337,"_type":31,"title":7332,"_source":33,"_file":7338,"_stem":7339,"_extension":36},"/en-us/blog/authors/susan-tacker",{"name":7332,"config":7333},"Susan Tacker",{"headshot":7334,"ctfId":7335},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":685},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7341,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7342,"config":7348,"_id":7349,"_type":31,"title":7343,"_source":33,"_file":7350,"_stem":7351,"_extension":36},"/en-us/blog/authors/susie-bitters",{"name":7343,"config":7344},"Susie Bitters",{"headshot":7345,"linkedin":7346,"ctfId":7347},"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":685},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7353,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7354,"config":7358,"_id":7359,"_type":31,"title":7355,"_source":33,"_file":7360,"_stem":7361,"_extension":36},"/en-us/blog/authors/suzanne-selhorn",{"name":7355,"config":7356},"Suzanne Selhorn",{"headshot":7357,"ctfId":4534},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":685},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7363,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7364,"config":7369,"_id":7370,"_type":31,"title":7365,"_source":33,"_file":7371,"_stem":7372,"_extension":36},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7365,"config":7366},"Tanuja Jayarama Raju",{"headshot":7367,"ctfId":7368},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":685},"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":7374,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7375,"config":7380,"_id":7381,"_type":31,"title":7376,"_source":33,"_file":7382,"_stem":7383,"_extension":36},"/en-us/blog/authors/taurie-davis",{"name":7376,"config":7377},"Taurie Davis",{"headshot":7378,"ctfId":7379},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":685},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7385,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7386,"config":7391,"_id":7392,"_type":31,"title":7393,"_source":33,"_file":7394,"_stem":7395,"_extension":36},"/en-us/blog/authors/taylor-mccaslin",{"name":7387,"config":7388},"Taylor McCaslin",{"headshot":7389,"ctfId":7390},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":685},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7397,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7398,"config":7402,"_id":7403,"_type":31,"title":7399,"_source":33,"_file":7404,"_stem":7405,"_extension":36},"/en-us/blog/authors/taylor-murphy",{"name":7399,"config":7400},"Taylor Murphy",{"headshot":7,"ctfId":7401},"tayloramurphy",{"template":685},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7407,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7408,"config":7413,"_id":7414,"_type":31,"title":7409,"_source":33,"_file":7415,"_stem":7416,"_extension":36},"/en-us/blog/authors/ted-gieschen",{"name":7409,"config":7410},"Ted Gieschen",{"headshot":7411,"ctfId":7412},"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":685},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7418,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7419,"config":7423,"_id":7424,"_type":31,"title":7420,"_source":33,"_file":7425,"_stem":7426,"_extension":36},"/en-us/blog/authors/thao-yeager",{"name":7420,"config":7421},"Thao Yeager",{"headshot":7,"ctfId":7422},"thaoyeager",{"template":685},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7428,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7429,"config":7434,"_id":7435,"_type":31,"title":7436,"_source":33,"_file":7437,"_stem":7438,"_extension":36},"/en-us/blog/authors/thiago-figueir",{"name":7430,"config":7431},"Thiago Figueiró",{"headshot":7432,"ctfId":7433},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":685},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7440,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7441,"config":7446,"_id":7447,"_type":31,"title":7442,"_source":33,"_file":7448,"_stem":7449,"_extension":36},"/en-us/blog/authors/thong-kuah",{"name":7442,"config":7443},"Thong Kuah",{"headshot":7444,"ctfId":7445},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":685},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7451,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7452,"config":7456,"_id":7457,"_type":31,"title":7453,"_source":33,"_file":7458,"_stem":7459,"_extension":36},"/en-us/blog/authors/tim-davis",{"name":7453,"config":7454},"Tim Davis",{"headshot":716,"ctfId":7455},"6PksqjEtq1Y8goFUvAUcIn",{"template":685},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7461,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7462,"config":7466,"_id":7467,"_type":31,"title":7463,"_source":33,"_file":7468,"_stem":7469,"_extension":36},"/en-us/blog/authors/tim-lehnen",{"name":7463,"config":7464},"Tim Lehnen",{"headshot":7,"ctfId":7465},"hestenet",{"template":685},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7471,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7472,"config":7477,"_id":7478,"_type":31,"title":7473,"_source":33,"_file":7479,"_stem":7480,"_extension":36},"/en-us/blog/authors/tim-rizzi",{"name":7473,"config":7474},"Tim Rizzi",{"headshot":7475,"ctfId":7476},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":685},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7482,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7483,"config":7487,"_id":7489,"_type":31,"title":7484,"_source":33,"_file":7490,"_stem":7491,"_extension":36},"/en-us/blog/authors/tim-zallmann",{"name":7484,"config":7485},"Tim Zallmann",{"headshot":7486},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":685,"gitlabHandle":7488},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7493,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7494,"config":7498,"_id":7499,"_type":31,"title":7495,"_source":33,"_file":7500,"_stem":7501,"_extension":36},"/en-us/blog/authors/tina-sturgis",{"name":7495,"config":7496},"Tina Sturgis",{"headshot":7,"ctfId":7497},"TinaS",{"template":685},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7503,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7504,"config":7508,"_id":7509,"_type":31,"title":7510,"_source":33,"_file":7511,"_stem":7512,"_extension":36},"/en-us/blog/authors/tobias-gnther",{"name":7505,"config":7506},"Tobias Günther",{"headshot":716,"ctfId":7507},"Tobias-Gnther",{"template":685},"content:en-us:blog:authors:tobias-gnther.yml","Tobias Gnther","en-us/blog/authors/tobias-gnther.yml","en-us/blog/authors/tobias-gnther",{"_path":7514,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7515,"config":7519,"_id":7520,"_type":31,"title":7516,"_source":33,"_file":7521,"_stem":7522,"_extension":36},"/en-us/blog/authors/todd-barr",{"name":7516,"config":7517},"Todd Barr",{"headshot":7,"ctfId":7518},"twbarr",{"template":685},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7524,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7525,"config":7529,"_id":7530,"_type":31,"title":7526,"_source":33,"_file":7531,"_stem":7532,"_extension":36},"/en-us/blog/authors/tom-cooney",{"name":7526,"config":7527},"Tom Cooney",{"headshot":7,"ctfId":7528},"tomcooney",{"template":685},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7534,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7535,"config":7540,"_id":7541,"_type":31,"title":7536,"_source":33,"_file":7542,"_stem":7543,"_extension":36},"/en-us/blog/authors/tomas-vik",{"name":7536,"config":7537},"Tomas Vik",{"headshot":7538,"ctfId":7539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681785/Blog/Author%20Headshots/viktomas-headshot.jpg","viktomas",{"template":685},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7545,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7546,"config":7551,"_id":7552,"_type":31,"title":7547,"_source":33,"_file":7553,"_stem":7554,"_extension":36},"/en-us/blog/authors/tomasz-maczukin",{"name":7547,"config":7548},"Tomasz Maczukin",{"headshot":7549,"ctfId":7550},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682116/Blog/Author%20Headshots/tmaczukin-headshot.jpg","tmaczukin",{"template":685},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7556,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7557,"config":7562,"_id":7563,"_type":31,"title":7558,"_source":33,"_file":7564,"_stem":7565,"_extension":36},"/en-us/blog/authors/toon-claes",{"name":7558,"config":7559},"Toon Claes",{"headshot":7560,"ctfId":7561},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663082/Blog/Author%20Headshots/toon_claes_headshot.png","toon",{"template":685},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7567,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7568,"config":7573,"_id":7574,"_type":31,"title":7569,"_source":33,"_file":7575,"_stem":7576,"_extension":36},"/en-us/blog/authors/torsten-linz",{"name":7569,"config":7570},"Torsten Linz",{"headshot":7571,"ctfId":7572},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658907/Blog/Author%20Headshots/tlinz-headshot.jpg","tlinz",{"template":685},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7578,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7579,"config":7583,"_id":7584,"_type":31,"title":7580,"_source":33,"_file":7585,"_stem":7586,"_extension":36},"/en-us/blog/authors/trevor-knudsen",{"name":7580,"config":7581},"Trevor Knudsen",{"headshot":7,"ctfId":7582},"Tknudsen",{"template":685},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7588,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7589,"config":7594,"_id":7595,"_type":31,"title":7590,"_source":33,"_file":7596,"_stem":7597,"_extension":36},"/en-us/blog/authors/tristan-read",{"name":7590,"config":7591},"Tristan Read",{"headshot":7592,"ctfId":7593},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679131/Blog/Author%20Headshots/tristan.png","tristanread",{"template":685},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7599,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7600,"config":7605,"_id":7606,"_type":31,"title":7601,"_source":33,"_file":7607,"_stem":7608,"_extension":36},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7601,"config":7602},"Tsukasa Komatsubara",{"headshot":7603,"ctfId":7604},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659784/Blog/Author%20Headshots/gitlab_tsukasa.jpg","31YQLiBRrJPn35BBhY69ly",{"template":685},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7610,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7611,"config":7615,"_id":7616,"_type":31,"title":7612,"_source":33,"_file":7617,"_stem":7618,"_extension":36},"/en-us/blog/authors/tsvi-zandany",{"name":7612,"config":7613},"Tsvi Zandany",{"headshot":716,"ctfId":7614},"Tsvi-Zandany",{"template":685},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7620,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7621,"config":7625,"_id":7626,"_type":31,"title":7622,"_source":33,"_file":7627,"_stem":7628,"_extension":36},"/en-us/blog/authors/tye-davis",{"name":7622,"config":7623},"Tye Davis",{"headshot":7,"ctfId":7624},"davistye",{"template":685},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7630,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7631,"config":7635,"_id":7636,"_type":31,"title":7632,"_source":33,"_file":7637,"_stem":7638,"_extension":36},"/en-us/blog/authors/tyler-williams",{"name":7632,"config":7633},"Tyler Williams",{"headshot":7,"ctfId":7634},"tywilliams",{"template":685},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7640,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7641,"config":7645,"_id":7646,"_type":31,"title":7647,"_source":33,"_file":7648,"_stem":7649,"_extension":36},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7642,"config":7643},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7644},"ulrica1",{"template":685},"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":7651,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7652,"config":7657,"_id":7658,"_type":31,"title":7653,"_source":33,"_file":7659,"_stem":7660,"_extension":36},"/en-us/blog/authors/valentine-mairet",{"name":7653,"config":7654},"Valentine Mairet",{"headshot":7655,"ctfId":7656},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665455/Blog/Author%20Headshots/valentine_mairet_headshot.png","1AQjHTpq6sBauRMdCibxQX",{"template":685},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7662,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7663,"config":7667,"_id":7668,"_type":31,"title":7664,"_source":33,"_file":7669,"_stem":7670,"_extension":36},"/en-us/blog/authors/valerie-silverthorne",{"name":7664,"config":7665},"Valerie Silverthorne",{"headshot":716,"ctfId":7666},"vsilverthorne",{"template":685},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7672,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7673,"config":7677,"_id":7678,"_type":31,"title":7674,"_source":33,"_file":7679,"_stem":7680,"_extension":36},"/en-us/blog/authors/vanessa-wegner",{"name":7674,"config":7675},"Vanessa Wegner",{"headshot":7,"ctfId":7676},"vwegner",{"template":685},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7682,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7683,"config":7688,"_id":7689,"_type":31,"title":7684,"_source":33,"_file":7690,"_stem":7691,"_extension":36},"/en-us/blog/authors/veethika-mishra",{"name":7684,"config":7685},"Veethika Mishra",{"headshot":7686,"ctfId":7687},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664676/Blog/Author%20Headshots/veethika-headshot.jpg","veethika",{"template":685},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7693,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7694,"config":7699,"_id":7700,"_type":31,"title":7695,"_source":33,"_file":7701,"_stem":7702,"_extension":36},"/en-us/blog/authors/vick-kelkar",{"name":7695,"config":7696},"Vick Kelkar",{"headshot":7697,"ctfId":7698},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668508/Blog/Author%20Headshots/vkelkar-headshot.jpg","vkelkar",{"template":685},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7704,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7705,"config":7709,"_id":7710,"_type":31,"title":7706,"_source":33,"_file":7711,"_stem":7712,"_extension":36},"/en-us/blog/authors/vicky-steeves",{"name":7706,"config":7707},"Vicky Steeves",{"headshot":7,"ctfId":7708},"vickysteeves",{"template":685},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7714,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7715,"config":7719,"_id":7720,"_type":31,"title":7716,"_source":33,"_file":7721,"_stem":7722,"_extension":36},"/en-us/blog/authors/victor-hernandez",{"name":7716,"config":7717},"Victor Hernandez",{"headshot":716,"ctfId":7718},"KVTkvySIqkAu34p2jsXZz",{"template":685},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7724,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7725,"config":7729,"_id":7730,"_type":31,"title":7726,"_source":33,"_file":7731,"_stem":7732,"_extension":36},"/en-us/blog/authors/victor-wu",{"name":7726,"config":7727},"Victor Wu",{"headshot":716,"ctfId":7728},"victorwu",{"template":685},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7734,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7735,"config":7740,"_id":7741,"_type":31,"title":7736,"_source":33,"_file":7742,"_stem":7743,"_extension":36},"/en-us/blog/authors/viktor-nagy",{"name":7736,"config":7737},"Viktor Nagy",{"headshot":7738,"ctfId":7739},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662918/Blog/Author%20Headshots/nagy-headshot.jpg","nagyvgitlab",{"template":685},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7745,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7746,"config":7750,"_id":7751,"_type":31,"title":7747,"_source":33,"_file":7752,"_stem":7753,"_extension":36},"/en-us/blog/authors/vincent-jong",{"name":7747,"config":7748},"Vincent Jong",{"headshot":716,"ctfId":7749},"Vincent-Jong",{"template":685},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7755,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7756,"config":7761,"_id":7762,"_type":31,"title":7757,"_source":33,"_file":7763,"_stem":7764,"_extension":36},"/en-us/blog/authors/vincy-wilson",{"name":7757,"config":7758},"Vincy Wilson",{"headshot":7759,"ctfId":7760},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669069/Blog/Author%20Headshots/vincy.jpg","1iyKndVlbE3dQnxOJoSY0q",{"template":685},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7766,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7767,"config":7772,"_id":7773,"_type":31,"title":7768,"_source":33,"_file":7774,"_stem":7775,"_extension":36},"/en-us/blog/authors/vishal-tak",{"name":7768,"config":7769},"Vishal Tak",{"headshot":7770,"ctfId":7771},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663854/Blog/Author%20Headshots/vishal_tak_headshot.png","6BalO1YQUIuDdhUP80bFra",{"template":685},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7777,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7778,"config":7783,"_id":7784,"_type":31,"title":7779,"_source":33,"_file":7785,"_stem":7786,"_extension":36},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7779,"config":7780},"Vitor Meireles De Sousa",{"headshot":7781,"ctfId":7782},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682001/Blog/Author%20Headshots/vdesousa-headshot.png","vdesousa",{"template":685},"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":7788,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7789,"config":7793,"_id":7794,"_type":31,"title":7790,"_source":33,"_file":7795,"_stem":7796,"_extension":36},"/en-us/blog/authors/vlad-budica",{"name":7790,"config":7791},"Vlad Budica",{"headshot":716,"ctfId":7792},"Vlad-Budica",{"template":685},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7798,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7799,"config":7803,"_id":7804,"_type":31,"title":7800,"_source":33,"_file":7805,"_stem":7806,"_extension":36},"/en-us/blog/authors/vlad-stoianovici",{"name":7800,"config":7801},"Vlad Stoianovici",{"headshot":7,"ctfId":7802},"vstoianovici",{"template":685},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7808,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7809,"config":7813,"_id":7814,"_type":31,"title":7810,"_source":33,"_file":7815,"_stem":7816,"_extension":36},"/en-us/blog/authors/wayne-haber",{"name":7810,"config":7811},"Wayne Haber",{"headshot":7,"ctfId":7812},"whaber",{"template":685},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7818,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7819,"config":7823,"_id":7824,"_type":31,"title":7820,"_source":33,"_file":7825,"_stem":7826,"_extension":36},"/en-us/blog/authors/will-chandler",{"name":7820,"config":7821},"Will Chandler",{"headshot":716,"ctfId":7822},"DKiIGSSRIyO6QdTQkRkjs",{"template":685},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7828,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7829,"config":7834,"_id":7835,"_type":31,"title":7830,"_source":33,"_file":7836,"_stem":7837,"_extension":36},"/en-us/blog/authors/will-leidheiser",{"name":7830,"config":7831},"Will Leidheiser",{"headshot":7832,"ctfId":7833},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679335/Blog/Author%20Headshots/wleidheiser-headshot.jpg","wleidheiser",{"template":685},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7839,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7840,"config":7845,"_id":7846,"_type":31,"title":7841,"_source":33,"_file":7847,"_stem":7848,"_extension":36},"/en-us/blog/authors/william-arias",{"name":7841,"config":7842},"William Arias",{"headshot":7843,"ctfId":7844},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667549/Blog/Author%20Headshots/warias-headshot.jpg","warias",{"template":685},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7850,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7851,"config":7855,"_id":7856,"_type":31,"title":7852,"_source":33,"_file":7857,"_stem":7858,"_extension":36},"/en-us/blog/authors/william-chia",{"name":7852,"config":7853},"William Chia",{"headshot":7,"ctfId":7854},"williamchia",{"template":685},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7860,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7861,"config":7865,"_id":7866,"_type":31,"title":7862,"_source":33,"_file":7867,"_stem":7868,"_extension":36},"/en-us/blog/authors/yannis-roussos",{"name":7862,"config":7863},"Yannis Roussos",{"headshot":7,"ctfId":7864},"iroussos",{"template":685},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7870,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7871,"config":7875,"_id":7876,"_type":31,"title":7872,"_source":33,"_file":7877,"_stem":7878,"_extension":36},"/en-us/blog/authors/yevgeny-pats",{"name":7872,"config":7873},"Yevgeny Pats",{"headshot":7,"ctfId":7874},"ypats",{"template":685},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7880,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7881,"config":7885,"_id":7886,"_type":31,"title":7882,"_source":33,"_file":7887,"_stem":7888,"_extension":36},"/en-us/blog/authors/yorick-peterse",{"name":7882,"config":7883},"Yorick Peterse",{"headshot":716,"ctfId":7884},"Yorick-Peterse",{"template":685},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7890,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7891,"config":7895,"_id":7896,"_type":31,"title":7897,"_source":33,"_file":7898,"_stem":7899,"_extension":36},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7892,"config":7893},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7894},"zjgitlab",{"template":685},"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":7901,"_dir":678,"_draft":6,"_partial":6,"_locale":7,"content":7902,"config":7907,"_id":7908,"_type":31,"title":7903,"_source":33,"_file":7909,"_stem":7910,"_extension":36},"/en-us/blog/authors/zhaochen-li",{"name":7903,"config":7904},"Zhaochen Li",{"headshot":7905,"ctfId":7906},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664331/Blog/Author%20Headshots/Zhaochen_Li_headshot.png","D67XqgLJdlpOsrG3ivCGT",{"template":685},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7912,"_dir":39,"_draft":6,"_partial":6,"_locale":7,"header":7913,"eyebrow":7914,"blurb":7915,"button":7916,"secondaryButton":7920,"_id":7922,"_type":31,"title":7923,"_source":33,"_file":7924,"_stem":7925,"_extension":36},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":47,"config":7917},{"href":7918,"dataGaName":50,"dataGaLocation":7919},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":52,"config":7921},{"href":54,"dataGaName":55,"dataGaLocation":7919},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":7927,"content":7928,"config":7931,"_id":30,"_type":31,"title":32,"_source":33,"_file":34,"_stem":35,"_extension":36},{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},{"title":9,"description":10,"authors":7929,"heroImage":11,"date":19,"body":20,"category":21,"tags":7930,"updatedDate":26},[18],[23,24,25],{"slug":28,"featured":6,"template":29},1762174763277]