[{"data":1,"prerenderedAt":7995},["ShallowReactive",2],{"/en-us/blog/anomaly-detection-using-prometheus":3,"navigation-en-us":34,"banner-en-us":462,"footer-en-us":479,"footer-source-/en-us/blog/anomaly-detection-using-prometheus/":727,"blogAuthors-en-us":733,"next-steps-en-us":7980},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":24,"_id":27,"_type":28,"title":29,"_source":30,"_file":31,"_stem":32,"_extension":33},"/en-us/blog/anomaly-detection-using-prometheus","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"How to use Prometheus for anomaly detection in GitLab","Explore how Prometheus query language can be used to help you diagnose incidents, detect performance regressions, tackle abuse, and more.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667819/Blog/Hero%20Images/anomaly-detection-cover.png","https://about.gitlab.com/blog/anomaly-detection-using-prometheus","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"How to use Prometheus for anomaly detection in GitLab\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Sara Kassabian\"}],\n        \"datePublished\": \"2019-07-23\",\n      }",{"title":9,"description":10,"authors":17,"heroImage":11,"date":19,"body":20,"category":21,"tags":22},[18],"Sara Kassabian","2019-07-23","One of the more basic functions of the Prometheus query language is\nreal-time aggregation of [time series\ndata](https://prometheus.io/docs/prometheus/latest/querying/basics/).\n[Andrew Newdigate](/company/team/#suprememoocow), a distinguished engineer\non the GitLab infrastructure team, hypothesized that Prometheus query\nlanguage can also be used to detect anomalies in time series data.\n\n\n[Andrew broke down the different ways Prometheus can be\nused](https://vimeo.com/341141334) for the attendees of [Monitorama\n2019](https://monitorama.com/index.html). This blog post explains how\nanomaly detection works with Prometheus and includes the code snippets\nyou’ll need to try it out for yourself on your own system.\n\n\n## Why is anomaly detection useful?\n\n\nThere are four key reasons why anomaly detection is important to GitLab:\n\n\n1. **Diagnosing incidents**: We can figure out which services are performing\noutside their normal bounds quickly and reduce the average time it takes to\n[detect an incident\n(MTTD)](https://handbook.gitlab.com/handbook/engineering/infrastructure/incident-management/), bringing\nabout a faster resolution.\n\n2. **Detecting application performance regressions**: For example, if an n +\n1 regression is introduced and leads to one service calling another at a\nvery high rate, we can quickly track the issue down and resolve it.\n\n3. **Identify and resolve abuse**: GitLab offers free computing ([GitLab\nCI/CD](/topics/ci-cd/)) and hosting (GitLab Pages), and there are a small\nsubset of users who might take advantage.\n\n4. **Security**: Anomaly detection is essential to spotting unusual trends\nin GitLab time series data.\n\n\nFor these reasons and many others, Andrew investigated whether it was\npossible to perform anomaly detection on GitLab time series data by simply\nusing Prometheus queries and rules.\n\n\n## What level of aggregation is the correct one?\n\n\nFirst, time series data must be aggregated correctly. Andrew used a standard\ncounter of `http_requests_total` as the data source for this demonstration,\nalthough many other metrics can be applied using the same techniques.\n\n\n```\n\nhttp_requests_total{\n job=\"apiserver\",\n method=\"GET\",\n controller=\"ProjectsController\",\n status_code=\"200\",\n environment=\"prod\"\n}\n\n```\n\n{: .language-ruby}\n\n\nThis example metric has **some extra dimensions**: `method`, `controller`,\n`status_code`, `environment`, as well as the dimensions that Prometheus\nadds, such as `instance` and `job`.\n\n\nNext, you must choose the correct level of aggregation for the data you are\nusing. This is a bit of a Goldilocks problem – too much, too little, or just\nright – but it is essential for finding anomalies. By **aggregating the data\ntoo much**, it can be reduced to too few dimensions, creating two potential\nproblems:\n\n\n1. You can miss genuine anomalies because the aggregation hides problems\nthat are occurring within subsets of your data.\n\n2. If you do detect an anomaly, it's difficult to attribute it to a\nparticular part of your system without more investigation into the anomaly.\n\n\nBut by **aggregating the data too little**, you might end up with a series\nof data with very small sample sizes which can lead to false positives and\ncould mean flagging genuine data as outliers.\n\n\nJust right: Our experience has shown the **right level of aggregation is the\nservice level**, so we include the job label and the environment label, but\ndrop other dimensions. The data aggregation used through the rest of the\ntalk includes: job `http requests`, rate five minutes, which is basically a\nrate across job and environment on a five-minute window.\n\n\n```\n\n- record: job:http_requests:rate5m\n\nexpr: sum without(instance, method, controller, status_code)\n\n(rate(http_requests_total[5m]))\n\n# --> job:http_requests:rate5m{job=\"apiserver\", environment=\"prod\"}  21321\n\n# --> job:http_requests:rate5m{job=\"gitserver\", environment=\"prod\"}  2212\n\n# --> job:http_requests:rate5m{job=\"webserver\", environment=\"prod\"}  53091\n\n```\n\n{: .language-ruby}\n\n\n## Using z-score for anomaly detection\n\n\nSome of the primary principles of statistics can be applied to detecting\nanomalies with Prometheus.\n\n\nIf we know the average value and [standard deviation\n(σ)](https://www.statisticshowto.datasciencecentral.com/probability-and-statistics/standard-deviation/)\nof a Prometheus series, we can use any sample in the series to calculate the\nz-score. The z-score is measured in the number of standard deviations from\nthe mean. So a z-score of 0 would mean the z-score is identical to the mean\nin a data set with a normal distribution, while a z-score of 1 is 1.0 σ from\nthe mean, etc.\n\n\nAssuming the underlying data has a normal distribution, 99.7% of the samples\nshould have a z-score between zero to three. The further the z-score is from\nzero, the less likely it is to exist. We apply this property to detecting\nanomalies in the Prometheus series.\n\n\n1. Calculate the average and standard deviation for the metric using data\nwith a large sample size. For this example, we use one week’s worth of data.\nIf we assume we're evaluating the recording rule once a minute, over a\none-week period we'll have just over 10,000 samples.\n\n\n```\n\n# Long-term average value for the series\n\n- record: job:http_requests:rate5m:avg_over_time_1w\n\nexpr: avg_over_time(job:http_requests:rate5m[1w])\n\n\n# Long-term standard deviation for the series\n\n- record: job:http_requests:rate5m:stddev_over_time_1w\n\nexpr: stddev_over_time(job:http_requests:rate5m[1w])\n\n```\n\n{: .language-ruby}\n\n\n2.  We can calculate the z-score for the Prometheus query once we have the\naverage and standard deviation for the aggregation.\n\n\n```\n\n# Z-Score for aggregation\n\n(\n\njob:http_requests:rate5m -\n\njob:http_requests:rate5m:avg_over_time_1w\n\n) /  job:http_requests:rate5m:stddev_over_time_1w\n\n```\n\n{: .language-ruby}\n\n\nBased on the statistical principles of normal distributions, **we can assume\nthat any value that falls outside of the range of roughly +3 to -3 is an\nanomaly**. We can build an alert around this principle. For example, we can\nget an alert when our aggregation is out of this range for more than five\nminutes.\n\n\n![Graph showing RPS on GitLab.com over 48\nhours](https://about.gitlab.com/images/blogimages/prometheus_anomaly/image1.png){:\n.shadow.medium.center}\n\n\nGitLab.com Pages service RPS over 48 hours, with ±3 z-score region in green\n\n{: .note.text-center}\n\n\nZ-scores are a bit awkward to interpret on a graph because they don’t have a\nunit of measurement. But anomalies on this chart are easy to detect.\nAnything that appears outside of the green area (which denotes z-scores that\nfall within a range of +3 or -3) is an anomaly.\n\n\n### What if you don’t have a normal distribution?\n\n\n**But wait**: We make a big leap by assuming that our underlying aggregation\nhas a normal distribution. If we calculate the z-score with data that isn’t\nnormally distributed, our results will be incorrect.\n\n\nThere are numerous statistical techniques for testing your data for a normal\ndistribution, but the best option is to test that your underlying data has a\nz-score of about **+4 to -4**.\n\n\n```\n\n(\n max_over_time(job:http_requests:rate5m[1w]) - avg_over_time(job:http_requests:rate5m[1w])\n) / stddev_over_time(job:http_requests:rate5m[1w])\n\n# --> {job=\"apiserver\", environment=\"prod\"}  4.01\n\n# --> {job=\"gitserver\", environment=\"prod\"}  3.96\n\n# --> {job=\"webserver\", environment=\"prod\"}  2.96\n\n\n(\n min_over_time(job:http_requests:rate5m[1w]) - avg_over_time(job:http_requests:rate5m[1w])\n) / stddev_over_time(job:http_requests:rate5m[1w])\n\n# --> {job=\"apiserver\", environment=\"prod\"}  -3.8\n\n# --> {job=\"gitserver\", environment=\"prod\"}  -4.1\n\n# --> {job=\"webserver\", environment=\"prod\"}  -3.2\n\n```\n\n{: .language-ruby}\n\n\nTwo Prometheus queries testing the minimum and maximum z-scores.\n\n{: .note.text-center}\n\n\nIf your results return with a range of +20 to -20, the tail is too long and\nyour results will be skewed. Remember too that this needs to be run on an\naggregated, not unaggregated series. Metrics that probably don’t have normal\ndistributions include things like error rates, latencies, queue lengths\netc., but many of these metrics will tend to work better with fixed\nthresholds for alerting anyway.\n\n\n## Detecting anomalies using seasonality\n\n\nWhile calculating z-scores works well with normal distributions of time\nseries data, there is a second method that can yield _even more accurate_\nanomaly detection results. **Seasonality** is a characteristic of a time\nseries metric in which the metric experiences regular and predictable\nchanges that recur every cycle.\n\n\n![Graph showing Gitaly RPS, Mon-Sun over four\nweeks](https://about.gitlab.com/images/blogimages/prometheus_anomaly/image2.png){:\n.shadow.medium.center}\n\n\nGitaly requests per second (RPS), Monday-Sunday, over four consecutive weeks\n\n{: .note.text-center}\n\n\nThis graph illustrates the RPS (requests per second) rates for Gitaly over\nseven days, Monday through Sunday, over four consecutive weeks. The\nseven-day range is referred to as the “offset,” meaning the pattern that\nwill be measured.\n\n\nEach week on the graph is in a different color. The seasonality in the data\nis indicated by the consistency in trends indicated on the graph – every\nMonday morning, we see the same rise in RPS rates, and on Friday evenings,\nwe see the RPS rates drop off, week after week.\n\n\nBy leveraging the seasonality in our time series data we can create more\naccurate predictions which will lead to better anomaly detection.\n\n\n### How do we leverage seasonality?\n\n\nCalculating seasonality with Prometheus required that we iterate on a few\ndifferent statistical principles.\n\n\nIn the first iteration, we calculate by adding the growth trend we’ve seen\nover a one-week period to the value from the previous week. Calculate the\ngrowth trend by subtracting the rolling one-week average for last week from\nthe rolling one-week average for now.\n\n\n```\n\n- record: job:http_requests:rate5m_prediction\n  expr: >\n    job:http_requests:rate5m offset 1w                     # Value from last period\n    + job:http_requests:rate5m:avg_over_time_1w            # One-week growth trend\n    - job:http_requests:rate5m:avg_over_time_1w offset 1w\n```\n\n\nThe first iteration is a bit narrow; we’re using a five-minute window from\nthis week and the previous week to derive our predictions.\n\n\nIn the second iteration, we expand our scope by taking the average of a\nfour-hour period for the previous week and comparing it to the current week.\nSo, if we’re trying to predict the value of a metric at 8am on a Monday\nmorning, instead of using the same five-minute window from one week prior,\nwe use the average value for the metric from 6am until 10am for the previous\nmorning.\n\n\n```\n\n- record: job:http_requests:rate5m_prediction\n  expr: >\n    avg_over_time(job:http_requests:rate5m[4h] offset 166h) # Rounded value from last period\n    + job:http_requests:rate5m:avg_over_time_1w             # Add 1w growth trend\n    - job:http_requests:rate5m:avg_over_time_1w offset 1w\n```\n\n{: .language-yaml}\n\n\nWe use the 166 hours in the query instead of one week because we want to use\na four-hour period based on the current time of day, so we need the offset\nto be two hours short of a full week.\n\n\n![Comparing the real Gitaly RPS with our\nprediction](https://about.gitlab.com/images/blogimages/prometheus_anomaly/image3.png){:\n.shadow.medium.center}\n\n\nGitaly service RPS (yellow) vs prediction (blue), over two weeks.\n\n{: .note.text-center}\n\n\nA comparison of the actual Gitaly RPS (yellow) with our prediction (blue)\nindicate that our calculations were fairly accurate. However, this method\nhas a flaw.\n\n\nGitLab usage was lower than the typical Wednesday because May 1 was\nInternational Labor Day, a holiday celebrated in many different countries.\nBecause our growth rate is informed by the previous week’s usage, our\npredictions for the next week, on Wednesday, May 8, were for a lower RPS\nthan it would have been had it not been a holiday on Wednesday, May 1.\n\n\nThis can be fixed by making three predictions for three consecutive weeks\nbefore Wednesday, May 1; for the previous Wednesday, the Wednesday before\nthat, and the Wednesday before that. The query stays the same, but the\noffset is adjusted.\n\n\n```\n\n- record: job:http_requests:rate5m_prediction\n  expr: >\n   quantile(0.5,\n     label_replace(\n       avg_over_time(job:http_requests:rate5m[4h] offset 166h)\n       + job:http_requests:rate5m:avg_over_time_1w - job:http_requests:rate5m:avg_over_time_1w offset 1w\n       , \"offset\", \"1w\", \"\", \"\")\n     or\n     label_replace(\n       avg_over_time(job:http_requests:rate5m[4h] offset 334h)\n       + job:http_requests:rate5m:avg_over_time_1w - job:http_requests:rate5m:avg_over_time_1w offset 2w\n       , \"offset\", \"2w\", \"\", \"\")\n     or\n     label_replace(\n       avg_over_time(job:http_requests:rate5m[4h] offset 502h)\n       + job:http_requests:rate5m:avg_over_time_1w - job:http_requests:rate5m:avg_over_time_1w offset 3w\n       , \"offset\", \"3w\", \"\", \"\")\n   )\n   without (offset)\n```\n\n{: .language-yaml}\n\n\n![A graph showing three predictions for three Wednesdays vs. actual Gitaly\nRPS](https://about.gitlab.com/images/blogimages/prometheus_anomaly/image4.png){:\n.shadow.medium.center}\n\n\nThree predictions for three Wednesdays vs actual Gitaly RPS, Wednesday, May\n8 (one week following International Labor Day)\n\n{: .note.text-center}\n\n\nOn the graph we’ve plotted Wednesday, May 8 and three predictions for the\nthree consecutive weeks before May 8. We can see that two of the predictions\nare good, but the May 1 prediction is still far off base.\n\n\nAlso, we don’t want three predictions, we want **one prediction**. Taking\nthe average is not an option, because it will be diluted by our skewed May 1\nRPS data. Instead, we want to calculate the median. Prometheus does not have\na median query, but we can use a quantile aggregation in lieu of the median.\n\n\nThe one problem with this approach is that we're trying to include three\nseries in an aggregation, and those three series are actually all the same\nseries over three weeks. In other words, they all have the same labels, so\nconnecting them is tricky. To avoid confusion, we create a label called\n`offset` and use the label-replace function to add an offset to each of the\nthree weeks. Next, in the quantile aggregation, we strip that off, and that\ngives us the middle value out of the three.\n\n\n```\n\n- record: job:http_requests:rate5m_prediction\n  expr: >\n   quantile(0.5,\n     label_replace(\n       avg_over_time(job:http_requests:rate5m[4h] offset 166h)\n       + job:http_requests:rate5m:avg_over_time_1w - job:http_requests:rate5m:avg_over_time_1w offset 1w\n       , \"offset\", \"1w\", \"\", \"\")\n     or\n     label_replace(\n       avg_over_time(job:http_requests:rate5m[4h] offset 334h)\n       + job:http_requests:rate5m:avg_over_time_1w - job:http_requests:rate5m:avg_over_time_1w offset 2w\n       , \"offset\", \"2w\", \"\", \"\")\n     or\n     label_replace(\n       avg_over_time(job:http_requests:rate5m[4h] offset 502h)\n       + job:http_requests:rate5m:avg_over_time_1w - job:http_requests:rate5m:avg_over_time_1w offset 3w\n       , \"offset\", \"3w\", \"\", \"\")\n   )\n   without (offset)\n```\n\n{: .language-yaml}\n\n\nNow, our prediction deriving the median value from the series of three\naggregations is much more accurate.\n\n\n![Graph showing median predications vs. actual Gitaly RPS on Weds May\n8](https://about.gitlab.com/images/blogimages/prometheus_anomaly/image5.png){:\n.shadow.medium.center}\n\n\nMedian predictions vs actual Gitaly RPS, Wednesday, May 8 (one week\nfollowing International Labor Day)\n\n{: .note.text-center}\n\n\n### How do we know our prediction is truly accurate?\n\n\nTo test the accuracy of our prediction, we can return to the z-score. We can\nuse the z-score to measure the sample's distance from its prediction in\nstandard deviations. The more standard deviations away from our prediction\nwe are, the greater the likelihood is that a particular value is an outlier.\n\n\n![Predicted normal range\n+1.5σ/-1.5σ](https://about.gitlab.com/images/blogimages/prometheus_anomaly/image6.png){:\n.shadow.medium.center}\n\n\nPredicted normal range ± 1.5σ for Gitaly Service\n\n{: .note.text-center}\n\n\nWe can update our Grafana chart to use the seasonal prediction rather than\nthe weekly rolling average value. The range of normality for a certain time\nof day is shaded in green. Anything that falls outside of the shaded green\narea is considered an outlier. In this case, the outlier was on Sunday\nafternoon when our cloud provider encountered some network issues.\n\n\nUsing boundaries of ±2σ on either side of our prediction is a pretty good\nmeasurement for determining an outlier with seasonal predictions.\n\n\n## How to set up alerting using Prometheus\n\n\nIf you want to set up alerts for anomaly events, you can apply a pretty\nstraightforward rule to Prometheus that checks if the z-score of the metric\nis between a standard deviation of **+2 or -2**.\n\n\n```\n\n- alert: RequestRateOutsideNormalRange\n  expr: >\n   abs(\n     (\n       job:http_requests:rate5m - job:http_requests:rate5m_prediction\n     ) / job:http_requests:rate5m:stddev_over_time_1w\n   ) > 2\n  for: 10m\n  labels:\n    severity: warning\n  annotations:\n    summary: Requests for job {{ $labels.job }} are outside of expected operating parameters\n```\n\n{: .language-yaml}\n\n\nAt GitLab, we use a custom routing rule that pings Slack when any anomalies\nare detected, but doesn’t page our on-call support staff.\n\n\n## The takeaway\n\n\n1. Prometheus can be used for some types of anomaly detection\n\n2. The right level of data aggregation is the key to anomaly detection\n\n3. Z-scoring is an effective method, if your data has a normal distribution\n\n4. Seasonal metrics can provide great results for anomaly detection\n\n\nWatch Andrew’s full presentation from [Monitorama\n2019](https://monitorama.com/index.html). If you have questions for Andrew,\nreach him on Slack at #talk-andrew-newdigate. You can also read more about\n[why you need Prometheus](/blog/why-all-organizations-need-prometheus/).\n\n\n\u003C!-- blank line -->\n\n\u003Cfigure class=\"video_container\">\n  \u003Ciframe src=\"https://player.vimeo.com/video/341141334?portrait=0\" frameborder=\"0\" allowfullscreen=\"true\"> \u003C/iframe>\n\u003C/figure>\n","engineering",[23],"inside GitLab",{"slug":25,"featured":6,"template":26},"anomaly-detection-using-prometheus","BlogPost","content:en-us:blog:anomaly-detection-using-prometheus.yml","yaml","Anomaly Detection Using Prometheus","content","en-us/blog/anomaly-detection-using-prometheus.yml","en-us/blog/anomaly-detection-using-prometheus","yml",{"_path":35,"_dir":36,"_draft":6,"_partial":6,"_locale":7,"data":37,"_id":458,"_type":28,"title":459,"_source":30,"_file":460,"_stem":461,"_extension":33},"/shared/en-us/main-navigation","en-us",{"logo":38,"freeTrial":43,"sales":48,"login":53,"items":58,"search":389,"minimal":420,"duo":439,"pricingDeployment":448},{"config":39},{"href":40,"dataGaName":41,"dataGaLocation":42},"/","gitlab logo","header",{"text":44,"config":45},"Get free trial",{"href":46,"dataGaName":47,"dataGaLocation":42},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":49,"config":50},"Talk to sales",{"href":51,"dataGaName":52,"dataGaLocation":42},"/sales/","sales",{"text":54,"config":55},"Sign in",{"href":56,"dataGaName":57,"dataGaLocation":42},"https://gitlab.com/users/sign_in/","sign in",[59,103,200,205,310,370],{"text":60,"config":61,"cards":63,"footer":86},"Platform",{"dataNavLevelOne":62},"platform",[64,70,78],{"title":60,"description":65,"link":66},"The most comprehensive AI-powered DevSecOps Platform",{"text":67,"config":68},"Explore our Platform",{"href":69,"dataGaName":62,"dataGaLocation":42},"/platform/",{"title":71,"description":72,"link":73},"GitLab Duo (AI)","Build software faster with AI at every stage of development",{"text":74,"config":75},"Meet GitLab Duo",{"href":76,"dataGaName":77,"dataGaLocation":42},"/gitlab-duo/","gitlab duo ai",{"title":79,"description":80,"link":81},"Why GitLab","10 reasons why Enterprises choose GitLab",{"text":82,"config":83},"Learn more",{"href":84,"dataGaName":85,"dataGaLocation":42},"/why-gitlab/","why gitlab",{"title":87,"items":88},"Get started with",[89,94,99],{"text":90,"config":91},"Platform Engineering",{"href":92,"dataGaName":93,"dataGaLocation":42},"/solutions/platform-engineering/","platform engineering",{"text":95,"config":96},"Developer Experience",{"href":97,"dataGaName":98,"dataGaLocation":42},"/developer-experience/","Developer experience",{"text":100,"config":101},"MLOps",{"href":102,"dataGaName":100,"dataGaLocation":42},"/topics/devops/the-role-of-ai-in-devops/",{"text":104,"left":105,"config":106,"link":108,"lists":112,"footer":182},"Product",true,{"dataNavLevelOne":107},"solutions",{"text":109,"config":110},"View all Solutions",{"href":111,"dataGaName":107,"dataGaLocation":42},"/solutions/",[113,138,161],{"title":114,"description":115,"link":116,"items":121},"Automation","CI/CD and automation to accelerate deployment",{"config":117},{"icon":118,"href":119,"dataGaName":120,"dataGaLocation":42},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[122,126,130,134],{"text":123,"config":124},"CI/CD",{"href":125,"dataGaLocation":42,"dataGaName":123},"/solutions/continuous-integration/",{"text":127,"config":128},"AI-Assisted Development",{"href":76,"dataGaLocation":42,"dataGaName":129},"AI assisted development",{"text":131,"config":132},"Source Code Management",{"href":133,"dataGaLocation":42,"dataGaName":131},"/solutions/source-code-management/",{"text":135,"config":136},"Automated Software Delivery",{"href":119,"dataGaLocation":42,"dataGaName":137},"Automated software delivery",{"title":139,"description":140,"link":141,"items":146},"Security","Deliver code faster without compromising security",{"config":142},{"href":143,"dataGaName":144,"dataGaLocation":42,"icon":145},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[147,151,156],{"text":148,"config":149},"Application Security Testing",{"href":143,"dataGaName":150,"dataGaLocation":42},"Application security testing",{"text":152,"config":153},"Software Supply Chain Security",{"href":154,"dataGaLocation":42,"dataGaName":155},"/solutions/supply-chain/","Software supply chain security",{"text":157,"config":158},"Software Compliance",{"href":159,"dataGaName":160,"dataGaLocation":42},"/solutions/software-compliance/","software compliance",{"title":162,"link":163,"items":168},"Measurement",{"config":164},{"icon":165,"href":166,"dataGaName":167,"dataGaLocation":42},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[169,173,177],{"text":170,"config":171},"Visibility & Measurement",{"href":166,"dataGaLocation":42,"dataGaName":172},"Visibility and Measurement",{"text":174,"config":175},"Value Stream Management",{"href":176,"dataGaLocation":42,"dataGaName":174},"/solutions/value-stream-management/",{"text":178,"config":179},"Analytics & Insights",{"href":180,"dataGaLocation":42,"dataGaName":181},"/solutions/analytics-and-insights/","Analytics and insights",{"title":183,"items":184},"GitLab for",[185,190,195],{"text":186,"config":187},"Enterprise",{"href":188,"dataGaLocation":42,"dataGaName":189},"/enterprise/","enterprise",{"text":191,"config":192},"Small Business",{"href":193,"dataGaLocation":42,"dataGaName":194},"/small-business/","small business",{"text":196,"config":197},"Public Sector",{"href":198,"dataGaLocation":42,"dataGaName":199},"/solutions/public-sector/","public sector",{"text":201,"config":202},"Pricing",{"href":203,"dataGaName":204,"dataGaLocation":42,"dataNavLevelOne":204},"/pricing/","pricing",{"text":206,"config":207,"link":209,"lists":213,"feature":297},"Resources",{"dataNavLevelOne":208},"resources",{"text":210,"config":211},"View all resources",{"href":212,"dataGaName":208,"dataGaLocation":42},"/resources/",[214,247,269],{"title":215,"items":216},"Getting started",[217,222,227,232,237,242],{"text":218,"config":219},"Install",{"href":220,"dataGaName":221,"dataGaLocation":42},"/install/","install",{"text":223,"config":224},"Quick start guides",{"href":225,"dataGaName":226,"dataGaLocation":42},"/get-started/","quick setup checklists",{"text":228,"config":229},"Learn",{"href":230,"dataGaLocation":42,"dataGaName":231},"https://university.gitlab.com/","learn",{"text":233,"config":234},"Product documentation",{"href":235,"dataGaName":236,"dataGaLocation":42},"https://docs.gitlab.com/","product documentation",{"text":238,"config":239},"Best practice videos",{"href":240,"dataGaName":241,"dataGaLocation":42},"/getting-started-videos/","best practice videos",{"text":243,"config":244},"Integrations",{"href":245,"dataGaName":246,"dataGaLocation":42},"/integrations/","integrations",{"title":248,"items":249},"Discover",[250,255,259,264],{"text":251,"config":252},"Customer success stories",{"href":253,"dataGaName":254,"dataGaLocation":42},"/customers/","customer success stories",{"text":256,"config":257},"Blog",{"href":258,"dataGaName":5,"dataGaLocation":42},"/blog/",{"text":260,"config":261},"Remote",{"href":262,"dataGaName":263,"dataGaLocation":42},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":265,"config":266},"TeamOps",{"href":267,"dataGaName":268,"dataGaLocation":42},"/teamops/","teamops",{"title":270,"items":271},"Connect",[272,277,282,287,292],{"text":273,"config":274},"GitLab Services",{"href":275,"dataGaName":276,"dataGaLocation":42},"/services/","services",{"text":278,"config":279},"Community",{"href":280,"dataGaName":281,"dataGaLocation":42},"/community/","community",{"text":283,"config":284},"Forum",{"href":285,"dataGaName":286,"dataGaLocation":42},"https://forum.gitlab.com/","forum",{"text":288,"config":289},"Events",{"href":290,"dataGaName":291,"dataGaLocation":42},"/events/","events",{"text":293,"config":294},"Partners",{"href":295,"dataGaName":296,"dataGaLocation":42},"/partners/","partners",{"backgroundColor":298,"textColor":299,"text":300,"image":301,"link":305},"#2f2a6b","#fff","Insights for the future of software development",{"altText":302,"config":303},"the source promo card",{"src":304},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":306,"config":307},"Read the latest",{"href":308,"dataGaName":309,"dataGaLocation":42},"/the-source/","the source",{"text":311,"config":312,"lists":314},"Company",{"dataNavLevelOne":313},"company",[315],{"items":316},[317,322,328,330,335,340,345,350,355,360,365],{"text":318,"config":319},"About",{"href":320,"dataGaName":321,"dataGaLocation":42},"/company/","about",{"text":323,"config":324,"footerGa":327},"Jobs",{"href":325,"dataGaName":326,"dataGaLocation":42},"/jobs/","jobs",{"dataGaName":326},{"text":288,"config":329},{"href":290,"dataGaName":291,"dataGaLocation":42},{"text":331,"config":332},"Leadership",{"href":333,"dataGaName":334,"dataGaLocation":42},"/company/team/e-group/","leadership",{"text":336,"config":337},"Team",{"href":338,"dataGaName":339,"dataGaLocation":42},"/company/team/","team",{"text":341,"config":342},"Handbook",{"href":343,"dataGaName":344,"dataGaLocation":42},"https://handbook.gitlab.com/","handbook",{"text":346,"config":347},"Investor relations",{"href":348,"dataGaName":349,"dataGaLocation":42},"https://ir.gitlab.com/","investor relations",{"text":351,"config":352},"Trust Center",{"href":353,"dataGaName":354,"dataGaLocation":42},"/security/","trust center",{"text":356,"config":357},"AI Transparency Center",{"href":358,"dataGaName":359,"dataGaLocation":42},"/ai-transparency-center/","ai transparency center",{"text":361,"config":362},"Newsletter",{"href":363,"dataGaName":364,"dataGaLocation":42},"/company/contact/","newsletter",{"text":366,"config":367},"Press",{"href":368,"dataGaName":369,"dataGaLocation":42},"/press/","press",{"text":371,"config":372,"lists":373},"Contact us",{"dataNavLevelOne":313},[374],{"items":375},[376,379,384],{"text":49,"config":377},{"href":51,"dataGaName":378,"dataGaLocation":42},"talk to sales",{"text":380,"config":381},"Support portal",{"href":382,"dataGaName":383,"dataGaLocation":42},"https://support.gitlab.com","support portal",{"text":385,"config":386},"Customer portal",{"href":387,"dataGaName":388,"dataGaLocation":42},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":390,"login":391,"suggestions":398},"Close",{"text":392,"link":393},"To search repositories and projects, login to",{"text":394,"config":395},"gitlab.com",{"href":56,"dataGaName":396,"dataGaLocation":397},"search login","search",{"text":399,"default":400},"Suggestions",[401,403,407,409,413,417],{"text":71,"config":402},{"href":76,"dataGaName":71,"dataGaLocation":397},{"text":404,"config":405},"Code Suggestions (AI)",{"href":406,"dataGaName":404,"dataGaLocation":397},"/solutions/code-suggestions/",{"text":123,"config":408},{"href":125,"dataGaName":123,"dataGaLocation":397},{"text":410,"config":411},"GitLab on AWS",{"href":412,"dataGaName":410,"dataGaLocation":397},"/partners/technology-partners/aws/",{"text":414,"config":415},"GitLab on Google Cloud",{"href":416,"dataGaName":414,"dataGaLocation":397},"/partners/technology-partners/google-cloud-platform/",{"text":418,"config":419},"Why GitLab?",{"href":84,"dataGaName":418,"dataGaLocation":397},{"freeTrial":421,"mobileIcon":426,"desktopIcon":431,"secondaryButton":434},{"text":422,"config":423},"Start free trial",{"href":424,"dataGaName":47,"dataGaLocation":425},"https://gitlab.com/-/trials/new/","nav",{"altText":427,"config":428},"Gitlab Icon",{"src":429,"dataGaName":430,"dataGaLocation":425},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":427,"config":432},{"src":433,"dataGaName":430,"dataGaLocation":425},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":435,"config":436},"Get Started",{"href":437,"dataGaName":438,"dataGaLocation":425},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/compare/gitlab-vs-github/","get started",{"freeTrial":440,"mobileIcon":444,"desktopIcon":446},{"text":441,"config":442},"Learn more about GitLab Duo",{"href":76,"dataGaName":443,"dataGaLocation":425},"gitlab duo",{"altText":427,"config":445},{"src":429,"dataGaName":430,"dataGaLocation":425},{"altText":427,"config":447},{"src":433,"dataGaName":430,"dataGaLocation":425},{"freeTrial":449,"mobileIcon":454,"desktopIcon":456},{"text":450,"config":451},"Back to pricing",{"href":203,"dataGaName":452,"dataGaLocation":425,"icon":453},"back to pricing","GoBack",{"altText":427,"config":455},{"src":429,"dataGaName":430,"dataGaLocation":425},{"altText":427,"config":457},{"src":433,"dataGaName":430,"dataGaLocation":425},"content:shared:en-us:main-navigation.yml","Main Navigation","shared/en-us/main-navigation.yml","shared/en-us/main-navigation",{"_path":463,"_dir":36,"_draft":6,"_partial":6,"_locale":7,"title":464,"button":465,"image":470,"config":474,"_id":476,"_type":28,"_source":30,"_file":477,"_stem":478,"_extension":33},"/shared/en-us/banner","is now in public beta!",{"text":466,"config":467},"Try the Beta",{"href":468,"dataGaName":469,"dataGaLocation":42},"/gitlab-duo/agent-platform/","duo banner",{"altText":471,"config":472},"GitLab Duo Agent Platform",{"src":473},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753720689/somrf9zaunk0xlt7ne4x.svg",{"layout":475},"release","content:shared:en-us:banner.yml","shared/en-us/banner.yml","shared/en-us/banner",{"_path":480,"_dir":36,"_draft":6,"_partial":6,"_locale":7,"data":481,"_id":723,"_type":28,"title":724,"_source":30,"_file":725,"_stem":726,"_extension":33},"/shared/en-us/main-footer",{"text":482,"source":483,"edit":489,"contribute":494,"config":499,"items":504,"minimal":712},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":484,"config":485},"View page source",{"href":486,"dataGaName":487,"dataGaLocation":488},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":490,"config":491},"Edit this page",{"href":492,"dataGaName":493,"dataGaLocation":488},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":495,"config":496},"Please contribute",{"href":497,"dataGaName":498,"dataGaLocation":488},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":500,"facebook":501,"youtube":502,"linkedin":503},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[505,552,605,649,678],{"title":201,"links":506,"subMenu":521},[507,511,516],{"text":508,"config":509},"View plans",{"href":203,"dataGaName":510,"dataGaLocation":488},"view plans",{"text":512,"config":513},"Why Premium?",{"href":514,"dataGaName":515,"dataGaLocation":488},"/pricing/premium/","why premium",{"text":517,"config":518},"Why Ultimate?",{"href":519,"dataGaName":520,"dataGaLocation":488},"/pricing/ultimate/","why ultimate",[522],{"title":523,"links":524},"Contact Us",[525,528,530,532,537,542,547],{"text":526,"config":527},"Contact sales",{"href":51,"dataGaName":52,"dataGaLocation":488},{"text":380,"config":529},{"href":382,"dataGaName":383,"dataGaLocation":488},{"text":385,"config":531},{"href":387,"dataGaName":388,"dataGaLocation":488},{"text":533,"config":534},"Status",{"href":535,"dataGaName":536,"dataGaLocation":488},"https://status.gitlab.com/","status",{"text":538,"config":539},"Terms of use",{"href":540,"dataGaName":541,"dataGaLocation":488},"/terms/","terms of use",{"text":543,"config":544},"Privacy statement",{"href":545,"dataGaName":546,"dataGaLocation":488},"/privacy/","privacy statement",{"text":548,"config":549},"Cookie preferences",{"dataGaName":550,"dataGaLocation":488,"id":551,"isOneTrustButton":105},"cookie preferences","ot-sdk-btn",{"title":104,"links":553,"subMenu":561},[554,558],{"text":555,"config":556},"DevSecOps platform",{"href":69,"dataGaName":557,"dataGaLocation":488},"devsecops platform",{"text":127,"config":559},{"href":76,"dataGaName":560,"dataGaLocation":488},"ai-assisted development",[562],{"title":563,"links":564},"Topics",[565,570,575,580,585,590,595,600],{"text":566,"config":567},"CICD",{"href":568,"dataGaName":569,"dataGaLocation":488},"/topics/ci-cd/","cicd",{"text":571,"config":572},"GitOps",{"href":573,"dataGaName":574,"dataGaLocation":488},"/topics/gitops/","gitops",{"text":576,"config":577},"DevOps",{"href":578,"dataGaName":579,"dataGaLocation":488},"/topics/devops/","devops",{"text":581,"config":582},"Version Control",{"href":583,"dataGaName":584,"dataGaLocation":488},"/topics/version-control/","version control",{"text":586,"config":587},"DevSecOps",{"href":588,"dataGaName":589,"dataGaLocation":488},"/topics/devsecops/","devsecops",{"text":591,"config":592},"Cloud Native",{"href":593,"dataGaName":594,"dataGaLocation":488},"/topics/cloud-native/","cloud native",{"text":596,"config":597},"AI for Coding",{"href":598,"dataGaName":599,"dataGaLocation":488},"/topics/devops/ai-for-coding/","ai for coding",{"text":601,"config":602},"Agentic AI",{"href":603,"dataGaName":604,"dataGaLocation":488},"/topics/agentic-ai/","agentic ai",{"title":606,"links":607},"Solutions",[608,610,612,617,621,624,628,631,633,636,639,644],{"text":148,"config":609},{"href":143,"dataGaName":148,"dataGaLocation":488},{"text":137,"config":611},{"href":119,"dataGaName":120,"dataGaLocation":488},{"text":613,"config":614},"Agile development",{"href":615,"dataGaName":616,"dataGaLocation":488},"/solutions/agile-delivery/","agile delivery",{"text":618,"config":619},"SCM",{"href":133,"dataGaName":620,"dataGaLocation":488},"source code management",{"text":566,"config":622},{"href":125,"dataGaName":623,"dataGaLocation":488},"continuous integration & delivery",{"text":625,"config":626},"Value stream management",{"href":176,"dataGaName":627,"dataGaLocation":488},"value stream management",{"text":571,"config":629},{"href":630,"dataGaName":574,"dataGaLocation":488},"/solutions/gitops/",{"text":186,"config":632},{"href":188,"dataGaName":189,"dataGaLocation":488},{"text":634,"config":635},"Small business",{"href":193,"dataGaName":194,"dataGaLocation":488},{"text":637,"config":638},"Public sector",{"href":198,"dataGaName":199,"dataGaLocation":488},{"text":640,"config":641},"Education",{"href":642,"dataGaName":643,"dataGaLocation":488},"/solutions/education/","education",{"text":645,"config":646},"Financial services",{"href":647,"dataGaName":648,"dataGaLocation":488},"/solutions/finance/","financial services",{"title":206,"links":650},[651,653,655,657,660,662,664,666,668,670,672,674,676],{"text":218,"config":652},{"href":220,"dataGaName":221,"dataGaLocation":488},{"text":223,"config":654},{"href":225,"dataGaName":226,"dataGaLocation":488},{"text":228,"config":656},{"href":230,"dataGaName":231,"dataGaLocation":488},{"text":233,"config":658},{"href":235,"dataGaName":659,"dataGaLocation":488},"docs",{"text":256,"config":661},{"href":258,"dataGaName":5,"dataGaLocation":488},{"text":251,"config":663},{"href":253,"dataGaName":254,"dataGaLocation":488},{"text":260,"config":665},{"href":262,"dataGaName":263,"dataGaLocation":488},{"text":273,"config":667},{"href":275,"dataGaName":276,"dataGaLocation":488},{"text":265,"config":669},{"href":267,"dataGaName":268,"dataGaLocation":488},{"text":278,"config":671},{"href":280,"dataGaName":281,"dataGaLocation":488},{"text":283,"config":673},{"href":285,"dataGaName":286,"dataGaLocation":488},{"text":288,"config":675},{"href":290,"dataGaName":291,"dataGaLocation":488},{"text":293,"config":677},{"href":295,"dataGaName":296,"dataGaLocation":488},{"title":311,"links":679},[680,682,684,686,688,690,692,696,701,703,705,707],{"text":318,"config":681},{"href":320,"dataGaName":313,"dataGaLocation":488},{"text":323,"config":683},{"href":325,"dataGaName":326,"dataGaLocation":488},{"text":331,"config":685},{"href":333,"dataGaName":334,"dataGaLocation":488},{"text":336,"config":687},{"href":338,"dataGaName":339,"dataGaLocation":488},{"text":341,"config":689},{"href":343,"dataGaName":344,"dataGaLocation":488},{"text":346,"config":691},{"href":348,"dataGaName":349,"dataGaLocation":488},{"text":693,"config":694},"Sustainability",{"href":695,"dataGaName":693,"dataGaLocation":488},"/sustainability/",{"text":697,"config":698},"Diversity, inclusion and belonging (DIB)",{"href":699,"dataGaName":700,"dataGaLocation":488},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":351,"config":702},{"href":353,"dataGaName":354,"dataGaLocation":488},{"text":361,"config":704},{"href":363,"dataGaName":364,"dataGaLocation":488},{"text":366,"config":706},{"href":368,"dataGaName":369,"dataGaLocation":488},{"text":708,"config":709},"Modern Slavery Transparency Statement",{"href":710,"dataGaName":711,"dataGaLocation":488},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":713},[714,717,720],{"text":715,"config":716},"Terms",{"href":540,"dataGaName":541,"dataGaLocation":488},{"text":718,"config":719},"Cookies",{"dataGaName":550,"dataGaLocation":488,"id":551,"isOneTrustButton":105},{"text":721,"config":722},"Privacy",{"href":545,"dataGaName":546,"dataGaLocation":488},"content:shared:en-us:main-footer.yml","Main Footer","shared/en-us/main-footer.yml","shared/en-us/main-footer",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":728,"content":729,"config":732,"_id":27,"_type":28,"title":29,"_source":30,"_file":31,"_stem":32,"_extension":33},{"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":730,"heroImage":11,"date":19,"body":20,"category":21,"tags":731},[18],[23],{"slug":25,"featured":6,"template":26},[734,747,758,769,780,791,802,813,823,833,844,855,865,876,887,897,907,917,927,938,948,958,968,979,990,1000,1011,1022,1032,1043,1053,1064,1075,1086,1097,1107,1118,1129,1139,1150,1160,1171,1182,1192,1202,1213,1223,1233,1243,1254,1265,1276,1287,1297,1308,1319,1330,1341,1351,1362,1374,1385,1396,1406,1418,1429,1439,1450,1460,1471,1481,1492,1503,1513,1523,1533,1544,1554,1564,1574,1584,1595,1605,1616,1626,1637,1647,1657,1667,1678,1689,1700,1711,1722,1734,1744,1755,1765,1776,1787,1798,1809,1819,1830,1841,1852,1863,1873,1884,1895,1906,1916,1929,1939,1950,1961,1972,1982,1993,2004,2015,2025,2035,2045,2055,2066,2076,2086,2097,2107,2118,2128,2139,2150,2160,2171,2181,2191,2201,2212,2222,2232,2243,2254,2264,2275,2286,2297,2307,2320,2331,2341,2353,2365,2375,2385,2396,2406,2417,2429,2440,2451,2462,2474,2485,2495,2505,2516,2526,2536,2547,2558,2568,2579,2590,2600,2610,2621,2632,2642,2653,2663,2674,2685,2696,2706,2716,2727,2738,2748,2758,2769,2781,2791,2801,2811,2822,2833,2843,2853,2863,2873,2883,2894,2905,2915,2926,2936,2946,2956,2966,2976,2987,2997,3007,3018,3028,3038,3049,3060,3070,3082,3092,3102,3114,3125,3136,3146,3157,3168,3179,3189,3201,3212,3222,3233,3244,3255,3266,3277,3288,3299,3309,3320,3331,3342,3352,3362,3373,3383,3393,3404,3415,3428,3439,3450,3460,3471,3483,3494,3505,3516,3526,3536,3547,3557,3568,3579,3590,3600,3610,3620,3630,3641,3652,3663,3674,3686,3697,3709,3720,3730,3740,3752,3762,3773,3783,3794,3804,3814,3825,3837,3847,3857,3867,3878,3888,3899,3909,3919,3930,3941,3952,3964,3975,3985,3996,4007,4017,4027,4038,4049,4060,4071,4081,4092,4103,4114,4124,4135,4146,4156,4167,4178,4189,4199,4209,4220,4231,4241,4252,4263,4274,4284,4294,4305,4316,4327,4338,4349,4359,4370,4381,4391,4401,4411,4423,4435,4445,4457,4467,4478,4489,4500,4511,4524,4534,4545,4556,4566,4576,4586,4597,4607,4618,4629,4639,4650,4660,4671,4682,4693,4704,4715,4726,4736,4746,4757,4768,4778,4788,4798,4809,4820,4830,4840,4850,4860,4871,4881,4891,4902,4912,4923,4933,4944,4955,4965,4975,4986,4996,5006,5017,5028,5039,5050,5060,5072,5083,5094,5104,5114,5124,5135,5146,5157,5168,5178,5189,5200,5210,5221,5233,5243,5253,5263,5274,5285,5296,5306,5316,5327,5338,5348,5360,5370,5380,5391,5401,5412,5424,5435,5445,5456,5467,5477,5488,5499,5511,5521,5531,5542,5552,5563,5573,5584,5594,5604,5615,5625,5636,5646,5656,5667,5677,5688,5699,5709,5719,5730,5740,5750,5760,5770,5781,5792,5804,5815,5826,5838,5850,5861,5872,5882,5893,5903,5913,5924,5935,5946,5956,5966,5976,5986,5996,6007,6019,6030,6042,6053,6063,6073,6084,6094,6104,6114,6124,6134,6144,6155,6165,6175,6186,6196,6206,6217,6228,6238,6250,6261,6271,6283,6294,6304,6315,6326,6336,6346,6356,6368,6378,6389,6400,6411,6422,6432,6442,6453,6465,6475,6485,6496,6506,6517,6527,6539,6550,6560,6570,6581,6593,6603,6616,6626,6638,6649,6659,6669,6680,6690,6701,6712,6723,6734,6745,6756,6767,6778,6789,6800,6811,6822,6833,6844,6855,6865,6878,6888,6899,6908,6919,6929,6939,6950,6961,6972,6982,6992,7003,7013,7024,7035,7047,7058,7068,7079,7090,7100,7110,7120,7130,7140,7151,7161,7172,7182,7193,7208,7219,7229,7240,7251,7262,7273,7284,7294,7305,7316,7327,7337,7348,7358,7368,7378,7388,7398,7409,7421,7431,7442,7453,7465,7475,7486,7496,7508,7519,7529,7539,7550,7561,7571,7582,7592,7602,7613,7624,7635,7646,7656,7667,7678,7688,7698,7708,7719,7730,7740,7750,7761,7772,7782,7792,7802,7813,7823,7834,7845,7856,7866,7876,7886,7896,7907,7918,7928,7938,7948,7958,7969],{"_path":735,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":737,"config":742,"_id":744,"_type":28,"title":738,"_source":30,"_file":745,"_stem":746,"_extension":33},"/en-us/blog/authors/aakriti-gupta","authors",{"name":738,"config":739},"Aakriti Gupta",{"headshot":740,"ctfId":741},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681960/Blog/Author%20Headshots/aakriti.jpg","aakritigupta",{"template":743},"BlogAuthor","content:en-us:blog:authors:aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta.yml","en-us/blog/authors/aakriti-gupta",{"_path":748,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":749,"config":753,"_id":754,"_type":28,"title":755,"_source":30,"_file":756,"_stem":757,"_extension":33},"/en-us/blog/authors/aaron-peters-member-good-docs-project",{"name":750,"config":751},"Aaron Peters, Member, Good Docs Project",{"headshot":7,"ctfId":752},"7KZoxZ7kn5c5DAvuDP6wtx",{"template":743},"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":759,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":760,"config":765,"_id":766,"_type":28,"title":761,"_source":30,"_file":767,"_stem":768,"_extension":33},"/en-us/blog/authors/aathira-nair",{"name":761,"config":762},"Aathira Nair",{"headshot":763,"ctfId":764},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663871/Blog/Author%20Headshots/anair5-headshot.jpg","anair",{"template":743},"content:en-us:blog:authors:aathira-nair.yml","en-us/blog/authors/aathira-nair.yml","en-us/blog/authors/aathira-nair",{"_path":770,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":771,"config":776,"_id":777,"_type":28,"title":772,"_source":30,"_file":778,"_stem":779,"_extension":33},"/en-us/blog/authors/abdulkader-benchi",{"name":772,"config":773},"Abdulkader Benchi",{"headshot":774,"ctfId":775},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi",{"template":743},"content:en-us:blog:authors:abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi.yml","en-us/blog/authors/abdulkader-benchi",{"_path":781,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":782,"config":787,"_id":788,"_type":28,"title":783,"_source":30,"_file":789,"_stem":790,"_extension":33},"/en-us/blog/authors/abubakar-siddiq-ango",{"name":783,"config":784},"Abubakar Siddiq Ango",{"headshot":785,"ctfId":786},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango",{"template":743},"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":792,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":793,"config":798,"_id":799,"_type":28,"title":794,"_source":30,"_file":800,"_stem":801,"_extension":33},"/en-us/blog/authors/achilleas-pipinellis",{"name":794,"config":795},"Achilleas Pipinellis",{"headshot":796,"ctfId":797},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671703/Blog/Author%20Headshots/axil-headshot.jpg","Achilleas-Pipinellis",{"template":743},"content:en-us:blog:authors:achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis.yml","en-us/blog/authors/achilleas-pipinellis",{"_path":803,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":804,"config":808,"_id":809,"_type":28,"title":810,"_source":30,"_file":811,"_stem":812,"_extension":33},"/en-us/blog/authors/adfinis-sygroup",{"name":805,"config":806},"Adfinis SyGroup",{"headshot":774,"ctfId":807},"Adfinis-SyGroup",{"template":743},"content:en-us:blog:authors:adfinis-sygroup.yml","Adfinis Sygroup","en-us/blog/authors/adfinis-sygroup.yml","en-us/blog/authors/adfinis-sygroup",{"_path":814,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":815,"config":819,"_id":820,"_type":28,"title":816,"_source":30,"_file":821,"_stem":822,"_extension":33},"/en-us/blog/authors/ahmet-kizilay",{"name":816,"config":817},"Ahmet Kizilay",{"headshot":774,"ctfId":818},"Ahmet-Kizilay",{"template":743},"content:en-us:blog:authors:ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay.yml","en-us/blog/authors/ahmet-kizilay",{"_path":824,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":825,"config":829,"_id":830,"_type":28,"title":826,"_source":30,"_file":831,"_stem":832,"_extension":33},"/en-us/blog/authors/akashdeep-dhar",{"name":826,"config":827},"Akashdeep Dhar",{"headshot":7,"ctfId":828},"t0xic0der",{"template":743},"content:en-us:blog:authors:akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar.yml","en-us/blog/authors/akashdeep-dhar",{"_path":834,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":835,"config":840,"_id":841,"_type":28,"title":836,"_source":30,"_file":842,"_stem":843,"_extension":33},"/en-us/blog/authors/alana-bellucci",{"name":836,"config":837},"Alana Bellucci",{"headshot":838,"ctfId":839},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664907/Blog/Author%20Headshots/abellucci-headshot.jpg","abellucci",{"template":743},"content:en-us:blog:authors:alana-bellucci.yml","en-us/blog/authors/alana-bellucci.yml","en-us/blog/authors/alana-bellucci",{"_path":845,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":846,"config":851,"_id":852,"_type":28,"title":847,"_source":30,"_file":853,"_stem":854,"_extension":33},"/en-us/blog/authors/alex-fracazo",{"name":847,"config":848},"Alex Fracazo",{"headshot":849,"ctfId":850},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663572/Blog/Author%20Headshots/Alex_Fracazo_headshot.png","1fd3avORyzEvt4jtKpkT2k",{"template":743},"content:en-us:blog:authors:alex-fracazo.yml","en-us/blog/authors/alex-fracazo.yml","en-us/blog/authors/alex-fracazo",{"_path":856,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":857,"config":861,"_id":862,"_type":28,"title":858,"_source":30,"_file":863,"_stem":864,"_extension":33},"/en-us/blog/authors/alex-groleau",{"name":858,"config":859},"Alex Groleau",{"headshot":774,"ctfId":860},"3VVHytQSHu9ehZgsUEJ3qq",{"template":743},"content:en-us:blog:authors:alex-groleau.yml","en-us/blog/authors/alex-groleau.yml","en-us/blog/authors/alex-groleau",{"_path":866,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":867,"config":872,"_id":873,"_type":28,"title":868,"_source":30,"_file":874,"_stem":875,"_extension":33},"/en-us/blog/authors/alex-mark",{"name":868,"config":869},"Alex Mark",{"headshot":870,"ctfId":871},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755709078/j3vuvongn6hbucxwaufz.png","alexmark",{"template":743},"content:en-us:blog:authors:alex-mark.yml","en-us/blog/authors/alex-mark.yml","en-us/blog/authors/alex-mark",{"_path":877,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":878,"config":883,"_id":884,"_type":28,"title":879,"_source":30,"_file":885,"_stem":886,"_extension":33},"/en-us/blog/authors/alex-martin",{"name":879,"config":880},"Alex Martin",{"headshot":881,"ctfId":882},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666415/Blog/Author%20Headshots/alex_martin_headshot.png","4vZLX2E8BoR3LCNoYdooCY",{"template":743},"content:en-us:blog:authors:alex-martin.yml","en-us/blog/authors/alex-martin.yml","en-us/blog/authors/alex-martin",{"_path":888,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":889,"config":893,"_id":894,"_type":28,"title":890,"_source":30,"_file":895,"_stem":896,"_extension":33},"/en-us/blog/authors/alexander-dietrich",{"name":890,"config":891},"Alexander Dietrich",{"headshot":774,"ctfId":892},"2CzeEOPVjjGKpdblIm0JfO",{"template":743},"content:en-us:blog:authors:alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich.yml","en-us/blog/authors/alexander-dietrich",{"_path":898,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":899,"config":903,"_id":904,"_type":28,"title":900,"_source":30,"_file":905,"_stem":906,"_extension":33},"/en-us/blog/authors/alexander-malaev",{"name":900,"config":901},"Alexander Malaev",{"headshot":774,"ctfId":902},"Alexander-Malaev",{"template":743},"content:en-us:blog:authors:alexander-malaev.yml","en-us/blog/authors/alexander-malaev.yml","en-us/blog/authors/alexander-malaev",{"_path":908,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":909,"config":913,"_id":914,"_type":28,"title":910,"_source":30,"_file":915,"_stem":916,"_extension":33},"/en-us/blog/authors/alexander-pereverzevs",{"name":910,"config":911},"Alexander Pereverzevs",{"headshot":7,"ctfId":912},"lokalise",{"template":743},"content:en-us:blog:authors:alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs.yml","en-us/blog/authors/alexander-pereverzevs",{"_path":918,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":919,"config":923,"_id":924,"_type":28,"title":920,"_source":30,"_file":925,"_stem":926,"_extension":33},"/en-us/blog/authors/alexis-ginsberg",{"name":920,"config":921},"Alexis Ginsberg",{"headshot":774,"ctfId":922},"lmDIchpcDx48jKuke2B4l",{"template":743},"content:en-us:blog:authors:alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg.yml","en-us/blog/authors/alexis-ginsberg",{"_path":928,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":929,"config":934,"_id":935,"_type":28,"title":930,"_source":30,"_file":936,"_stem":937,"_extension":33},"/en-us/blog/authors/allie-holland",{"name":930,"config":931},"Allie Holland",{"headshot":932,"ctfId":933},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664869/Blog/Author%20Headshots/allie_headshot.png","4Sc66Y8dwHEHwBNuJSh4Mv",{"template":743},"content:en-us:blog:authors:allie-holland.yml","en-us/blog/authors/allie-holland.yml","en-us/blog/authors/allie-holland",{"_path":939,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":940,"config":944,"_id":945,"_type":28,"title":941,"_source":30,"_file":946,"_stem":947,"_extension":33},"/en-us/blog/authors/allison-whilden",{"name":941,"config":942},"Allison Whilden",{"headshot":774,"ctfId":943},"Allison-Whilden",{"template":743},"content:en-us:blog:authors:allison-whilden.yml","en-us/blog/authors/allison-whilden.yml","en-us/blog/authors/allison-whilden",{"_path":949,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":950,"config":954,"_id":955,"_type":28,"title":951,"_source":30,"_file":956,"_stem":957,"_extension":33},"/en-us/blog/authors/alyssa-rock",{"name":951,"config":952},"Alyssa Rock",{"headshot":774,"ctfId":953},"4T2hddEfeK0Kp1zF8Ncvej",{"template":743},"content:en-us:blog:authors:alyssa-rock.yml","en-us/blog/authors/alyssa-rock.yml","en-us/blog/authors/alyssa-rock",{"_path":959,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":960,"config":964,"_id":965,"_type":28,"title":961,"_source":30,"_file":966,"_stem":967,"_extension":33},"/en-us/blog/authors/amanda-folson",{"name":961,"config":962},"Amanda Folson",{"headshot":774,"ctfId":963},"Amanda-Folson",{"template":743},"content:en-us:blog:authors:amanda-folson.yml","en-us/blog/authors/amanda-folson.yml","en-us/blog/authors/amanda-folson",{"_path":969,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":970,"config":975,"_id":976,"_type":28,"title":971,"_source":30,"_file":977,"_stem":978,"_extension":33},"/en-us/blog/authors/amanda-rueda",{"name":971,"config":972},"Amanda Rueda",{"headshot":973,"ctfId":974},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660008/Blog/Author%20Headshots/amanda_rueda_headshot.png","73IHSOcUmhlsh9XDSEiyjs",{"template":743},"content:en-us:blog:authors:amanda-rueda.yml","en-us/blog/authors/amanda-rueda.yml","en-us/blog/authors/amanda-rueda",{"_path":980,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":981,"config":986,"_id":987,"_type":28,"title":982,"_source":30,"_file":988,"_stem":989,"_extension":33},"/en-us/blog/authors/amar-patel",{"name":982,"config":983},"Amar Patel",{"headshot":984,"ctfId":985},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663805/Blog/Author%20Headshots/amar_patel_headshot.png","1EUBoP8mmMLhdha2tRo0vB",{"template":743},"content:en-us:blog:authors:amar-patel.yml","en-us/blog/authors/amar-patel.yml","en-us/blog/authors/amar-patel",{"_path":991,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":992,"config":996,"_id":997,"_type":28,"title":993,"_source":30,"_file":998,"_stem":999,"_extension":33},"/en-us/blog/authors/amara-nwaigwe",{"name":993,"config":994},"Amara Nwaigwe",{"headshot":774,"ctfId":995},"Amara-Nwaigwe",{"template":743},"content:en-us:blog:authors:amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe.yml","en-us/blog/authors/amara-nwaigwe",{"_path":1001,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1002,"config":1007,"_id":1008,"_type":28,"title":1003,"_source":30,"_file":1009,"_stem":1010,"_extension":33},"/en-us/blog/authors/amelia-bauerly",{"name":1003,"config":1004},"Amelia Bauerly",{"headshot":1005,"ctfId":1006},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670746/Blog/Author%20Headshots/ameliabauerly-headshot.jpg","ameliabauerly",{"template":743},"content:en-us:blog:authors:amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly.yml","en-us/blog/authors/amelia-bauerly",{"_path":1012,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1013,"config":1018,"_id":1019,"_type":28,"title":1014,"_source":30,"_file":1020,"_stem":1021,"_extension":33},"/en-us/blog/authors/ameya-darshan",{"name":1014,"config":1015},"Ameya Darshan",{"headshot":1016,"ctfId":1017},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667342/Blog/Author%20Headshots/ameya_darshan_headshot.png","79paMp2QSqRdFtZznJ6uNr",{"template":743},"content:en-us:blog:authors:ameya-darshan.yml","en-us/blog/authors/ameya-darshan.yml","en-us/blog/authors/ameya-darshan",{"_path":1023,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1024,"config":1028,"_id":1029,"_type":28,"title":1025,"_source":30,"_file":1030,"_stem":1031,"_extension":33},"/en-us/blog/authors/andrea-borga",{"name":1025,"config":1026},"Andrea Borga",{"headshot":774,"ctfId":1027},"6dPpfov6kpNcMdmyHyhKcN",{"template":743},"content:en-us:blog:authors:andrea-borga.yml","en-us/blog/authors/andrea-borga.yml","en-us/blog/authors/andrea-borga",{"_path":1033,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1034,"config":1039,"_id":1040,"_type":28,"title":1035,"_source":30,"_file":1041,"_stem":1042,"_extension":33},"/en-us/blog/authors/andreas-brandl",{"name":1035,"config":1036},"Andreas Brandl",{"headshot":1037,"ctfId":1038},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683343/Blog/Author%20Headshots/abrandl-headshot.jpg","abrandl",{"template":743},"content:en-us:blog:authors:andreas-brandl.yml","en-us/blog/authors/andreas-brandl.yml","en-us/blog/authors/andreas-brandl",{"_path":1044,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1045,"config":1049,"_id":1050,"_type":28,"title":1046,"_source":30,"_file":1051,"_stem":1052,"_extension":33},"/en-us/blog/authors/andrew-chilton",{"name":1046,"config":1047},"Andrew Chilton",{"headshot":7,"ctfId":1048},"chilts",{"template":743},"content:en-us:blog:authors:andrew-chilton.yml","en-us/blog/authors/andrew-chilton.yml","en-us/blog/authors/andrew-chilton",{"_path":1054,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1055,"config":1060,"_id":1061,"_type":28,"title":1056,"_source":30,"_file":1062,"_stem":1063,"_extension":33},"/en-us/blog/authors/andrew-fontaine",{"name":1056,"config":1057},"Andrew Fontaine",{"headshot":1058,"ctfId":1059},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672447/Blog/Author%20Headshots/afontaine-headshot.jpg","afontaine",{"template":743},"content:en-us:blog:authors:andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine.yml","en-us/blog/authors/andrew-fontaine",{"_path":1065,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1066,"config":1071,"_id":1072,"_type":28,"title":1067,"_source":30,"_file":1073,"_stem":1074,"_extension":33},"/en-us/blog/authors/andrew-kelly",{"name":1067,"config":1068},"Andrew Kelly",{"headshot":1069,"ctfId":1070},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681953/Blog/Author%20Headshots/ankelly-headshot.jpg","ankelly",{"template":743},"content:en-us:blog:authors:andrew-kelly.yml","en-us/blog/authors/andrew-kelly.yml","en-us/blog/authors/andrew-kelly",{"_path":1076,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1077,"config":1082,"_id":1083,"_type":28,"title":1078,"_source":30,"_file":1084,"_stem":1085,"_extension":33},"/en-us/blog/authors/andrew-newdigate",{"name":1078,"config":1079},"Andrew Newdigate",{"headshot":1080,"ctfId":1081},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670199/Blog/Author%20Headshots/andrewn-headshot.jpg","andrewn",{"template":743},"content:en-us:blog:authors:andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate.yml","en-us/blog/authors/andrew-newdigate",{"_path":1087,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1088,"config":1093,"_id":1094,"_type":28,"title":1089,"_source":30,"_file":1095,"_stem":1096,"_extension":33},"/en-us/blog/authors/andrew-patterson",{"name":1089,"config":1090},"Andrew Patterson",{"headshot":1091,"ctfId":1092},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669197/Blog/Author%20Headshots/andrew_patterson_headshot.png","6qJ1J2ePA6FVQaVLqx0C0d",{"template":743},"content:en-us:blog:authors:andrew-patterson.yml","en-us/blog/authors/andrew-patterson.yml","en-us/blog/authors/andrew-patterson",{"_path":1098,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1099,"config":1103,"_id":1104,"_type":28,"title":1100,"_source":30,"_file":1105,"_stem":1106,"_extension":33},"/en-us/blog/authors/andrew-taylor",{"name":1100,"config":1101},"Andrew Taylor",{"headshot":774,"ctfId":1102},"Andrew-Taylor",{"template":743},"content:en-us:blog:authors:andrew-taylor.yml","en-us/blog/authors/andrew-taylor.yml","en-us/blog/authors/andrew-taylor",{"_path":1108,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1109,"config":1114,"_id":1115,"_type":28,"title":1110,"_source":30,"_file":1116,"_stem":1117,"_extension":33},"/en-us/blog/authors/andrew-thomas",{"name":1110,"config":1111},"Andrew Thomas",{"headshot":1112,"ctfId":1113},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663944/Blog/Author%20Headshots/awthomas-headshot.jpg","awthomas",{"template":743},"content:en-us:blog:authors:andrew-thomas.yml","en-us/blog/authors/andrew-thomas.yml","en-us/blog/authors/andrew-thomas",{"_path":1119,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1120,"config":1125,"_id":1126,"_type":28,"title":1121,"_source":30,"_file":1127,"_stem":1128,"_extension":33},"/en-us/blog/authors/andy-bradfield",{"name":1121,"role":1122,"config":1123},"Andy Bradfield","Vice President, IBM Z Hybrid Cloud",{"headshot":1124},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750433790/essf1v0fbgzygctp8cuc.jpg",{"template":743},"content:en-us:blog:authors:andy-bradfield.yml","en-us/blog/authors/andy-bradfield.yml","en-us/blog/authors/andy-bradfield",{"_path":1130,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1131,"config":1135,"_id":1136,"_type":28,"title":1132,"_source":30,"_file":1137,"_stem":1138,"_extension":33},"/en-us/blog/authors/andy-rogers",{"name":1132,"config":1133},"Andy Rogers",{"headshot":774,"ctfId":1134},"Andy-Rogers",{"template":743},"content:en-us:blog:authors:andy-rogers.yml","en-us/blog/authors/andy-rogers.yml","en-us/blog/authors/andy-rogers",{"_path":1140,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1141,"config":1146,"_id":1147,"_type":28,"title":1142,"_source":30,"_file":1148,"_stem":1149,"_extension":33},"/en-us/blog/authors/andy-volpe",{"name":1142,"config":1143},"Andy Volpe",{"headshot":1144,"ctfId":1145},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669776/Blog/Author%20Headshots/andyvolpe-headshot.png","andyvolpe",{"template":743},"content:en-us:blog:authors:andy-volpe.yml","en-us/blog/authors/andy-volpe.yml","en-us/blog/authors/andy-volpe",{"_path":1151,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1152,"config":1156,"_id":1157,"_type":28,"title":1153,"_source":30,"_file":1158,"_stem":1159,"_extension":33},"/en-us/blog/authors/angelo-stavrow",{"name":1153,"config":1154},"Angelo Stavrow",{"headshot":774,"ctfId":1155},"Angelo-Stavrow",{"template":743},"content:en-us:blog:authors:angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow.yml","en-us/blog/authors/angelo-stavrow",{"_path":1161,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1162,"config":1167,"_id":1168,"_type":28,"title":1163,"_source":30,"_file":1169,"_stem":1170,"_extension":33},"/en-us/blog/authors/anna-vovchenko",{"name":1163,"config":1164},"Anna Vovchenko",{"headshot":1165,"ctfId":1166},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669159/Blog/Author%20Headshots/anna_vovchenko_headshot.png","4bLGBzB5LA0jYw0y9IqCs2",{"template":743},"content:en-us:blog:authors:anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko.yml","en-us/blog/authors/anna-vovchenko",{"_path":1172,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1173,"config":1178,"_id":1179,"_type":28,"title":1174,"_source":30,"_file":1180,"_stem":1181,"_extension":33},"/en-us/blog/authors/annabel-dunstone-gray",{"name":1174,"config":1175},"Annabel Dunstone Gray",{"headshot":1176,"ctfId":1177},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679009/Blog/Author%20Headshots/annabeldunstone-headshot.jpg","annabeldunstone",{"template":743},"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":1183,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1184,"config":1188,"_id":1189,"_type":28,"title":1185,"_source":30,"_file":1190,"_stem":1191,"_extension":33},"/en-us/blog/authors/anshuman-singh",{"name":1185,"config":1186},"Anshuman Singh",{"headshot":774,"ctfId":1187},"4xzrY67JSkxp4j7hlK1DWA",{"template":743},"content:en-us:blog:authors:anshuman-singh.yml","en-us/blog/authors/anshuman-singh.yml","en-us/blog/authors/anshuman-singh",{"_path":1193,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1194,"config":1198,"_id":1199,"_type":28,"title":1195,"_source":30,"_file":1200,"_stem":1201,"_extension":33},"/en-us/blog/authors/anthony-davanzo",{"name":1195,"config":1196},"Anthony Davanzo",{"headshot":774,"ctfId":1197},"4KccrB6k5jq46xQRDOdWSb",{"template":743},"content:en-us:blog:authors:anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo.yml","en-us/blog/authors/anthony-davanzo",{"_path":1203,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1204,"config":1209,"_id":1210,"_type":28,"title":1205,"_source":30,"_file":1211,"_stem":1212,"_extension":33},"/en-us/blog/authors/anton-smith",{"name":1205,"config":1206},"Anton Smith",{"headshot":1207,"ctfId":1208},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679625/Blog/Author%20Headshots/anton-headshot.png","anton",{"template":743},"content:en-us:blog:authors:anton-smith.yml","en-us/blog/authors/anton-smith.yml","en-us/blog/authors/anton-smith",{"_path":1214,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1215,"config":1219,"_id":1220,"_type":28,"title":1216,"_source":30,"_file":1221,"_stem":1222,"_extension":33},"/en-us/blog/authors/aricka-flowers",{"name":1216,"config":1217},"Aricka Flowers",{"headshot":7,"ctfId":1218},"atflowers",{"template":743},"content:en-us:blog:authors:aricka-flowers.yml","en-us/blog/authors/aricka-flowers.yml","en-us/blog/authors/aricka-flowers",{"_path":1224,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1225,"config":1229,"_id":1230,"_type":28,"title":1226,"_source":30,"_file":1231,"_stem":1232,"_extension":33},"/en-us/blog/authors/ariel-camus",{"name":1226,"config":1227},"Ariel Camus",{"headshot":7,"ctfId":1228},"arielcamus",{"template":743},"content:en-us:blog:authors:ariel-camus.yml","en-us/blog/authors/ariel-camus.yml","en-us/blog/authors/ariel-camus",{"_path":1234,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1235,"config":1239,"_id":1240,"_type":28,"title":1236,"_source":30,"_file":1241,"_stem":1242,"_extension":33},"/en-us/blog/authors/arunoda-susiripala",{"name":1236,"config":1237},"Arunoda Susiripala",{"headshot":774,"ctfId":1238},"7kQaq0xFWPi2zRW6NZIDHp",{"template":743},"content:en-us:blog:authors:arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala.yml","en-us/blog/authors/arunoda-susiripala",{"_path":1244,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1245,"config":1249,"_id":1251,"_type":28,"title":1246,"_source":30,"_file":1252,"_stem":1253,"_extension":33},"/en-us/blog/authors/ashher-syed",{"name":1246,"config":1247},"Ashher Syed",{"headshot":1248},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753883485/jnsltidrjyzzbxlmllua.png",{"template":743,"gitlabHandle":1250},"ashhers","content:en-us:blog:authors:ashher-syed.yml","en-us/blog/authors/ashher-syed.yml","en-us/blog/authors/ashher-syed",{"_path":1255,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1256,"config":1261,"_id":1262,"_type":28,"title":1257,"_source":30,"_file":1263,"_stem":1264,"_extension":33},"/en-us/blog/authors/ashley-knobloch",{"name":1257,"config":1258},"Ashley Knobloch",{"headshot":1259,"ctfId":1260},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682879/Blog/Author%20Headshots/aknobloch-headshot.jpg","aknobloch",{"template":743},"content:en-us:blog:authors:ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch.yml","en-us/blog/authors/ashley-knobloch",{"_path":1266,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1267,"config":1272,"_id":1273,"_type":28,"title":1268,"_source":30,"_file":1274,"_stem":1275,"_extension":33},"/en-us/blog/authors/ashley-kramer",{"name":1268,"config":1269},"Ashley Kramer",{"headshot":1270,"ctfId":1271},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662520/Blog/Author%20Headshots/akramer-headshot.jpg","akramer",{"template":743},"content:en-us:blog:authors:ashley-kramer.yml","en-us/blog/authors/ashley-kramer.yml","en-us/blog/authors/ashley-kramer",{"_path":1277,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1278,"config":1282,"_id":1283,"_type":28,"title":1284,"_source":30,"_file":1285,"_stem":1286,"_extension":33},"/en-us/blog/authors/ashley-mcalpin",{"name":1279,"config":1280},"Ashley McAlpin",{"headshot":774,"ctfId":1281},"Ashley-McAlpin",{"template":743},"content:en-us:blog:authors:ashley-mcalpin.yml","Ashley Mcalpin","en-us/blog/authors/ashley-mcalpin.yml","en-us/blog/authors/ashley-mcalpin",{"_path":1288,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1289,"config":1293,"_id":1294,"_type":28,"title":1290,"_source":30,"_file":1295,"_stem":1296,"_extension":33},"/en-us/blog/authors/ashley-smith",{"name":1290,"config":1291},"Ashley Smith",{"headshot":774,"ctfId":1292},"Ashley-Smith",{"template":743},"content:en-us:blog:authors:ashley-smith.yml","en-us/blog/authors/ashley-smith.yml","en-us/blog/authors/ashley-smith",{"_path":1298,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1299,"config":1303,"_id":1304,"_type":28,"title":1305,"_source":30,"_file":1306,"_stem":1307,"_extension":33},"/en-us/blog/authors/atlassian-bitbucket-github-gitlab",{"name":1300,"config":1301},"Atlassian Bitbucket, GitHub, GitLab",{"headshot":774,"ctfId":1302},"Atlassian-Bitbucket-GitHub-GitLab",{"template":743},"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":1309,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1310,"config":1315,"_id":1316,"_type":28,"title":1311,"_source":30,"_file":1317,"_stem":1318,"_extension":33},"/en-us/blog/authors/austin-regnery",{"name":1311,"config":1312},"Austin Regnery",{"headshot":1313,"ctfId":1314},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679497/Blog/Author%20Headshots/aregnery-headshot.jpg","aregnery",{"template":743},"content:en-us:blog:authors:austin-regnery.yml","en-us/blog/authors/austin-regnery.yml","en-us/blog/authors/austin-regnery",{"_path":1320,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1321,"config":1326,"_id":1327,"_type":28,"title":1322,"_source":30,"_file":1328,"_stem":1329,"_extension":33},"/en-us/blog/authors/ayoub-fandi",{"name":1322,"config":1323},"Ayoub Fandi",{"headshot":1324,"ctfId":1325},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664292/Blog/Author%20Headshots/ayofan-headshot.jpg","ayofan",{"template":743},"content:en-us:blog:authors:ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi.yml","en-us/blog/authors/ayoub-fandi",{"_path":1331,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1332,"config":1336,"_id":1337,"_type":28,"title":1338,"_source":30,"_file":1339,"_stem":1340,"_extension":33},"/en-us/blog/authors/bahubali-bill-shetti",{"name":1333,"config":1334},"Bahubali (Bill) Shetti",{"headshot":774,"ctfId":1335},"4rFnUJeUt0JNGQwwCZSLMj",{"template":743},"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":1342,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1343,"config":1347,"_id":1348,"_type":28,"title":1344,"_source":30,"_file":1349,"_stem":1350,"_extension":33},"/en-us/blog/authors/baksheesh-singh-ghuman",{"name":1344,"config":1345},"Baksheesh Singh Ghuman",{"headshot":774,"ctfId":1346},"Baksheesh-Singh-Ghuman",{"template":743},"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":1352,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1353,"config":1358,"_id":1359,"_type":28,"title":1354,"_source":30,"_file":1360,"_stem":1361,"_extension":33},"/en-us/blog/authors/bala-allam",{"name":1354,"config":1355},"Bala Allam",{"headshot":1356,"ctfId":1357},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663541/Blog/Author%20Headshots/bala_allam_headshot.png","2rLcMDIniW4zfuD8s0ckVt",{"template":743},"content:en-us:blog:authors:bala-allam.yml","en-us/blog/authors/bala-allam.yml","en-us/blog/authors/bala-allam",{"_path":1363,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1364,"config":1369,"_id":1370,"_type":28,"title":1371,"_source":30,"_file":1372,"_stem":1373,"_extension":33},"/en-us/blog/authors/balasankar-balu-c",{"name":1365,"config":1366},"Balasankar 'Balu' C",{"headshot":1367,"ctfId":1368},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681201/Blog/Author%20Headshots/balasankarc-headshot.jpg","balasankarc",{"template":743},"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":1375,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1376,"config":1381,"_id":1382,"_type":28,"title":1377,"_source":30,"_file":1383,"_stem":1384,"_extension":33},"/en-us/blog/authors/bart-zhang",{"name":1377,"config":1378},"Bart Zhang",{"headshot":1379,"ctfId":1380},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664177/Blog/Author%20Headshots/bartzhang-headshot.jpg","bartzhang",{"template":743},"content:en-us:blog:authors:bart-zhang.yml","en-us/blog/authors/bart-zhang.yml","en-us/blog/authors/bart-zhang",{"_path":1386,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1387,"config":1392,"_id":1393,"_type":28,"title":1388,"_source":30,"_file":1394,"_stem":1395,"_extension":33},"/en-us/blog/authors/beatriz-barbosa",{"name":1388,"config":1389},"Beatriz Barbosa",{"headshot":1390,"ctfId":1391},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665252/Blog/Author%20Headshots/beatriz_barbosa.png","7GdHsfTvzkhnGh2qQmZF91",{"template":743},"content:en-us:blog:authors:beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa.yml","en-us/blog/authors/beatriz-barbosa",{"_path":1397,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1398,"config":1402,"_id":1403,"_type":28,"title":1399,"_source":30,"_file":1404,"_stem":1405,"_extension":33},"/en-us/blog/authors/becka-lippert",{"name":1399,"config":1400},"Becka Lippert",{"headshot":774,"ctfId":1401},"7wX6Hbvb3AbKwa6NnClvBX",{"template":743},"content:en-us:blog:authors:becka-lippert.yml","en-us/blog/authors/becka-lippert.yml","en-us/blog/authors/becka-lippert",{"_path":1407,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1408,"config":1413,"_id":1414,"_type":28,"title":1415,"_source":30,"_file":1416,"_stem":1417,"_extension":33},"/en-us/blog/authors/ben-leduc-mills",{"name":1409,"config":1410},"Ben Leduc-Mills",{"headshot":1411,"ctfId":1412},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682380/Blog/Author%20Headshots/leducmills-headshot.png","leducmills",{"template":743},"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":1419,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1420,"config":1425,"_id":1426,"_type":28,"title":1421,"_source":30,"_file":1427,"_stem":1428,"_extension":33},"/en-us/blog/authors/ben-ridley",{"name":1421,"config":1422},"Ben Ridley",{"headshot":1423,"ctfId":1424},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659973/Blog/Author%20Headshots/bridley-headshot.jpg","bridley",{"template":743},"content:en-us:blog:authors:ben-ridley.yml","en-us/blog/authors/ben-ridley.yml","en-us/blog/authors/ben-ridley",{"_path":1430,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1431,"config":1435,"_id":1436,"_type":28,"title":1432,"_source":30,"_file":1437,"_stem":1438,"_extension":33},"/en-us/blog/authors/benedikt-rollik",{"name":1432,"config":1433},"Benedikt Rollik",{"headshot":774,"ctfId":1434},"Benedikt-Rollik",{"template":743},"content:en-us:blog:authors:benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik.yml","en-us/blog/authors/benedikt-rollik",{"_path":1440,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1441,"config":1446,"_id":1447,"_type":28,"title":1442,"_source":30,"_file":1448,"_stem":1449,"_extension":33},"/en-us/blog/authors/benjamin-skierlak",{"name":1442,"config":1443},"Benjamin Skierlak",{"headshot":1444,"ctfId":1445},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659471/Blog/Author%20Headshots/Benjamin_Skierlak_headshot.png","Kzp6pkUjPORYYMoeLFPRf",{"template":743},"content:en-us:blog:authors:benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak.yml","en-us/blog/authors/benjamin-skierlak",{"_path":1451,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1452,"config":1456,"_id":1457,"_type":28,"title":1453,"_source":30,"_file":1458,"_stem":1459,"_extension":33},"/en-us/blog/authors/bert-van-eyck",{"name":1453,"config":1454},"Bert Van Eyck",{"headshot":7,"ctfId":1455},"bertveproximus",{"template":743},"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":1461,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1462,"config":1467,"_id":1468,"_type":28,"title":1463,"_source":30,"_file":1469,"_stem":1470,"_extension":33},"/en-us/blog/authors/betsy-bula",{"name":1463,"config":1464},"Betsy Bula",{"headshot":1465,"ctfId":1466},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679451/Blog/Author%20Headshots/bbula-headshot.jpg","bbula",{"template":743},"content:en-us:blog:authors:betsy-bula.yml","en-us/blog/authors/betsy-bula.yml","en-us/blog/authors/betsy-bula",{"_path":1472,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1473,"config":1477,"_id":1478,"_type":28,"title":1474,"_source":30,"_file":1479,"_stem":1480,"_extension":33},"/en-us/blog/authors/betsy-church",{"name":1474,"config":1475},"Betsy Church",{"headshot":7,"ctfId":1476},"bchurch",{"template":743},"content:en-us:blog:authors:betsy-church.yml","en-us/blog/authors/betsy-church.yml","en-us/blog/authors/betsy-church",{"_path":1482,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1483,"config":1488,"_id":1489,"_type":28,"title":1484,"_source":30,"_file":1490,"_stem":1491,"_extension":33},"/en-us/blog/authors/bill-staples",{"name":1484,"config":1485,"role":1487},"Bill Staples",{"headshot":1486},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434080/glxv59lh9qftpdbsb4ph.png","CEO",{"template":743},"content:en-us:blog:authors:bill-staples.yml","en-us/blog/authors/bill-staples.yml","en-us/blog/authors/bill-staples",{"_path":1493,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1494,"config":1499,"_id":1500,"_type":28,"title":1495,"_source":30,"_file":1501,"_stem":1502,"_extension":33},"/en-us/blog/authors/bob-van-landuyt",{"name":1495,"config":1496},"Bob Van Landuyt",{"headshot":1497,"ctfId":1498},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667520/Blog/Author%20Headshots/reprazent-headshot.png","reprazent",{"template":743},"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":1504,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1505,"config":1509,"_id":1510,"_type":28,"title":1506,"_source":30,"_file":1511,"_stem":1512,"_extension":33},"/en-us/blog/authors/boris-baldassari",{"name":1506,"config":1507},"Boris Baldassari",{"headshot":7,"ctfId":1508},"bbaldassari",{"template":743},"content:en-us:blog:authors:boris-baldassari.yml","en-us/blog/authors/boris-baldassari.yml","en-us/blog/authors/boris-baldassari",{"_path":1514,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1515,"config":1519,"_id":1520,"_type":28,"title":1516,"_source":30,"_file":1521,"_stem":1522,"_extension":33},"/en-us/blog/authors/borivoje-tasovac",{"name":1516,"config":1517},"Borivoje Tasovac",{"headshot":7,"ctfId":1518},"borivoje",{"template":743},"content:en-us:blog:authors:borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac.yml","en-us/blog/authors/borivoje-tasovac",{"_path":1524,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1525,"config":1529,"_id":1530,"_type":28,"title":1526,"_source":30,"_file":1531,"_stem":1532,"_extension":33},"/en-us/blog/authors/brad-downey",{"name":1526,"config":1527},"Brad Downey",{"headshot":774,"ctfId":1528},"6b6RTu6832NFEju2zKJhbE",{"template":743},"content:en-us:blog:authors:brad-downey.yml","en-us/blog/authors/brad-downey.yml","en-us/blog/authors/brad-downey",{"_path":1534,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1535,"config":1540,"_id":1541,"_type":28,"title":1536,"_source":30,"_file":1542,"_stem":1543,"_extension":33},"/en-us/blog/authors/bradley-lee",{"name":1536,"config":1537},"Bradley Lee",{"headshot":1538,"ctfId":1539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666491/Blog/Author%20Headshots/bradleylee-headshot.jpg","bradleylee",{"template":743},"content:en-us:blog:authors:bradley-lee.yml","en-us/blog/authors/bradley-lee.yml","en-us/blog/authors/bradley-lee",{"_path":1545,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1546,"config":1550,"_id":1551,"_type":28,"title":1547,"_source":30,"_file":1552,"_stem":1553,"_extension":33},"/en-us/blog/authors/brandon-foo",{"name":1547,"config":1548},"Brandon Foo",{"headshot":774,"ctfId":1549},"Brandon-Foo",{"template":743},"content:en-us:blog:authors:brandon-foo.yml","en-us/blog/authors/brandon-foo.yml","en-us/blog/authors/brandon-foo",{"_path":1555,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1556,"config":1560,"_id":1561,"_type":28,"title":1557,"_source":30,"_file":1562,"_stem":1563,"_extension":33},"/en-us/blog/authors/brandon-jung",{"name":1557,"config":1558},"Brandon Jung",{"headshot":774,"ctfId":1559},"Brandon-Jung",{"template":743},"content:en-us:blog:authors:brandon-jung.yml","en-us/blog/authors/brandon-jung.yml","en-us/blog/authors/brandon-jung",{"_path":1565,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1566,"config":1570,"_id":1571,"_type":28,"title":1567,"_source":30,"_file":1572,"_stem":1573,"_extension":33},"/en-us/blog/authors/brandon-lyon",{"name":1567,"config":1568},"Brandon Lyon",{"headshot":7,"ctfId":1569},"brandonlyon",{"template":743},"content:en-us:blog:authors:brandon-lyon.yml","en-us/blog/authors/brandon-lyon.yml","en-us/blog/authors/brandon-lyon",{"_path":1575,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1576,"config":1580,"_id":1581,"_type":28,"title":1577,"_source":30,"_file":1582,"_stem":1583,"_extension":33},"/en-us/blog/authors/brein-matturro",{"name":1577,"config":1578},"Brein Matturro",{"headshot":7,"ctfId":1579},"bmatturro",{"template":743},"content:en-us:blog:authors:brein-matturro.yml","en-us/blog/authors/brein-matturro.yml","en-us/blog/authors/brein-matturro",{"_path":1585,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1586,"config":1590,"_id":1591,"_type":28,"title":1592,"_source":30,"_file":1593,"_stem":1594,"_extension":33},"/en-us/blog/authors/brendan-oleary",{"name":1587,"config":1588},"Brendan O'Leary",{"headshot":7,"ctfId":1589},"brendan",{"template":743},"content:en-us:blog:authors:brendan-oleary.yml","Brendan Oleary","en-us/blog/authors/brendan-oleary.yml","en-us/blog/authors/brendan-oleary",{"_path":1596,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1597,"config":1601,"_id":1602,"_type":28,"title":1598,"_source":30,"_file":1603,"_stem":1604,"_extension":33},"/en-us/blog/authors/brendan-regan",{"name":1598,"config":1599},"Brendan Regan",{"headshot":7,"ctfId":1600},"brendanregan11",{"template":743},"content:en-us:blog:authors:brendan-regan.yml","en-us/blog/authors/brendan-regan.yml","en-us/blog/authors/brendan-regan",{"_path":1606,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1607,"config":1612,"_id":1613,"_type":28,"title":1608,"_source":30,"_file":1614,"_stem":1615,"_extension":33},"/en-us/blog/authors/brett-walker",{"name":1608,"config":1609},"Brett Walker",{"headshot":1610,"ctfId":1611},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670155/Blog/Author%20Headshots/digitalmoksha-headshot.jpg","digitalmoksha",{"template":743},"content:en-us:blog:authors:brett-walker.yml","en-us/blog/authors/brett-walker.yml","en-us/blog/authors/brett-walker",{"_path":1617,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1618,"config":1622,"_id":1623,"_type":28,"title":1619,"_source":30,"_file":1624,"_stem":1625,"_extension":33},"/en-us/blog/authors/brian-glanz",{"name":1619,"config":1620},"Brian Glanz",{"headshot":7,"ctfId":1621},"brianglanz",{"template":743},"content:en-us:blog:authors:brian-glanz.yml","en-us/blog/authors/brian-glanz.yml","en-us/blog/authors/brian-glanz",{"_path":1627,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1628,"config":1632,"_id":1633,"_type":28,"title":1634,"_source":30,"_file":1635,"_stem":1636,"_extension":33},"/en-us/blog/authors/brian-oconnell",{"name":1629,"config":1630},"Brian O'Connell",{"headshot":774,"ctfId":1631},"Brian-OConnell",{"template":743},"content:en-us:blog:authors:brian-oconnell.yml","Brian Oconnell","en-us/blog/authors/brian-oconnell.yml","en-us/blog/authors/brian-oconnell",{"_path":1638,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1639,"config":1643,"_id":1644,"_type":28,"title":1640,"_source":30,"_file":1645,"_stem":1646,"_extension":33},"/en-us/blog/authors/brian-rhea",{"name":1640,"config":1641},"Brian Rhea",{"headshot":7,"ctfId":1642},"brhea",{"template":743},"content:en-us:blog:authors:brian-rhea.yml","en-us/blog/authors/brian-rhea.yml","en-us/blog/authors/brian-rhea",{"_path":1648,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1649,"config":1653,"_id":1654,"_type":28,"title":1650,"_source":30,"_file":1655,"_stem":1656,"_extension":33},"/en-us/blog/authors/brian-wald",{"name":1650,"config":1651},"Brian Wald",{"headshot":774,"ctfId":1652},"78qOxgHKlgDY2IxMrBrgCu",{"template":743},"content:en-us:blog:authors:brian-wald.yml","en-us/blog/authors/brian-wald.yml","en-us/blog/authors/brian-wald",{"_path":1658,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1659,"config":1663,"_id":1664,"_type":28,"title":1660,"_source":30,"_file":1665,"_stem":1666,"_extension":33},"/en-us/blog/authors/brittany-rohde",{"name":1660,"config":1661},"Brittany Rohde",{"headshot":7,"ctfId":1662},"brittanyr",{"template":743},"content:en-us:blog:authors:brittany-rohde.yml","en-us/blog/authors/brittany-rohde.yml","en-us/blog/authors/brittany-rohde",{"_path":1668,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1669,"config":1674,"_id":1675,"_type":28,"title":1670,"_source":30,"_file":1676,"_stem":1677,"_extension":33},"/en-us/blog/authors/bryan-behrenshausen",{"name":1670,"config":1671},"Bryan Behrenshausen",{"headshot":1672,"ctfId":1673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670181/Blog/Author%20Headshots/bbehr-headshot.jpg","bbehr",{"template":743},"content:en-us:blog:authors:bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen.yml","en-us/blog/authors/bryan-behrenshausen",{"_path":1679,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1680,"config":1685,"_id":1686,"_type":28,"title":1681,"_source":30,"_file":1687,"_stem":1688,"_extension":33},"/en-us/blog/authors/bryan-may",{"name":1681,"config":1682},"Bryan May",{"headshot":1683,"ctfId":1684},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668135/Blog/Author%20Headshots/bryan-may-headshot.jpg","bryanmay",{"template":743},"content:en-us:blog:authors:bryan-may.yml","en-us/blog/authors/bryan-may.yml","en-us/blog/authors/bryan-may",{"_path":1690,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1691,"config":1696,"_id":1697,"_type":28,"title":1692,"_source":30,"_file":1698,"_stem":1699,"_extension":33},"/en-us/blog/authors/byron-boots",{"name":1692,"config":1693},"Byron Boots",{"headshot":1694,"ctfId":1695},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662281/Blog/Author%20Headshots/byron_boots_headshot.png","7ezFbRYF2Cu5JTBQXRp7mw",{"template":743},"content:en-us:blog:authors:byron-boots.yml","en-us/blog/authors/byron-boots.yml","en-us/blog/authors/byron-boots",{"_path":1701,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1702,"config":1707,"_id":1708,"_type":28,"title":1703,"_source":30,"_file":1709,"_stem":1710,"_extension":33},"/en-us/blog/authors/camellia-yang",{"name":1703,"config":1704},"Camellia Yang",{"headshot":1705,"ctfId":1706},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682106/Blog/Author%20Headshots/cam.png","camx",{"template":743},"content:en-us:blog:authors:camellia-yang.yml","en-us/blog/authors/camellia-yang.yml","en-us/blog/authors/camellia-yang",{"_path":1712,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1713,"config":1718,"_id":1719,"_type":28,"title":1714,"_source":30,"_file":1720,"_stem":1721,"_extension":33},"/en-us/blog/authors/cameron-swords",{"name":1714,"config":1715},"Cameron Swords",{"headshot":1716,"ctfId":1717},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667598/Blog/Author%20Headshots/cam_swords-headshot.jpg","camswords",{"template":743},"content:en-us:blog:authors:cameron-swords.yml","en-us/blog/authors/cameron-swords.yml","en-us/blog/authors/cameron-swords",{"_path":1723,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1724,"config":1730,"_id":1731,"_type":28,"title":1726,"_source":30,"_file":1732,"_stem":1733,"_extension":33},"/en-us/blog/authors/carl-myers",{"role":1725,"name":1726,"config":1727},"Manager, CI Platform team, Indeed","Carl Myers",{"headshot":1728,"ctfId":1729},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665044/Blog/Author%20Headshots/image1.jpg","7KelbQ0LsGSGf4TpT0qAlp",{"template":743},"content:en-us:blog:authors:carl-myers.yml","en-us/blog/authors/carl-myers.yml","en-us/blog/authors/carl-myers",{"_path":1735,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1736,"config":1740,"_id":1741,"_type":28,"title":1737,"_source":30,"_file":1742,"_stem":1743,"_extension":33},"/en-us/blog/authors/carol-teskey",{"name":1737,"config":1738},"Carol Teskey",{"headshot":7,"ctfId":1739},"cteskey",{"template":743},"content:en-us:blog:authors:carol-teskey.yml","en-us/blog/authors/carol-teskey.yml","en-us/blog/authors/carol-teskey",{"_path":1745,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1746,"config":1751,"_id":1752,"_type":28,"title":1747,"_source":30,"_file":1753,"_stem":1754,"_extension":33},"/en-us/blog/authors/cesar-saavedra",{"name":1747,"config":1748},"Cesar Saavedra",{"headshot":1749,"ctfId":1750},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659600/Blog/Author%20Headshots/csaavedra1-headshot.jpg","csaavedra1",{"template":743},"content:en-us:blog:authors:cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra.yml","en-us/blog/authors/cesar-saavedra",{"_path":1756,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1757,"config":1761,"_id":1762,"_type":28,"title":1758,"_source":30,"_file":1763,"_stem":1764,"_extension":33},"/en-us/blog/authors/chad-malchow",{"name":1758,"config":1759},"Chad Malchow",{"headshot":774,"ctfId":1760},"Chad-Malchow",{"template":743},"content:en-us:blog:authors:chad-malchow.yml","en-us/blog/authors/chad-malchow.yml","en-us/blog/authors/chad-malchow",{"_path":1766,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1767,"config":1772,"_id":1773,"_type":28,"title":1768,"_source":30,"_file":1774,"_stem":1775,"_extension":33},"/en-us/blog/authors/chance-feick",{"name":1768,"config":1769},"Chance Feick",{"headshot":1770,"ctfId":1771},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666442/Blog/Author%20Headshots/chance_feick_headshot.png","18dtRbXV47xqf5iDrOIduM",{"template":743},"content:en-us:blog:authors:chance-feick.yml","en-us/blog/authors/chance-feick.yml","en-us/blog/authors/chance-feick",{"_path":1777,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1778,"config":1783,"_id":1784,"_type":28,"title":1779,"_source":30,"_file":1785,"_stem":1786,"_extension":33},"/en-us/blog/authors/chandler-gibbons",{"name":1779,"config":1780},"Chandler Gibbons",{"headshot":1781,"ctfId":1782},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663276/Blog/Author%20Headshots/chandlergibb-headshot.jpg","chandlergibb",{"template":743},"content:en-us:blog:authors:chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons.yml","en-us/blog/authors/chandler-gibbons",{"_path":1788,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1789,"config":1793,"_id":1794,"_type":28,"title":1795,"_source":30,"_file":1796,"_stem":1797,"_extension":33},"/en-us/blog/authors/charl-de-wit",{"name":1790,"config":1791},"Charl de Wit",{"headshot":774,"ctfId":1792},"45mQeypQVLNvvTWMzserbR",{"template":743},"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":1799,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1800,"config":1805,"_id":1806,"_type":28,"title":1801,"_source":30,"_file":1807,"_stem":1808,"_extension":33},"/en-us/blog/authors/charlie-ablett",{"name":1801,"config":1802},"Charlie Ablett",{"headshot":1803,"ctfId":1804},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670131/Blog/Author%20Headshots/cablett-headshot.png","cablett",{"template":743},"content:en-us:blog:authors:charlie-ablett.yml","en-us/blog/authors/charlie-ablett.yml","en-us/blog/authors/charlie-ablett",{"_path":1810,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1811,"config":1815,"_id":1816,"_type":28,"title":1812,"_source":30,"_file":1817,"_stem":1818,"_extension":33},"/en-us/blog/authors/charvi-mendiratta",{"name":1812,"config":1813},"Charvi Mendiratta",{"headshot":774,"ctfId":1814},"YV7WvnjPWFS3JhXmSYJLk",{"template":743},"content:en-us:blog:authors:charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta.yml","en-us/blog/authors/charvi-mendiratta",{"_path":1820,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1821,"config":1826,"_id":1827,"_type":28,"title":1822,"_source":30,"_file":1828,"_stem":1829,"_extension":33},"/en-us/blog/authors/cherry-han",{"name":1822,"config":1823},"Cherry Han",{"headshot":1824,"ctfId":1825},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ehktvdbix2o1t0mmcvll.png","6gkuhRkgzCNP1Ee6J14yLu",{"template":743},"content:en-us:blog:authors:cherry-han.yml","en-us/blog/authors/cherry-han.yml","en-us/blog/authors/cherry-han",{"_path":1831,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1832,"config":1836,"_id":1838,"_type":28,"title":1833,"_source":30,"_file":1839,"_stem":1840,"_extension":33},"/en-us/blog/authors/chloe-cartron",{"name":1833,"config":1834},"Chloe Cartron",{"headshot":1835},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754425488/d0uiiypsxa5ajnbdm6jn.png",{"template":743,"gitlabHandle":1837},"ChloeCartron","content:en-us:blog:authors:chloe-cartron.yml","en-us/blog/authors/chloe-cartron.yml","en-us/blog/authors/chloe-cartron",{"_path":1842,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1843,"config":1848,"_id":1849,"_type":28,"title":1844,"_source":30,"_file":1850,"_stem":1851,"_extension":33},"/en-us/blog/authors/chloe-whitestone",{"name":1844,"config":1845},"Chloe Whitestone",{"headshot":1846,"ctfId":1847},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678693/Blog/Author%20Headshots/chloe-headshot.jpg","chloe",{"template":743},"content:en-us:blog:authors:chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone.yml","en-us/blog/authors/chloe-whitestone",{"_path":1853,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1854,"config":1859,"_id":1860,"_type":28,"title":1855,"_source":30,"_file":1861,"_stem":1862,"_extension":33},"/en-us/blog/authors/chris-balane",{"name":1855,"config":1856},"Chris Balane",{"headshot":1857,"ctfId":1858},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667630/Blog/Author%20Headshots/chris_balane_headshot.png","40SOCfTl3frynjL3dbg63o",{"template":743},"content:en-us:blog:authors:chris-balane.yml","en-us/blog/authors/chris-balane.yml","en-us/blog/authors/chris-balane",{"_path":1864,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1865,"config":1869,"_id":1870,"_type":28,"title":1866,"_source":30,"_file":1871,"_stem":1872,"_extension":33},"/en-us/blog/authors/chris-baus",{"name":1866,"config":1867},"Chris Baus",{"headshot":7,"ctfId":1868},"chrisbaus",{"template":743},"content:en-us:blog:authors:chris-baus.yml","en-us/blog/authors/chris-baus.yml","en-us/blog/authors/chris-baus",{"_path":1874,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1875,"config":1880,"_id":1881,"_type":28,"title":1876,"_source":30,"_file":1882,"_stem":1883,"_extension":33},"/en-us/blog/authors/chris-micek",{"name":1876,"config":1877},"Chris Micek",{"headshot":1878,"ctfId":1879},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666144/Blog/Author%20Headshots/chris_micek_headshot.png","62ZsvfXlttQEQ1tnikgoq9",{"template":743},"content:en-us:blog:authors:chris-micek.yml","en-us/blog/authors/chris-micek.yml","en-us/blog/authors/chris-micek",{"_path":1885,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1886,"config":1891,"_id":1892,"_type":28,"title":1887,"_source":30,"_file":1893,"_stem":1894,"_extension":33},"/en-us/blog/authors/chris-moberly",{"name":1887,"config":1888},"Chris Moberly",{"headshot":1889,"ctfId":1890},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664235/Blog/Author%20Headshots/cmoberly-headshot.jpg","cmoberly",{"template":743},"content:en-us:blog:authors:chris-moberly.yml","en-us/blog/authors/chris-moberly.yml","en-us/blog/authors/chris-moberly",{"_path":1896,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1897,"config":1901,"_id":1902,"_type":28,"title":1903,"_source":30,"_file":1904,"_stem":1905,"_extension":33},"/en-us/blog/authors/chris-sterry-dotscience",{"name":1898,"config":1899},"Chris Sterry, Dotscience",{"headshot":774,"ctfId":1900},"Chris-Sterry-Dotscience",{"template":743},"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":1907,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1908,"config":1912,"_id":1913,"_type":28,"title":1909,"_source":30,"_file":1914,"_stem":1915,"_extension":33},"/en-us/blog/authors/chris-ward",{"name":1909,"config":1910},"Chris Ward",{"headshot":7,"ctfId":1911},"chrischinchilla",{"template":743},"content:en-us:blog:authors:chris-ward.yml","en-us/blog/authors/chris-ward.yml","en-us/blog/authors/chris-ward",{"_path":1917,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1918,"config":1925,"_id":1926,"_type":28,"title":1920,"_source":30,"_file":1927,"_stem":1928,"_extension":33},"/en-us/blog/authors/chris-weber",{"role":1919,"name":1920,"config":1921},"CRO ","Chris Weber",{"headshot":1922,"linkedin":1923,"ctfId":1924},"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":743},"content:en-us:blog:authors:chris-weber.yml","en-us/blog/authors/chris-weber.yml","en-us/blog/authors/chris-weber",{"_path":1930,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1931,"config":1935,"_id":1936,"_type":28,"title":1932,"_source":30,"_file":1937,"_stem":1938,"_extension":33},"/en-us/blog/authors/chrissie-buchanan",{"name":1932,"config":1933},"Chrissie Buchanan",{"headshot":774,"ctfId":1934},"cbuchanan",{"template":743},"content:en-us:blog:authors:chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan.yml","en-us/blog/authors/chrissie-buchanan",{"_path":1940,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1941,"config":1946,"_id":1947,"_type":28,"title":1942,"_source":30,"_file":1948,"_stem":1949,"_extension":33},"/en-us/blog/authors/christen-dybenko",{"name":1942,"config":1943},"Christen Dybenko",{"headshot":1944,"ctfId":1945},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668811/Blog/Author%20Headshots/cdybenko-headshot.jpg","cdybenko",{"template":743},"content:en-us:blog:authors:christen-dybenko.yml","en-us/blog/authors/christen-dybenko.yml","en-us/blog/authors/christen-dybenko",{"_path":1951,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1952,"config":1957,"_id":1958,"_type":28,"title":1953,"_source":30,"_file":1959,"_stem":1960,"_extension":33},"/en-us/blog/authors/christian-couder",{"name":1953,"config":1954},"Christian Couder",{"headshot":1955,"ctfId":1956},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool",{"template":743},"content:en-us:blog:authors:christian-couder.yml","en-us/blog/authors/christian-couder.yml","en-us/blog/authors/christian-couder",{"_path":1962,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1963,"config":1968,"_id":1969,"_type":28,"title":1964,"_source":30,"_file":1970,"_stem":1971,"_extension":33},"/en-us/blog/authors/christian-nnachi",{"name":1964,"config":1965},"Christian Nnachi",{"headshot":1966,"ctfId":1967},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665343/Blog/Author%20Headshots/christian_nnachi_headshot.png","6pE7HjtzzpRhBFVdwTFjEX",{"template":743},"content:en-us:blog:authors:christian-nnachi.yml","en-us/blog/authors/christian-nnachi.yml","en-us/blog/authors/christian-nnachi",{"_path":1973,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1974,"config":1978,"_id":1979,"_type":28,"title":1975,"_source":30,"_file":1980,"_stem":1981,"_extension":33},"/en-us/blog/authors/christian-simko",{"name":1975,"config":1976},"Christian Simko",{"headshot":7,"ctfId":1977},"csimko",{"template":743},"content:en-us:blog:authors:christian-simko.yml","en-us/blog/authors/christian-simko.yml","en-us/blog/authors/christian-simko",{"_path":1983,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1984,"config":1989,"_id":1990,"_type":28,"title":1985,"_source":30,"_file":1991,"_stem":1992,"_extension":33},"/en-us/blog/authors/christie-lenneville",{"name":1985,"config":1986},"Christie Lenneville",{"headshot":1987,"ctfId":1988},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670047/Blog/Author%20Headshots/clenneville-headshot.jpg","clenneville",{"template":743},"content:en-us:blog:authors:christie-lenneville.yml","en-us/blog/authors/christie-lenneville.yml","en-us/blog/authors/christie-lenneville",{"_path":1994,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":1995,"config":1999,"_id":2000,"_type":28,"title":2001,"_source":30,"_file":2002,"_stem":2003,"_extension":33},"/en-us/blog/authors/christina-hupy-phd",{"name":1996,"config":1997},"Christina Hupy, Ph.D.",{"headshot":7,"ctfId":1998},"chupy",{"template":743},"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":2005,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2006,"config":2011,"_id":2012,"_type":28,"title":2007,"_source":30,"_file":2013,"_stem":2014,"_extension":33},"/en-us/blog/authors/christina-lohr",{"name":2007,"config":2008},"Christina Lohr",{"headshot":2009,"ctfId":2010},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662499/Blog/Author%20Headshots/lohrc-headshot.jpg","lohrc",{"template":743},"content:en-us:blog:authors:christina-lohr.yml","en-us/blog/authors/christina-lohr.yml","en-us/blog/authors/christina-lohr",{"_path":2016,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2017,"config":2021,"_id":2022,"_type":28,"title":2018,"_source":30,"_file":2023,"_stem":2024,"_extension":33},"/en-us/blog/authors/christine-yoshida",{"name":2018,"config":2019},"Christine Yoshida",{"headshot":7,"ctfId":2020},"cyoshida",{"template":743},"content:en-us:blog:authors:christine-yoshida.yml","en-us/blog/authors/christine-yoshida.yml","en-us/blog/authors/christine-yoshida",{"_path":2026,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2027,"config":2031,"_id":2032,"_type":28,"title":2028,"_source":30,"_file":2033,"_stem":2034,"_extension":33},"/en-us/blog/authors/christopher-watson",{"name":2028,"config":2029},"Christopher Watson",{"headshot":774,"ctfId":2030},"Christopher-Watson",{"template":743},"content:en-us:blog:authors:christopher-watson.yml","en-us/blog/authors/christopher-watson.yml","en-us/blog/authors/christopher-watson",{"_path":2036,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2037,"config":2041,"_id":2042,"_type":28,"title":2038,"_source":30,"_file":2043,"_stem":2044,"_extension":33},"/en-us/blog/authors/christos-bacharakis",{"name":2038,"config":2039},"Christos Bacharakis",{"headshot":774,"ctfId":2040},"Christos-Bacharakis",{"template":743},"content:en-us:blog:authors:christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis.yml","en-us/blog/authors/christos-bacharakis",{"_path":2046,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2047,"config":2051,"_id":2052,"_type":28,"title":2048,"_source":30,"_file":2053,"_stem":2054,"_extension":33},"/en-us/blog/authors/cindy-blake",{"name":2048,"config":2049},"Cindy Blake",{"headshot":774,"ctfId":2050},"cblake",{"template":743},"content:en-us:blog:authors:cindy-blake.yml","en-us/blog/authors/cindy-blake.yml","en-us/blog/authors/cindy-blake",{"_path":2056,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2057,"config":2062,"_id":2063,"_type":28,"title":2058,"_source":30,"_file":2064,"_stem":2065,"_extension":33},"/en-us/blog/authors/claire-champernowne",{"name":2058,"config":2059},"Claire Champernowne",{"headshot":2060,"ctfId":2061},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ",{"template":743},"content:en-us:blog:authors:claire-champernowne.yml","en-us/blog/authors/claire-champernowne.yml","en-us/blog/authors/claire-champernowne",{"_path":2067,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2068,"config":2072,"_id":2073,"_type":28,"title":2069,"_source":30,"_file":2074,"_stem":2075,"_extension":33},"/en-us/blog/authors/clement-ho",{"name":2069,"config":2070},"Clement Ho",{"headshot":7,"ctfId":2071},"ClemMakesApps",{"template":743},"content:en-us:blog:authors:clement-ho.yml","en-us/blog/authors/clement-ho.yml","en-us/blog/authors/clement-ho",{"_path":2077,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2078,"config":2082,"_id":2083,"_type":28,"title":2079,"_source":30,"_file":2084,"_stem":2085,"_extension":33},"/en-us/blog/authors/colin-fletcher",{"name":2079,"config":2080},"Colin Fletcher",{"headshot":7,"ctfId":2081},"cfletcher1",{"template":743},"content:en-us:blog:authors:colin-fletcher.yml","en-us/blog/authors/colin-fletcher.yml","en-us/blog/authors/colin-fletcher",{"_path":2087,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2088,"config":2093,"_id":2094,"_type":28,"title":2089,"_source":30,"_file":2095,"_stem":2096,"_extension":33},"/en-us/blog/authors/connor-gilbert",{"name":2089,"config":2090},"Connor Gilbert",{"headshot":2091,"ctfId":2092},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665913/Blog/Author%20Headshots/connorgilbert-headshot.jpg","connorgilbert",{"template":743},"content:en-us:blog:authors:connor-gilbert.yml","en-us/blog/authors/connor-gilbert.yml","en-us/blog/authors/connor-gilbert",{"_path":2098,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2099,"config":2103,"_id":2104,"_type":28,"title":2100,"_source":30,"_file":2105,"_stem":2106,"_extension":33},"/en-us/blog/authors/connor-shea",{"name":2100,"config":2101},"Connor Shea",{"headshot":774,"ctfId":2102},"Connor-Shea",{"template":743},"content:en-us:blog:authors:connor-shea.yml","en-us/blog/authors/connor-shea.yml","en-us/blog/authors/connor-shea",{"_path":2108,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2109,"config":2114,"_id":2115,"_type":28,"title":2110,"_source":30,"_file":2116,"_stem":2117,"_extension":33},"/en-us/blog/authors/corey-oas",{"name":2110,"config":2111},"Corey Oas",{"headshot":2112,"ctfId":2113},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667633/Blog/Author%20Headshots/corey_oas_headshot.png","1Dd1lJ4aKCv36YWdlUhlPf",{"template":743},"content:en-us:blog:authors:corey-oas.yml","en-us/blog/authors/corey-oas.yml","en-us/blog/authors/corey-oas",{"_path":2119,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2120,"config":2124,"_id":2125,"_type":28,"title":2121,"_source":30,"_file":2126,"_stem":2127,"_extension":33},"/en-us/blog/authors/cormac-foster",{"name":2121,"config":2122},"Cormac Foster",{"headshot":7,"ctfId":2123},"cfoster3",{"template":743},"content:en-us:blog:authors:cormac-foster.yml","en-us/blog/authors/cormac-foster.yml","en-us/blog/authors/cormac-foster",{"_path":2129,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2130,"config":2135,"_id":2136,"_type":28,"title":2131,"_source":30,"_file":2137,"_stem":2138,"_extension":33},"/en-us/blog/authors/costel-maxim",{"name":2131,"config":2132},"Costel Maxim",{"headshot":2133,"ctfId":2134},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663173/Blog/Author%20Headshots/costel_maxim_headshot.png","3QzzrMksaRD9ZPytt0SPPL",{"template":743},"content:en-us:blog:authors:costel-maxim.yml","en-us/blog/authors/costel-maxim.yml","en-us/blog/authors/costel-maxim",{"_path":2140,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2141,"config":2146,"_id":2147,"_type":28,"title":2142,"_source":30,"_file":2148,"_stem":2149,"_extension":33},"/en-us/blog/authors/courtney-meddaugh",{"name":2142,"config":2143},"Courtney Meddaugh",{"headshot":2144,"ctfId":2145},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665168/Blog/Author%20Headshots/courtney_meddaugh_headshot.png","5avtK3YS9MrDBkaOnB9ZmG",{"template":743},"content:en-us:blog:authors:courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh.yml","en-us/blog/authors/courtney-meddaugh",{"_path":2151,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2152,"config":2156,"_id":2157,"_type":28,"title":2153,"_source":30,"_file":2158,"_stem":2159,"_extension":33},"/en-us/blog/authors/craig-gomes",{"name":2153,"config":2154},"Craig Gomes",{"headshot":7,"ctfId":2155},"craiggomes",{"template":743},"content:en-us:blog:authors:craig-gomes.yml","en-us/blog/authors/craig-gomes.yml","en-us/blog/authors/craig-gomes",{"_path":2161,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2162,"config":2167,"_id":2168,"_type":28,"title":2163,"_source":30,"_file":2169,"_stem":2170,"_extension":33},"/en-us/blog/authors/craig-miskell",{"name":2163,"config":2164},"Craig Miskell",{"headshot":2165,"ctfId":2166},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667372/Blog/Author%20Headshots/cmiskell-headshot.jpg","cmiskell",{"template":743},"content:en-us:blog:authors:craig-miskell.yml","en-us/blog/authors/craig-miskell.yml","en-us/blog/authors/craig-miskell",{"_path":2172,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2173,"config":2177,"_id":2178,"_type":28,"title":2174,"_source":30,"_file":2179,"_stem":2180,"_extension":33},"/en-us/blog/authors/creighton-swank",{"name":2174,"config":2175},"Creighton Swank",{"headshot":774,"ctfId":2176},"5uf3k9lutpbelxJQ373eWu",{"template":743},"content:en-us:blog:authors:creighton-swank.yml","en-us/blog/authors/creighton-swank.yml","en-us/blog/authors/creighton-swank",{"_path":2182,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2183,"config":2187,"_id":2188,"_type":28,"title":2184,"_source":30,"_file":2189,"_stem":2190,"_extension":33},"/en-us/blog/authors/daisy-miclat",{"name":2184,"config":2185},"Daisy Miclat",{"headshot":774,"ctfId":2186},"IU4zOKoPhWS7hok7qsy7w",{"template":743},"content:en-us:blog:authors:daisy-miclat.yml","en-us/blog/authors/daisy-miclat.yml","en-us/blog/authors/daisy-miclat",{"_path":2192,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2193,"config":2197,"_id":2198,"_type":28,"title":2194,"_source":30,"_file":2199,"_stem":2200,"_extension":33},"/en-us/blog/authors/dan-luhring",{"name":2194,"config":2195},"Dan Luhring",{"headshot":7,"ctfId":2196},"danluhring",{"template":743},"content:en-us:blog:authors:dan-luhring.yml","en-us/blog/authors/dan-luhring.yml","en-us/blog/authors/dan-luhring",{"_path":2202,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2203,"config":2208,"_id":2209,"_type":28,"title":2204,"_source":30,"_file":2210,"_stem":2211,"_extension":33},"/en-us/blog/authors/dan-rabinovitz",{"name":2204,"config":2205},"Dan Rabinovitz",{"headshot":2206,"ctfId":2207},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664796/Blog/Author%20Headshots/dan_rabinovitz_headshot.png","31AXb267jy94budCWQZQyr",{"template":743},"content:en-us:blog:authors:dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz.yml","en-us/blog/authors/dan-rabinovitz",{"_path":2213,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2214,"config":2218,"_id":2219,"_type":28,"title":2215,"_source":30,"_file":2220,"_stem":2221,"_extension":33},"/en-us/blog/authors/daniel-berman",{"name":2215,"config":2216},"Daniel Berman",{"headshot":774,"ctfId":2217},"Daniel-Berman",{"template":743},"content:en-us:blog:authors:daniel-berman.yml","en-us/blog/authors/daniel-berman.yml","en-us/blog/authors/daniel-berman",{"_path":2223,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2224,"config":2228,"_id":2229,"_type":28,"title":2225,"_source":30,"_file":2230,"_stem":2231,"_extension":33},"/en-us/blog/authors/daniel-gruesso",{"name":2225,"config":2226},"Daniel Gruesso",{"headshot":7,"ctfId":2227},"danielgruesso",{"template":743},"content:en-us:blog:authors:daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso.yml","en-us/blog/authors/daniel-gruesso",{"_path":2233,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2234,"config":2239,"_id":2240,"_type":28,"title":2235,"_source":30,"_file":2241,"_stem":2242,"_extension":33},"/en-us/blog/authors/daniel-hauenstein",{"name":2235,"config":2236},"Daniel Hauenstein",{"headshot":2237,"ctfId":2238},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662434/Blog/Author%20Headshots/daniel_hauenstein_headshot.png","2gXGuSmuvZSxv0iCn4sinV",{"template":743},"content:en-us:blog:authors:daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein.yml","en-us/blog/authors/daniel-hauenstein",{"_path":2244,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2245,"config":2250,"_id":2251,"_type":28,"title":2246,"_source":30,"_file":2252,"_stem":2253,"_extension":33},"/en-us/blog/authors/daniel-helfand",{"name":2246,"config":2247},"Daniel Helfand",{"headshot":2248,"ctfId":2249},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662418/Blog/Author%20Headshots/dhelfand.png","b9sRP0HJhdPsOEruWUfih",{"template":743},"content:en-us:blog:authors:daniel-helfand.yml","en-us/blog/authors/daniel-helfand.yml","en-us/blog/authors/daniel-helfand",{"_path":2255,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2256,"config":2260,"_id":2261,"_type":28,"title":2257,"_source":30,"_file":2262,"_stem":2263,"_extension":33},"/en-us/blog/authors/daniel-mora",{"name":2257,"config":2258},"Daniel Mora",{"headshot":7,"ctfId":2259},"dmoraberlin",{"template":743},"content:en-us:blog:authors:daniel-mora.yml","en-us/blog/authors/daniel-mora.yml","en-us/blog/authors/daniel-mora",{"_path":2265,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2266,"config":2270,"_id":2272,"_type":28,"title":2267,"_source":30,"_file":2273,"_stem":2274,"_extension":33},"/en-us/blog/authors/daniel-murphy",{"name":2267,"config":2268},"Daniel Murphy",{"headshot":2269},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752519199/fabr89uottv7n6r2jldp.png",{"template":743,"gitlabHandle":2271},"daniel-murphy","content:en-us:blog:authors:daniel-murphy.yml","en-us/blog/authors/daniel-murphy.yml","en-us/blog/authors/daniel-murphy",{"_path":2276,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2277,"config":2282,"_id":2283,"_type":28,"title":2278,"_source":30,"_file":2284,"_stem":2285,"_extension":33},"/en-us/blog/authors/darby-frey",{"name":2278,"config":2279},"Darby Frey",{"headshot":2280,"ctfId":2281},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey",{"template":743},"content:en-us:blog:authors:darby-frey.yml","en-us/blog/authors/darby-frey.yml","en-us/blog/authors/darby-frey",{"_path":2287,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2288,"config":2293,"_id":2294,"_type":28,"title":2289,"_source":30,"_file":2295,"_stem":2296,"_extension":33},"/en-us/blog/authors/darren-eastman",{"name":2289,"config":2290},"Darren Eastman",{"headshot":2291,"ctfId":2292},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman",{"template":743},"content:en-us:blog:authors:darren-eastman.yml","en-us/blog/authors/darren-eastman.yml","en-us/blog/authors/darren-eastman",{"_path":2298,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2299,"config":2303,"_id":2304,"_type":28,"title":2300,"_source":30,"_file":2305,"_stem":2306,"_extension":33},"/en-us/blog/authors/darren-murph",{"name":2300,"config":2301},"Darren Murph",{"headshot":7,"ctfId":2302},"dmurph",{"template":743},"content:en-us:blog:authors:darren-murph.yml","en-us/blog/authors/darren-murph.yml","en-us/blog/authors/darren-murph",{"_path":2308,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2309,"config":2316,"_id":2317,"_type":28,"title":2311,"_source":30,"_file":2318,"_stem":2319,"_extension":33},"/en-us/blog/authors/darwin-sanoy",{"role":2310,"name":2311,"config":2312},"Field Chief Cloud Architect","Darwin Sanoy",{"headshot":2313,"linkedin":2314,"ctfId":2315},"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":743},"content:en-us:blog:authors:darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy.yml","en-us/blog/authors/darwin-sanoy",{"_path":2321,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2322,"config":2327,"_id":2328,"_type":28,"title":2323,"_source":30,"_file":2329,"_stem":2330,"_extension":33},"/en-us/blog/authors/dave-steer",{"name":2323,"config":2324},"Dave Steer",{"headshot":2325,"ctfId":2326},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658895/Blog/Author%20Headshots/dsteer-headshot.jpg","dsteer",{"template":743},"content:en-us:blog:authors:dave-steer.yml","en-us/blog/authors/dave-steer.yml","en-us/blog/authors/dave-steer",{"_path":2332,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2333,"config":2337,"_id":2338,"_type":28,"title":2334,"_source":30,"_file":2339,"_stem":2340,"_extension":33},"/en-us/blog/authors/dave-wentzel",{"name":2334,"config":2335},"Dave Wentzel",{"headshot":774,"ctfId":2336},"Dave-Wentzel",{"template":743},"content:en-us:blog:authors:dave-wentzel.yml","en-us/blog/authors/dave-wentzel.yml","en-us/blog/authors/dave-wentzel",{"_path":2342,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2343,"config":2348,"_id":2349,"_type":28,"title":2350,"_source":30,"_file":2351,"_stem":2352,"_extension":33},"/en-us/blog/authors/david-desanto-chief-product-officer-gitlab",{"name":2344,"config":2345},"David DeSanto, Chief Product Officer, GitLab",{"headshot":2346,"ctfId":2347},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660185/Blog/Author%20Headshots/david-headshot.jpg","david",{"template":743},"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":2354,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2355,"config":2360,"_id":2361,"_type":28,"title":2362,"_source":30,"_file":2363,"_stem":2364,"_extension":33},"/en-us/blog/authors/david-oregan",{"name":2356,"config":2357},"David O'Regan",{"headshot":2358,"ctfId":2359},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659853/Blog/Author%20Headshots/oregand-headshot.png","oregand",{"template":743},"content:en-us:blog:authors:david-oregan.yml","David Oregan","en-us/blog/authors/david-oregan.yml","en-us/blog/authors/david-oregan",{"_path":2366,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2367,"config":2371,"_id":2372,"_type":28,"title":2368,"_source":30,"_file":2373,"_stem":2374,"_extension":33},"/en-us/blog/authors/david-planella",{"name":2368,"config":2369},"David Planella",{"headshot":774,"ctfId":2370},"1Ehi3fTex4dxUCV2kYz4Vh",{"template":743},"content:en-us:blog:authors:david-planella.yml","en-us/blog/authors/david-planella.yml","en-us/blog/authors/david-planella",{"_path":2376,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2377,"config":2381,"_id":2382,"_type":28,"title":2378,"_source":30,"_file":2383,"_stem":2384,"_extension":33},"/en-us/blog/authors/david-russell",{"name":2378,"config":2379},"David Russell",{"headshot":774,"ctfId":2380},"David-Russell",{"template":743},"content:en-us:blog:authors:david-russell.yml","en-us/blog/authors/david-russell.yml","en-us/blog/authors/david-russell",{"_path":2386,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2387,"config":2392,"_id":2393,"_type":28,"title":2388,"_source":30,"_file":2394,"_stem":2395,"_extension":33},"/en-us/blog/authors/david-smith",{"name":2388,"config":2389},"David Smith",{"headshot":2390,"ctfId":2391},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671135/Blog/Author%20Headshots/dawsmith-headshot.jpg","dawsmith",{"template":743},"content:en-us:blog:authors:david-smith.yml","en-us/blog/authors/david-smith.yml","en-us/blog/authors/david-smith",{"_path":2397,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2398,"config":2402,"_id":2403,"_type":28,"title":2399,"_source":30,"_file":2404,"_stem":2405,"_extension":33},"/en-us/blog/authors/davis-townsend",{"name":2399,"config":2400},"Davis Townsend",{"headshot":7,"ctfId":2401},"davistownsend",{"template":743},"content:en-us:blog:authors:davis-townsend.yml","en-us/blog/authors/davis-townsend.yml","en-us/blog/authors/davis-townsend",{"_path":2407,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2408,"config":2412,"_id":2414,"_type":28,"title":2409,"_source":30,"_file":2415,"_stem":2416,"_extension":33},"/en-us/blog/authors/davoud-tu",{"name":2409,"config":2410},"Davoud Tu",{"headshot":2411},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756481763/pfdaqbndnstiqlmxh3ee.png",{"template":743,"gitlabHandle":2413},"davoudtu","content:en-us:blog:authors:davoud-tu.yml","en-us/blog/authors/davoud-tu.yml","en-us/blog/authors/davoud-tu",{"_path":2418,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2419,"config":2424,"_id":2425,"_type":28,"title":2426,"_source":30,"_file":2427,"_stem":2428,"_extension":33},"/en-us/blog/authors/dean-agron-co-founder-and-ceo-oxeye",{"name":2420,"config":2421},"Dean Agron, co-founder and CEO, Oxeye",{"headshot":2422,"ctfId":2423},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671963/Blog/Author%20Headshots/Dean_Photo__1_.jpg","6wQ0QwFZdbzAtYGZgnALkw",{"template":743},"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":2430,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2431,"config":2436,"_id":2437,"_type":28,"title":2432,"_source":30,"_file":2438,"_stem":2439,"_extension":33},"/en-us/blog/authors/deepa-mahalingam",{"name":2432,"config":2433},"Deepa Mahalingam",{"headshot":2434,"ctfId":2435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662019/Blog/Author%20Headshots/deepa-headshot.jpg","M54z9AWDuU7L9nBR9gRF4",{"template":743},"content:en-us:blog:authors:deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam.yml","en-us/blog/authors/deepa-mahalingam",{"_path":2441,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2442,"config":2447,"_id":2448,"_type":28,"title":2443,"_source":30,"_file":2449,"_stem":2450,"_extension":33},"/en-us/blog/authors/dennis-appelt",{"name":2443,"config":2444},"Dennis Appelt",{"headshot":2445,"ctfId":2446},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt",{"template":743},"content:en-us:blog:authors:dennis-appelt.yml","en-us/blog/authors/dennis-appelt.yml","en-us/blog/authors/dennis-appelt",{"_path":2452,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2453,"config":2458,"_id":2459,"_type":28,"title":2454,"_source":30,"_file":2460,"_stem":2461,"_extension":33},"/en-us/blog/authors/dennis-tang",{"name":2454,"config":2455},"Dennis Tang",{"headshot":2456,"ctfId":2457},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672189/Blog/Author%20Headshots/dennis-headshot.jpg","dennis",{"template":743},"content:en-us:blog:authors:dennis-tang.yml","en-us/blog/authors/dennis-tang.yml","en-us/blog/authors/dennis-tang",{"_path":2463,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2464,"config":2468,"_id":2470,"_type":28,"title":2471,"_source":30,"_file":2472,"_stem":2473,"_extension":33},"/en-us/blog/authors/dennis-van-rooijen",{"name":2465,"config":2466},"Dennis van Rooijen",{"headshot":2467},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758031391/muvwg1sxetzekmuhqdql.png",{"template":743,"gitlabHandle":2469},"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":2475,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2476,"config":2481,"_id":2482,"_type":28,"title":2477,"_source":30,"_file":2483,"_stem":2484,"_extension":33},"/en-us/blog/authors/devin-sylva",{"name":2477,"config":2478},"Devin Sylva",{"headshot":2479,"ctfId":2480},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679087/Blog/Author%20Headshots/devin-headshot.jpg","devin",{"template":743},"content:en-us:blog:authors:devin-sylva.yml","en-us/blog/authors/devin-sylva.yml","en-us/blog/authors/devin-sylva",{"_path":2486,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2487,"config":2491,"_id":2492,"_type":28,"title":2488,"_source":30,"_file":2493,"_stem":2494,"_extension":33},"/en-us/blog/authors/dhruv-jain",{"name":2488,"config":2489},"Dhruv Jain",{"headshot":774,"ctfId":2490},"2wyibk9HBKn6PjgaEuzXuZ",{"template":743},"content:en-us:blog:authors:dhruv-jain.yml","en-us/blog/authors/dhruv-jain.yml","en-us/blog/authors/dhruv-jain",{"_path":2496,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2497,"config":2501,"_id":2502,"_type":28,"title":2498,"_source":30,"_file":2503,"_stem":2504,"_extension":33},"/en-us/blog/authors/diana-logan",{"name":2498,"config":2499},"Diana Logan",{"headshot":774,"ctfId":2500},"6poIwhQe6W9ysm5rBuSPXX",{"template":743},"content:en-us:blog:authors:diana-logan.yml","en-us/blog/authors/diana-logan.yml","en-us/blog/authors/diana-logan",{"_path":2506,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2507,"config":2512,"_id":2513,"_type":28,"title":2508,"_source":30,"_file":2514,"_stem":2515,"_extension":33},"/en-us/blog/authors/dilan-orrino",{"name":2508,"config":2509},"Dilan Orrino",{"headshot":2510,"ctfId":2511},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666180/Blog/Author%20Headshots/dorrino-headshot.png","dorrino",{"template":743},"content:en-us:blog:authors:dilan-orrino.yml","en-us/blog/authors/dilan-orrino.yml","en-us/blog/authors/dilan-orrino",{"_path":2517,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2518,"config":2522,"_id":2523,"_type":28,"title":2519,"_source":30,"_file":2524,"_stem":2525,"_extension":33},"/en-us/blog/authors/dimitrie-hoekstra",{"name":2519,"config":2520},"Dimitrie Hoekstra",{"headshot":7,"ctfId":2521},"dimitrieh",{"template":743},"content:en-us:blog:authors:dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra.yml","en-us/blog/authors/dimitrie-hoekstra",{"_path":2527,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2528,"config":2532,"_id":2533,"_type":28,"title":2529,"_source":30,"_file":2534,"_stem":2535,"_extension":33},"/en-us/blog/authors/dinesh-bolkensteyn",{"name":2529,"config":2530},"Dinesh Bolkensteyn",{"headshot":774,"ctfId":2531},"EpylYWgjPmFOL5NX3Zxmk",{"template":743},"content:en-us:blog:authors:dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn.yml","en-us/blog/authors/dinesh-bolkensteyn",{"_path":2537,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2538,"config":2542,"_id":2543,"_type":28,"title":2544,"_source":30,"_file":2545,"_stem":2546,"_extension":33},"/en-us/blog/authors/dj-mountney",{"name":2539,"config":2540},"DJ Mountney",{"headshot":774,"ctfId":2541},"DJ-Mountney",{"template":743},"content:en-us:blog:authors:dj-mountney.yml","Dj Mountney","en-us/blog/authors/dj-mountney.yml","en-us/blog/authors/dj-mountney",{"_path":2548,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2549,"config":2553,"_id":2554,"_type":28,"title":2555,"_source":30,"_file":2556,"_stem":2557,"_extension":33},"/en-us/blog/authors/dmitriy-job",{"name":2550,"config":2551},"Dmitriy, Job",{"headshot":774,"ctfId":2552},"Dmitriy-Job",{"template":743},"content:en-us:blog:authors:dmitriy-job.yml","Dmitriy Job","en-us/blog/authors/dmitriy-job.yml","en-us/blog/authors/dmitriy-job",{"_path":2559,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2560,"config":2564,"_id":2565,"_type":28,"title":2561,"_source":30,"_file":2566,"_stem":2567,"_extension":33},"/en-us/blog/authors/dmitriy-zaporozhets",{"name":2561,"config":2562},"Dmitriy Zaporozhets",{"headshot":774,"ctfId":2563},"Dmitriy-Zaporozhets",{"template":743},"content:en-us:blog:authors:dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets.yml","en-us/blog/authors/dmitriy-zaporozhets",{"_path":2569,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2570,"config":2575,"_id":2576,"_type":28,"title":2571,"_source":30,"_file":2577,"_stem":2578,"_extension":33},"/en-us/blog/authors/dmitry-gruzd",{"name":2571,"config":2572},"Dmitry Gruzd",{"headshot":2573,"ctfId":2574},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682014/Blog/Author%20Headshots/dgruzd-headshot.jpg","dgruzd",{"template":743},"content:en-us:blog:authors:dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd.yml","en-us/blog/authors/dmitry-gruzd",{"_path":2580,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2581,"config":2586,"_id":2587,"_type":28,"title":2582,"_source":30,"_file":2588,"_stem":2589,"_extension":33},"/en-us/blog/authors/dominic-couture",{"name":2582,"config":2583},"Dominic Couture",{"headshot":2584,"ctfId":2585},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683783/Blog/Author%20Headshots/dominic.png","3K2DmuMWV5isBeVtKsplia",{"template":743},"content:en-us:blog:authors:dominic-couture.yml","en-us/blog/authors/dominic-couture.yml","en-us/blog/authors/dominic-couture",{"_path":2591,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2592,"config":2596,"_id":2597,"_type":28,"title":2593,"_source":30,"_file":2598,"_stem":2599,"_extension":33},"/en-us/blog/authors/douglas-alexandre",{"name":2593,"config":2594},"Douglas Alexandre",{"headshot":774,"ctfId":2595},"Douglas-Alexandre",{"template":743},"content:en-us:blog:authors:douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre.yml","en-us/blog/authors/douglas-alexandre",{"_path":2601,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2602,"config":2606,"_id":2607,"_type":28,"title":2603,"_source":30,"_file":2608,"_stem":2609,"_extension":33},"/en-us/blog/authors/douwe-maan",{"name":2603,"config":2604},"Douwe Maan",{"headshot":7,"ctfId":2605},"DouweM",{"template":743},"content:en-us:blog:authors:douwe-maan.yml","en-us/blog/authors/douwe-maan.yml","en-us/blog/authors/douwe-maan",{"_path":2611,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2612,"config":2617,"_id":2618,"_type":28,"title":2613,"_source":30,"_file":2619,"_stem":2620,"_extension":33},"/en-us/blog/authors/dov-hershkovitch",{"name":2613,"config":2614},"Dov Hershkovitch",{"headshot":2615,"ctfId":2616},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665628/Blog/Author%20Headshots/dhershkovitch-headshot.png","dhershkovitch",{"template":743},"content:en-us:blog:authors:dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch.yml","en-us/blog/authors/dov-hershkovitch",{"_path":2622,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2623,"config":2627,"_id":2628,"_type":28,"title":2629,"_source":30,"_file":2630,"_stem":2631,"_extension":33},"/en-us/blog/authors/dr-elle-obrien",{"name":2624,"config":2625},"Dr. Elle O'Brien",{"headshot":774,"ctfId":2626},"Dr-Elle-OBrien",{"template":743},"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":2633,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2634,"config":2638,"_id":2639,"_type":28,"title":2635,"_source":30,"_file":2640,"_stem":2641,"_extension":33},"/en-us/blog/authors/drew-blessing",{"name":2635,"config":2636},"Drew Blessing",{"headshot":774,"ctfId":2637},"Drew-Blessing",{"template":743},"content:en-us:blog:authors:drew-blessing.yml","en-us/blog/authors/drew-blessing.yml","en-us/blog/authors/drew-blessing",{"_path":2643,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2644,"config":2649,"_id":2650,"_type":28,"title":2645,"_source":30,"_file":2651,"_stem":2652,"_extension":33},"/en-us/blog/authors/dylan-griffith",{"name":2645,"config":2646},"Dylan Griffith",{"headshot":2647,"ctfId":2648},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672822/Blog/Author%20Headshots/DylanGriffith-headshot.jpg","DylanGriffith",{"template":743},"content:en-us:blog:authors:dylan-griffith.yml","en-us/blog/authors/dylan-griffith.yml","en-us/blog/authors/dylan-griffith",{"_path":2654,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2655,"config":2659,"_id":2660,"_type":28,"title":2656,"_source":30,"_file":2661,"_stem":2662,"_extension":33},"/en-us/blog/authors/eddie-glenn",{"name":2656,"config":2657},"Eddie Glenn",{"headshot":7,"ctfId":2658},"eglenn",{"template":743},"content:en-us:blog:authors:eddie-glenn.yml","en-us/blog/authors/eddie-glenn.yml","en-us/blog/authors/eddie-glenn",{"_path":2664,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2665,"config":2670,"_id":2671,"_type":28,"title":2666,"_source":30,"_file":2672,"_stem":2673,"_extension":33},"/en-us/blog/authors/eduardo-bonet",{"name":2666,"config":2667},"Eduardo Bonet",{"headshot":2668,"ctfId":2669},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682722/Blog/Author%20Headshots/eduardobonet-headshot.jpg","eduardobonet",{"template":743},"content:en-us:blog:authors:eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet.yml","en-us/blog/authors/eduardo-bonet",{"_path":2675,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2676,"config":2681,"_id":2682,"_type":28,"title":2677,"_source":30,"_file":2683,"_stem":2684,"_extension":33},"/en-us/blog/authors/eliran-mesika",{"name":2677,"config":2678},"Eliran Mesika",{"headshot":2679,"ctfId":2680},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670111/Blog/Author%20Headshots/eliran.jpg","eliranmesika",{"template":743},"content:en-us:blog:authors:eliran-mesika.yml","en-us/blog/authors/eliran-mesika.yml","en-us/blog/authors/eliran-mesika",{"_path":2686,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2687,"config":2692,"_id":2693,"_type":28,"title":2688,"_source":30,"_file":2694,"_stem":2695,"_extension":33},"/en-us/blog/authors/elisabeth-burrows",{"name":2688,"config":2689},"Elisabeth Burrows",{"headshot":2690,"ctfId":2691},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659535/Blog/Author%20Headshots/liz_burrows_headshot.png","6Nj2Lio5W7HdeNYoysVgCf",{"template":743},"content:en-us:blog:authors:elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows.yml","en-us/blog/authors/elisabeth-burrows",{"_path":2697,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2698,"config":2702,"_id":2703,"_type":28,"title":2699,"_source":30,"_file":2704,"_stem":2705,"_extension":33},"/en-us/blog/authors/elliot-rushton",{"name":2699,"config":2700},"Elliot Rushton",{"headshot":7,"ctfId":2701},"erushton",{"template":743},"content:en-us:blog:authors:elliot-rushton.yml","en-us/blog/authors/elliot-rushton.yml","en-us/blog/authors/elliot-rushton",{"_path":2707,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2708,"config":2712,"_id":2713,"_type":28,"title":2709,"_source":30,"_file":2714,"_stem":2715,"_extension":33},"/en-us/blog/authors/emilie-schario",{"name":2709,"config":2710},"Emilie Schario",{"headshot":7,"ctfId":2711},"emilie",{"template":743},"content:en-us:blog:authors:emilie-schario.yml","en-us/blog/authors/emilie-schario.yml","en-us/blog/authors/emilie-schario",{"_path":2717,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2718,"config":2723,"_id":2724,"_type":28,"title":2719,"_source":30,"_file":2725,"_stem":2726,"_extension":33},"/en-us/blog/authors/emilio-salvador",{"name":2719,"config":2720},"Emilio Salvador",{"headshot":2721,"ctfId":2722},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660161/Blog/Author%20Headshots/esalvadorp-headshot.png","esalvadorp",{"template":743},"content:en-us:blog:authors:emilio-salvador.yml","en-us/blog/authors/emilio-salvador.yml","en-us/blog/authors/emilio-salvador",{"_path":2728,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2729,"config":2734,"_id":2735,"_type":28,"title":2730,"_source":30,"_file":2736,"_stem":2737,"_extension":33},"/en-us/blog/authors/emily-bauman",{"name":2730,"config":2731},"Emily Bauman",{"headshot":2732,"ctfId":2733},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664145/Blog/Author%20Headshots/emilybauman-headshot.jpg","emilybauman",{"template":743},"content:en-us:blog:authors:emily-bauman.yml","en-us/blog/authors/emily-bauman.yml","en-us/blog/authors/emily-bauman",{"_path":2739,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2740,"config":2744,"_id":2745,"_type":28,"title":2741,"_source":30,"_file":2746,"_stem":2747,"_extension":33},"/en-us/blog/authors/emily-chin",{"name":2741,"config":2742},"Emily Chin",{"headshot":7,"ctfId":2743},"echin",{"template":743},"content:en-us:blog:authors:emily-chin.yml","en-us/blog/authors/emily-chin.yml","en-us/blog/authors/emily-chin",{"_path":2749,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2750,"config":2754,"_id":2755,"_type":28,"title":2751,"_source":30,"_file":2756,"_stem":2757,"_extension":33},"/en-us/blog/authors/emily-kyle",{"name":2751,"config":2752},"Emily Kyle",{"headshot":774,"ctfId":2753},"Emily-Kyle",{"template":743},"content:en-us:blog:authors:emily-kyle.yml","en-us/blog/authors/emily-kyle.yml","en-us/blog/authors/emily-kyle",{"_path":2759,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2760,"config":2764,"_id":2765,"_type":28,"title":2766,"_source":30,"_file":2767,"_stem":2768,"_extension":33},"/en-us/blog/authors/emily-von-hoffmann",{"name":2761,"config":2762},"Emily von Hoffmann",{"headshot":774,"ctfId":2763},"evhoffmann",{"template":743},"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":2770,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2771,"config":2776,"_id":2777,"_type":28,"title":2778,"_source":30,"_file":2779,"_stem":2780,"_extension":33},"/en-us/blog/authors/enrique-alcntara",{"name":2772,"config":2773},"Enrique Alcántara",{"headshot":2774,"ctfId":2775},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669746/Blog/Author%20Headshots/ealcantara-headshot.jpg","3E3c30ZWRUTq6rlFiYrjtq",{"template":743},"content:en-us:blog:authors:enrique-alcntara.yml","Enrique Alcntara","en-us/blog/authors/enrique-alcntara.yml","en-us/blog/authors/enrique-alcntara",{"_path":2782,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2783,"config":2787,"_id":2788,"_type":28,"title":2784,"_source":30,"_file":2789,"_stem":2790,"_extension":33},"/en-us/blog/authors/eric-brinkman",{"name":2784,"config":2785},"Eric Brinkman",{"headshot":7,"ctfId":2786},"ebrinkman",{"template":743},"content:en-us:blog:authors:eric-brinkman.yml","en-us/blog/authors/eric-brinkman.yml","en-us/blog/authors/eric-brinkman",{"_path":2792,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2793,"config":2797,"_id":2798,"_type":28,"title":2794,"_source":30,"_file":2799,"_stem":2800,"_extension":33},"/en-us/blog/authors/eric-eastwood",{"name":2794,"config":2795},"Eric Eastwood",{"headshot":7,"ctfId":2796},"MadLittleMods",{"template":743},"content:en-us:blog:authors:eric-eastwood.yml","en-us/blog/authors/eric-eastwood.yml","en-us/blog/authors/eric-eastwood",{"_path":2802,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2803,"config":2807,"_id":2808,"_type":28,"title":2804,"_source":30,"_file":2809,"_stem":2810,"_extension":33},"/en-us/blog/authors/eric-rosenberg",{"name":2804,"config":2805},"Eric Rosenberg",{"headshot":7,"ctfId":2806},"ericrosenberg88",{"template":743},"content:en-us:blog:authors:eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg.yml","en-us/blog/authors/eric-rosenberg",{"_path":2812,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2813,"config":2818,"_id":2819,"_type":28,"title":2814,"_source":30,"_file":2820,"_stem":2821,"_extension":33},"/en-us/blog/authors/eric-rubin",{"name":2814,"config":2815},"Eric Rubin",{"headshot":2816,"ctfId":2817},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682494/Blog/Author%20Headshots/ericrubin-headshot.png","ericrubin",{"template":743},"content:en-us:blog:authors:eric-rubin.yml","en-us/blog/authors/eric-rubin.yml","en-us/blog/authors/eric-rubin",{"_path":2823,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2824,"config":2829,"_id":2830,"_type":28,"title":2825,"_source":30,"_file":2831,"_stem":2832,"_extension":33},"/en-us/blog/authors/eric-schurter",{"name":2825,"config":2826},"Eric Schurter",{"headshot":2827,"ctfId":2828},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679281/Blog/Author%20Headshots/ericschurter-headshot.jpg","ericschurter",{"template":743},"content:en-us:blog:authors:eric-schurter.yml","en-us/blog/authors/eric-schurter.yml","en-us/blog/authors/eric-schurter",{"_path":2834,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2835,"config":2839,"_id":2840,"_type":28,"title":2836,"_source":30,"_file":2841,"_stem":2842,"_extension":33},"/en-us/blog/authors/erica-huang",{"name":2836,"config":2837},"Erica Huang",{"headshot":7,"ctfId":2838},"exhuang",{"template":743},"content:en-us:blog:authors:erica-huang.yml","en-us/blog/authors/erica-huang.yml","en-us/blog/authors/erica-huang",{"_path":2844,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2845,"config":2849,"_id":2850,"_type":28,"title":2846,"_source":30,"_file":2851,"_stem":2852,"_extension":33},"/en-us/blog/authors/erica-lindberg",{"name":2846,"config":2847},"Erica Lindberg",{"headshot":774,"ctfId":2848},"Erica-Lindberg",{"template":743},"content:en-us:blog:authors:erica-lindberg.yml","en-us/blog/authors/erica-lindberg.yml","en-us/blog/authors/erica-lindberg",{"_path":2854,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2855,"config":2859,"_id":2860,"_type":28,"title":2856,"_source":30,"_file":2861,"_stem":2862,"_extension":33},"/en-us/blog/authors/erich-wegscheider",{"name":2856,"config":2857},"Erich Wegscheider",{"headshot":7,"ctfId":2858},"ewegscheider",{"template":743},"content:en-us:blog:authors:erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider.yml","en-us/blog/authors/erich-wegscheider",{"_path":2864,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2865,"config":2869,"_id":2870,"_type":28,"title":2866,"_source":30,"_file":2871,"_stem":2872,"_extension":33},"/en-us/blog/authors/erick-banks",{"name":2866,"config":2867},"Erick Banks",{"headshot":774,"ctfId":2868},"4CGXhAxudTq69aZOtPnLfu",{"template":743},"content:en-us:blog:authors:erick-banks.yml","en-us/blog/authors/erick-banks.yml","en-us/blog/authors/erick-banks",{"_path":2874,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2875,"config":2879,"_id":2880,"_type":28,"title":2876,"_source":30,"_file":2881,"_stem":2882,"_extension":33},"/en-us/blog/authors/erika-feldman",{"name":2876,"config":2877},"Erika Feldman",{"headshot":774,"ctfId":2878},"78oCat8vvbl6mzXsLawd9d",{"template":743},"content:en-us:blog:authors:erika-feldman.yml","en-us/blog/authors/erika-feldman.yml","en-us/blog/authors/erika-feldman",{"_path":2884,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2885,"config":2889,"_id":2890,"_type":28,"title":2891,"_source":30,"_file":2892,"_stem":2893,"_extension":33},"/en-us/blog/authors/erin-krengel-pulumi",{"name":2886,"config":2887},"Erin Krengel, Pulumi",{"headshot":774,"ctfId":2888},"Erin-Krengel-Pulumi",{"template":743},"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":2895,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2896,"config":2900,"_id":2901,"_type":28,"title":2902,"_source":30,"_file":2903,"_stem":2904,"_extension":33},"/en-us/blog/authors/ernst-van-nierop",{"name":2897,"config":2898},"Ernst van Nierop",{"headshot":7,"ctfId":2899},"ernstvn",{"template":743},"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":2906,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2907,"config":2911,"_id":2912,"_type":28,"title":2908,"_source":30,"_file":2913,"_stem":2914,"_extension":33},"/en-us/blog/authors/esther-shein",{"name":2908,"config":2909},"Esther Shein",{"headshot":774,"ctfId":2910},"Esther-Shein",{"template":743},"content:en-us:blog:authors:esther-shein.yml","en-us/blog/authors/esther-shein.yml","en-us/blog/authors/esther-shein",{"_path":2916,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2917,"config":2922,"_id":2923,"_type":28,"title":2918,"_source":30,"_file":2924,"_stem":2925,"_extension":33},"/en-us/blog/authors/ethan-strike",{"name":2918,"config":2919},"Ethan Strike",{"headshot":2920,"ctfId":2921},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679067/Blog/Author%20Headshots/estrike-headshot.png","estrike",{"template":743},"content:en-us:blog:authors:ethan-strike.yml","en-us/blog/authors/ethan-strike.yml","en-us/blog/authors/ethan-strike",{"_path":2927,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2928,"config":2932,"_id":2933,"_type":28,"title":2929,"_source":30,"_file":2934,"_stem":2935,"_extension":33},"/en-us/blog/authors/ethan-urie",{"name":2929,"config":2930},"Ethan Urie",{"headshot":774,"ctfId":2931},"mJhtQw4TY9ZRNF7dfitIF",{"template":743},"content:en-us:blog:authors:ethan-urie.yml","en-us/blog/authors/ethan-urie.yml","en-us/blog/authors/ethan-urie",{"_path":2937,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2938,"config":2942,"_id":2943,"_type":28,"title":2939,"_source":30,"_file":2944,"_stem":2945,"_extension":33},"/en-us/blog/authors/eugene-lim",{"name":2939,"config":2940},"Eugene Lim",{"headshot":774,"ctfId":2941},"6KHdIdghkUfSTzV2MzxNcj",{"template":743},"content:en-us:blog:authors:eugene-lim.yml","en-us/blog/authors/eugene-lim.yml","en-us/blog/authors/eugene-lim",{"_path":2947,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2948,"config":2952,"_id":2953,"_type":28,"title":2949,"_source":30,"_file":2954,"_stem":2955,"_extension":33},"/en-us/blog/authors/eugenia-hannon",{"name":2949,"config":2950},"Eugenia Hannon",{"headshot":7,"ctfId":2951},"eugeniah",{"template":743},"content:en-us:blog:authors:eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon.yml","en-us/blog/authors/eugenia-hannon",{"_path":2957,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2958,"config":2962,"_id":2963,"_type":28,"title":2959,"_source":30,"_file":2964,"_stem":2965,"_extension":33},"/en-us/blog/authors/ev-kontsevoy",{"name":2959,"config":2960},"Ev Kontsevoy",{"headshot":7,"ctfId":2961},"ekontsevoy",{"template":743},"content:en-us:blog:authors:ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy.yml","en-us/blog/authors/ev-kontsevoy",{"_path":2967,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2968,"config":2972,"_id":2973,"_type":28,"title":2969,"_source":30,"_file":2974,"_stem":2975,"_extension":33},"/en-us/blog/authors/eva-sasson",{"name":2969,"config":2970},"Eva Sasson",{"headshot":774,"ctfId":2971},"Eva-Sasson",{"template":743},"content:en-us:blog:authors:eva-sasson.yml","en-us/blog/authors/eva-sasson.yml","en-us/blog/authors/eva-sasson",{"_path":2977,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2978,"config":2983,"_id":2984,"_type":28,"title":2979,"_source":30,"_file":2985,"_stem":2986,"_extension":33},"/en-us/blog/authors/fabian-zimmer",{"name":2979,"config":2980},"Fabian Zimmer",{"headshot":2981,"ctfId":2982},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/q6awwqbxtg0a4x9gtmhs.png","3TK88UogcX5lx83kWMVuvI",{"template":743},"content:en-us:blog:authors:fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer.yml","en-us/blog/authors/fabian-zimmer",{"_path":2988,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2989,"config":2993,"_id":2994,"_type":28,"title":2990,"_source":30,"_file":2995,"_stem":2996,"_extension":33},"/en-us/blog/authors/fabio-akita",{"name":2990,"config":2991},"Fabio Akita",{"headshot":774,"ctfId":2992},"Fabio-Akita",{"template":743},"content:en-us:blog:authors:fabio-akita.yml","en-us/blog/authors/fabio-akita.yml","en-us/blog/authors/fabio-akita",{"_path":2998,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":2999,"config":3003,"_id":3004,"_type":28,"title":3000,"_source":30,"_file":3005,"_stem":3006,"_extension":33},"/en-us/blog/authors/fabio-busatto",{"name":3000,"config":3001},"Fabio Busatto",{"headshot":7,"ctfId":3002},"bikebilly",{"template":743},"content:en-us:blog:authors:fabio-busatto.yml","en-us/blog/authors/fabio-busatto.yml","en-us/blog/authors/fabio-busatto",{"_path":3008,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3009,"config":3014,"_id":3015,"_type":28,"title":3010,"_source":30,"_file":3016,"_stem":3017,"_extension":33},"/en-us/blog/authors/fabio-pitino",{"name":3010,"config":3011},"Fabio Pitino",{"headshot":3012,"ctfId":3013},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659958/Blog/Author%20Headshots/fabiopitino-headshot.jpg","fabiopitino",{"template":743},"content:en-us:blog:authors:fabio-pitino.yml","en-us/blog/authors/fabio-pitino.yml","en-us/blog/authors/fabio-pitino",{"_path":3019,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3020,"config":3024,"_id":3025,"_type":28,"title":3021,"_source":30,"_file":3026,"_stem":3027,"_extension":33},"/en-us/blog/authors/farnoosh-seifoddini",{"name":3021,"config":3022},"Farnoosh Seifoddini",{"headshot":7,"ctfId":3023},"fseifoddini",{"template":743},"content:en-us:blog:authors:farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini.yml","en-us/blog/authors/farnoosh-seifoddini",{"_path":3029,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3030,"config":3034,"_id":3035,"_type":28,"title":3031,"_source":30,"_file":3036,"_stem":3037,"_extension":33},"/en-us/blog/authors/fatih-acet",{"name":3031,"config":3032},"Fatih Acet",{"headshot":7,"ctfId":3033},"fatihacet",{"template":743},"content:en-us:blog:authors:fatih-acet.yml","en-us/blog/authors/fatih-acet.yml","en-us/blog/authors/fatih-acet",{"_path":3039,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3040,"config":3045,"_id":3046,"_type":28,"title":3041,"_source":30,"_file":3047,"_stem":3048,"_extension":33},"/en-us/blog/authors/fatima-sarah-khalid",{"name":3041,"config":3042},"Fatima Sarah Khalid",{"headshot":3043,"ctfId":3044},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663337/Blog/Author%20Headshots/sugaroverflow-headshot.jpg","sugaroverflow",{"template":743},"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":3050,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3051,"config":3056,"_id":3057,"_type":28,"title":3052,"_source":30,"_file":3058,"_stem":3059,"_extension":33},"/en-us/blog/authors/fernando-diaz",{"name":3052,"config":3053},"Fernando Diaz",{"headshot":3054,"ctfId":3055},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659556/Blog/Author%20Headshots/fern_diaz.png","fjdiaz",{"template":743},"content:en-us:blog:authors:fernando-diaz.yml","en-us/blog/authors/fernando-diaz.yml","en-us/blog/authors/fernando-diaz",{"_path":3061,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3062,"config":3066,"_id":3067,"_type":28,"title":3063,"_source":30,"_file":3068,"_stem":3069,"_extension":33},"/en-us/blog/authors/filipa-lacerda",{"name":3063,"config":3064},"Filipa Lacerda",{"headshot":7,"ctfId":3065},"filipa",{"template":743},"content:en-us:blog:authors:filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda.yml","en-us/blog/authors/filipa-lacerda",{"_path":3071,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3072,"config":3077,"_id":3078,"_type":28,"title":3079,"_source":30,"_file":3080,"_stem":3081,"_extension":33},"/en-us/blog/authors/flix-veillette-potvin",{"name":3073,"config":3074}," Félix Veillette-Potvin",{"headshot":3075,"ctfId":3076},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662606/Blog/Author%20Headshots/_F%C3%A9lix_Veillette-Potvin_headshot.png","3nkwcdE5K3Uw9nrovEngxW",{"template":743},"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":3083,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3084,"config":3088,"_id":3089,"_type":28,"title":3085,"_source":30,"_file":3090,"_stem":3091,"_extension":33},"/en-us/blog/authors/forrest-brazeal",{"name":3085,"config":3086},"Forrest Brazeal",{"headshot":7,"ctfId":3087},"fbrazeal",{"template":743},"content:en-us:blog:authors:forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal.yml","en-us/blog/authors/forrest-brazeal",{"_path":3093,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3094,"config":3098,"_id":3099,"_type":28,"title":3095,"_source":30,"_file":3100,"_stem":3101,"_extension":33},"/en-us/blog/authors/francis-ofungwu",{"name":3095,"config":3096},"Francis Ofungwu",{"headshot":774,"ctfId":3097},"fofungwu",{"template":743},"content:en-us:blog:authors:francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu.yml","en-us/blog/authors/francis-ofungwu",{"_path":3103,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3104,"config":3109,"_id":3110,"_type":28,"title":3111,"_source":30,"_file":3112,"_stem":3113,"_extension":33},"/en-us/blog/authors/frdric-caplette",{"name":3105,"config":3106},"Frédéric Caplette",{"headshot":3107,"ctfId":3108},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661878/Blog/Author%20Headshots/frederic_caplette_headshot.png","6nMRwNMwciKSX03zmbBbPF",{"template":743},"content:en-us:blog:authors:frdric-caplette.yml","Frdric Caplette","en-us/blog/authors/frdric-caplette.yml","en-us/blog/authors/frdric-caplette",{"_path":3115,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3116,"config":3121,"_id":3122,"_type":28,"title":3117,"_source":30,"_file":3123,"_stem":3124,"_extension":33},"/en-us/blog/authors/gabe-weaver",{"name":3117,"config":3118},"Gabe Weaver",{"headshot":3119,"ctfId":3120},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667605/Blog/Author%20Headshots/gweaver-headshot.jpg","gweaver",{"template":743},"content:en-us:blog:authors:gabe-weaver.yml","en-us/blog/authors/gabe-weaver.yml","en-us/blog/authors/gabe-weaver",{"_path":3126,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3127,"config":3132,"_id":3133,"_type":28,"title":3128,"_source":30,"_file":3134,"_stem":3135,"_extension":33},"/en-us/blog/authors/gabriel-engel",{"name":3128,"config":3129},"Gabriel Engel",{"headshot":3130,"ctfId":3131},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664747/Blog/Author%20Headshots/gabrielengel_gl-headshot.jpg","gabrielengelgl",{"template":743},"content:en-us:blog:authors:gabriel-engel.yml","en-us/blog/authors/gabriel-engel.yml","en-us/blog/authors/gabriel-engel",{"_path":3137,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3138,"config":3142,"_id":3143,"_type":28,"title":3139,"_source":30,"_file":3144,"_stem":3145,"_extension":33},"/en-us/blog/authors/gabriel-le-breton",{"name":3139,"config":3140},"Gabriel Le Breton",{"headshot":774,"ctfId":3141},"Gabriel-Le-Breton",{"template":743},"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":3147,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3148,"config":3153,"_id":3154,"_type":28,"title":3149,"_source":30,"_file":3155,"_stem":3156,"_extension":33},"/en-us/blog/authors/gabriel-mazetto",{"name":3149,"config":3150},"Gabriel Mazetto",{"headshot":3151,"ctfId":3152},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678982/Blog/Author%20Headshots/brodock-headshot.jpg","brodock",{"template":743},"content:en-us:blog:authors:gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto.yml","en-us/blog/authors/gabriel-mazetto",{"_path":3158,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3159,"config":3164,"_id":3165,"_type":28,"title":3160,"_source":30,"_file":3166,"_stem":3167,"_extension":33},"/en-us/blog/authors/gavin-peltz",{"name":3160,"config":3161},"Gavin Peltz",{"headshot":3162,"ctfId":3163},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662831/Blog/Author%20Headshots/gavin_peltz.png","27UwgXDMqa0oBWV93rXTgN",{"template":743},"content:en-us:blog:authors:gavin-peltz.yml","en-us/blog/authors/gavin-peltz.yml","en-us/blog/authors/gavin-peltz",{"_path":3169,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3170,"config":3175,"_id":3176,"_type":28,"title":3171,"_source":30,"_file":3177,"_stem":3178,"_extension":33},"/en-us/blog/authors/george-kichukov",{"name":3171,"config":3172},"George Kichukov",{"headshot":3173,"ctfId":3174},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664866/Blog/Author%20Headshots/george_kichukov.png","7e8bn05u4pXwYjkRrqdprE",{"template":743},"content:en-us:blog:authors:george-kichukov.yml","en-us/blog/authors/george-kichukov.yml","en-us/blog/authors/george-kichukov",{"_path":3180,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3181,"config":3185,"_id":3186,"_type":28,"title":3182,"_source":30,"_file":3187,"_stem":3188,"_extension":33},"/en-us/blog/authors/gerard-hickey",{"name":3182,"config":3183},"Gerard Hickey",{"headshot":7,"ctfId":3184},"ghickey",{"template":743},"content:en-us:blog:authors:gerard-hickey.yml","en-us/blog/authors/gerard-hickey.yml","en-us/blog/authors/gerard-hickey",{"_path":3190,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3191,"config":3196,"_id":3197,"_type":28,"title":3198,"_source":30,"_file":3199,"_stem":3200,"_extension":33},"/en-us/blog/authors/gerardo-lopez-fernandez",{"name":3192,"config":3193},"Gerardo Lopez-Fernandez",{"headshot":3194,"ctfId":3195},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679925/Blog/Author%20Headshots/glopezfernandez-headshot.jpg","glopezfernandez",{"template":743},"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":3202,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3203,"config":3208,"_id":3209,"_type":28,"title":3204,"_source":30,"_file":3210,"_stem":3211,"_extension":33},"/en-us/blog/authors/gina-doyle",{"name":3204,"config":3205},"Gina Doyle",{"headshot":3206,"ctfId":3207},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679201/Blog/Author%20Headshots/gdoyle-headshot.png","gdoyle",{"template":743},"content:en-us:blog:authors:gina-doyle.yml","en-us/blog/authors/gina-doyle.yml","en-us/blog/authors/gina-doyle",{"_path":3213,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3214,"config":3217,"_id":3218,"_type":28,"title":3219,"_source":30,"_file":3220,"_stem":3221,"_extension":33},"/en-us/blog/authors/gitlab",{"name":3215,"config":3216},"GitLab",{"headshot":774,"ctfId":3215},{"template":743},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":3223,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3224,"config":3228,"_id":3229,"_type":28,"title":3230,"_source":30,"_file":3231,"_stem":3232,"_extension":33},"/en-us/blog/authors/gitlab-ai-assisted-group",{"name":3225,"config":3226},"GitLab AI Assisted Group",{"headshot":774,"ctfId":3227},"GitLab-AI-Assisted-Group",{"template":743},"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":3234,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3235,"config":3239,"_id":3240,"_type":28,"title":3241,"_source":30,"_file":3242,"_stem":3243,"_extension":33},"/en-us/blog/authors/gitlab-france-team",{"name":3236,"config":3237},"GitLab France Team",{"headshot":774,"ctfId":3238},"1gfblqN0ibYIuWGk7MOTny",{"template":743},"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":3245,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3246,"config":3250,"_id":3251,"_type":28,"title":3252,"_source":30,"_file":3253,"_stem":3254,"_extension":33},"/en-us/blog/authors/gitlab-germany-team",{"name":3247,"config":3248},"GitLab Germany Team",{"headshot":774,"ctfId":3249},"6tNquF8jQeRRRi8k3ZXpvS",{"template":743},"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":3256,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3257,"config":3261,"_id":3262,"_type":28,"title":3263,"_source":30,"_file":3264,"_stem":3265,"_extension":33},"/en-us/blog/authors/gitlab-japan-team",{"name":3258,"config":3259},"GitLab Japan Team",{"headshot":774,"ctfId":3260},"5YWHF8vG80rluQ41QjgP7V",{"template":743},"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":3267,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3268,"config":3272,"_id":3273,"_type":28,"title":3274,"_source":30,"_file":3275,"_stem":3276,"_extension":33},"/en-us/blog/authors/gitlab-security-team",{"name":3269,"config":3270},"GitLab Security Team",{"headshot":774,"ctfId":3271},"GitLab-Security-Team",{"template":743},"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":3278,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3279,"config":3283,"_id":3284,"_type":28,"title":3285,"_source":30,"_file":3286,"_stem":3287,"_extension":33},"/en-us/blog/authors/gitlab-team",{"name":3280,"config":3281},"GitLab Team",{"headshot":774,"ctfId":3282},"GitLab-Team",{"template":743},"content:en-us:blog:authors:gitlab-team.yml","Gitlab Team","en-us/blog/authors/gitlab-team.yml","en-us/blog/authors/gitlab-team",{"_path":3289,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3290,"config":3294,"_id":3295,"_type":28,"title":3296,"_source":30,"_file":3297,"_stem":3298,"_extension":33},"/en-us/blog/authors/gitlab-vulnerability-research-team",{"name":3291,"config":3292},"GitLab Vulnerability Research Team",{"headshot":774,"ctfId":3293},"GitLab-Vulnerability-Research-Team",{"template":743},"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":3300,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3301,"config":3305,"_id":3306,"_type":28,"title":3302,"_source":30,"_file":3307,"_stem":3308,"_extension":33},"/en-us/blog/authors/goetz-buerkle",{"name":3302,"config":3303},"Goetz Buerkle",{"headshot":774,"ctfId":3304},"Goetz-Buerkle",{"template":743},"content:en-us:blog:authors:goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle.yml","en-us/blog/authors/goetz-buerkle",{"_path":3310,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3311,"config":3316,"_id":3317,"_type":28,"title":3312,"_source":30,"_file":3318,"_stem":3319,"_extension":33},"/en-us/blog/authors/gosia-ksionek",{"name":3312,"config":3313},"Gosia Ksionek",{"headshot":3314,"ctfId":3315},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680521/Blog/Author%20Headshots/mksionek-headshot.jpg","mksionek",{"template":743},"content:en-us:blog:authors:gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek.yml","en-us/blog/authors/gosia-ksionek",{"_path":3321,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3322,"config":3327,"_id":3328,"_type":28,"title":3323,"_source":30,"_file":3329,"_stem":3330,"_extension":33},"/en-us/blog/authors/grant-hickman",{"name":3323,"config":3324},"Grant Hickman",{"headshot":3325,"ctfId":3326},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682570/Blog/Author%20Headshots/g.png","ghickman",{"template":743},"content:en-us:blog:authors:grant-hickman.yml","en-us/blog/authors/grant-hickman.yml","en-us/blog/authors/grant-hickman",{"_path":3332,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3333,"config":3338,"_id":3339,"_type":28,"title":3334,"_source":30,"_file":3340,"_stem":3341,"_extension":33},"/en-us/blog/authors/grant-young",{"name":3334,"config":3335},"Grant Young",{"headshot":3336,"ctfId":3337},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666346/Blog/Author%20Headshots/grantyoung-headshot.jpg","grantyoung",{"template":743},"content:en-us:blog:authors:grant-young.yml","en-us/blog/authors/grant-young.yml","en-us/blog/authors/grant-young",{"_path":3343,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3344,"config":3348,"_id":3349,"_type":28,"title":3345,"_source":30,"_file":3350,"_stem":3351,"_extension":33},"/en-us/blog/authors/greg-alfaro",{"name":3345,"config":3346},"Greg Alfaro",{"headshot":7,"ctfId":3347},"7zzMrU9Fbdw0QGxdFjJ1jE",{"template":743},"content:en-us:blog:authors:greg-alfaro.yml","en-us/blog/authors/greg-alfaro.yml","en-us/blog/authors/greg-alfaro",{"_path":3353,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3354,"config":3358,"_id":3359,"_type":28,"title":3355,"_source":30,"_file":3360,"_stem":3361,"_extension":33},"/en-us/blog/authors/greg-johnson",{"name":3355,"config":3356},"Greg Johnson",{"headshot":7,"ctfId":3357},"codeEmitter",{"template":743},"content:en-us:blog:authors:greg-johnson.yml","en-us/blog/authors/greg-johnson.yml","en-us/blog/authors/greg-johnson",{"_path":3363,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3364,"config":3369,"_id":3370,"_type":28,"title":3365,"_source":30,"_file":3371,"_stem":3372,"_extension":33},"/en-us/blog/authors/greg-myers",{"name":3365,"config":3366},"Greg Myers",{"headshot":3367,"ctfId":3368},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665570/Blog/Author%20Headshots/greg_myers_headshot.png","2uUYKgdtszyGfoOHbakiQX",{"template":743},"content:en-us:blog:authors:greg-myers.yml","en-us/blog/authors/greg-myers.yml","en-us/blog/authors/greg-myers",{"_path":3374,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3375,"config":3379,"_id":3380,"_type":28,"title":3376,"_source":30,"_file":3381,"_stem":3382,"_extension":33},"/en-us/blog/authors/grzegorz-bizon",{"name":3376,"config":3377},"Grzegorz Bizon",{"headshot":774,"ctfId":3378},"Grzegorz-Bizon",{"template":743},"content:en-us:blog:authors:grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon.yml","en-us/blog/authors/grzegorz-bizon",{"_path":3384,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3385,"config":3389,"_id":3390,"_type":28,"title":3386,"_source":30,"_file":3391,"_stem":3392,"_extension":33},"/en-us/blog/authors/guenjun-yoo",{"name":3386,"config":3387},"Guenjun Yoo",{"headshot":7,"ctfId":3388},"gyoo",{"template":743},"content:en-us:blog:authors:guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo.yml","en-us/blog/authors/guenjun-yoo",{"_path":3394,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3395,"config":3399,"_id":3400,"_type":28,"title":3401,"_source":30,"_file":3402,"_stem":3403,"_extension":33},"/en-us/blog/authors/guest-author-andr-arko-of-ruby-together",{"name":3396,"config":3397},"Guest author André Arko of Ruby Together",{"headshot":774,"ctfId":3398},"Guest-author-Andr-Arko-of-Ruby-Together",{"template":743},"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":3405,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3406,"config":3410,"_id":3411,"_type":28,"title":3412,"_source":30,"_file":3413,"_stem":3414,"_extension":33},"/en-us/blog/authors/guest-author-andr-miranda",{"name":3407,"config":3408},"Guest author André Miranda",{"headshot":774,"ctfId":3409},"Guest-author-Andr-Miranda",{"template":743},"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":3416,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3417,"config":3423,"_id":3424,"_type":28,"title":3425,"_source":30,"_file":3426,"_stem":3427,"_extension":33},"/en-us/blog/authors/gufran-yeilyurt-obss",{"name":3418,"config":3419},"Gufran Yeşilyurt, OBSS",{"headshot":3420,"linkedin":3421,"ctfId":3422},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666380/Blog/Author%20Headshots/1643972670650.jpg","https://www.linkedin.com/in/gufran-yesilyurt/","2ydYMU86my71BUASual2EI",{"template":743},"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":3429,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3430,"config":3434,"_id":3435,"_type":28,"title":3436,"_source":30,"_file":3437,"_stem":3438,"_extension":33},"/en-us/blog/authors/gustaw-fit-of-zoopla",{"name":3431,"config":3432},"Gustaw Fit of Zoopla",{"headshot":774,"ctfId":3433},"Gustaw-Fit-of-Zoopla",{"template":743},"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":3440,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3441,"config":3445,"_id":3446,"_type":28,"title":3447,"_source":30,"_file":3448,"_stem":3449,"_extension":33},"/en-us/blog/authors/guy-bar-gil-product-manager-at-whitesource",{"name":3442,"config":3443},"Guy Bar-Gil, Product Manager at WhiteSource",{"headshot":774,"ctfId":3444},"Guy-BarGil-Product-Manager-at-WhiteSource",{"template":743},"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":3451,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3452,"config":3456,"_id":3457,"_type":28,"title":3453,"_source":30,"_file":3458,"_stem":3459,"_extension":33},"/en-us/blog/authors/gyan-chawdhary",{"name":3453,"config":3454},"Gyan Chawdhary",{"headshot":774,"ctfId":3455},"Gyan-Chawdhary",{"template":743},"content:en-us:blog:authors:gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary.yml","en-us/blog/authors/gyan-chawdhary",{"_path":3461,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3462,"config":3467,"_id":3468,"_type":28,"title":3463,"_source":30,"_file":3469,"_stem":3470,"_extension":33},"/en-us/blog/authors/haim-snir",{"name":3463,"config":3464},"Haim Snir",{"headshot":3465,"ctfId":3466},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664386/Blog/Author%20Headshots/hsnir1-headshot.jpg","hsnir1",{"template":743},"content:en-us:blog:authors:haim-snir.yml","en-us/blog/authors/haim-snir.yml","en-us/blog/authors/haim-snir",{"_path":3472,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3473,"config":3478,"_id":3479,"_type":28,"title":3480,"_source":30,"_file":3481,"_stem":3482,"_extension":33},"/en-us/blog/authors/hakeem-abdul-razak",{"name":3474,"config":3475},"Hakeem Abdul-Razak",{"headshot":3476,"ctfId":3477},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662077/Blog/Author%20Headshots/Hakeem_Abdul-Razak_headshot.png","7H6nuZfVCK5mqJBK4fuaDH",{"template":743},"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":3484,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3485,"config":3489,"_id":3491,"_type":28,"title":3486,"_source":30,"_file":3492,"_stem":3493,"_extension":33},"/en-us/blog/authors/halil-coban",{"name":3486,"config":3487},"Halil Coban",{"headshot":3488},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751039592/hlxd6cnlgdioobqfvwus.png",{"template":743,"gitlabHandle":3490},"halilcoban","content:en-us:blog:authors:halil-coban.yml","en-us/blog/authors/halil-coban.yml","en-us/blog/authors/halil-coban",{"_path":3495,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3496,"config":3501,"_id":3502,"_type":28,"title":3497,"_source":30,"_file":3503,"_stem":3504,"_extension":33},"/en-us/blog/authors/hannah-sutor",{"name":3497,"config":3498},"Hannah Sutor",{"headshot":3499,"ctfId":3500},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665588/Blog/Author%20Headshots/hsutor-headshot.png","hsutor",{"template":743},"content:en-us:blog:authors:hannah-sutor.yml","en-us/blog/authors/hannah-sutor.yml","en-us/blog/authors/hannah-sutor",{"_path":3506,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3507,"config":3512,"_id":3513,"_type":28,"title":3508,"_source":30,"_file":3514,"_stem":3515,"_extension":33},"/en-us/blog/authors/harjeet-sharma",{"name":3508,"config":3509},"Harjeet Sharma",{"headshot":3510,"ctfId":3511},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665497/Blog/Author%20Headshots/harjeet_sharma_headshot.png","723O6GGQQEu75MCuhw6lqh",{"template":743},"content:en-us:blog:authors:harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma.yml","en-us/blog/authors/harjeet-sharma",{"_path":3517,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3518,"config":3522,"_id":3523,"_type":28,"title":3519,"_source":30,"_file":3524,"_stem":3525,"_extension":33},"/en-us/blog/authors/haydn-mackay",{"name":3519,"config":3520},"Haydn Mackay",{"headshot":774,"ctfId":3521},"Haydn-Mackay",{"template":743},"content:en-us:blog:authors:haydn-mackay.yml","en-us/blog/authors/haydn-mackay.yml","en-us/blog/authors/haydn-mackay",{"_path":3527,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3528,"config":3532,"_id":3533,"_type":28,"title":3529,"_source":30,"_file":3534,"_stem":3535,"_extension":33},"/en-us/blog/authors/hazel-yang",{"name":3529,"config":3530},"Hazel Yang",{"headshot":7,"ctfId":3531},"hazelyang",{"template":743},"content:en-us:blog:authors:hazel-yang.yml","en-us/blog/authors/hazel-yang.yml","en-us/blog/authors/hazel-yang",{"_path":3537,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3538,"config":3542,"_id":3543,"_type":28,"title":3544,"_source":30,"_file":3545,"_stem":3546,"_extension":33},"/en-us/blog/authors/heather-mcnamee",{"name":3539,"config":3540},"Heather McNamee",{"headshot":774,"ctfId":3541},"Heather-McNamee",{"template":743},"content:en-us:blog:authors:heather-mcnamee.yml","Heather Mcnamee","en-us/blog/authors/heather-mcnamee.yml","en-us/blog/authors/heather-mcnamee",{"_path":3548,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3549,"config":3553,"_id":3554,"_type":28,"title":3550,"_source":30,"_file":3555,"_stem":3556,"_extension":33},"/en-us/blog/authors/heather-simpson",{"name":3550,"config":3551},"Heather Simpson",{"headshot":774,"ctfId":3552},"hsimpson",{"template":743},"content:en-us:blog:authors:heather-simpson.yml","en-us/blog/authors/heather-simpson.yml","en-us/blog/authors/heather-simpson",{"_path":3558,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3559,"config":3564,"_id":3565,"_type":28,"title":3560,"_source":30,"_file":3566,"_stem":3567,"_extension":33},"/en-us/blog/authors/hillary-benson",{"name":3560,"config":3561},"Hillary Benson",{"headshot":3562,"ctfId":3563},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683387/Blog/Author%20Headshots/hillarybensonheadshot.png","45VEFoISCoOhRXzyPyAf1x",{"template":743},"content:en-us:blog:authors:hillary-benson.yml","en-us/blog/authors/hillary-benson.yml","en-us/blog/authors/hillary-benson",{"_path":3569,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3570,"config":3574,"_id":3576,"_type":28,"title":3571,"_source":30,"_file":3577,"_stem":3578,"_extension":33},"/en-us/blog/authors/himanshu-kapoor",{"name":3571,"config":3572},"Himanshu Kapoor",{"headshot":3573},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1754585086/hfuoktkehmq0jyfybrnt.png",{"template":743,"gitlabHandle":3575},"himkp","content:en-us:blog:authors:himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor.yml","en-us/blog/authors/himanshu-kapoor",{"_path":3580,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3581,"config":3586,"_id":3587,"_type":28,"title":3582,"_source":30,"_file":3588,"_stem":3589,"_extension":33},"/en-us/blog/authors/hiroki-suezawa",{"name":3582,"config":3583},"Hiroki Suezawa",{"headshot":3584,"ctfId":3585},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662370/Blog/Author%20Headshots/hiroki_suezawa.png","cw6ZIj0yjr1uw2LAFr23h",{"template":743},"content:en-us:blog:authors:hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa.yml","en-us/blog/authors/hiroki-suezawa",{"_path":3591,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3592,"config":3596,"_id":3597,"_type":28,"title":3593,"_source":30,"_file":3598,"_stem":3599,"_extension":33},"/en-us/blog/authors/holly-reynolds",{"name":3593,"config":3594},"Holly Reynolds",{"headshot":7,"ctfId":3595},"hollyreynolds",{"template":743},"content:en-us:blog:authors:holly-reynolds.yml","en-us/blog/authors/holly-reynolds.yml","en-us/blog/authors/holly-reynolds",{"_path":3601,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3602,"config":3606,"_id":3607,"_type":28,"title":3603,"_source":30,"_file":3608,"_stem":3609,"_extension":33},"/en-us/blog/authors/huldra",{"name":3603,"config":3604},"Huldra",{"headshot":7,"ctfId":3605},"huldra",{"template":743},"content:en-us:blog:authors:huldra.yml","en-us/blog/authors/huldra.yml","en-us/blog/authors/huldra",{"_path":3611,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3612,"config":3616,"_id":3617,"_type":28,"title":3613,"_source":30,"_file":3618,"_stem":3619,"_extension":33},"/en-us/blog/authors/iain-camacho",{"name":3613,"config":3614},"Iain Camacho",{"headshot":7,"ctfId":3615},"icamacho",{"template":743},"content:en-us:blog:authors:iain-camacho.yml","en-us/blog/authors/iain-camacho.yml","en-us/blog/authors/iain-camacho",{"_path":3621,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3622,"config":3626,"_id":3627,"_type":28,"title":3623,"_source":30,"_file":3628,"_stem":3629,"_extension":33},"/en-us/blog/authors/ian-bartholomew",{"name":3623,"config":3624},"Ian Bartholomew",{"headshot":774,"ctfId":3625},"7D4PE43CXfi8pgOSCmipH0",{"template":743},"content:en-us:blog:authors:ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew.yml","en-us/blog/authors/ian-bartholomew",{"_path":3631,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3632,"config":3637,"_id":3638,"_type":28,"title":3633,"_source":30,"_file":3639,"_stem":3640,"_extension":33},"/en-us/blog/authors/ian-khor",{"name":3633,"config":3634},"Ian Khor",{"headshot":3635,"ctfId":3636},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662933/Blog/Author%20Headshots/ian_khor_headshot.png","nSk8fzDwtG3LVFWwg8HrF",{"template":743},"content:en-us:blog:authors:ian-khor.yml","en-us/blog/authors/ian-khor.yml","en-us/blog/authors/ian-khor",{"_path":3642,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3643,"config":3648,"_id":3649,"_type":28,"title":3644,"_source":30,"_file":3650,"_stem":3651,"_extension":33},"/en-us/blog/authors/ian-pedowitz",{"name":3644,"config":3645},"Ian Pedowitz",{"headshot":3646,"ctfId":3647},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683040/Blog/Author%20Headshots/ipedowitz-headshot.jpg","ipedowitz",{"template":743},"content:en-us:blog:authors:ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz.yml","en-us/blog/authors/ian-pedowitz",{"_path":3653,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3654,"config":3659,"_id":3660,"_type":28,"title":3655,"_source":30,"_file":3661,"_stem":3662,"_extension":33},"/en-us/blog/authors/igor-drozdov",{"name":3655,"config":3656},"Igor Drozdov",{"headshot":3657,"ctfId":3658},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672455/Blog/Author%20Headshots/igor.png","igordrozdov",{"template":743},"content:en-us:blog:authors:igor-drozdov.yml","en-us/blog/authors/igor-drozdov.yml","en-us/blog/authors/igor-drozdov",{"_path":3664,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3665,"config":3670,"_id":3671,"_type":28,"title":3666,"_source":30,"_file":3672,"_stem":3673,"_extension":33},"/en-us/blog/authors/igor-wiedler",{"name":3666,"config":3667},"Igor Wiedler",{"headshot":3668,"ctfId":3669},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681841/Blog/Author%20Headshots/igorwwwwwwwwwwwwwwwwwwww-headshot.png","igorwwwwwwwwwwwwwwwwwwww",{"template":743},"content:en-us:blog:authors:igor-wiedler.yml","en-us/blog/authors/igor-wiedler.yml","en-us/blog/authors/igor-wiedler",{"_path":3675,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3676,"config":3681,"_id":3682,"_type":28,"title":3683,"_source":30,"_file":3684,"_stem":3685,"_extension":33},"/en-us/blog/authors/inchul-yoo-sunjung-park",{"name":3677,"config":3678},"Inchul Yoo, Sunjung Park",{"headshot":3679,"ctfId":3680},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669731/Blog/Author%20Headshots/sunjungp-headshot.png","sunjungp",{"template":743},"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":3687,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3688,"config":3693,"_id":3694,"_type":28,"title":3689,"_source":30,"_file":3695,"_stem":3696,"_extension":33},"/en-us/blog/authors/isaac-dawson",{"name":3689,"config":3690},"Isaac Dawson",{"headshot":3691,"ctfId":3692},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669814/Blog/Author%20Headshots/idawson-headshot.jpg","idawson",{"template":743},"content:en-us:blog:authors:isaac-dawson.yml","en-us/blog/authors/isaac-dawson.yml","en-us/blog/authors/isaac-dawson",{"_path":3698,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3699,"config":3703,"_id":3705,"_type":28,"title":3706,"_source":30,"_file":3707,"_stem":3708,"_extension":33},"/en-us/blog/authors/issei-hamada-sony-biz-networks-corporation",{"config":3700,"name":3702},{"headshot":3701},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760414048/buvcowublhq36ongtzbx.png","Issei Hamada, Sony Biz Networks Corporation",{"template":743,"gitlabHandle":3704},"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":3710,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3711,"config":3716,"_id":3717,"_type":28,"title":3712,"_source":30,"_file":3718,"_stem":3719,"_extension":33},"/en-us/blog/authors/itzik-gan-baruch",{"name":3712,"config":3713},"Itzik Gan Baruch",{"headshot":3714,"ctfId":3715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch",{"template":743},"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":3721,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3722,"config":3726,"_id":3727,"_type":28,"title":3723,"_source":30,"_file":3728,"_stem":3729,"_extension":33},"/en-us/blog/authors/ivan-lychev",{"name":3723,"config":3724},"Ivan Lychev",{"headshot":7,"ctfId":3725},"iLychevAD",{"template":743},"content:en-us:blog:authors:ivan-lychev.yml","en-us/blog/authors/ivan-lychev.yml","en-us/blog/authors/ivan-lychev",{"_path":3731,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3732,"config":3736,"_id":3737,"_type":28,"title":3733,"_source":30,"_file":3738,"_stem":3739,"_extension":33},"/en-us/blog/authors/ivan-nemytchenko",{"name":3733,"config":3734},"Ivan Nemytchenko",{"headshot":774,"ctfId":3735},"Ivan-Nemytchenko",{"template":743},"content:en-us:blog:authors:ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko.yml","en-us/blog/authors/ivan-nemytchenko",{"_path":3741,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3742,"config":3748,"_id":3749,"_type":28,"title":3744,"_source":30,"_file":3750,"_stem":3751,"_extension":33},"/en-us/blog/authors/ivanha-paz",{"role":3743,"name":3744,"config":3745},"DevRel Lead at Jam","Ivanha Paz",{"headshot":3746,"ctfId":3747},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670359/Blog/Author%20Headshots/Ivanha_Paz_-_headshot.jpg","7sP877dkX9NIHekQO3HbUH",{"template":743},"content:en-us:blog:authors:ivanha-paz.yml","en-us/blog/authors/ivanha-paz.yml","en-us/blog/authors/ivanha-paz",{"_path":3753,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3754,"config":3758,"_id":3759,"_type":28,"title":3755,"_source":30,"_file":3760,"_stem":3761,"_extension":33},"/en-us/blog/authors/jacie-bandur",{"name":3755,"config":3756},"Jacie Bandur",{"headshot":7,"ctfId":3757},"jbandur",{"template":743},"content:en-us:blog:authors:jacie-bandur.yml","en-us/blog/authors/jacie-bandur.yml","en-us/blog/authors/jacie-bandur",{"_path":3763,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3764,"config":3769,"_id":3770,"_type":28,"title":3765,"_source":30,"_file":3771,"_stem":3772,"_extension":33},"/en-us/blog/authors/jacki-bauer",{"name":3765,"config":3766},"Jacki Bauer",{"headshot":3767,"ctfId":3768},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669728/Blog/Author%20Headshots/jackib-headshot.jpg","7nGz3EarOjQXW2gQuJaF1Z",{"template":743},"content:en-us:blog:authors:jacki-bauer.yml","en-us/blog/authors/jacki-bauer.yml","en-us/blog/authors/jacki-bauer",{"_path":3774,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3775,"config":3779,"_id":3780,"_type":28,"title":3776,"_source":30,"_file":3781,"_stem":3782,"_extension":33},"/en-us/blog/authors/jackie-meshell",{"name":3776,"config":3777},"Jackie Meshell",{"headshot":7,"ctfId":3778},"jmeshell",{"template":743},"content:en-us:blog:authors:jackie-meshell.yml","en-us/blog/authors/jackie-meshell.yml","en-us/blog/authors/jackie-meshell",{"_path":3784,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3785,"config":3790,"_id":3791,"_type":28,"title":3786,"_source":30,"_file":3792,"_stem":3793,"_extension":33},"/en-us/blog/authors/jackie-porter",{"name":3786,"config":3787},"Jackie Porter",{"headshot":3788,"ctfId":3789},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664942/Blog/Author%20Headshots/jreporter-headshot.png","jreporter",{"template":743},"content:en-us:blog:authors:jackie-porter.yml","en-us/blog/authors/jackie-porter.yml","en-us/blog/authors/jackie-porter",{"_path":3795,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3796,"config":3800,"_id":3801,"_type":28,"title":3797,"_source":30,"_file":3802,"_stem":3803,"_extension":33},"/en-us/blog/authors/jacob-schatz",{"name":3797,"config":3798},"Jacob Schatz",{"headshot":7,"ctfId":3799},"jschatz1",{"template":743},"content:en-us:blog:authors:jacob-schatz.yml","en-us/blog/authors/jacob-schatz.yml","en-us/blog/authors/jacob-schatz",{"_path":3805,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3806,"config":3810,"_id":3811,"_type":28,"title":3807,"_source":30,"_file":3812,"_stem":3813,"_extension":33},"/en-us/blog/authors/jacob-vosmaer",{"name":3807,"config":3808},"Jacob Vosmaer",{"headshot":774,"ctfId":3809},"Jacob-Vosmaer",{"template":743},"content:en-us:blog:authors:jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer.yml","en-us/blog/authors/jacob-vosmaer",{"_path":3815,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3816,"config":3821,"_id":3822,"_type":28,"title":3817,"_source":30,"_file":3823,"_stem":3824,"_extension":33},"/en-us/blog/authors/jacques-erasmus",{"name":3817,"config":3818},"Jacques Erasmus",{"headshot":3819,"ctfId":3820},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682633/Blog/Author%20Headshots/jerasmus-headshot.png","jerasmus",{"template":743},"content:en-us:blog:authors:jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus.yml","en-us/blog/authors/jacques-erasmus",{"_path":3826,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3827,"config":3832,"_id":3833,"_type":28,"title":3834,"_source":30,"_file":3835,"_stem":3836,"_extension":33},"/en-us/blog/authors/jaime-martnez",{"name":3828,"config":3829},"Jaime Martínez",{"headshot":3830,"ctfId":3831},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679630/Blog/Author%20Headshots/jaime-headshot.jpg","jaime",{"template":743},"content:en-us:blog:authors:jaime-martnez.yml","Jaime Martnez","en-us/blog/authors/jaime-martnez.yml","en-us/blog/authors/jaime-martnez",{"_path":3838,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3839,"config":3843,"_id":3844,"_type":28,"title":3840,"_source":30,"_file":3845,"_stem":3846,"_extension":33},"/en-us/blog/authors/jake-foster",{"name":3840,"config":3841},"Jake Foster",{"headshot":774,"ctfId":3842},"jakefoster1",{"template":743},"content:en-us:blog:authors:jake-foster.yml","en-us/blog/authors/jake-foster.yml","en-us/blog/authors/jake-foster",{"_path":3848,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3849,"config":3853,"_id":3854,"_type":28,"title":3850,"_source":30,"_file":3855,"_stem":3856,"_extension":33},"/en-us/blog/authors/jake-stein",{"name":3850,"config":3851},"Jake Stein",{"headshot":774,"ctfId":3852},"Jake-Stein",{"template":743},"content:en-us:blog:authors:jake-stein.yml","en-us/blog/authors/jake-stein.yml","en-us/blog/authors/jake-stein",{"_path":3858,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3859,"config":3863,"_id":3864,"_type":28,"title":3860,"_source":30,"_file":3865,"_stem":3866,"_extension":33},"/en-us/blog/authors/james-dang",{"name":3860,"config":3861},"James Dang",{"headshot":774,"ctfId":3862},"James-Dang",{"template":743},"content:en-us:blog:authors:james-dang.yml","en-us/blog/authors/james-dang.yml","en-us/blog/authors/james-dang",{"_path":3868,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3869,"config":3874,"_id":3875,"_type":28,"title":3870,"_source":30,"_file":3876,"_stem":3877,"_extension":33},"/en-us/blog/authors/james-heimbuck",{"name":3870,"config":3871},"James Heimbuck",{"headshot":3872,"ctfId":3873},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666934/Blog/Author%20Headshots/jheimbuck_gl-headshot.png","jheimbuckgl",{"template":743},"content:en-us:blog:authors:james-heimbuck.yml","en-us/blog/authors/james-heimbuck.yml","en-us/blog/authors/james-heimbuck",{"_path":3879,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3880,"config":3884,"_id":3885,"_type":28,"title":3881,"_source":30,"_file":3886,"_stem":3887,"_extension":33},"/en-us/blog/authors/james-ramsay",{"name":3881,"config":3882},"James Ramsay",{"headshot":7,"ctfId":3883},"jramsay",{"template":743},"content:en-us:blog:authors:james-ramsay.yml","en-us/blog/authors/james-ramsay.yml","en-us/blog/authors/james-ramsay",{"_path":3889,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3890,"config":3895,"_id":3896,"_type":28,"title":3891,"_source":30,"_file":3897,"_stem":3898,"_extension":33},"/en-us/blog/authors/james-wormwell",{"name":3891,"config":3892},"James Wormwell",{"headshot":3893,"ctfId":3894},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659474/Blog/Author%20Headshots/james_wormwell_headshot.png","CPPijHb0Op5C5aVcvsOEf",{"template":743},"content:en-us:blog:authors:james-wormwell.yml","en-us/blog/authors/james-wormwell.yml","en-us/blog/authors/james-wormwell",{"_path":3900,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3901,"config":3905,"_id":3906,"_type":28,"title":3902,"_source":30,"_file":3907,"_stem":3908,"_extension":33},"/en-us/blog/authors/jamie-hurewitz",{"name":3902,"config":3903},"Jamie Hurewitz",{"headshot":774,"ctfId":3904},"Jamie-Hurewitz",{"template":743},"content:en-us:blog:authors:jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz.yml","en-us/blog/authors/jamie-hurewitz",{"_path":3910,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3911,"config":3915,"_id":3916,"_type":28,"title":3912,"_source":30,"_file":3917,"_stem":3918,"_extension":33},"/en-us/blog/authors/jamie-rachel",{"name":3912,"config":3913},"Jamie Rachel",{"headshot":7,"ctfId":3914},"jrachel1",{"template":743},"content:en-us:blog:authors:jamie-rachel.yml","en-us/blog/authors/jamie-rachel.yml","en-us/blog/authors/jamie-rachel",{"_path":3920,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3921,"config":3926,"_id":3927,"_type":28,"title":3922,"_source":30,"_file":3928,"_stem":3929,"_extension":33},"/en-us/blog/authors/jan-provaznik",{"name":3922,"config":3923},"Jan Provaznik",{"headshot":3924,"ctfId":3925},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683397/Blog/Author%20Headshots/jprovaznik-headshot.png","jprovaznik",{"template":743},"content:en-us:blog:authors:jan-provaznik.yml","en-us/blog/authors/jan-provaznik.yml","en-us/blog/authors/jan-provaznik",{"_path":3931,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3932,"config":3937,"_id":3938,"_type":28,"title":3933,"_source":30,"_file":3939,"_stem":3940,"_extension":33},"/en-us/blog/authors/janis-altherr",{"name":3933,"config":3934},"Janis Altherr",{"headshot":3935,"ctfId":3936},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{"template":743},"content:en-us:blog:authors:janis-altherr.yml","en-us/blog/authors/janis-altherr.yml","en-us/blog/authors/janis-altherr",{"_path":3942,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3943,"config":3948,"_id":3949,"_type":28,"title":3944,"_source":30,"_file":3950,"_stem":3951,"_extension":33},"/en-us/blog/authors/jannik-lehmann",{"name":3944,"config":3945},"Jannik Lehmann",{"headshot":3946,"ctfId":3947},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665530/Blog/Author%20Headshots/jannik_lehmann_headshot.png","1N3FaKXgM0jmYL8jdnWKGN",{"template":743},"content:en-us:blog:authors:jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann.yml","en-us/blog/authors/jannik-lehmann",{"_path":3953,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3954,"config":3959,"_id":3960,"_type":28,"title":3961,"_source":30,"_file":3962,"_stem":3963,"_extension":33},"/en-us/blog/authors/jarka-koanov-et-al",{"name":3955,"config":3956},"Jarka Košanová et al",{"headshot":3957,"ctfId":3958},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672956/Blog/Author%20Headshots/jarka-headshot.jpg","jarka",{"template":743},"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":3965,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3966,"config":3970,"_id":3971,"_type":28,"title":3972,"_source":30,"_file":3973,"_stem":3974,"_extension":33},"/en-us/blog/authors/jason-blais-mattermost",{"name":3967,"config":3968},"Jason Blais – Mattermost",{"headshot":7,"ctfId":3969},"jasonblais",{"template":743},"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":3976,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3977,"config":3981,"_id":3982,"_type":28,"title":3978,"_source":30,"_file":3983,"_stem":3984,"_extension":33},"/en-us/blog/authors/jason-chen",{"name":3978,"config":3979},"Jason Chen",{"headshot":774,"ctfId":3980},"Jason-Chen",{"template":743},"content:en-us:blog:authors:jason-chen.yml","en-us/blog/authors/jason-chen.yml","en-us/blog/authors/jason-chen",{"_path":3986,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3987,"config":3992,"_id":3993,"_type":28,"title":3988,"_source":30,"_file":3994,"_stem":3995,"_extension":33},"/en-us/blog/authors/jason-colyer",{"name":3988,"config":3989},"Jason Colyer",{"headshot":3990,"ctfId":3991},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670540/Blog/Author%20Headshots/jcolyer-headshot.jpg","jcolyer",{"template":743},"content:en-us:blog:authors:jason-colyer.yml","en-us/blog/authors/jason-colyer.yml","en-us/blog/authors/jason-colyer",{"_path":3997,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":3998,"config":4003,"_id":4004,"_type":28,"title":3999,"_source":30,"_file":4005,"_stem":4006,"_extension":33},"/en-us/blog/authors/jason-plum",{"name":3999,"config":4000},"Jason Plum",{"headshot":4001,"ctfId":4002},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683234/Blog/Author%20Headshots/WarheadsSE-headshot.jpg","WarheadsSE",{"template":743},"content:en-us:blog:authors:jason-plum.yml","en-us/blog/authors/jason-plum.yml","en-us/blog/authors/jason-plum",{"_path":4008,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4009,"config":4013,"_id":4014,"_type":28,"title":4010,"_source":30,"_file":4015,"_stem":4016,"_extension":33},"/en-us/blog/authors/jason-yavorska",{"name":4010,"config":4011},"Jason Yavorska",{"headshot":7,"ctfId":4012},"jyavorska",{"template":743},"content:en-us:blog:authors:jason-yavorska.yml","en-us/blog/authors/jason-yavorska.yml","en-us/blog/authors/jason-yavorska",{"_path":4018,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4019,"config":4023,"_id":4024,"_type":28,"title":4020,"_source":30,"_file":4025,"_stem":4026,"_extension":33},"/en-us/blog/authors/jay-newman",{"name":4020,"config":4021},"Jay Newman",{"headshot":774,"ctfId":4022},"Jay-Newman",{"template":743},"content:en-us:blog:authors:jay-newman.yml","en-us/blog/authors/jay-newman.yml","en-us/blog/authors/jay-newman",{"_path":4028,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4029,"config":4034,"_id":4035,"_type":28,"title":4030,"_source":30,"_file":4036,"_stem":4037,"_extension":33},"/en-us/blog/authors/jayson-salazar",{"name":4030,"config":4031},"Jayson Salazar",{"headshot":4032,"ctfId":4033},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669832/Blog/Author%20Headshots/jdsalaro-headshot.png","787SqtoQNu4DE3WGWE1WMv",{"template":743},"content:en-us:blog:authors:jayson-salazar.yml","en-us/blog/authors/jayson-salazar.yml","en-us/blog/authors/jayson-salazar",{"_path":4039,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4040,"config":4044,"_id":4045,"_type":28,"title":4046,"_source":30,"_file":4047,"_stem":4048,"_extension":33},"/en-us/blog/authors/jd-alex",{"name":4041,"config":4042},"JD Alex",{"headshot":7,"ctfId":4043},"jalex1",{"template":743},"content:en-us:blog:authors:jd-alex.yml","Jd Alex","en-us/blog/authors/jd-alex.yml","en-us/blog/authors/jd-alex",{"_path":4050,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4051,"config":4055,"_id":4056,"_type":28,"title":4057,"_source":30,"_file":4058,"_stem":4059,"_extension":33},"/en-us/blog/authors/jean-philippe-baconnais",{"name":4052,"config":4053},"Jean-Philippe Baconnais",{"headshot":7,"ctfId":4054},"jeanphibaconnais",{"template":743},"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":4061,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4062,"config":4067,"_id":4068,"_type":28,"title":4063,"_source":30,"_file":4069,"_stem":4070,"_extension":33},"/en-us/blog/authors/jeff-burrows",{"name":4063,"config":4064},"Jeff Burrows",{"headshot":4065,"ctfId":4066},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680588/Blog/Author%20Headshots/jburrows001-headshot.jpg","jburrows001",{"template":743},"content:en-us:blog:authors:jeff-burrows.yml","en-us/blog/authors/jeff-burrows.yml","en-us/blog/authors/jeff-burrows",{"_path":4072,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4073,"config":4077,"_id":4078,"_type":28,"title":4074,"_source":30,"_file":4079,"_stem":4080,"_extension":33},"/en-us/blog/authors/jeff-kelsey",{"name":4074,"config":4075},"Jeff Kelsey",{"headshot":774,"ctfId":4076},"Jeff-Kelsey",{"template":743},"content:en-us:blog:authors:jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey.yml","en-us/blog/authors/jeff-kelsey",{"_path":4082,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4083,"config":4088,"_id":4089,"_type":28,"title":4084,"_source":30,"_file":4090,"_stem":4091,"_extension":33},"/en-us/blog/authors/jeff-park",{"name":4084,"config":4085},"Jeff Park",{"headshot":4086,"ctfId":4087},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662462/Blog/Author%20Headshots/jeff_park.png","6f3sZWoxqV0RIufjUp6ohq",{"template":743},"content:en-us:blog:authors:jeff-park.yml","en-us/blog/authors/jeff-park.yml","en-us/blog/authors/jeff-park",{"_path":4093,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4094,"config":4099,"_id":4100,"_type":28,"title":4095,"_source":30,"_file":4101,"_stem":4102,"_extension":33},"/en-us/blog/authors/jeff-tucker",{"name":4095,"config":4096},"Jeff Tucker",{"headshot":4097,"ctfId":4098},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662256/Blog/Author%20Headshots/jeff_tucker_headshot.png","QsMDilyLUNsS2rvyaG3ne",{"template":743},"content:en-us:blog:authors:jeff-tucker.yml","en-us/blog/authors/jeff-tucker.yml","en-us/blog/authors/jeff-tucker",{"_path":4104,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4105,"config":4110,"_id":4111,"_type":28,"title":4106,"_source":30,"_file":4112,"_stem":4113,"_extension":33},"/en-us/blog/authors/jensen-stava",{"name":4106,"config":4107},"Jensen Stava",{"headshot":4108,"ctfId":4109},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679862/Blog/Author%20Headshots/jstava-headshot.png","jstava",{"template":743},"content:en-us:blog:authors:jensen-stava.yml","en-us/blog/authors/jensen-stava.yml","en-us/blog/authors/jensen-stava",{"_path":4115,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4116,"config":4120,"_id":4121,"_type":28,"title":4117,"_source":30,"_file":4122,"_stem":4123,"_extension":33},"/en-us/blog/authors/jeremy-cooper",{"name":4117,"config":4118},"Jeremy Cooper",{"headshot":774,"ctfId":4119},"6sXs62l8jODDcUlS9OPgTu",{"template":743},"content:en-us:blog:authors:jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper.yml","en-us/blog/authors/jeremy-cooper",{"_path":4125,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4126,"config":4131,"_id":4132,"_type":28,"title":4127,"_source":30,"_file":4133,"_stem":4134,"_extension":33},"/en-us/blog/authors/jeremy-elder",{"name":4127,"config":4128},"Jeremy Elder",{"headshot":4129,"ctfId":4130},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666146/Blog/Author%20Headshots/jeldergl-headshot.jpg","jeldergl",{"template":743},"content:en-us:blog:authors:jeremy-elder.yml","en-us/blog/authors/jeremy-elder.yml","en-us/blog/authors/jeremy-elder",{"_path":4136,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4137,"config":4142,"_id":4143,"_type":28,"title":4138,"_source":30,"_file":4144,"_stem":4145,"_extension":33},"/en-us/blog/authors/jeremy-wagner",{"name":4138,"config":4139},"Jeremy Wagner",{"headshot":4140,"ctfId":4141},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663285/Blog/Author%20Headshots/jeremywagner-headshot.jpg","jeremywagner",{"template":743},"content:en-us:blog:authors:jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner.yml","en-us/blog/authors/jeremy-wagner",{"_path":4147,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4148,"config":4152,"_id":4153,"_type":28,"title":4149,"_source":30,"_file":4154,"_stem":4155,"_extension":33},"/en-us/blog/authors/jeremy-watson",{"name":4149,"config":4150},"Jeremy Watson",{"headshot":7,"ctfId":4151},"jeremy",{"template":743},"content:en-us:blog:authors:jeremy-watson.yml","en-us/blog/authors/jeremy-watson.yml","en-us/blog/authors/jeremy-watson",{"_path":4157,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4158,"config":4163,"_id":4164,"_type":28,"title":4159,"_source":30,"_file":4165,"_stem":4166,"_extension":33},"/en-us/blog/authors/jerez-solis",{"name":4159,"config":4160},"Jerez Solis",{"headshot":4161,"ctfId":4162},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664494/Blog/Author%20Headshots/jerezsolis.jpg","1Tx8fzD6QQglwxBTAlwAOZ",{"template":743},"content:en-us:blog:authors:jerez-solis.yml","en-us/blog/authors/jerez-solis.yml","en-us/blog/authors/jerez-solis",{"_path":4168,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4169,"config":4173,"_id":4174,"_type":28,"title":4175,"_source":30,"_file":4176,"_stem":4177,"_extension":33},"/en-us/blog/authors/jeroen-van-baarsen",{"name":4170,"config":4171},"Jeroen van Baarsen",{"headshot":774,"ctfId":4172},"Jeroen-van-Baarsen",{"template":743},"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":4179,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4180,"config":4185,"_id":4186,"_type":28,"title":4181,"_source":30,"_file":4187,"_stem":4188,"_extension":33},"/en-us/blog/authors/jessica-hurwitz",{"name":4181,"config":4182},"Jessica Hurwitz",{"headshot":4183,"ctfId":4184},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659532/Blog/Author%20Headshots/jessica_hurwitz_headshot.png","6c35XpCSITw8fPmcAX67of",{"template":743},"content:en-us:blog:authors:jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz.yml","en-us/blog/authors/jessica-hurwitz",{"_path":4190,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4191,"config":4195,"_id":4196,"_type":28,"title":4192,"_source":30,"_file":4197,"_stem":4198,"_extension":33},"/en-us/blog/authors/jim-riley",{"name":4192,"config":4193},"Jim Riley",{"headshot":7,"ctfId":4194},"GitLabcom-username-jrileyinva",{"template":743},"content:en-us:blog:authors:jim-riley.yml","en-us/blog/authors/jim-riley.yml","en-us/blog/authors/jim-riley",{"_path":4200,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4201,"config":4205,"_id":4206,"_type":28,"title":4202,"_source":30,"_file":4207,"_stem":4208,"_extension":33},"/en-us/blog/authors/jim-thavisouk",{"name":4202,"config":4203},"Jim Thavisouk",{"headshot":774,"ctfId":4204},"jimthavisouk",{"template":743},"content:en-us:blog:authors:jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk.yml","en-us/blog/authors/jim-thavisouk",{"_path":4210,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4211,"config":4215,"_id":4216,"_type":28,"title":4217,"_source":30,"_file":4218,"_stem":4219,"_extension":33},"/en-us/blog/authors/job-van-der-voort",{"name":4212,"config":4213},"Job van der Voort",{"headshot":774,"ctfId":4214},"Job-van-der-Voort",{"template":743},"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":4221,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4222,"config":4227,"_id":4228,"_type":28,"title":4223,"_source":30,"_file":4229,"_stem":4230,"_extension":33},"/en-us/blog/authors/jocelyn-eillis",{"name":4223,"config":4224},"Jocelyn Eillis",{"headshot":4225,"ctfId":4226},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/geqmxc4jkh4uy89m9loe.png","eGPL69Bvlva57elmDjuSo",{"template":743},"content:en-us:blog:authors:jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis.yml","en-us/blog/authors/jocelyn-eillis",{"_path":4232,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4233,"config":4237,"_id":4238,"_type":28,"title":4234,"_source":30,"_file":4239,"_stem":4240,"_extension":33},"/en-us/blog/authors/jochen-roth",{"name":4234,"config":4235},"Jochen Roth",{"headshot":7,"ctfId":4236},"ochorocho",{"template":743},"content:en-us:blog:authors:jochen-roth.yml","en-us/blog/authors/jochen-roth.yml","en-us/blog/authors/jochen-roth",{"_path":4242,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4243,"config":4248,"_id":4249,"_type":28,"title":4244,"_source":30,"_file":4250,"_stem":4251,"_extension":33},"/en-us/blog/authors/joe-randazzo",{"name":4244,"config":4245},"Joe Randazzo",{"headshot":4246,"ctfId":4247},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH",{"template":743},"content:en-us:blog:authors:joe-randazzo.yml","en-us/blog/authors/joe-randazzo.yml","en-us/blog/authors/joe-randazzo",{"_path":4253,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4254,"config":4259,"_id":4260,"_type":28,"title":4255,"_source":30,"_file":4261,"_stem":4262,"_extension":33},"/en-us/blog/authors/joel-krooswyk",{"name":4255,"config":4256},"Joel Krooswyk",{"headshot":4257,"ctfId":4258},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669392/Blog/Author%20Headshots/jkrooswyk-headshot.jpg","jkrooswyk",{"template":743},"content:en-us:blog:authors:joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk.yml","en-us/blog/authors/joel-krooswyk",{"_path":4264,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4265,"config":4270,"_id":4271,"_type":28,"title":4266,"_source":30,"_file":4272,"_stem":4273,"_extension":33},"/en-us/blog/authors/joern-schneeweisz",{"name":4266,"config":4267},"Joern Schneeweisz",{"headshot":4268,"ctfId":4269},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679144/Blog/Author%20Headshots/joernchen-headshot.png","joernchen",{"template":743},"content:en-us:blog:authors:joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz.yml","en-us/blog/authors/joern-schneeweisz",{"_path":4275,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4276,"config":4280,"_id":4281,"_type":28,"title":4277,"_source":30,"_file":4282,"_stem":4283,"_extension":33},"/en-us/blog/authors/joey-salazar",{"name":4277,"config":4278},"Joey Salazar",{"headshot":774,"ctfId":4279},"4LgUP4bzQV6kuhoZNFID9r",{"template":743},"content:en-us:blog:authors:joey-salazar.yml","en-us/blog/authors/joey-salazar.yml","en-us/blog/authors/joey-salazar",{"_path":4285,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4286,"config":4290,"_id":4291,"_type":28,"title":4287,"_source":30,"_file":4292,"_stem":4293,"_extension":33},"/en-us/blog/authors/johanna-ambrosio",{"name":4287,"config":4288},"Johanna Ambrosio",{"headshot":774,"ctfId":4289},"Johanna-Ambrosio",{"template":743},"content:en-us:blog:authors:johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio.yml","en-us/blog/authors/johanna-ambrosio",{"_path":4295,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4296,"config":4301,"_id":4302,"_type":28,"title":4297,"_source":30,"_file":4303,"_stem":4304,"_extension":33},"/en-us/blog/authors/johannes-bauer",{"name":4297,"config":4298},"Johannes Bauer",{"headshot":4299,"ctfId":4300},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662611/Blog/Author%20Headshots/johannes_bauer_headshot.png","6Snkao4VD1IxGOzV1YpcMZ",{"template":743},"content:en-us:blog:authors:johannes-bauer.yml","en-us/blog/authors/johannes-bauer.yml","en-us/blog/authors/johannes-bauer",{"_path":4306,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4307,"config":4312,"_id":4313,"_type":28,"title":4308,"_source":30,"_file":4314,"_stem":4315,"_extension":33},"/en-us/blog/authors/john-cai",{"name":4308,"config":4309},"John Cai",{"headshot":4310,"ctfId":4311},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667386/Blog/Author%20Headshots/jcaigitlab-headshot.jpg","jcaigitlab",{"template":743},"content:en-us:blog:authors:john-cai.yml","en-us/blog/authors/john-cai.yml","en-us/blog/authors/john-cai",{"_path":4317,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4318,"config":4323,"_id":4324,"_type":28,"title":4319,"_source":30,"_file":4325,"_stem":4326,"_extension":33},"/en-us/blog/authors/john-coghlan",{"name":4319,"config":4320},"John Coghlan",{"headshot":4321,"ctfId":4322},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670167/Blog/Author%20Headshots/johncoghlan-headshot.jpg","johncoghlan",{"template":743},"content:en-us:blog:authors:john-coghlan.yml","en-us/blog/authors/john-coghlan.yml","en-us/blog/authors/john-coghlan",{"_path":4328,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4329,"config":4334,"_id":4335,"_type":28,"title":4330,"_source":30,"_file":4336,"_stem":4337,"_extension":33},"/en-us/blog/authors/john-crowley",{"name":4330,"config":4331},"John Crowley",{"headshot":4332,"ctfId":4333},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666042/Blog/Author%20Headshots/john_crowley_headshot.png","64k6bR3mtIchoqBccJDaTO",{"template":743},"content:en-us:blog:authors:john-crowley.yml","en-us/blog/authors/john-crowley.yml","en-us/blog/authors/john-crowley",{"_path":4339,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4340,"config":4345,"_id":4346,"_type":28,"title":4341,"_source":30,"_file":4347,"_stem":4348,"_extension":33},"/en-us/blog/authors/john-jarvis",{"name":4341,"config":4342},"John Jarvis",{"headshot":4343,"ctfId":4344},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678622/Blog/Author%20Headshots/jarv-headshot.jpg","jarv",{"template":743},"content:en-us:blog:authors:john-jarvis.yml","en-us/blog/authors/john-jarvis.yml","en-us/blog/authors/john-jarvis",{"_path":4350,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4351,"config":4355,"_id":4356,"_type":28,"title":4352,"_source":30,"_file":4357,"_stem":4358,"_extension":33},"/en-us/blog/authors/john-jeremiah",{"name":4352,"config":4353},"John Jeremiah",{"headshot":774,"ctfId":4354},"johnjeremiah",{"template":743},"content:en-us:blog:authors:john-jeremiah.yml","en-us/blog/authors/john-jeremiah.yml","en-us/blog/authors/john-jeremiah",{"_path":4360,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4361,"config":4365,"_id":4366,"_type":28,"title":4367,"_source":30,"_file":4368,"_stem":4369,"_extension":33},"/en-us/blog/authors/john-mcguire",{"name":4362,"config":4363},"John McGuire",{"headshot":774,"ctfId":4364},"2BpYnUcWeqmuRlVM7w9ZIv",{"template":743},"content:en-us:blog:authors:john-mcguire.yml","John Mcguire","en-us/blog/authors/john-mcguire.yml","en-us/blog/authors/john-mcguire",{"_path":4371,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4372,"config":4376,"_id":4378,"_type":28,"title":4373,"_source":30,"_file":4379,"_stem":4380,"_extension":33},"/en-us/blog/authors/john-skarbek",{"name":4373,"config":4374},"John Skarbek",{"headshot":4375},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751303547/nq8dxitzoybran2r7crm.png",{"template":743,"gitlabHandle":4377},"skarbek","content:en-us:blog:authors:john-skarbek.yml","en-us/blog/authors/john-skarbek.yml","en-us/blog/authors/john-skarbek",{"_path":4382,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4383,"config":4387,"_id":4388,"_type":28,"title":4384,"_source":30,"_file":4389,"_stem":4390,"_extension":33},"/en-us/blog/authors/john-sparrow",{"name":4384,"config":4385},"John Sparrow",{"headshot":774,"ctfId":4386},"John-Sparrow",{"template":743},"content:en-us:blog:authors:john-sparrow.yml","en-us/blog/authors/john-sparrow.yml","en-us/blog/authors/john-sparrow",{"_path":4392,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4393,"config":4397,"_id":4398,"_type":28,"title":4394,"_source":30,"_file":4399,"_stem":4400,"_extension":33},"/en-us/blog/authors/johnathan-hunt",{"name":4394,"config":4395},"Johnathan Hunt",{"headshot":774,"ctfId":4396},"JohnathanHunt",{"template":743},"content:en-us:blog:authors:johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt.yml","en-us/blog/authors/johnathan-hunt",{"_path":4402,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4403,"config":4407,"_id":4408,"_type":28,"title":4404,"_source":30,"_file":4409,"_stem":4410,"_extension":33},"/en-us/blog/authors/joni-klippert",{"name":4404,"config":4405},"Joni Klippert",{"headshot":774,"ctfId":4406},"Joni-Klippert",{"template":743},"content:en-us:blog:authors:joni-klippert.yml","en-us/blog/authors/joni-klippert.yml","en-us/blog/authors/joni-klippert",{"_path":4412,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4413,"config":4418,"_id":4419,"_type":28,"title":4420,"_source":30,"_file":4421,"_stem":4422,"_extension":33},"/en-us/blog/authors/joo-alexandre-prado-tavares-cunha",{"name":4414,"config":4415},"João Alexandre Prado Tavares Cunha",{"headshot":4416,"ctfId":4417},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682771/Blog/Author%20Headshots/Alexand-headshot.jpg","Alexand",{"template":743},"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":4424,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4425,"config":4430,"_id":4431,"_type":28,"title":4432,"_source":30,"_file":4433,"_stem":4434,"_extension":33},"/en-us/blog/authors/joo-pereira",{"name":4426,"config":4427},"João Pereira",{"headshot":4428,"ctfId":4429},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665547/Blog/Author%20Headshots/joao_pereira.png","7wLh5rwID5R39PRA6aiAb0",{"template":743},"content:en-us:blog:authors:joo-pereira.yml","Joo Pereira","en-us/blog/authors/joo-pereira.yml","en-us/blog/authors/joo-pereira",{"_path":4436,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4437,"config":4441,"_id":4442,"_type":28,"title":4438,"_source":30,"_file":4443,"_stem":4444,"_extension":33},"/en-us/blog/authors/jordi-mon",{"name":4438,"config":4439},"Jordi Mon",{"headshot":7,"ctfId":4440},"jordimon",{"template":743},"content:en-us:blog:authors:jordi-mon.yml","en-us/blog/authors/jordi-mon.yml","en-us/blog/authors/jordi-mon",{"_path":4446,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4447,"config":4452,"_id":4453,"_type":28,"title":4454,"_source":30,"_file":4455,"_stem":4456,"_extension":33},"/en-us/blog/authors/jos-ivn-vargas",{"name":4448,"config":4449},"José Iván Vargas",{"headshot":4450,"ctfId":4451},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679024/Blog/Author%20Headshots/jivanvl-headshot.jpg","jivanvl",{"template":743},"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":4458,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4459,"config":4463,"_id":4464,"_type":28,"title":4460,"_source":30,"_file":4465,"_stem":4466,"_extension":33},"/en-us/blog/authors/jose-finotto",{"name":4460,"config":4461},"Jose Finotto",{"headshot":7,"ctfId":4462},"finotto",{"template":743},"content:en-us:blog:authors:jose-finotto.yml","en-us/blog/authors/jose-finotto.yml","en-us/blog/authors/jose-finotto",{"_path":4468,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4469,"config":4473,"_id":4475,"_type":28,"title":4472,"_source":30,"_file":4476,"_stem":4477,"_extension":33},"/en-us/blog/authors/joseph-burnett",{"config":4470,"name":4472},{"headshot":4471},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752169072/teprmqbylocazrqdtuix.png","Joseph Burnett",{"template":743,"gitlabHandle":4474},"josephburnett","content:en-us:blog:authors:joseph-burnett.yml","en-us/blog/authors/joseph-burnett.yml","en-us/blog/authors/joseph-burnett",{"_path":4479,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4480,"config":4485,"_id":4486,"_type":28,"title":4481,"_source":30,"_file":4487,"_stem":4488,"_extension":33},"/en-us/blog/authors/joseph-longo",{"name":4481,"config":4482},"Joseph Longo",{"headshot":4483,"ctfId":4484},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659681/Blog/Author%20Headshots/jlongo_gitlab-headshot.jpg","jlongogitlab",{"template":743},"content:en-us:blog:authors:joseph-longo.yml","en-us/blog/authors/joseph-longo.yml","en-us/blog/authors/joseph-longo",{"_path":4490,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4491,"config":4495,"_id":4496,"_type":28,"title":4497,"_source":30,"_file":4498,"_stem":4499,"_extension":33},"/en-us/blog/authors/joseph-schorr-from-coreos",{"name":4492,"config":4493},"Joseph Schorr from CoreOS",{"headshot":774,"ctfId":4494},"Joseph-Schorr-from-CoreOS",{"template":743},"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":4501,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4502,"config":4507,"_id":4508,"_type":28,"title":4503,"_source":30,"_file":4509,"_stem":4510,"_extension":33},"/en-us/blog/authors/josh-feehs",{"name":4503,"config":4504},"Josh Feehs",{"headshot":4505,"ctfId":4506},"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":743},"content:en-us:blog:authors:josh-feehs.yml","en-us/blog/authors/josh-feehs.yml","en-us/blog/authors/josh-feehs",{"_path":4512,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4513,"config":4519,"_id":4520,"_type":28,"title":4521,"_source":30,"_file":4522,"_stem":4523,"_extension":33},"/en-us/blog/authors/josh-kodroff-pulumi",{"role":4514,"name":4515,"config":4516},"Sr. Solutions Architect, Pulumi","Josh Kodroff, Pulumi",{"headshot":4517,"ctfId":4518},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683425/Blog/Author%20Headshots/joshkodroff.jpg","2GF0MF1ngEBxos4nRKt8tL",{"template":743},"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":4525,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4526,"config":4530,"_id":4531,"_type":28,"title":4527,"_source":30,"_file":4532,"_stem":4533,"_extension":33},"/en-us/blog/authors/josh-zimmerman",{"name":4527,"config":4528},"Josh Zimmerman",{"headshot":7,"ctfId":4529},"JoshZimmerman",{"template":743},"content:en-us:blog:authors:josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman.yml","en-us/blog/authors/josh-zimmerman",{"_path":4535,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4536,"config":4541,"_id":4542,"_type":28,"title":4537,"_source":30,"_file":4543,"_stem":4544,"_extension":33},"/en-us/blog/authors/joshua-carroll",{"name":4537,"config":4538},"Joshua Carroll",{"headshot":4539,"ctfId":4540},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664952/Blog/Author%20Headshots/joshua_carroll_headshot.png","8HOTaXswBopyqMWFZMSv3",{"template":743},"content:en-us:blog:authors:joshua-carroll.yml","en-us/blog/authors/joshua-carroll.yml","en-us/blog/authors/joshua-carroll",{"_path":4546,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4547,"config":4552,"_id":4553,"_type":28,"title":4548,"_source":30,"_file":4554,"_stem":4555,"_extension":33},"/en-us/blog/authors/joshua-lambert",{"name":4548,"config":4549},"Joshua Lambert",{"headshot":4550,"ctfId":4551},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681281/Blog/Author%20Headshots/joshlambert-headshot.png","joshlambert",{"template":743},"content:en-us:blog:authors:joshua-lambert.yml","en-us/blog/authors/joshua-lambert.yml","en-us/blog/authors/joshua-lambert",{"_path":4557,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4558,"config":4562,"_id":4563,"_type":28,"title":4559,"_source":30,"_file":4564,"_stem":4565,"_extension":33},"/en-us/blog/authors/joyce-tompsett",{"name":4559,"config":4560},"Joyce Tompsett",{"headshot":7,"ctfId":4561},"Tompsett",{"template":743},"content:en-us:blog:authors:joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett.yml","en-us/blog/authors/joyce-tompsett",{"_path":4567,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4568,"config":4572,"_id":4573,"_type":28,"title":4569,"_source":30,"_file":4574,"_stem":4575,"_extension":33},"/en-us/blog/authors/juan-broullon",{"name":4569,"config":4570},"Juan Broullon",{"headshot":7,"ctfId":4571},"jbroullon",{"template":743},"content:en-us:blog:authors:juan-broullon.yml","en-us/blog/authors/juan-broullon.yml","en-us/blog/authors/juan-broullon",{"_path":4577,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4578,"config":4582,"_id":4583,"_type":28,"title":4579,"_source":30,"_file":4584,"_stem":4585,"_extension":33},"/en-us/blog/authors/julia-lake",{"name":4579,"config":4580},"Julia Lake",{"headshot":774,"ctfId":4581},"5i9IDwCDDg3lfkiu9T3edZ",{"template":743},"content:en-us:blog:authors:julia-lake.yml","en-us/blog/authors/julia-lake.yml","en-us/blog/authors/julia-lake",{"_path":4587,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4588,"config":4593,"_id":4594,"_type":28,"title":4589,"_source":30,"_file":4595,"_stem":4596,"_extension":33},"/en-us/blog/authors/julia-miocene",{"name":4589,"config":4590},"Julia Miocene",{"headshot":4591,"ctfId":4592},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616177/yatkjhtf60edealtvpr4.png","6SK0DpWNK5NmfLyn2vWMPI",{"template":743},"content:en-us:blog:authors:julia-miocene.yml","en-us/blog/authors/julia-miocene.yml","en-us/blog/authors/julia-miocene",{"_path":4598,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4599,"config":4603,"_id":4604,"_type":28,"title":4600,"_source":30,"_file":4605,"_stem":4606,"_extension":33},"/en-us/blog/authors/julian-thome",{"name":4600,"config":4601},"Julian Thome",{"headshot":7,"ctfId":4602},"jthome",{"template":743},"content:en-us:blog:authors:julian-thome.yml","en-us/blog/authors/julian-thome.yml","en-us/blog/authors/julian-thome",{"_path":4608,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4609,"config":4614,"_id":4615,"_type":28,"title":4610,"_source":30,"_file":4616,"_stem":4617,"_extension":33},"/en-us/blog/authors/julie-byrne",{"name":4610,"config":4611},"Julie Byrne",{"headshot":4612,"ctfId":4613},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669432/Blog/Author%20Headshots/juliebyrne.jpg","3SaRWyz0u889xiq6rZkCO",{"template":743},"content:en-us:blog:authors:julie-byrne.yml","en-us/blog/authors/julie-byrne.yml","en-us/blog/authors/julie-byrne",{"_path":4619,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4620,"config":4625,"_id":4626,"_type":28,"title":4621,"_source":30,"_file":4627,"_stem":4628,"_extension":33},"/en-us/blog/authors/julie-griffin",{"name":4621,"config":4622},"Julie Griffin",{"headshot":4623,"ctfId":4624},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665206/Blog/Author%20Headshots/julie_griffin_-_headshot.png","3djBidFIW3or5K9uhi9LE5",{"template":743},"content:en-us:blog:authors:julie-griffin.yml","en-us/blog/authors/julie-griffin.yml","en-us/blog/authors/julie-griffin",{"_path":4630,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4631,"config":4635,"_id":4636,"_type":28,"title":4632,"_source":30,"_file":4637,"_stem":4638,"_extension":33},"/en-us/blog/authors/julien-andrieux",{"name":4632,"config":4633},"Julien Andrieux",{"headshot":774,"ctfId":4634},"Julien-Andrieux",{"template":743},"content:en-us:blog:authors:julien-andrieux.yml","en-us/blog/authors/julien-andrieux.yml","en-us/blog/authors/julien-andrieux",{"_path":4640,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4641,"config":4646,"_id":4647,"_type":28,"title":4642,"_source":30,"_file":4648,"_stem":4649,"_extension":33},"/en-us/blog/authors/juliet-wanjohi",{"name":4642,"config":4643},"Juliet Wanjohi",{"headshot":4644,"ctfId":4645},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669837/Blog/Author%20Headshots/jwanjohi-headshot.jpg","jwanjohi",{"template":743},"content:en-us:blog:authors:juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi.yml","en-us/blog/authors/juliet-wanjohi",{"_path":4651,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4652,"config":4656,"_id":4657,"_type":28,"title":4653,"_source":30,"_file":4658,"_stem":4659,"_extension":33},"/en-us/blog/authors/justin-farris",{"name":4653,"config":4654},"Justin Farris",{"headshot":774,"ctfId":4655},"5RHYudAlWLmSj5U7AOIcbG",{"template":743},"content:en-us:blog:authors:justin-farris.yml","en-us/blog/authors/justin-farris.yml","en-us/blog/authors/justin-farris",{"_path":4661,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4662,"config":4667,"_id":4668,"_type":28,"title":4663,"_source":30,"_file":4669,"_stem":4670,"_extension":33},"/en-us/blog/authors/justin-tobler",{"name":4663,"config":4664},"Justin Tobler",{"headshot":4665,"ctfId":4666},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664737/Blog/Author%20Headshots/james_tobler_headshot.png","5pnOIbNI1Sc5IFnReNHNtv",{"template":743},"content:en-us:blog:authors:justin-tobler.yml","en-us/blog/authors/justin-tobler.yml","en-us/blog/authors/justin-tobler",{"_path":4672,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4673,"config":4678,"_id":4679,"_type":28,"title":4674,"_source":30,"_file":4680,"_stem":4681,"_extension":33},"/en-us/blog/authors/kai-armstrong",{"name":4674,"config":4675},"Kai Armstrong",{"headshot":4676,"ctfId":4677},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682535/Blog/Author%20Headshots/phikai-headshot.png","phikai",{"template":743},"content:en-us:blog:authors:kai-armstrong.yml","en-us/blog/authors/kai-armstrong.yml","en-us/blog/authors/kai-armstrong",{"_path":4683,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4684,"config":4688,"_id":4689,"_type":28,"title":4690,"_source":30,"_file":4691,"_stem":4692,"_extension":33},"/en-us/blog/authors/kamil-trzciski",{"name":4685,"config":4686},"Kamil Trzciński",{"headshot":774,"ctfId":4687},"Kamil-Trzciski",{"template":743},"content:en-us:blog:authors:kamil-trzciski.yml","Kamil Trzciski","en-us/blog/authors/kamil-trzciski.yml","en-us/blog/authors/kamil-trzciski",{"_path":4694,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4695,"config":4699,"_id":4700,"_type":28,"title":4701,"_source":30,"_file":4702,"_stem":4703,"_extension":33},"/en-us/blog/authors/karen-caras",{"name":4696,"config":4697},"Karen Carías",{"headshot":774,"ctfId":4698},"Karen-Caras",{"template":743},"content:en-us:blog:authors:karen-caras.yml","Karen Caras","en-us/blog/authors/karen-caras.yml","en-us/blog/authors/karen-caras",{"_path":4705,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4706,"config":4710,"_id":4712,"_type":28,"title":4707,"_source":30,"_file":4713,"_stem":4714,"_extension":33},"/en-us/blog/authors/karishma-kumar",{"name":4707,"config":4708},"Karishma Kumar",{"headshot":4709},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1761931048/z7wcdkw5czs9uwtpmfwg.png",{"template":743,"gitlabHandle":4711},"karishmakumar","content:en-us:blog:authors:karishma-kumar.yml","en-us/blog/authors/karishma-kumar.yml","en-us/blog/authors/karishma-kumar",{"_path":4716,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4717,"config":4722,"_id":4723,"_type":28,"title":4718,"_source":30,"_file":4724,"_stem":4725,"_extension":33},"/en-us/blog/authors/karthik-nayak",{"name":4718,"config":4719},"Karthik Nayak",{"headshot":4720,"ctfId":4721},"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":743},"content:en-us:blog:authors:karthik-nayak.yml","en-us/blog/authors/karthik-nayak.yml","en-us/blog/authors/karthik-nayak",{"_path":4727,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4728,"config":4732,"_id":4733,"_type":28,"title":4729,"_source":30,"_file":4734,"_stem":4735,"_extension":33},"/en-us/blog/authors/katherine-okpara",{"name":4729,"config":4730},"Katherine Okpara",{"headshot":7,"ctfId":4731},"katokpara",{"template":743},"content:en-us:blog:authors:katherine-okpara.yml","en-us/blog/authors/katherine-okpara.yml","en-us/blog/authors/katherine-okpara",{"_path":4737,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4738,"config":4742,"_id":4743,"_type":28,"title":4739,"_source":30,"_file":4744,"_stem":4745,"_extension":33},"/en-us/blog/authors/kathy-wang",{"name":4739,"config":4740},"Kathy Wang",{"headshot":7,"ctfId":4741},"kathyw",{"template":743},"content:en-us:blog:authors:kathy-wang.yml","en-us/blog/authors/kathy-wang.yml","en-us/blog/authors/kathy-wang",{"_path":4747,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4748,"config":4752,"_id":4753,"_type":28,"title":4754,"_source":30,"_file":4755,"_stem":4756,"_extension":33},"/en-us/blog/authors/keanon-okeefe",{"name":4749,"config":4750},"Keanon O’Keefe",{"headshot":7,"ctfId":4751},"kokeefe",{"template":743},"content:en-us:blog:authors:keanon-okeefe.yml","Keanon Okeefe","en-us/blog/authors/keanon-okeefe.yml","en-us/blog/authors/keanon-okeefe",{"_path":4758,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4759,"config":4764,"_id":4765,"_type":28,"title":4760,"_source":30,"_file":4766,"_stem":4767,"_extension":33},"/en-us/blog/authors/kees-valkhof",{"name":4760,"role":4761,"config":4762},"Kees Valkhof","Configuration manager at Lely",{"headshot":4763},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750331281/xojwtvpk5pif84wlahx1.jpg",{"template":743},"content:en-us:blog:authors:kees-valkhof.yml","en-us/blog/authors/kees-valkhof.yml","en-us/blog/authors/kees-valkhof",{"_path":4769,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4770,"config":4774,"_id":4775,"_type":28,"title":4771,"_source":30,"_file":4776,"_stem":4777,"_extension":33},"/en-us/blog/authors/kelly-hair",{"name":4771,"config":4772},"Kelly Hair",{"headshot":774,"ctfId":4773},"16z1eHwE7Ok5Ty4C6gpbUY",{"template":743},"content:en-us:blog:authors:kelly-hair.yml","en-us/blog/authors/kelly-hair.yml","en-us/blog/authors/kelly-hair",{"_path":4779,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4780,"config":4784,"_id":4785,"_type":28,"title":4781,"_source":30,"_file":4786,"_stem":4787,"_extension":33},"/en-us/blog/authors/kendra-marquart",{"name":4781,"config":4782},"Kendra Marquart",{"headshot":7,"ctfId":4783},"kmarquart",{"template":743},"content:en-us:blog:authors:kendra-marquart.yml","en-us/blog/authors/kendra-marquart.yml","en-us/blog/authors/kendra-marquart",{"_path":4789,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4790,"config":4794,"_id":4795,"_type":28,"title":4791,"_source":30,"_file":4796,"_stem":4797,"_extension":33},"/en-us/blog/authors/kenny-johnston",{"name":4791,"config":4792},"Kenny Johnston",{"headshot":7,"ctfId":4793},"kencjohnston",{"template":743},"content:en-us:blog:authors:kenny-johnston.yml","en-us/blog/authors/kenny-johnston.yml","en-us/blog/authors/kenny-johnston",{"_path":4799,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4800,"config":4805,"_id":4806,"_type":28,"title":4801,"_source":30,"_file":4807,"_stem":4808,"_extension":33},"/en-us/blog/authors/kevin-chu",{"name":4801,"config":4802},"Kevin Chu",{"headshot":4803,"ctfId":4804},"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":743},"content:en-us:blog:authors:kevin-chu.yml","en-us/blog/authors/kevin-chu.yml","en-us/blog/authors/kevin-chu",{"_path":4810,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4811,"config":4816,"_id":4817,"_type":28,"title":4812,"_source":30,"_file":4818,"_stem":4819,"_extension":33},"/en-us/blog/authors/kevin-morrison",{"name":4812,"config":4813},"Kevin Morrison",{"headshot":4814,"ctfId":4815},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663642/Blog/Author%20Headshots/kevin_morrison_headshot.png","AcJIuz1VNQZIVdqgesMMh",{"template":743},"content:en-us:blog:authors:kevin-morrison.yml","en-us/blog/authors/kevin-morrison.yml","en-us/blog/authors/kevin-morrison",{"_path":4821,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4822,"config":4826,"_id":4827,"_type":28,"title":4823,"_source":30,"_file":4828,"_stem":4829,"_extension":33},"/en-us/blog/authors/khrystyna-humenna",{"name":4823,"config":4824},"Khrystyna Humenna",{"headshot":774,"ctfId":4825},"Khrystyna-Humenna",{"template":743},"content:en-us:blog:authors:khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna.yml","en-us/blog/authors/khrystyna-humenna",{"_path":4831,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4832,"config":4836,"_id":4837,"_type":28,"title":4833,"_source":30,"_file":4838,"_stem":4839,"_extension":33},"/en-us/blog/authors/kim-lock",{"name":4833,"config":4834},"Kim Lock",{"headshot":7,"ctfId":4835},"KimLock",{"template":743},"content:en-us:blog:authors:kim-lock.yml","en-us/blog/authors/kim-lock.yml","en-us/blog/authors/kim-lock",{"_path":4841,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4842,"config":4846,"_id":4847,"_type":28,"title":4843,"_source":30,"_file":4848,"_stem":4849,"_extension":33},"/en-us/blog/authors/kirsten-abma",{"name":4843,"config":4844},"Kirsten Abma",{"headshot":774,"ctfId":4845},"Kirsten-Abma",{"template":743},"content:en-us:blog:authors:kirsten-abma.yml","en-us/blog/authors/kirsten-abma.yml","en-us/blog/authors/kirsten-abma",{"_path":4851,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4852,"config":4856,"_id":4857,"_type":28,"title":4853,"_source":30,"_file":4858,"_stem":4859,"_extension":33},"/en-us/blog/authors/kristian-larsson",{"name":4853,"config":4854},"Kristian Larsson",{"headshot":774,"ctfId":4855},"Kristian-Larsson",{"template":743},"content:en-us:blog:authors:kristian-larsson.yml","en-us/blog/authors/kristian-larsson.yml","en-us/blog/authors/kristian-larsson",{"_path":4861,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4862,"config":4867,"_id":4868,"_type":28,"title":4863,"_source":30,"_file":4869,"_stem":4870,"_extension":33},"/en-us/blog/authors/kristina-weis",{"name":4863,"config":4864},"Kristina Weis",{"headshot":4865,"ctfId":4866},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663955/Blog/Author%20Headshots/K-W-0155.jpg","kristinaweis",{"template":743},"content:en-us:blog:authors:kristina-weis.yml","en-us/blog/authors/kristina-weis.yml","en-us/blog/authors/kristina-weis",{"_path":4872,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4873,"config":4877,"_id":4878,"_type":28,"title":4874,"_source":30,"_file":4879,"_stem":4880,"_extension":33},"/en-us/blog/authors/kurt-dusek",{"name":4874,"config":4875},"Kurt Dusek",{"headshot":7,"ctfId":4876},"kdusek",{"template":743},"content:en-us:blog:authors:kurt-dusek.yml","en-us/blog/authors/kurt-dusek.yml","en-us/blog/authors/kurt-dusek",{"_path":4882,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4883,"config":4887,"_id":4888,"_type":28,"title":4884,"_source":30,"_file":4889,"_stem":4890,"_extension":33},"/en-us/blog/authors/kushal-koolwal",{"name":4884,"config":4885},"Kushal Koolwal",{"headshot":774,"ctfId":4886},"Kushal-Koolwal",{"template":743},"content:en-us:blog:authors:kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal.yml","en-us/blog/authors/kushal-koolwal",{"_path":4892,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4893,"config":4898,"_id":4899,"_type":28,"title":4894,"_source":30,"_file":4900,"_stem":4901,"_extension":33},"/en-us/blog/authors/kushal-pandya",{"name":4894,"config":4895},"Kushal Pandya",{"headshot":4896,"ctfId":4897},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659454/Blog/Author%20Headshots/kushalpandya-headshot.png","kushalpandya",{"template":743},"content:en-us:blog:authors:kushal-pandya.yml","en-us/blog/authors/kushal-pandya.yml","en-us/blog/authors/kushal-pandya",{"_path":4903,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4904,"config":4908,"_id":4909,"_type":28,"title":4905,"_source":30,"_file":4910,"_stem":4911,"_extension":33},"/en-us/blog/authors/kwan-lee",{"name":4905,"config":4906},"Kwan Lee",{"headshot":774,"ctfId":4907},"Kwan-Lee",{"template":743},"content:en-us:blog:authors:kwan-lee.yml","en-us/blog/authors/kwan-lee.yml","en-us/blog/authors/kwan-lee",{"_path":4913,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4914,"config":4919,"_id":4920,"_type":28,"title":4915,"_source":30,"_file":4921,"_stem":4922,"_extension":33},"/en-us/blog/authors/kyla-gradin-dahl",{"name":4915,"config":4916},"Kyla Gradin Dahl",{"headshot":4917,"ctfId":4918},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682273/Blog/Author%20Headshots/kyla-headshot.jpg","kyla",{"template":743},"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":4924,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4925,"config":4929,"_id":4930,"_type":28,"title":4926,"_source":30,"_file":4931,"_stem":4932,"_extension":33},"/en-us/blog/authors/kyle-mann",{"name":4926,"config":4927},"Kyle Mann",{"headshot":774,"ctfId":4928},"44YiW1r6sTpbC9wKBeHGgE",{"template":743},"content:en-us:blog:authors:kyle-mann.yml","en-us/blog/authors/kyle-mann.yml","en-us/blog/authors/kyle-mann",{"_path":4934,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4935,"config":4940,"_id":4941,"_type":28,"title":4936,"_source":30,"_file":4942,"_stem":4943,"_extension":33},"/en-us/blog/authors/kyle-smith",{"name":4936,"config":4937},"Kyle Smith",{"headshot":4938,"ctfId":4939},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664290/Blog/Author%20Headshots/kyle_smith_headshot.png","3Cec6opzqJpbhKXQ5nA4gU",{"template":743},"content:en-us:blog:authors:kyle-smith.yml","en-us/blog/authors/kyle-smith.yml","en-us/blog/authors/kyle-smith",{"_path":4945,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4946,"config":4950,"_id":4952,"_type":28,"title":4947,"_source":30,"_file":4953,"_stem":4954,"_extension":33},"/en-us/blog/authors/kymberlee-price",{"name":4947,"config":4948},"Kymberlee Price",{"headshot":4949},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753961652/wggh3ikqpm5plrptfza0.png",{"template":743,"gitlabHandle":4951},"eelrebmyk","content:en-us:blog:authors:kymberlee-price.yml","en-us/blog/authors/kymberlee-price.yml","en-us/blog/authors/kymberlee-price",{"_path":4956,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4957,"config":4961,"_id":4962,"_type":28,"title":4958,"_source":30,"_file":4963,"_stem":4964,"_extension":33},"/en-us/blog/authors/lasse-schuirmann",{"name":4958,"config":4959},"Lasse Schuirmann",{"headshot":774,"ctfId":4960},"5vpo2ZOrPIS8PBp3k47S6w",{"template":743},"content:en-us:blog:authors:lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann.yml","en-us/blog/authors/lasse-schuirmann",{"_path":4966,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4967,"config":4971,"_id":4972,"_type":28,"title":4968,"_source":30,"_file":4973,"_stem":4974,"_extension":33},"/en-us/blog/authors/laura-montemayor",{"name":4968,"config":4969},"Laura Montemayor",{"headshot":7,"ctfId":4970},"lauraMon",{"template":743},"content:en-us:blog:authors:laura-montemayor.yml","en-us/blog/authors/laura-montemayor.yml","en-us/blog/authors/laura-montemayor",{"_path":4976,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4977,"config":4982,"_id":4983,"_type":28,"title":4978,"_source":30,"_file":4984,"_stem":4985,"_extension":33},"/en-us/blog/authors/lauren-barker",{"name":4978,"config":4979},"Lauren Barker",{"headshot":4980,"ctfId":4981},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669974/Blog/Author%20Headshots/laurenbarker-headshot.jpg","laurenbarker",{"template":743},"content:en-us:blog:authors:lauren-barker.yml","en-us/blog/authors/lauren-barker.yml","en-us/blog/authors/lauren-barker",{"_path":4987,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4988,"config":4992,"_id":4993,"_type":28,"title":4989,"_source":30,"_file":4994,"_stem":4995,"_extension":33},"/en-us/blog/authors/lauren-gibbons-paul",{"name":4989,"config":4990},"Lauren Gibbons Paul",{"headshot":774,"ctfId":4991},"Lauren-Gibbons-Paul",{"template":743},"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":4997,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":4998,"config":5002,"_id":5003,"_type":28,"title":4999,"_source":30,"_file":5004,"_stem":5005,"_extension":33},"/en-us/blog/authors/lauren-minning",{"name":4999,"config":5000},"Lauren Minning",{"headshot":7,"ctfId":5001},"lminning",{"template":743},"content:en-us:blog:authors:lauren-minning.yml","en-us/blog/authors/lauren-minning.yml","en-us/blog/authors/lauren-minning",{"_path":5007,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5008,"config":5013,"_id":5014,"_type":28,"title":5009,"_source":30,"_file":5015,"_stem":5016,"_extension":33},"/en-us/blog/authors/laurena-alves",{"name":5009,"config":5010},"Laurena Alves",{"headshot":5011,"ctfId":5012},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713473/ip0jiy4wwyc0btfb09y5.png","Q834apoVRmcNXy507xyf5",{"template":743},"content:en-us:blog:authors:laurena-alves.yml","en-us/blog/authors/laurena-alves.yml","en-us/blog/authors/laurena-alves",{"_path":5018,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5019,"config":5024,"_id":5025,"_type":28,"title":5020,"_source":30,"_file":5026,"_stem":5027,"_extension":33},"/en-us/blog/authors/lee-faus",{"name":5020,"config":5021},"Lee Faus",{"headshot":5022,"ctfId":5023},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666427/Blog/Author%20Headshots/lee_faus_headshot.png","lfaus",{"template":743},"content:en-us:blog:authors:lee-faus.yml","en-us/blog/authors/lee-faus.yml","en-us/blog/authors/lee-faus",{"_path":5029,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5030,"config":5035,"_id":5036,"_type":28,"title":5031,"_source":30,"_file":5037,"_stem":5038,"_extension":33},"/en-us/blog/authors/lee-matos",{"name":5031,"config":5032},"Lee Matos",{"headshot":5033,"ctfId":5034},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670430/Blog/Author%20Headshots/lbot-headshot.jpg","lbot",{"template":743},"content:en-us:blog:authors:lee-matos.yml","en-us/blog/authors/lee-matos.yml","en-us/blog/authors/lee-matos",{"_path":5040,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5041,"config":5046,"_id":5047,"_type":28,"title":5042,"_source":30,"_file":5048,"_stem":5049,"_extension":33},"/en-us/blog/authors/lee-tickett",{"name":5042,"config":5043},"Lee Tickett",{"headshot":5044,"ctfId":5045},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1752592356/ibeixykxeiey9aiebylt.png","leetickett",{"template":743},"content:en-us:blog:authors:lee-tickett.yml","en-us/blog/authors/lee-tickett.yml","en-us/blog/authors/lee-tickett",{"_path":5051,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5052,"config":5056,"_id":5057,"_type":28,"title":5053,"_source":30,"_file":5058,"_stem":5059,"_extension":33},"/en-us/blog/authors/levente-polyak",{"name":5053,"config":5054},"Levente Polyak",{"headshot":7,"ctfId":5055},"anthraxx",{"template":743},"content:en-us:blog:authors:levente-polyak.yml","en-us/blog/authors/levente-polyak.yml","en-us/blog/authors/levente-polyak",{"_path":5061,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5062,"config":5067,"_id":5068,"_type":28,"title":5069,"_source":30,"_file":5070,"_stem":5071,"_extension":33},"/en-us/blog/authors/lin-jen-shin",{"name":5063,"config":5064},"Lin Jen-Shin",{"headshot":5065,"ctfId":5066},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678992/Blog/Author%20Headshots/godfat-gitlab-headshot.jpg","godfatgitlab",{"template":743},"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":5073,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5074,"config":5079,"_id":5080,"_type":28,"title":5075,"_source":30,"_file":5081,"_stem":5082,"_extension":33},"/en-us/blog/authors/liz-coleman",{"name":5075,"config":5076},"Liz Coleman",{"headshot":5077,"ctfId":5078},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659695/Blog/Author%20Headshots/coleman_headshot.png","5MTSBqnOko7zYTQa3vVy1c",{"template":743},"content:en-us:blog:authors:liz-coleman.yml","en-us/blog/authors/liz-coleman.yml","en-us/blog/authors/liz-coleman",{"_path":5084,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5085,"config":5090,"_id":5091,"_type":28,"title":5086,"_source":30,"_file":5092,"_stem":5093,"_extension":33},"/en-us/blog/authors/loryn-bortins",{"name":5086,"config":5087},"Loryn Bortins",{"headshot":5088,"ctfId":5089},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668992/Blog/Author%20Headshots/loryn_bortins_headshot.png","5LgbtMISutHieB86Rk8uOL",{"template":743},"content:en-us:blog:authors:loryn-bortins.yml","en-us/blog/authors/loryn-bortins.yml","en-us/blog/authors/loryn-bortins",{"_path":5095,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5096,"config":5100,"_id":5101,"_type":28,"title":5097,"_source":30,"_file":5102,"_stem":5103,"_extension":33},"/en-us/blog/authors/lucas-charles",{"name":5097,"config":5098},"Lucas Charles",{"headshot":774,"ctfId":5099},"01OUkmRJImMowxMk3YHGNS",{"template":743},"content:en-us:blog:authors:lucas-charles.yml","en-us/blog/authors/lucas-charles.yml","en-us/blog/authors/lucas-charles",{"_path":5105,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5106,"config":5110,"_id":5111,"_type":28,"title":5107,"_source":30,"_file":5112,"_stem":5113,"_extension":33},"/en-us/blog/authors/luka-trbojevic",{"name":5107,"config":5108},"Luka Trbojevic",{"headshot":7,"ctfId":5109},"ltrbojevic",{"template":743},"content:en-us:blog:authors:luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic.yml","en-us/blog/authors/luka-trbojevic",{"_path":5115,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5116,"config":5120,"_id":5121,"_type":28,"title":5117,"_source":30,"_file":5122,"_stem":5123,"_extension":33},"/en-us/blog/authors/lukas-eipert",{"name":5117,"config":5118},"Lukas Eipert",{"headshot":774,"ctfId":5119},"37PO8stm7JUQgglr4tWcmw",{"template":743},"content:en-us:blog:authors:lukas-eipert.yml","en-us/blog/authors/lukas-eipert.yml","en-us/blog/authors/lukas-eipert",{"_path":5125,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5126,"config":5131,"_id":5132,"_type":28,"title":5127,"_source":30,"_file":5133,"_stem":5134,"_extension":33},"/en-us/blog/authors/lyle-kozloff",{"name":5127,"config":5128},"Lyle Kozloff",{"headshot":5129,"ctfId":5130},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666803/Blog/Author%20Headshots/lyle-headshot.jpg","lyle",{"template":743},"content:en-us:blog:authors:lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff.yml","en-us/blog/authors/lyle-kozloff",{"_path":5136,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5137,"config":5142,"_id":5143,"_type":28,"title":5138,"_source":30,"_file":5144,"_stem":5145,"_extension":33},"/en-us/blog/authors/madeline-lake",{"name":5138,"config":5139},"Madeline Lake",{"headshot":5140,"ctfId":5141},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659736/Blog/Author%20Headshots/madlake-headshot.jpg","madlake",{"template":743},"content:en-us:blog:authors:madeline-lake.yml","en-us/blog/authors/madeline-lake.yml","en-us/blog/authors/madeline-lake",{"_path":5147,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5148,"config":5153,"_id":5154,"_type":28,"title":5149,"_source":30,"_file":5155,"_stem":5156,"_extension":33},"/en-us/blog/authors/madou-coulibaly",{"name":5149,"config":5150},"Madou Coulibaly",{"headshot":5151,"ctfId":5152},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou",{"template":743},"content:en-us:blog:authors:madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly.yml","en-us/blog/authors/madou-coulibaly",{"_path":5158,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5159,"config":5164,"_id":5165,"_type":28,"title":5160,"_source":30,"_file":5166,"_stem":5167,"_extension":33},"/en-us/blog/authors/magdalena-frankiewicz",{"name":5160,"config":5161},"Magdalena Frankiewicz",{"headshot":5162,"ctfId":5163},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663511/Blog/Author%20Headshots/m_frankiewicz-headshot.jpg","mfrankiewicz",{"template":743},"content:en-us:blog:authors:magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz.yml","en-us/blog/authors/magdalena-frankiewicz",{"_path":5169,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5170,"config":5174,"_id":5175,"_type":28,"title":5171,"_source":30,"_file":5176,"_stem":5177,"_extension":33},"/en-us/blog/authors/mahesh-kumar",{"name":5171,"config":5172},"Mahesh Kumar",{"headshot":774,"ctfId":5173},"2ihYV6SzSOXfvpI2eJ87Mv",{"template":743},"content:en-us:blog:authors:mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar.yml","en-us/blog/authors/mahesh-kumar",{"_path":5179,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5180,"config":5185,"_id":5186,"_type":28,"title":5181,"_source":30,"_file":5187,"_stem":5188,"_extension":33},"/en-us/blog/authors/manav-khurana",{"name":5181,"config":5182,"role":5184},"Manav Khurana",{"headshot":5183},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1757676476/ygij7nxvn2caq6vajhmy.png","Chief Product and Marketing Officer",{"template":743,"gitlabHandle":7},"content:en-us:blog:authors:manav-khurana.yml","en-us/blog/authors/manav-khurana.yml","en-us/blog/authors/manav-khurana",{"_path":5190,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5191,"config":5196,"_id":5197,"_type":28,"title":5192,"_source":30,"_file":5198,"_stem":5199,"_extension":33},"/en-us/blog/authors/manuel-kraft",{"name":5192,"config":5193},"Manuel Kraft",{"headshot":5194,"ctfId":5195},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{"template":743},"content:en-us:blog:authors:manuel-kraft.yml","en-us/blog/authors/manuel-kraft.yml","en-us/blog/authors/manuel-kraft",{"_path":5201,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5202,"config":5206,"_id":5207,"_type":28,"title":5203,"_source":30,"_file":5208,"_stem":5209,"_extension":33},"/en-us/blog/authors/marc-radulescu",{"name":5203,"config":5204},"Marc Radulescu",{"headshot":774,"ctfId":5205},"Marc-Radulescu",{"template":743},"content:en-us:blog:authors:marc-radulescu.yml","en-us/blog/authors/marc-radulescu.yml","en-us/blog/authors/marc-radulescu",{"_path":5211,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5212,"config":5217,"_id":5218,"_type":28,"title":5213,"_source":30,"_file":5219,"_stem":5220,"_extension":33},"/en-us/blog/authors/marc-shaw",{"name":5213,"config":5214},"Marc Shaw",{"headshot":5215,"ctfId":5216},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672589/Blog/Author%20Headshots/marc_shaw-headshot.jpg","marcshaw",{"template":743},"content:en-us:blog:authors:marc-shaw.yml","en-us/blog/authors/marc-shaw.yml","en-us/blog/authors/marc-shaw",{"_path":5222,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5223,"config":5228,"_id":5229,"_type":28,"title":5230,"_source":30,"_file":5231,"_stem":5232,"_extension":33},"/en-us/blog/authors/marcel-van-remmerden",{"name":5224,"config":5225},"Marcel van Remmerden",{"headshot":5226,"ctfId":5227},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669545/Blog/Author%20Headshots/mvanremmerden-headshot.jpg","7lMCQY4CU5xfTjIiMsNqkR",{"template":743},"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":5234,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5235,"config":5239,"_id":5240,"_type":28,"title":5236,"_source":30,"_file":5241,"_stem":5242,"_extension":33},"/en-us/blog/authors/marcia-ramos",{"name":5236,"config":5237},"Marcia Ramos",{"headshot":774,"ctfId":5238},"Marcia-Ramos",{"template":743},"content:en-us:blog:authors:marcia-ramos.yml","en-us/blog/authors/marcia-ramos.yml","en-us/blog/authors/marcia-ramos",{"_path":5244,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5245,"config":5249,"_id":5250,"_type":28,"title":5246,"_source":30,"_file":5251,"_stem":5252,"_extension":33},"/en-us/blog/authors/marco-lenzo",{"name":5246,"config":5247},"Marco Lenzo",{"headshot":774,"ctfId":5248},"Marco-Lenzo",{"template":743},"content:en-us:blog:authors:marco-lenzo.yml","en-us/blog/authors/marco-lenzo.yml","en-us/blog/authors/marco-lenzo",{"_path":5254,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5255,"config":5259,"_id":5260,"_type":28,"title":5256,"_source":30,"_file":5261,"_stem":5262,"_extension":33},"/en-us/blog/authors/marie-hargitt",{"name":5256,"config":5257},"Marie Hargitt",{"headshot":774,"ctfId":5258},"Marie-Hargitt",{"template":743},"content:en-us:blog:authors:marie-hargitt.yml","en-us/blog/authors/marie-hargitt.yml","en-us/blog/authors/marie-hargitt",{"_path":5264,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5265,"config":5270,"_id":5271,"_type":28,"title":5266,"_source":30,"_file":5272,"_stem":5273,"_extension":33},"/en-us/blog/authors/marin-jankovski",{"name":5266,"config":5267},"Marin Jankovski",{"headshot":5268,"ctfId":5269},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671628/Blog/Author%20Headshots/marin-headshot.jpg","Marin-Jankovski",{"template":743},"content:en-us:blog:authors:marin-jankovski.yml","en-us/blog/authors/marin-jankovski.yml","en-us/blog/authors/marin-jankovski",{"_path":5275,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5276,"config":5280,"_id":5281,"_type":28,"title":5282,"_source":30,"_file":5283,"_stem":5284,"_extension":33},"/en-us/blog/authors/marin-job",{"name":5277,"config":5278},"Marin, Job",{"headshot":774,"ctfId":5279},"Marin-Job",{"template":743},"content:en-us:blog:authors:marin-job.yml","Marin Job","en-us/blog/authors/marin-job.yml","en-us/blog/authors/marin-job",{"_path":5286,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5287,"config":5291,"_id":5292,"_type":28,"title":5293,"_source":30,"_file":5294,"_stem":5295,"_extension":33},"/en-us/blog/authors/mario-de-la-ossa",{"name":5288,"config":5289},"Mario de la Ossa",{"headshot":7,"ctfId":5290},"mdelaossa",{"template":743},"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":5297,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5298,"config":5302,"_id":5303,"_type":28,"title":5299,"_source":30,"_file":5304,"_stem":5305,"_extension":33},"/en-us/blog/authors/mark-art",{"name":5299,"config":5300},"Mark Art",{"headshot":774,"ctfId":5301},"55KCfyNmgPaJRmBZhiN7k5",{"template":743},"content:en-us:blog:authors:mark-art.yml","en-us/blog/authors/mark-art.yml","en-us/blog/authors/mark-art",{"_path":5307,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5308,"config":5312,"_id":5313,"_type":28,"title":5309,"_source":30,"_file":5314,"_stem":5315,"_extension":33},"/en-us/blog/authors/mark-fletcher",{"name":5309,"config":5310},"Mark Fletcher",{"headshot":7,"ctfId":5311},"markglenfletcher",{"template":743},"content:en-us:blog:authors:mark-fletcher.yml","en-us/blog/authors/mark-fletcher.yml","en-us/blog/authors/mark-fletcher",{"_path":5317,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5318,"config":5323,"_id":5324,"_type":28,"title":5319,"_source":30,"_file":5325,"_stem":5326,"_extension":33},"/en-us/blog/authors/mark-lapierre",{"name":5319,"config":5320},"Mark Lapierre",{"headshot":5321,"ctfId":5322},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669066/Blog/Author%20Headshots/mark_lapierre.png","2Fnsk5H33npbli2fy9kMqu",{"template":743},"content:en-us:blog:authors:mark-lapierre.yml","en-us/blog/authors/mark-lapierre.yml","en-us/blog/authors/mark-lapierre",{"_path":5328,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5329,"config":5334,"_id":5335,"_type":28,"title":5330,"_source":30,"_file":5336,"_stem":5337,"_extension":33},"/en-us/blog/authors/mark-loveless",{"name":5330,"config":5331},"Mark Loveless",{"headshot":5332,"ctfId":5333},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664093/Blog/Author%20Headshots/mloveless-headshot.png","mloveless",{"template":743},"content:en-us:blog:authors:mark-loveless.yml","en-us/blog/authors/mark-loveless.yml","en-us/blog/authors/mark-loveless",{"_path":5339,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5340,"config":5344,"_id":5345,"_type":28,"title":5341,"_source":30,"_file":5346,"_stem":5347,"_extension":33},"/en-us/blog/authors/mark-pundsack",{"name":5341,"config":5342},"Mark Pundsack",{"headshot":774,"ctfId":5343},"markpundsack",{"template":743},"content:en-us:blog:authors:mark-pundsack.yml","en-us/blog/authors/mark-pundsack.yml","en-us/blog/authors/mark-pundsack",{"_path":5349,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5350,"config":5355,"_id":5356,"_type":28,"title":5357,"_source":30,"_file":5358,"_stem":5359,"_extension":33},"/en-us/blog/authors/martin-brmmer",{"name":5351,"config":5352},"Martin Brümmer",{"headshot":5353,"ctfId":5354},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659427/Blog/Author%20Headshots/martin_brummer.webp","1QkLKK0UnkvZDDBzzEhkaA",{"template":743},"content:en-us:blog:authors:martin-brmmer.yml","Martin Brmmer","en-us/blog/authors/martin-brmmer.yml","en-us/blog/authors/martin-brmmer",{"_path":5361,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5362,"config":5366,"_id":5367,"_type":28,"title":5363,"_source":30,"_file":5368,"_stem":5369,"_extension":33},"/en-us/blog/authors/martynas-krupskis",{"name":5363,"config":5364},"Martynas Krupskis",{"headshot":774,"ctfId":5365},"3tK5S0f4QshGFGRrdEl7rn",{"template":743},"content:en-us:blog:authors:martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis.yml","en-us/blog/authors/martynas-krupskis",{"_path":5371,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5372,"config":5376,"_id":5377,"_type":28,"title":5373,"_source":30,"_file":5378,"_stem":5379,"_extension":33},"/en-us/blog/authors/matej-latin",{"name":5373,"config":5374},"Matej Latin",{"headshot":7,"ctfId":5375},"matejlatin",{"template":743},"content:en-us:blog:authors:matej-latin.yml","en-us/blog/authors/matej-latin.yml","en-us/blog/authors/matej-latin",{"_path":5381,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5382,"config":5387,"_id":5388,"_type":28,"title":5383,"_source":30,"_file":5389,"_stem":5390,"_extension":33},"/en-us/blog/authors/mathias-ewald",{"name":5383,"config":5384},"Mathias Ewald",{"headshot":5385,"ctfId":5386},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664526/Blog/Author%20Headshots/mathias_ewald_headshot.png","7vLTPhU3yvh4xTToXcLpg9",{"template":743},"content:en-us:blog:authors:mathias-ewald.yml","en-us/blog/authors/mathias-ewald.yml","en-us/blog/authors/mathias-ewald",{"_path":5392,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5393,"config":5397,"_id":5398,"_type":28,"title":5394,"_source":30,"_file":5399,"_stem":5400,"_extension":33},"/en-us/blog/authors/matt-baldwin",{"name":5394,"config":5395},"Matt Baldwin",{"headshot":774,"ctfId":5396},"Matt-Baldwin",{"template":743},"content:en-us:blog:authors:matt-baldwin.yml","en-us/blog/authors/matt-baldwin.yml","en-us/blog/authors/matt-baldwin",{"_path":5402,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5403,"config":5408,"_id":5409,"_type":28,"title":5404,"_source":30,"_file":5410,"_stem":5411,"_extension":33},"/en-us/blog/authors/matt-coons",{"name":5404,"config":5405},"Matt Coons",{"headshot":5406,"ctfId":5407},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661888/Blog/Author%20Headshots/mcoons-headshot.jpg","mcoons",{"template":743},"content:en-us:blog:authors:matt-coons.yml","en-us/blog/authors/matt-coons.yml","en-us/blog/authors/matt-coons",{"_path":5413,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5414,"config":5419,"_id":5420,"_type":28,"title":5421,"_source":30,"_file":5422,"_stem":5423,"_extension":33},"/en-us/blog/authors/matt-delaney",{"name":5415,"config":5416},"Matt DeLaney",{"headshot":5417,"ctfId":5418},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659749/Blog/Author%20Headshots/matt_delaney_headshot.png","6apeWdrqrZlMIdaxzV5NvZ",{"template":743},"content:en-us:blog:authors:matt-delaney.yml","Matt Delaney","en-us/blog/authors/matt-delaney.yml","en-us/blog/authors/matt-delaney",{"_path":5425,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5426,"config":5431,"_id":5432,"_type":28,"title":5427,"_source":30,"_file":5433,"_stem":5434,"_extension":33},"/en-us/blog/authors/matt-genelin",{"name":5427,"config":5428},"Matt Genelin",{"headshot":5429,"ctfId":5430},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664522/Blog/Author%20Headshots/matty_genelin.png","6x9dTYZik3lSViI8hu6dYQ",{"template":743},"content:en-us:blog:authors:matt-genelin.yml","en-us/blog/authors/matt-genelin.yml","en-us/blog/authors/matt-genelin",{"_path":5436,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5437,"config":5441,"_id":5442,"_type":28,"title":5438,"_source":30,"_file":5443,"_stem":5444,"_extension":33},"/en-us/blog/authors/matt-nguyen",{"name":5438,"config":5439},"Matt Nguyen",{"headshot":774,"ctfId":5440},"Matt-Nguyen",{"template":743},"content:en-us:blog:authors:matt-nguyen.yml","en-us/blog/authors/matt-nguyen.yml","en-us/blog/authors/matt-nguyen",{"_path":5446,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5447,"config":5452,"_id":5453,"_type":28,"title":5448,"_source":30,"_file":5454,"_stem":5455,"_extension":33},"/en-us/blog/authors/matt-nohr",{"name":5448,"config":5449},"Matt Nohr",{"headshot":5450,"ctfId":5451},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{"template":743},"content:en-us:blog:authors:matt-nohr.yml","en-us/blog/authors/matt-nohr.yml","en-us/blog/authors/matt-nohr",{"_path":5457,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5458,"config":5463,"_id":5464,"_type":28,"title":5459,"_source":30,"_file":5465,"_stem":5466,"_extension":33},"/en-us/blog/authors/matt-smiley",{"name":5459,"config":5460},"Matt Smiley",{"headshot":5461,"ctfId":5462},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682529/Blog/Author%20Headshots/msmiley-headshot.jpg","msmiley",{"template":743},"content:en-us:blog:authors:matt-smiley.yml","en-us/blog/authors/matt-smiley.yml","en-us/blog/authors/matt-smiley",{"_path":5468,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5469,"config":5473,"_id":5474,"_type":28,"title":5470,"_source":30,"_file":5475,"_stem":5476,"_extension":33},"/en-us/blog/authors/matt-wilson",{"name":5470,"config":5471},"Matt Wilson",{"headshot":774,"ctfId":5472},"mattwilson",{"template":743},"content:en-us:blog:authors:matt-wilson.yml","en-us/blog/authors/matt-wilson.yml","en-us/blog/authors/matt-wilson",{"_path":5478,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5479,"config":5484,"_id":5485,"_type":28,"title":5480,"_source":30,"_file":5486,"_stem":5487,"_extension":33},"/en-us/blog/authors/matthew-macfarlane",{"name":5480,"config":5481},"Matthew Macfarlane",{"headshot":5482,"ctfId":5483},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N",{"template":743},"content:en-us:blog:authors:matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane.yml","en-us/blog/authors/matthew-macfarlane",{"_path":5489,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5490,"config":5495,"_id":5496,"_type":28,"title":5491,"_source":30,"_file":5497,"_stem":5498,"_extension":33},"/en-us/blog/authors/matthew-nearents",{"name":5491,"config":5492},"Matthew Nearents",{"headshot":5493,"ctfId":5494},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681789/Blog/Author%20Headshots/mnearents-headshot.jpg","mnearents",{"template":743},"content:en-us:blog:authors:matthew-nearents.yml","en-us/blog/authors/matthew-nearents.yml","en-us/blog/authors/matthew-nearents",{"_path":5500,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5501,"config":5506,"_id":5507,"_type":28,"title":5508,"_source":30,"_file":5509,"_stem":5510,"_extension":33},"/en-us/blog/authors/matthias-kppler",{"name":5502,"config":5503},"Matthias Käppler",{"headshot":5504,"ctfId":5505},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670351/Blog/Author%20Headshots/mkaeppler-headshot.jpg","mkaeppler",{"template":743},"content:en-us:blog:authors:matthias-kppler.yml","Matthias Kppler","en-us/blog/authors/matthias-kppler.yml","en-us/blog/authors/matthias-kppler",{"_path":5512,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5513,"config":5517,"_id":5518,"_type":28,"title":5514,"_source":30,"_file":5519,"_stem":5520,"_extension":33},"/en-us/blog/authors/matthieu-fronton",{"name":5514,"config":5515},"Matthieu Fronton",{"headshot":7,"ctfId":5516},"frntn",{"template":743},"content:en-us:blog:authors:matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton.yml","en-us/blog/authors/matthieu-fronton",{"_path":5522,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5523,"config":5527,"_id":5528,"_type":28,"title":5524,"_source":30,"_file":5529,"_stem":5530,"_extension":33},"/en-us/blog/authors/max-woolf",{"name":5524,"config":5525},"Max Woolf",{"headshot":774,"ctfId":5526},"Max-Woolf",{"template":743},"content:en-us:blog:authors:max-woolf.yml","en-us/blog/authors/max-woolf.yml","en-us/blog/authors/max-woolf",{"_path":5532,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5533,"config":5538,"_id":5539,"_type":28,"title":5534,"_source":30,"_file":5540,"_stem":5541,"_extension":33},"/en-us/blog/authors/maximilien-belinga",{"name":5534,"config":5535},"Maximilien Belinga",{"headshot":5536,"ctfId":5537},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665080/Blog/Author%20Headshots/max_belinga.png","4n2a5tKPKk6qCis0IzevOS",{"template":743},"content:en-us:blog:authors:maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga.yml","en-us/blog/authors/maximilien-belinga",{"_path":5543,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5544,"config":5548,"_id":5549,"_type":28,"title":5545,"_source":30,"_file":5550,"_stem":5551,"_extension":33},"/en-us/blog/authors/mayank-tahilramani",{"name":5545,"config":5546},"Mayank Tahilramani",{"headshot":7,"ctfId":5547},"mayanktahil",{"template":743},"content:en-us:blog:authors:mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani.yml","en-us/blog/authors/mayank-tahilramani",{"_path":5553,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5554,"config":5559,"_id":5560,"_type":28,"title":5555,"_source":30,"_file":5561,"_stem":5562,"_extension":33},"/en-us/blog/authors/mayra-cabrera",{"name":5555,"config":5556},"Mayra Cabrera",{"headshot":5557,"ctfId":5558},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663224/Blog/Author%20Headshots/mayra-cabrera-headshot.jpg","mayracabrera",{"template":743},"content:en-us:blog:authors:mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera.yml","en-us/blog/authors/mayra-cabrera",{"_path":5564,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5565,"config":5569,"_id":5570,"_type":28,"title":5566,"_source":30,"_file":5571,"_stem":5572,"_extension":33},"/en-us/blog/authors/meghan-maneval",{"name":5566,"config":5567},"Meghan Maneval",{"headshot":7,"ctfId":5568},"mmaneval20",{"template":743},"content:en-us:blog:authors:meghan-maneval.yml","en-us/blog/authors/meghan-maneval.yml","en-us/blog/authors/meghan-maneval",{"_path":5574,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5575,"config":5580,"_id":5581,"_type":28,"title":5576,"_source":30,"_file":5582,"_stem":5583,"_extension":33},"/en-us/blog/authors/mek-stittri",{"name":5576,"config":5577},"Mek Stittri",{"headshot":5578,"ctfId":5579},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682281/Blog/Author%20Headshots/meks-headshot.png","meks",{"template":743},"content:en-us:blog:authors:mek-stittri.yml","en-us/blog/authors/mek-stittri.yml","en-us/blog/authors/mek-stittri",{"_path":5585,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5586,"config":5590,"_id":5591,"_type":28,"title":5587,"_source":30,"_file":5592,"_stem":5593,"_extension":33},"/en-us/blog/authors/melissa-farber",{"name":5587,"config":5588},"Melissa Farber",{"headshot":7,"ctfId":5589},"mfarber",{"template":743},"content:en-us:blog:authors:melissa-farber.yml","en-us/blog/authors/melissa-farber.yml","en-us/blog/authors/melissa-farber",{"_path":5595,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5596,"config":5600,"_id":5601,"_type":28,"title":5597,"_source":30,"_file":5602,"_stem":5603,"_extension":33},"/en-us/blog/authors/melissa-smolensky",{"name":5597,"config":5598},"Melissa Smolensky",{"headshot":7,"ctfId":5599},"melsmo",{"template":743},"content:en-us:blog:authors:melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky.yml","en-us/blog/authors/melissa-smolensky",{"_path":5605,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5606,"config":5611,"_id":5612,"_type":28,"title":5607,"_source":30,"_file":5613,"_stem":5614,"_extension":33},"/en-us/blog/authors/melissa-ushakov",{"name":5607,"config":5608},"Melissa Ushakov",{"headshot":5609,"ctfId":5610},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666529/Blog/Author%20Headshots/mushakov-headshot.jpg","mushakov",{"template":743},"content:en-us:blog:authors:melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov.yml","en-us/blog/authors/melissa-ushakov",{"_path":5616,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5617,"config":5621,"_id":5622,"_type":28,"title":5618,"_source":30,"_file":5623,"_stem":5624,"_extension":33},"/en-us/blog/authors/michael-fahey",{"name":5618,"config":5619},"Michael Fahey",{"headshot":7,"ctfId":5620},"mfahey",{"template":743},"content:en-us:blog:authors:michael-fahey.yml","en-us/blog/authors/michael-fahey.yml","en-us/blog/authors/michael-fahey",{"_path":5626,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5627,"config":5632,"_id":5633,"_type":28,"title":5628,"_source":30,"_file":5634,"_stem":5635,"_extension":33},"/en-us/blog/authors/michael-friedrich",{"name":5628,"config":5629},"Michael Friedrich",{"headshot":5630,"ctfId":5631},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi",{"template":743},"content:en-us:blog:authors:michael-friedrich.yml","en-us/blog/authors/michael-friedrich.yml","en-us/blog/authors/michael-friedrich",{"_path":5637,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5638,"config":5642,"_id":5643,"_type":28,"title":5639,"_source":30,"_file":5644,"_stem":5645,"_extension":33},"/en-us/blog/authors/michael-henriksen",{"name":5639,"config":5640},"Michael Henriksen",{"headshot":774,"ctfId":5641},"3DmojnawcJFqAgoNMCpFTX",{"template":743},"content:en-us:blog:authors:michael-henriksen.yml","en-us/blog/authors/michael-henriksen.yml","en-us/blog/authors/michael-henriksen",{"_path":5647,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5648,"config":5652,"_id":5653,"_type":28,"title":5649,"_source":30,"_file":5654,"_stem":5655,"_extension":33},"/en-us/blog/authors/michael-karampalas",{"name":5649,"config":5650},"Michael Karampalas",{"headshot":7,"ctfId":5651},"mkarampalas",{"template":743},"content:en-us:blog:authors:michael-karampalas.yml","en-us/blog/authors/michael-karampalas.yml","en-us/blog/authors/michael-karampalas",{"_path":5657,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5658,"config":5663,"_id":5664,"_type":28,"title":5659,"_source":30,"_file":5665,"_stem":5666,"_extension":33},"/en-us/blog/authors/michael-kozono",{"name":5659,"config":5660},"Michael Kozono",{"headshot":5661,"ctfId":5662},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679544/Blog/Author%20Headshots/mkozono-headshot.jpg","mkozono",{"template":743},"content:en-us:blog:authors:michael-kozono.yml","en-us/blog/authors/michael-kozono.yml","en-us/blog/authors/michael-kozono",{"_path":5668,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5669,"config":5673,"_id":5674,"_type":28,"title":5670,"_source":30,"_file":5675,"_stem":5676,"_extension":33},"/en-us/blog/authors/michael-miranda",{"name":5670,"config":5671},"Michael Miranda",{"headshot":7,"ctfId":5672},"mikemiranda",{"template":743},"content:en-us:blog:authors:michael-miranda.yml","en-us/blog/authors/michael-miranda.yml","en-us/blog/authors/michael-miranda",{"_path":5678,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5679,"config":5684,"_id":5685,"_type":28,"title":5680,"_source":30,"_file":5686,"_stem":5687,"_extension":33},"/en-us/blog/authors/michelle-gill",{"name":5680,"config":5681},"Michelle Gill",{"headshot":5682,"ctfId":5683},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666460/Blog/Author%20Headshots/michelle_gill_headshot.png","1o9MOYTUcO2koXs4FgpOEw",{"template":743},"content:en-us:blog:authors:michelle-gill.yml","en-us/blog/authors/michelle-gill.yml","en-us/blog/authors/michelle-gill",{"_path":5689,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5690,"config":5695,"_id":5696,"_type":28,"title":5691,"_source":30,"_file":5697,"_stem":5698,"_extension":33},"/en-us/blog/authors/miguel-rincon",{"name":5691,"config":5692},"Miguel Rincon",{"headshot":5693,"ctfId":5694},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681865/Blog/Author%20Headshots/mrincon-headshot.jpg","mrincon",{"template":743},"content:en-us:blog:authors:miguel-rincon.yml","en-us/blog/authors/miguel-rincon.yml","en-us/blog/authors/miguel-rincon",{"_path":5700,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5701,"config":5705,"_id":5706,"_type":28,"title":5702,"_source":30,"_file":5707,"_stem":5708,"_extension":33},"/en-us/blog/authors/mike-bartlett",{"name":5702,"config":5703},"Mike Bartlett",{"headshot":7,"ctfId":5704},"mydigitalself",{"template":743},"content:en-us:blog:authors:mike-bartlett.yml","en-us/blog/authors/mike-bartlett.yml","en-us/blog/authors/mike-bartlett",{"_path":5710,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5711,"config":5715,"_id":5716,"_type":28,"title":5712,"_source":30,"_file":5717,"_stem":5718,"_extension":33},"/en-us/blog/authors/mike-eddington",{"name":5712,"config":5713},"Mike Eddington",{"headshot":774,"ctfId":5714},"q5tK0TgB1ZovSwShKSvOJ",{"template":743},"content:en-us:blog:authors:mike-eddington.yml","en-us/blog/authors/mike-eddington.yml","en-us/blog/authors/mike-eddington",{"_path":5720,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5721,"config":5726,"_id":5727,"_type":28,"title":5722,"_source":30,"_file":5728,"_stem":5729,"_extension":33},"/en-us/blog/authors/mike-flouton",{"name":5722,"config":5723},"Mike Flouton",{"headshot":5724,"ctfId":5725},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679190/Blog/Author%20Headshots/mflouton-headshot.jpg","mflouton",{"template":743},"content:en-us:blog:authors:mike-flouton.yml","en-us/blog/authors/mike-flouton.yml","en-us/blog/authors/mike-flouton",{"_path":5731,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5732,"config":5736,"_id":5737,"_type":28,"title":5733,"_source":30,"_file":5738,"_stem":5739,"_extension":33},"/en-us/blog/authors/mike-gerwitz",{"name":5733,"config":5734},"Mike Gerwitz",{"headshot":774,"ctfId":5735},"Mike-Gerwitz",{"template":743},"content:en-us:blog:authors:mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz.yml","en-us/blog/authors/mike-gerwitz",{"_path":5741,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5742,"config":5746,"_id":5747,"_type":28,"title":5743,"_source":30,"_file":5748,"_stem":5749,"_extension":33},"/en-us/blog/authors/mike-greiling",{"name":5743,"config":5744},"Mike Greiling",{"headshot":7,"ctfId":5745},"mikegreiling",{"template":743},"content:en-us:blog:authors:mike-greiling.yml","en-us/blog/authors/mike-greiling.yml","en-us/blog/authors/mike-greiling",{"_path":5751,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5752,"config":5756,"_id":5757,"_type":28,"title":5753,"_source":30,"_file":5758,"_stem":5759,"_extension":33},"/en-us/blog/authors/mike-vanbuskirk",{"name":5753,"config":5754},"Mike Vanbuskirk",{"headshot":774,"ctfId":5755},"Mike-Vanbuskirk",{"template":743},"content:en-us:blog:authors:mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk.yml","en-us/blog/authors/mike-vanbuskirk",{"_path":5761,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5762,"config":5766,"_id":5767,"_type":28,"title":5763,"_source":30,"_file":5768,"_stem":5769,"_extension":33},"/en-us/blog/authors/miranda-carter",{"name":5763,"config":5764},"Miranda Carter",{"headshot":774,"ctfId":5765},"4xT4dbRh6N9i7jW5xuPhVp",{"template":743},"content:en-us:blog:authors:miranda-carter.yml","en-us/blog/authors/miranda-carter.yml","en-us/blog/authors/miranda-carter",{"_path":5771,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5772,"config":5777,"_id":5778,"_type":28,"title":5773,"_source":30,"_file":5779,"_stem":5780,"_extension":33},"/en-us/blog/authors/mitra-jozenazemian",{"name":5773,"config":5774},"Mitra Jozenazemian",{"headshot":5775,"ctfId":5776},"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":743},"content:en-us:blog:authors:mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian.yml","en-us/blog/authors/mitra-jozenazemian",{"_path":5782,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5783,"config":5788,"_id":5789,"_type":28,"title":5784,"_source":30,"_file":5790,"_stem":5791,"_extension":33},"/en-us/blog/authors/monmayuri-ray",{"name":5784,"config":5785},"Monmayuri Ray",{"headshot":5786,"ctfId":5787},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679381/Blog/Author%20Headshots/mray2020-headshot.png","mray2020",{"template":743},"content:en-us:blog:authors:monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray.yml","en-us/blog/authors/monmayuri-ray",{"_path":5793,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5794,"config":5799,"_id":5801,"_type":28,"title":5795,"_source":30,"_file":5802,"_stem":5803,"_extension":33},"/en-us/blog/authors/naoharu-sasaki",{"name":5795,"config":5796,"role":5798},"Naoharu Sasaki",{"headshot":5797},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751951026/qgwsq65eqcrrxemihenj.png","Senior Solutions Architect",{"template":743,"gitlabHandle":5800},"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":5805,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5806,"config":5811,"_id":5812,"_type":28,"title":5807,"_source":30,"_file":5813,"_stem":5814,"_extension":33},"/en-us/blog/authors/nate-rosandich",{"name":5807,"config":5808},"Nate Rosandich",{"headshot":5809,"ctfId":5810},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665774/Blog/Author%20Headshots/nate_rosandich_headshot.png","6o7KM5bD29P7qtz6yu60rZ",{"template":743},"content:en-us:blog:authors:nate-rosandich.yml","en-us/blog/authors/nate-rosandich.yml","en-us/blog/authors/nate-rosandich",{"_path":5816,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5817,"config":5822,"_id":5823,"_type":28,"title":5818,"_source":30,"_file":5824,"_stem":5825,"_extension":33},"/en-us/blog/authors/neha-khalwadekar",{"name":5818,"config":5819},"Neha Khalwadekar",{"headshot":5820,"ctfId":5821},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682666/Blog/Author%20Headshots/nkhalwadekar-headshot.jpg","nkhalwadekar",{"template":743},"content:en-us:blog:authors:neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar.yml","en-us/blog/authors/neha-khalwadekar",{"_path":5827,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5828,"config":5833,"_id":5834,"_type":28,"title":5835,"_source":30,"_file":5836,"_stem":5837,"_extension":33},"/en-us/blog/authors/neil-mccorrison",{"name":5829,"config":5830},"Neil McCorrison",{"headshot":5831,"ctfId":5832},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669499/Blog/Author%20Headshots/nmccorrison-headshot.jpg","nmccorrison",{"template":743},"content:en-us:blog:authors:neil-mccorrison.yml","Neil Mccorrison","en-us/blog/authors/neil-mccorrison.yml","en-us/blog/authors/neil-mccorrison",{"_path":5839,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5840,"config":5845,"_id":5846,"_type":28,"title":5847,"_source":30,"_file":5848,"_stem":5849,"_extension":33},"/en-us/blog/authors/neil-mcdonald",{"name":5841,"config":5842},"Neil McDonald",{"headshot":5843,"ctfId":5844},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665769/Blog/Author%20Headshots/neil_mcdonald_headshot.png","3AlbY0x99iY5eFvSZcn1zL",{"template":743},"content:en-us:blog:authors:neil-mcdonald.yml","Neil Mcdonald","en-us/blog/authors/neil-mcdonald.yml","en-us/blog/authors/neil-mcdonald",{"_path":5851,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5852,"config":5856,"_id":5858,"_type":28,"title":5853,"_source":30,"_file":5859,"_stem":5860,"_extension":33},"/en-us/blog/authors/nick-cayou",{"name":5853,"config":5854,"role":7},"Nick Cayou",{"headshot":5855},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1751467780/nzign0cbu1g4ulxlhgop.png",{"template":743,"gitlabHandle":5857},"ncayou","content:en-us:blog:authors:nick-cayou.yml","en-us/blog/authors/nick-cayou.yml","en-us/blog/authors/nick-cayou",{"_path":5862,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5863,"config":5868,"_id":5869,"_type":28,"title":5864,"_source":30,"_file":5870,"_stem":5871,"_extension":33},"/en-us/blog/authors/nick-malcolm",{"name":5864,"config":5865},"Nick Malcolm",{"headshot":5866,"ctfId":5867},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679150/Blog/Author%20Headshots/nmalcolm-headshot.jpg","nmalcolm",{"template":743},"content:en-us:blog:authors:nick-malcolm.yml","en-us/blog/authors/nick-malcolm.yml","en-us/blog/authors/nick-malcolm",{"_path":5873,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5874,"config":5878,"_id":5879,"_type":28,"title":5875,"_source":30,"_file":5880,"_stem":5881,"_extension":33},"/en-us/blog/authors/nick-thomas",{"name":5875,"config":5876},"Nick Thomas",{"headshot":7,"ctfId":5877},"nickthomas",{"template":743},"content:en-us:blog:authors:nick-thomas.yml","en-us/blog/authors/nick-thomas.yml","en-us/blog/authors/nick-thomas",{"_path":5883,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5884,"config":5889,"_id":5890,"_type":28,"title":5885,"_source":30,"_file":5891,"_stem":5892,"_extension":33},"/en-us/blog/authors/nick-veenhof",{"name":5885,"config":5886},"Nick Veenhof",{"headshot":5887,"ctfId":5888},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679373/Blog/Author%20Headshots/nick_vh-headshot.jpg","nickvh",{"template":743},"content:en-us:blog:authors:nick-veenhof.yml","en-us/blog/authors/nick-veenhof.yml","en-us/blog/authors/nick-veenhof",{"_path":5894,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5895,"config":5899,"_id":5900,"_type":28,"title":5896,"_source":30,"_file":5901,"_stem":5902,"_extension":33},"/en-us/blog/authors/nico-meisenzahl",{"name":5896,"config":5897},"Nico Meisenzahl",{"headshot":7,"ctfId":5898},"nicomeisenzahl",{"template":743},"content:en-us:blog:authors:nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl.yml","en-us/blog/authors/nico-meisenzahl",{"_path":5904,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5905,"config":5909,"_id":5910,"_type":28,"title":5906,"_source":30,"_file":5911,"_stem":5912,"_extension":33},"/en-us/blog/authors/nicole-schwartz",{"name":5906,"config":5907},"Nicole Schwartz",{"headshot":7,"ctfId":5908},"nicoleschwartz",{"template":743},"content:en-us:blog:authors:nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz.yml","en-us/blog/authors/nicole-schwartz",{"_path":5914,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5915,"config":5920,"_id":5921,"_type":28,"title":5916,"_source":30,"_file":5922,"_stem":5923,"_extension":33},"/en-us/blog/authors/nikhil-george",{"name":5916,"config":5917},"Nikhil George",{"headshot":5918,"ctfId":5919},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666175/Blog/Author%20Headshots/ngeorge1-headshot.jpg","ngeorge1",{"template":743},"content:en-us:blog:authors:nikhil-george.yml","en-us/blog/authors/nikhil-george.yml","en-us/blog/authors/nikhil-george",{"_path":5925,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5926,"config":5931,"_id":5932,"_type":28,"title":5927,"_source":30,"_file":5933,"_stem":5934,"_extension":33},"/en-us/blog/authors/nima-badiey",{"name":5927,"config":5928},"Nima Badiey",{"headshot":5929,"ctfId":5930},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668177/Blog/Author%20Headshots/nbadiey-headshot.jpg","nbadiey",{"template":743},"content:en-us:blog:authors:nima-badiey.yml","en-us/blog/authors/nima-badiey.yml","en-us/blog/authors/nima-badiey",{"_path":5936,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5937,"config":5942,"_id":5943,"_type":28,"title":5938,"_source":30,"_file":5944,"_stem":5945,"_extension":33},"/en-us/blog/authors/noah-ing",{"name":5938,"config":5939},"Noah Ing",{"headshot":5940,"ctfId":5941},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{"template":743},"content:en-us:blog:authors:noah-ing.yml","en-us/blog/authors/noah-ing.yml","en-us/blog/authors/noah-ing",{"_path":5947,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5948,"config":5952,"_id":5953,"_type":28,"title":5949,"_source":30,"_file":5954,"_stem":5955,"_extension":33},"/en-us/blog/authors/noah-manger",{"name":5949,"config":5950},"Noah Manger",{"headshot":774,"ctfId":5951},"Noah-Manger",{"template":743},"content:en-us:blog:authors:noah-manger.yml","en-us/blog/authors/noah-manger.yml","en-us/blog/authors/noah-manger",{"_path":5957,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5958,"config":5962,"_id":5963,"_type":28,"title":5959,"_source":30,"_file":5964,"_stem":5965,"_extension":33},"/en-us/blog/authors/noah-zoschke",{"name":5959,"config":5960},"Noah Zoschke",{"headshot":774,"ctfId":5961},"Noah-Zoschke",{"template":743},"content:en-us:blog:authors:noah-zoschke.yml","en-us/blog/authors/noah-zoschke.yml","en-us/blog/authors/noah-zoschke",{"_path":5967,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5968,"config":5972,"_id":5973,"_type":28,"title":5969,"_source":30,"_file":5974,"_stem":5975,"_extension":33},"/en-us/blog/authors/nolan-myers",{"name":5969,"config":5970},"Nolan Myers",{"headshot":774,"ctfId":5971},"Nolan-Myers",{"template":743},"content:en-us:blog:authors:nolan-myers.yml","en-us/blog/authors/nolan-myers.yml","en-us/blog/authors/nolan-myers",{"_path":5977,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5978,"config":5982,"_id":5983,"_type":28,"title":5979,"_source":30,"_file":5984,"_stem":5985,"_extension":33},"/en-us/blog/authors/nupur-sharma",{"name":5979,"config":5980},"Nupur Sharma",{"headshot":774,"ctfId":5981},"6p7RQDl0cDWnAxU8yu2vVK",{"template":743},"content:en-us:blog:authors:nupur-sharma.yml","en-us/blog/authors/nupur-sharma.yml","en-us/blog/authors/nupur-sharma",{"_path":5987,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5988,"config":5992,"_id":5993,"_type":28,"title":5989,"_source":30,"_file":5994,"_stem":5995,"_extension":33},"/en-us/blog/authors/nuritzi-sanchez",{"name":5989,"config":5990},"Nuritzi Sanchez",{"headshot":7,"ctfId":5991},"nuritzi",{"template":743},"content:en-us:blog:authors:nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez.yml","en-us/blog/authors/nuritzi-sanchez",{"_path":5997,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":5998,"config":6003,"_id":6004,"_type":28,"title":5999,"_source":30,"_file":6005,"_stem":6006,"_extension":33},"/en-us/blog/authors/oleksandr-pysaryuk",{"name":5999,"config":6000},"Oleksandr Pysaryuk",{"headshot":6001,"ctfId":6002},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664469/Blog/Author%20Headshots/opysaryuk_headshot.png","5EbCnvbwgeZKYOUug8fFFO",{"template":743},"content:en-us:blog:authors:oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk.yml","en-us/blog/authors/oleksandr-pysaryuk",{"_path":6008,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6009,"config":6014,"_id":6015,"_type":28,"title":6016,"_source":30,"_file":6017,"_stem":6018,"_extension":33},"/en-us/blog/authors/olena-horal-koretska",{"name":6010,"config":6011},"Olena Horal-Koretska",{"headshot":6012,"ctfId":6013},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681267/Blog/Author%20Headshots/ohoral-headshot.jpg","ohoral",{"template":743},"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":6020,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6021,"config":6025,"_id":6027,"_type":28,"title":6022,"_source":30,"_file":6028,"_stem":6029,"_extension":33},"/en-us/blog/authors/olivier-campeau",{"name":6022,"config":6023},"Olivier Campeau",{"headshot":6024},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750704785/kyqz7c4ctjvo4qpj8ldf.png",{"template":743,"gitlabHandle":6026},"oli.campeau","content:en-us:blog:authors:olivier-campeau.yml","en-us/blog/authors/olivier-campeau.yml","en-us/blog/authors/olivier-campeau",{"_path":6031,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6032,"config":6037,"_id":6038,"_type":28,"title":6039,"_source":30,"_file":6040,"_stem":6041,"_extension":33},"/en-us/blog/authors/olivier-dupr",{"name":6033,"config":6034},"Olivier Dupré",{"headshot":6035,"ctfId":6036},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/cj6odchlpoqxbibenvye.png","4VIckvQsyfNxEtz4pM42aP",{"template":743},"content:en-us:blog:authors:olivier-dupr.yml","Olivier Dupr","en-us/blog/authors/olivier-dupr.yml","en-us/blog/authors/olivier-dupr",{"_path":6043,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6044,"config":6049,"_id":6050,"_type":28,"title":6045,"_source":30,"_file":6051,"_stem":6052,"_extension":33},"/en-us/blog/authors/omar-fernandez",{"name":6045,"config":6046},"Omar Fernandez",{"headshot":6047,"ctfId":6048},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668073/Blog/Author%20Headshots/ofernandez2-headshot.jpg","ofernandez2",{"template":743},"content:en-us:blog:authors:omar-fernandez.yml","en-us/blog/authors/omar-fernandez.yml","en-us/blog/authors/omar-fernandez",{"_path":6054,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6055,"config":6059,"_id":6060,"_type":28,"title":6056,"_source":30,"_file":6061,"_stem":6062,"_extension":33},"/en-us/blog/authors/opher-vishnia",{"name":6056,"config":6057},"Opher Vishnia",{"headshot":774,"ctfId":6058},"O0F3sw3av9pRAxeP9iR7N",{"template":743},"content:en-us:blog:authors:opher-vishnia.yml","en-us/blog/authors/opher-vishnia.yml","en-us/blog/authors/opher-vishnia",{"_path":6064,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6065,"config":6069,"_id":6070,"_type":28,"title":6066,"_source":30,"_file":6071,"_stem":6072,"_extension":33},"/en-us/blog/authors/orit-golowinski",{"name":6066,"config":6067},"Orit Golowinski",{"headshot":7,"ctfId":6068},"ogolowinski",{"template":743},"content:en-us:blog:authors:orit-golowinski.yml","en-us/blog/authors/orit-golowinski.yml","en-us/blog/authors/orit-golowinski",{"_path":6074,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6075,"config":6080,"_id":6081,"_type":28,"title":6076,"_source":30,"_file":6082,"_stem":6083,"_extension":33},"/en-us/blog/authors/ottilia-westerlund",{"name":6076,"config":6077},"Ottilia Westerlund",{"headshot":6078,"ctfId":6079},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664791/Blog/Author%20Headshots/ottiliawesterlundheadshot.png","ottiliawesterlund",{"template":743},"content:en-us:blog:authors:ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund.yml","en-us/blog/authors/ottilia-westerlund",{"_path":6085,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6086,"config":6090,"_id":6091,"_type":28,"title":6087,"_source":30,"_file":6092,"_stem":6093,"_extension":33},"/en-us/blog/authors/owen-williams",{"name":6087,"config":6088},"Owen Williams",{"headshot":774,"ctfId":6089},"Owen-Williams",{"template":743},"content:en-us:blog:authors:owen-williams.yml","en-us/blog/authors/owen-williams.yml","en-us/blog/authors/owen-williams",{"_path":6095,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6096,"config":6100,"_id":6101,"_type":28,"title":6097,"_source":30,"_file":6102,"_stem":6103,"_extension":33},"/en-us/blog/authors/pablo-carranza",{"name":6097,"config":6098},"Pablo Carranza",{"headshot":774,"ctfId":6099},"Pablo-Carranza",{"template":743},"content:en-us:blog:authors:pablo-carranza.yml","en-us/blog/authors/pablo-carranza.yml","en-us/blog/authors/pablo-carranza",{"_path":6105,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6106,"config":6110,"_id":6111,"_type":28,"title":6107,"_source":30,"_file":6112,"_stem":6113,"_extension":33},"/en-us/blog/authors/parker-ennis",{"name":6107,"config":6108},"Parker Ennis",{"headshot":7,"ctfId":6109},"parkerennis",{"template":743},"content:en-us:blog:authors:parker-ennis.yml","en-us/blog/authors/parker-ennis.yml","en-us/blog/authors/parker-ennis",{"_path":6115,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6116,"config":6120,"_id":6121,"_type":28,"title":6117,"_source":30,"_file":6122,"_stem":6123,"_extension":33},"/en-us/blog/authors/patricio-cano",{"name":6117,"config":6118},"Patricio Cano",{"headshot":774,"ctfId":6119},"Patricio-Cano",{"template":743},"content:en-us:blog:authors:patricio-cano.yml","en-us/blog/authors/patricio-cano.yml","en-us/blog/authors/patricio-cano",{"_path":6125,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6126,"config":6130,"_id":6131,"_type":28,"title":6127,"_source":30,"_file":6132,"_stem":6133,"_extension":33},"/en-us/blog/authors/patrick-deuley",{"name":6127,"config":6128},"Patrick Deuley",{"headshot":774,"ctfId":6129},"4YYemtKKpxKC4yukyFavai",{"template":743},"content:en-us:blog:authors:patrick-deuley.yml","en-us/blog/authors/patrick-deuley.yml","en-us/blog/authors/patrick-deuley",{"_path":6135,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6136,"config":6140,"_id":6141,"_type":28,"title":6137,"_source":30,"_file":6142,"_stem":6143,"_extension":33},"/en-us/blog/authors/patrick-foster",{"name":6137,"config":6138},"Patrick Foster",{"headshot":774,"ctfId":6139},"Patrick-Foster",{"template":743},"content:en-us:blog:authors:patrick-foster.yml","en-us/blog/authors/patrick-foster.yml","en-us/blog/authors/patrick-foster",{"_path":6145,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6146,"config":6151,"_id":6152,"_type":28,"title":6147,"_source":30,"_file":6153,"_stem":6154,"_extension":33},"/en-us/blog/authors/patrick-steinhardt",{"name":6147,"config":6148},"Patrick Steinhardt",{"headshot":6149,"ctfId":6150},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab",{"template":743},"content:en-us:blog:authors:patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt.yml","en-us/blog/authors/patrick-steinhardt",{"_path":6156,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6157,"config":6161,"_id":6162,"_type":28,"title":6158,"_source":30,"_file":6163,"_stem":6164,"_extension":33},"/en-us/blog/authors/patty-cheung",{"name":6158,"config":6159},"Patty Cheung",{"headshot":774,"ctfId":6160},"pattycheung",{"template":743},"content:en-us:blog:authors:patty-cheung.yml","en-us/blog/authors/patty-cheung.yml","en-us/blog/authors/patty-cheung",{"_path":6166,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6167,"config":6171,"_id":6172,"_type":28,"title":6168,"_source":30,"_file":6173,"_stem":6174,"_extension":33},"/en-us/blog/authors/paul-badcock",{"name":6168,"config":6169},"Paul Badcock",{"headshot":774,"ctfId":6170},"TbNQIdiD4vlFB7XYXeArb",{"template":743},"content:en-us:blog:authors:paul-badcock.yml","en-us/blog/authors/paul-badcock.yml","en-us/blog/authors/paul-badcock",{"_path":6176,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6177,"config":6181,"_id":6182,"_type":28,"title":6183,"_source":30,"_file":6184,"_stem":6185,"_extension":33},"/en-us/blog/authors/paul-gascou-vaillancourt",{"name":6178,"config":6179},"Paul Gascou-Vaillancourt",{"headshot":774,"ctfId":6180},"6Yg7HWPoy2E5vwudH0EZja",{"template":743},"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":6187,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6188,"config":6192,"_id":6193,"_type":28,"title":6189,"_source":30,"_file":6194,"_stem":6195,"_extension":33},"/en-us/blog/authors/paul-hibbitts",{"name":6189,"config":6190},"Paul Hibbitts",{"headshot":774,"ctfId":6191},"Paul-Hibbitts",{"template":743},"content:en-us:blog:authors:paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts.yml","en-us/blog/authors/paul-hibbitts",{"_path":6197,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6198,"config":6202,"_id":6203,"_type":28,"title":6199,"_source":30,"_file":6204,"_stem":6205,"_extension":33},"/en-us/blog/authors/paul-machle",{"name":6199,"config":6200},"Paul Machle",{"headshot":774,"ctfId":6201},"Paul-Machle",{"template":743},"content:en-us:blog:authors:paul-machle.yml","en-us/blog/authors/paul-machle.yml","en-us/blog/authors/paul-machle",{"_path":6207,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6208,"config":6212,"_id":6214,"_type":28,"title":6209,"_source":30,"_file":6215,"_stem":6216,"_extension":33},"/en-us/blog/authors/paul-meresanu",{"name":6209,"role":7,"config":6210},"Paul Meresanu",{"headshot":6211},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750267141/qpw5ayteg0sewyh7s8xi.png",{"template":743,"gitlabHandle":6213},"pmeresanu","content:en-us:blog:authors:paul-meresanu.yml","en-us/blog/authors/paul-meresanu.yml","en-us/blog/authors/paul-meresanu",{"_path":6218,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6219,"config":6224,"_id":6225,"_type":28,"title":6220,"_source":30,"_file":6226,"_stem":6227,"_extension":33},"/en-us/blog/authors/payton-burdette",{"name":6220,"config":6221},"Payton Burdette",{"headshot":6222,"ctfId":6223},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667712/Blog/Author%20Headshots/payton_burdette_headshot.png","42ZmAy1Ix0cQeI3hHYupW",{"template":743},"content:en-us:blog:authors:payton-burdette.yml","en-us/blog/authors/payton-burdette.yml","en-us/blog/authors/payton-burdette",{"_path":6229,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6230,"config":6234,"_id":6235,"_type":28,"title":6231,"_source":30,"_file":6236,"_stem":6237,"_extension":33},"/en-us/blog/authors/pedro-fortuna",{"name":6231,"config":6232},"Pedro Fortuna",{"headshot":774,"ctfId":6233},"7JwB4WZYF19OKwOo4yk5n4",{"template":743},"content:en-us:blog:authors:pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna.yml","en-us/blog/authors/pedro-fortuna",{"_path":6239,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6240,"config":6245,"_id":6246,"_type":28,"title":6247,"_source":30,"_file":6248,"_stem":6249,"_extension":33},"/en-us/blog/authors/pedro-moreira-da-silva",{"name":6241,"config":6242},"Pedro Moreira da Silva",{"headshot":6243,"ctfId":6244},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666783/Blog/Author%20Headshots/pedroms-headshot.jpg","pedroms",{"template":743},"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":6251,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6252,"config":6257,"_id":6258,"_type":28,"title":6253,"_source":30,"_file":6259,"_stem":6260,"_extension":33},"/en-us/blog/authors/phil-hughes",{"name":6253,"config":6254},"Phil Hughes",{"headshot":6255,"ctfId":6256},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681552/Blog/Author%20Headshots/iamphill-headshot.jpg","iamphill",{"template":743},"content:en-us:blog:authors:phil-hughes.yml","en-us/blog/authors/phil-hughes.yml","en-us/blog/authors/phil-hughes",{"_path":6262,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6263,"config":6267,"_id":6268,"_type":28,"title":6264,"_source":30,"_file":6269,"_stem":6270,"_extension":33},"/en-us/blog/authors/philip-welz",{"name":6264,"config":6265},"Philip Welz",{"headshot":7,"ctfId":6266},"philxx",{"template":743},"content:en-us:blog:authors:philip-welz.yml","en-us/blog/authors/philip-welz.yml","en-us/blog/authors/philip-welz",{"_path":6272,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6273,"config":6278,"_id":6279,"_type":28,"title":6280,"_source":30,"_file":6281,"_stem":6282,"_extension":33},"/en-us/blog/authors/philippe-lafoucrire",{"name":6274,"config":6275},"Philippe Lafoucrière",{"headshot":6276,"ctfId":6277},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679747/Blog/Author%20Headshots/plafoucriere-headshot.jpg","plafoucriere",{"template":743},"content:en-us:blog:authors:philippe-lafoucrire.yml","Philippe Lafoucrire","en-us/blog/authors/philippe-lafoucrire.yml","en-us/blog/authors/philippe-lafoucrire",{"_path":6284,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6285,"config":6289,"_id":6290,"_type":28,"title":6291,"_source":30,"_file":6292,"_stem":6293,"_extension":33},"/en-us/blog/authors/pierre-de-la-morinerie",{"name":6286,"config":6287},"Pierre de La Morinerie",{"headshot":774,"ctfId":6288},"Pierre-de-La-Morinerie",{"template":743},"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":6295,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6296,"config":6300,"_id":6301,"_type":28,"title":6297,"_source":30,"_file":6302,"_stem":6303,"_extension":33},"/en-us/blog/authors/pierre-smeyers",{"name":6297,"config":6298},"Pierre Smeyers",{"headshot":7,"ctfId":6299},"pismy",{"template":743},"content:en-us:blog:authors:pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers.yml","en-us/blog/authors/pierre-smeyers",{"_path":6305,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6306,"config":6311,"_id":6312,"_type":28,"title":6307,"_source":30,"_file":6313,"_stem":6314,"_extension":33},"/en-us/blog/authors/pini-wietchner",{"name":6307,"config":6308},"Pini Wietchner",{"headshot":6309,"ctfId":6310},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660171/Blog/Author%20Headshots/Pini_Wietchner_headshot.png","4FclpbCSjD5ytIrKCyRL0o",{"template":743},"content:en-us:blog:authors:pini-wietchner.yml","en-us/blog/authors/pini-wietchner.yml","en-us/blog/authors/pini-wietchner",{"_path":6316,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6317,"config":6321,"_id":6322,"_type":28,"title":6323,"_source":30,"_file":6324,"_stem":6325,"_extension":33},"/en-us/blog/authors/pj-metz",{"name":6318,"config":6319},"PJ Metz",{"headshot":774,"ctfId":6320},"PjMetz",{"template":743},"content:en-us:blog:authors:pj-metz.yml","Pj Metz","en-us/blog/authors/pj-metz.yml","en-us/blog/authors/pj-metz",{"_path":6327,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6328,"config":6331,"_id":6332,"_type":28,"title":6333,"_source":30,"_file":6334,"_stem":6335,"_extension":33},"/en-us/blog/authors/plapadoo",{"name":6329,"config":6330},"plapadoo",{"headshot":774,"ctfId":6329},{"template":743},"content:en-us:blog:authors:plapadoo.yml","Plapadoo","en-us/blog/authors/plapadoo.yml","en-us/blog/authors/plapadoo",{"_path":6337,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6338,"config":6342,"_id":6343,"_type":28,"title":6339,"_source":30,"_file":6344,"_stem":6345,"_extension":33},"/en-us/blog/authors/pranay-bakre",{"name":6339,"config":6340},"Pranay Bakre",{"headshot":7,"ctfId":6341},"Darren-Eastman",{"template":743},"content:en-us:blog:authors:pranay-bakre.yml","en-us/blog/authors/pranay-bakre.yml","en-us/blog/authors/pranay-bakre",{"_path":6347,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6348,"config":6352,"_id":6353,"_type":28,"title":6349,"_source":30,"_file":6354,"_stem":6355,"_extension":33},"/en-us/blog/authors/priyanka-sharma",{"name":6349,"config":6350},"Priyanka Sharma",{"headshot":7,"ctfId":6351},"pritianka",{"template":743},"content:en-us:blog:authors:priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma.yml","en-us/blog/authors/priyanka-sharma",{"_path":6357,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6358,"config":6363,"_id":6364,"_type":28,"title":6365,"_source":30,"_file":6366,"_stem":6367,"_extension":33},"/en-us/blog/authors/pter-bozs",{"name":6359,"config":6360},"Péter Bozsó",{"headshot":6361,"ctfId":6362},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666384/Blog/Author%20Headshots/pbozso_headshot.png","4i1NVYip0RqxRnbpZ9deKp",{"template":743},"content:en-us:blog:authors:pter-bozs.yml","Pter Bozs","en-us/blog/authors/pter-bozs.yml","en-us/blog/authors/pter-bozs",{"_path":6369,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6370,"config":6374,"_id":6375,"_type":28,"title":6371,"_source":30,"_file":6376,"_stem":6377,"_extension":33},"/en-us/blog/authors/quan-to",{"name":6371,"config":6372},"Quan To",{"headshot":774,"ctfId":6373},"5dswLnpCobgICjM0RpHMU2",{"template":743},"content:en-us:blog:authors:quan-to.yml","en-us/blog/authors/quan-to.yml","en-us/blog/authors/quan-to",{"_path":6379,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6380,"config":6385,"_id":6386,"_type":28,"title":6381,"_source":30,"_file":6387,"_stem":6388,"_extension":33},"/en-us/blog/authors/rachel-nienaber",{"name":6381,"config":6382},"Rachel Nienaber",{"headshot":6383,"ctfId":6384},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667065/Blog/Author%20Headshots/rnienaber-headshot.jpg","rnienaber",{"template":743},"content:en-us:blog:authors:rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber.yml","en-us/blog/authors/rachel-nienaber",{"_path":6390,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6391,"config":6395,"_id":6397,"_type":28,"title":6392,"_source":30,"_file":6398,"_stem":6399,"_extension":33},"/en-us/blog/authors/radovan-bacovic",{"name":6392,"config":6393},"Radovan Bacovic",{"headshot":6394},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1760036179/vvj2tiujit6kopuz8mqp.png",{"template":743,"gitlabHandle":6396},"rbacovic","content:en-us:blog:authors:radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic.yml","en-us/blog/authors/radovan-bacovic",{"_path":6401,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6402,"config":6406,"_id":6407,"_type":28,"title":6408,"_source":30,"_file":6409,"_stem":6410,"_extension":33},"/en-us/blog/authors/rahul-bhargava-cto-evolphin",{"name":6403,"config":6404},"Rahul Bhargava, CTO, Evolphin",{"headshot":774,"ctfId":6405},"Rahul-Bhargava-CTO-Evolphin",{"template":743},"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":6412,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6413,"config":6418,"_id":6419,"_type":28,"title":6414,"_source":30,"_file":6420,"_stem":6421,"_extension":33},"/en-us/blog/authors/raimund-hook",{"name":6414,"config":6415},"Raimund Hook",{"headshot":6416,"ctfId":6417},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672472/Blog/Author%20Headshots/stingrayza-headshot.jpg","stingrayza",{"template":743},"content:en-us:blog:authors:raimund-hook.yml","en-us/blog/authors/raimund-hook.yml","en-us/blog/authors/raimund-hook",{"_path":6423,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6424,"config":6428,"_id":6429,"_type":28,"title":6425,"_source":30,"_file":6430,"_stem":6431,"_extension":33},"/en-us/blog/authors/raquel-campuzano",{"name":6425,"config":6426},"Raquel Campuzano",{"headshot":774,"ctfId":6427},"Raquel-Campuzano",{"template":743},"content:en-us:blog:authors:raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano.yml","en-us/blog/authors/raquel-campuzano",{"_path":6433,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6434,"config":6438,"_id":6439,"_type":28,"title":6435,"_source":30,"_file":6440,"_stem":6441,"_extension":33},"/en-us/blog/authors/ray-paik",{"name":6435,"config":6436},"Ray Paik",{"headshot":7,"ctfId":6437},"rpaik",{"template":743},"content:en-us:blog:authors:ray-paik.yml","en-us/blog/authors/ray-paik.yml","en-us/blog/authors/ray-paik",{"_path":6443,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6444,"config":6449,"_id":6450,"_type":28,"title":6445,"_source":30,"_file":6451,"_stem":6452,"_extension":33},"/en-us/blog/authors/rayana-verissimo",{"name":6445,"config":6446},"Rayana Verissimo",{"headshot":6447,"ctfId":6448},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679581/Blog/Author%20Headshots/rayana-headshot.png","rayana",{"template":743},"content:en-us:blog:authors:rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo.yml","en-us/blog/authors/rayana-verissimo",{"_path":6454,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6455,"config":6459,"_id":6461,"_type":28,"title":6462,"_source":30,"_file":6463,"_stem":6464,"_extension":33},"/en-us/blog/authors/rebeca-fenoy-anthony",{"name":6456,"config":6457},"Rebeca Fenoy-Anthony",{"headshot":6458},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756988188/r1og9bwc9mxwxqeoehyi.png",{"template":743,"gitlabHandle":6460},"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":6466,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6467,"config":6471,"_id":6472,"_type":28,"title":6468,"_source":30,"_file":6473,"_stem":6474,"_extension":33},"/en-us/blog/authors/rebecca-dodd",{"name":6468,"config":6469},"Rebecca Dodd",{"headshot":774,"ctfId":6470},"Rebecca-Dodd",{"template":743},"content:en-us:blog:authors:rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd.yml","en-us/blog/authors/rebecca-dodd",{"_path":6476,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6477,"config":6481,"_id":6482,"_type":28,"title":6478,"_source":30,"_file":6483,"_stem":6484,"_extension":33},"/en-us/blog/authors/regis-freyd",{"name":6478,"config":6479},"Regis Freyd",{"headshot":774,"ctfId":6480},"Regis-Freyd",{"template":743},"content:en-us:blog:authors:regis-freyd.yml","en-us/blog/authors/regis-freyd.yml","en-us/blog/authors/regis-freyd",{"_path":6486,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6487,"config":6492,"_id":6493,"_type":28,"title":6488,"_source":30,"_file":6494,"_stem":6495,"_extension":33},"/en-us/blog/authors/regnard-raquedan",{"name":6488,"config":6489},"Regnard Raquedan",{"headshot":6490,"ctfId":6491},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan",{"template":743},"content:en-us:blog:authors:regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan.yml","en-us/blog/authors/regnard-raquedan",{"_path":6497,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6498,"config":6502,"_id":6503,"_type":28,"title":6499,"_source":30,"_file":6504,"_stem":6505,"_extension":33},"/en-us/blog/authors/renato-stanic",{"name":6499,"config":6500},"Renato Stanic",{"headshot":7,"ctfId":6501},"rstanic12",{"template":743},"content:en-us:blog:authors:renato-stanic.yml","en-us/blog/authors/renato-stanic.yml","en-us/blog/authors/renato-stanic",{"_path":6507,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6508,"config":6513,"_id":6514,"_type":28,"title":6509,"_source":30,"_file":6515,"_stem":6516,"_extension":33},"/en-us/blog/authors/ricardo-amarilla-villalba",{"name":6509,"config":6510},"Ricardo Amarilla Villalba",{"headshot":6511,"ctfId":6512},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659922/Blog/Author%20Headshots/amarilla_headshot.png","4WSHcpkt7wBzARJQ1JkIMm",{"template":743},"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":6518,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6519,"config":6523,"_id":6524,"_type":28,"title":6520,"_source":30,"_file":6525,"_stem":6526,"_extension":33},"/en-us/blog/authors/riccardo-padovani",{"name":6520,"config":6521},"Riccardo Padovani",{"headshot":774,"ctfId":6522},"Riccardo-Padovani",{"template":743},"content:en-us:blog:authors:riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani.yml","en-us/blog/authors/riccardo-padovani",{"_path":6528,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6529,"config":6534,"_id":6535,"_type":28,"title":6536,"_source":30,"_file":6537,"_stem":6538,"_extension":33},"/en-us/blog/authors/rmy-coutable",{"name":6530,"config":6531},"Rémy Coutable",{"headshot":6532,"ctfId":6533},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai",{"template":743},"content:en-us:blog:authors:rmy-coutable.yml","Rmy Coutable","en-us/blog/authors/rmy-coutable.yml","en-us/blog/authors/rmy-coutable",{"_path":6540,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6541,"config":6546,"_id":6547,"_type":28,"title":6542,"_source":30,"_file":6548,"_stem":6549,"_extension":33},"/en-us/blog/authors/rob-jackson",{"name":6542,"config":6543},"Rob Jackson",{"headshot":6544,"ctfId":6545},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664773/Blog/Author%20Headshots/rob_jackson_headshot.png","12y1rDDleLKyUs9QhZFDQe",{"template":743},"content:en-us:blog:authors:rob-jackson.yml","en-us/blog/authors/rob-jackson.yml","en-us/blog/authors/rob-jackson",{"_path":6551,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6552,"config":6556,"_id":6557,"_type":28,"title":6553,"_source":30,"_file":6558,"_stem":6559,"_extension":33},"/en-us/blog/authors/rob-ribeiro",{"name":6553,"config":6554},"Rob Ribeiro",{"headshot":774,"ctfId":6555},"Rob-Ribeiro",{"template":743},"content:en-us:blog:authors:rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro.yml","en-us/blog/authors/rob-ribeiro",{"_path":6561,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6562,"config":6566,"_id":6567,"_type":28,"title":6563,"_source":30,"_file":6568,"_stem":6569,"_extension":33},"/en-us/blog/authors/robert-speicher",{"name":6563,"config":6564},"Robert Speicher",{"headshot":7,"ctfId":6565},"rspeicher",{"template":743},"content:en-us:blog:authors:robert-speicher.yml","en-us/blog/authors/robert-speicher.yml","en-us/blog/authors/robert-speicher",{"_path":6571,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6572,"config":6577,"_id":6578,"_type":28,"title":6573,"_source":30,"_file":6579,"_stem":6580,"_extension":33},"/en-us/blog/authors/robert-williams",{"name":6573,"config":6574},"Robert Williams",{"headshot":6575,"ctfId":6576},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682973/Blog/Author%20Headshots/r_williams-headshot.png","rwilliams",{"template":743},"content:en-us:blog:authors:robert-williams.yml","en-us/blog/authors/robert-williams.yml","en-us/blog/authors/robert-williams",{"_path":6582,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6583,"config":6589,"_id":6590,"_type":28,"title":6584,"_source":30,"_file":6591,"_stem":6592,"_extension":33},"/en-us/blog/authors/robin-schulman",{"name":6584,"config":6585,"role":6588},"Robin Schulman",{"headshot":6586,"ctfId":6587},"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":743},"content:en-us:blog:authors:robin-schulman.yml","en-us/blog/authors/robin-schulman.yml","en-us/blog/authors/robin-schulman",{"_path":6594,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6595,"config":6599,"_id":6600,"_type":28,"title":6596,"_source":30,"_file":6601,"_stem":6602,"_extension":33},"/en-us/blog/authors/roger-woo",{"name":6596,"config":6597},"Roger Woo",{"headshot":774,"ctfId":6598},"rogerwoo",{"template":743},"content:en-us:blog:authors:roger-woo.yml","en-us/blog/authors/roger-woo.yml","en-us/blog/authors/roger-woo",{"_path":6604,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6605,"config":6611,"_id":6612,"_type":28,"title":6613,"_source":30,"_file":6614,"_stem":6615,"_extension":33},"/en-us/blog/authors/rohit-shambhuni",{"role":6606,"name":6607,"config":6608},"Staff Application Security Engineer"," Rohit Shambhuni",{"headshot":6609,"ctfId":6610},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661924/Blog/Author%20Headshots/rohit.png","182K42TpkCqjIAwBkZxTmD",{"template":743},"content:en-us:blog:authors:rohit-shambhuni.yml","Rohit Shambhuni","en-us/blog/authors/rohit-shambhuni.yml","en-us/blog/authors/rohit-shambhuni",{"_path":6617,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6618,"config":6622,"_id":6623,"_type":28,"title":6619,"_source":30,"_file":6624,"_stem":6625,"_extension":33},"/en-us/blog/authors/roman-kuba",{"name":6619,"config":6620},"Roman Kuba",{"headshot":7,"ctfId":6621},"rkuba",{"template":743},"content:en-us:blog:authors:roman-kuba.yml","en-us/blog/authors/roman-kuba.yml","en-us/blog/authors/roman-kuba",{"_path":6627,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6628,"config":6633,"_id":6634,"_type":28,"title":6635,"_source":30,"_file":6636,"_stem":6637,"_extension":33},"/en-us/blog/authors/romuald-atchad",{"name":6629,"config":6630},"Romuald Atchadé",{"headshot":6631,"ctfId":6632},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2",{"template":743},"content:en-us:blog:authors:romuald-atchad.yml","Romuald Atchad","en-us/blog/authors/romuald-atchad.yml","en-us/blog/authors/romuald-atchad",{"_path":6639,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6640,"config":6644,"_id":6645,"_type":28,"title":6646,"_source":30,"_file":6647,"_stem":6648,"_extension":33},"/en-us/blog/authors/ronald-van-zon",{"name":6641,"config":6642},"Ronald van Zon",{"headshot":7,"ctfId":6643},"Eagllus",{"template":743},"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":6650,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6651,"config":6655,"_id":6656,"_type":28,"title":6652,"_source":30,"_file":6657,"_stem":6658,"_extension":33},"/en-us/blog/authors/ross-fuhrman",{"name":6652,"config":6653},"Ross Fuhrman",{"headshot":774,"ctfId":6654},"7dkuWBvIc0AQanUclt3pOk",{"template":743},"content:en-us:blog:authors:ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman.yml","en-us/blog/authors/ross-fuhrman",{"_path":6660,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6661,"config":6665,"_id":6666,"_type":28,"title":6662,"_source":30,"_file":6667,"_stem":6668,"_extension":33},"/en-us/blog/authors/roy-taragan",{"name":6662,"config":6663},"Roy Taragan",{"headshot":774,"ctfId":6664},"3pnwP9gqELfda3DCOQJQCL",{"template":743},"content:en-us:blog:authors:roy-taragan.yml","en-us/blog/authors/roy-taragan.yml","en-us/blog/authors/roy-taragan",{"_path":6670,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6671,"config":6676,"_id":6677,"_type":28,"title":6672,"_source":30,"_file":6678,"_stem":6679,"_extension":33},"/en-us/blog/authors/ruby-nealon",{"name":6672,"config":6673},"Ruby Nealon",{"headshot":6674,"ctfId":6675},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661883/Blog/Author%20Headshots/ruby_nealon_headshot.png","4N7iu9ue1QnoovueNm4S7r",{"template":743},"content:en-us:blog:authors:ruby-nealon.yml","en-us/blog/authors/ruby-nealon.yml","en-us/blog/authors/ruby-nealon",{"_path":6681,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6682,"config":6686,"_id":6687,"_type":28,"title":6683,"_source":30,"_file":6688,"_stem":6689,"_extension":33},"/en-us/blog/authors/rupert-douglas",{"name":6683,"config":6684},"Rupert Douglas",{"headshot":7,"ctfId":6685},"rdouglasgitlab",{"template":743},"content:en-us:blog:authors:rupert-douglas.yml","en-us/blog/authors/rupert-douglas.yml","en-us/blog/authors/rupert-douglas",{"_path":6691,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6692,"config":6696,"_id":6697,"_type":28,"title":6698,"_source":30,"_file":6699,"_stem":6700,"_extension":33},"/en-us/blog/authors/rusty-weston-guest-contributor",{"name":6693,"config":6694},"Rusty Weston, Guest Contributor",{"headshot":7,"ctfId":6695},"3PShSyZ6DJXnkDa5xrQs7V",{"template":743},"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":6702,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6703,"config":6708,"_id":6709,"_type":28,"title":6704,"_source":30,"_file":6710,"_stem":6711,"_extension":33},"/en-us/blog/authors/rutvik-shah",{"name":6704,"config":6705},"Rutvik Shah",{"headshot":6706,"ctfId":6707},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661843/Blog/Author%20Headshots/rutvik_shah_headshot.png","6co92rUBTbWcyV3EW23iEx",{"template":743},"content:en-us:blog:authors:rutvik-shah.yml","en-us/blog/authors/rutvik-shah.yml","en-us/blog/authors/rutvik-shah",{"_path":6713,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6714,"config":6719,"_id":6720,"_type":28,"title":6715,"_source":30,"_file":6721,"_stem":6722,"_extension":33},"/en-us/blog/authors/sacha-guyon",{"name":6715,"config":6716},"Sacha Guyon",{"headshot":6717,"ctfId":6718},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu",{"template":743},"content:en-us:blog:authors:sacha-guyon.yml","en-us/blog/authors/sacha-guyon.yml","en-us/blog/authors/sacha-guyon",{"_path":6724,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6725,"config":6730,"_id":6731,"_type":28,"title":6726,"_source":30,"_file":6732,"_stem":6733,"_extension":33},"/en-us/blog/authors/safwan-ahmed",{"name":6726,"config":6727},"Safwan Ahmed",{"headshot":6728,"ctfId":6729},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667732/Blog/Author%20Headshots/safwan_headshot.png","2Nw8KPOPpRBiBrVxMIaEn3",{"template":743},"content:en-us:blog:authors:safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed.yml","en-us/blog/authors/safwan-ahmed",{"_path":6735,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6736,"config":6740,"_id":6742,"_type":28,"title":6737,"_source":30,"_file":6743,"_stem":6744,"_extension":33},"/en-us/blog/authors/salahddine-aberkan",{"name":6737,"config":6738},"Salahddine Aberkan",{"headshot":6739},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750434234/comdtybiix8pjqdpsxow.png",{"template":743,"gitlabHandle":6741},"saberkan","content:en-us:blog:authors:salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan.yml","en-us/blog/authors/salahddine-aberkan",{"_path":6746,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6747,"config":6752,"_id":6753,"_type":28,"title":6748,"_source":30,"_file":6754,"_stem":6755,"_extension":33},"/en-us/blog/authors/salman-ladha",{"name":6748,"config":6749},"Salman Ladha",{"headshot":6750,"ctfId":6751},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662937/Blog/Author%20Headshots/salman_ladha_headshot.png","2AYyG99S9PBB8PQIJ6aKuq",{"template":743},"content:en-us:blog:authors:salman-ladha.yml","en-us/blog/authors/salman-ladha.yml","en-us/blog/authors/salman-ladha",{"_path":6757,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6758,"config":6763,"_id":6764,"_type":28,"title":6759,"_source":30,"_file":6765,"_stem":6766,"_extension":33},"/en-us/blog/authors/sam-beckham",{"name":6759,"config":6760},"Sam Beckham",{"headshot":6761,"ctfId":6762},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678740/Blog/Author%20Headshots/samdbeckham-headshot.jpg","samdbeckham",{"template":743},"content:en-us:blog:authors:sam-beckham.yml","en-us/blog/authors/sam-beckham.yml","en-us/blog/authors/sam-beckham",{"_path":6768,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6769,"config":6774,"_id":6775,"_type":28,"title":6770,"_source":30,"_file":6776,"_stem":6777,"_extension":33},"/en-us/blog/authors/sam-kerr",{"name":6770,"config":6771},"Sam Kerr",{"headshot":6772,"ctfId":6773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668841/Blog/Author%20Headshots/stkerr-headshot.jpg","stkerr",{"template":743},"content:en-us:blog:authors:sam-kerr.yml","en-us/blog/authors/sam-kerr.yml","en-us/blog/authors/sam-kerr",{"_path":6779,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6780,"config":6785,"_id":6786,"_type":28,"title":6781,"_source":30,"_file":6787,"_stem":6788,"_extension":33},"/en-us/blog/authors/sam-morris",{"name":6781,"config":6782},"Sam Morris",{"headshot":6783,"ctfId":6784},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":743},"content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":6790,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6791,"config":6796,"_id":6797,"_type":28,"title":6792,"_source":30,"_file":6798,"_stem":6799,"_extension":33},"/en-us/blog/authors/sam-white",{"name":6792,"config":6793},"Sam White",{"headshot":6794,"ctfId":6795},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682227/Blog/Author%20Headshots/sam.png","samwhite",{"template":743},"content:en-us:blog:authors:sam-white.yml","en-us/blog/authors/sam-white.yml","en-us/blog/authors/sam-white",{"_path":6801,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6802,"config":6807,"_id":6808,"_type":28,"title":6803,"_source":30,"_file":6809,"_stem":6810,"_extension":33},"/en-us/blog/authors/sam-wiskow",{"name":6803,"config":6804},"Sam Wiskow",{"headshot":6805,"ctfId":6806},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659433/Blog/Author%20Headshots/swiskow-headshot.jpg","swiskow",{"template":743},"content:en-us:blog:authors:sam-wiskow.yml","en-us/blog/authors/sam-wiskow.yml","en-us/blog/authors/sam-wiskow",{"_path":6812,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6813,"config":6818,"_id":6819,"_type":28,"title":6814,"_source":30,"_file":6820,"_stem":6821,"_extension":33},"/en-us/blog/authors/samantha-lee",{"name":6814,"config":6815},"Samantha Lee",{"headshot":6816,"ctfId":6817},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679833/Blog/Author%20Headshots/slee24-headshot.png","slee24",{"template":743},"content:en-us:blog:authors:samantha-lee.yml","en-us/blog/authors/samantha-lee.yml","en-us/blog/authors/samantha-lee",{"_path":6823,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6824,"config":6828,"_id":6829,"_type":28,"title":6830,"_source":30,"_file":6831,"_stem":6832,"_extension":33},"/en-us/blog/authors/sameer-farooqui-octoml",{"name":6825,"config":6826},"Sameer Farooqui, OctoML",{"headshot":774,"ctfId":6827},"Sameer-Farooqui-OctoML",{"template":743},"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":6834,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6835,"config":6840,"_id":6841,"_type":28,"title":6836,"_source":30,"_file":6842,"_stem":6843,"_extension":33},"/en-us/blog/authors/sameer-kamani",{"name":6836,"config":6837},"Sameer Kamani",{"headshot":6838,"ctfId":6839},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682359/Blog/Author%20Headshots/skamani-headshot.jpg","skamani",{"template":743},"content:en-us:blog:authors:sameer-kamani.yml","en-us/blog/authors/sameer-kamani.yml","en-us/blog/authors/sameer-kamani",{"_path":6845,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6846,"config":6851,"_id":6852,"_type":28,"title":6847,"_source":30,"_file":6853,"_stem":6854,"_extension":33},"/en-us/blog/authors/samer-akkoub",{"name":6847,"config":6848},"Samer Akkoub",{"headshot":6849,"ctfId":6850},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664173/Blog/Author%20Headshots/SamerAkkoub.png","BekAzK0RFux30pt6dvtWh",{"template":743},"content:en-us:blog:authors:samer-akkoub.yml","en-us/blog/authors/samer-akkoub.yml","en-us/blog/authors/samer-akkoub",{"_path":6856,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6857,"config":6861,"_id":6862,"_type":28,"title":6858,"_source":30,"_file":6863,"_stem":6864,"_extension":33},"/en-us/blog/authors/samuel-alfageme",{"name":6858,"config":6859},"Samuel Alfageme",{"headshot":774,"ctfId":6860},"Samuel-Alfageme",{"template":743},"content:en-us:blog:authors:samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme.yml","en-us/blog/authors/samuel-alfageme",{"_path":6866,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6867,"config":6874,"_id":6875,"_type":28,"title":6869,"_source":30,"_file":6876,"_stem":6877,"_extension":33},"/en-us/blog/authors/sandra-gittlen",{"role":6868,"name":6869,"config":6870},"Managing Editor, GitLab Blog","Sandra Gittlen",{"headshot":6871,"linkedin":6872,"ctfId":6873},"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":743},"content:en-us:blog:authors:sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen.yml","en-us/blog/authors/sandra-gittlen",{"_path":6879,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6880,"config":6884,"_id":6885,"_type":28,"title":6881,"_source":30,"_file":6886,"_stem":6887,"_extension":33},"/en-us/blog/authors/sandra-salerno",{"name":6881,"config":6882},"Sandra Salerno",{"headshot":774,"ctfId":6883},"Sandra-Salerno",{"template":743},"content:en-us:blog:authors:sandra-salerno.yml","en-us/blog/authors/sandra-salerno.yml","en-us/blog/authors/sandra-salerno",{"_path":6889,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6890,"config":6894,"_id":6895,"_type":28,"title":6896,"_source":30,"_file":6897,"_stem":6898,"_extension":33},"/en-us/blog/authors/santiago-ruano-rincn",{"name":6891,"config":6892},"Santiago Ruano Rincón",{"headshot":7,"ctfId":6893},"topodelapradera",{"template":743},"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":6900,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6901,"config":6904,"_id":6905,"_type":28,"title":18,"_source":30,"_file":6906,"_stem":6907,"_extension":33},"/en-us/blog/authors/sara-kassabian",{"name":18,"config":6902},{"headshot":7,"ctfId":6903},"skassabian",{"template":743},"content:en-us:blog:authors:sara-kassabian.yml","en-us/blog/authors/sara-kassabian.yml","en-us/blog/authors/sara-kassabian",{"_path":6909,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6910,"config":6915,"_id":6916,"_type":28,"title":6911,"_source":30,"_file":6917,"_stem":6918,"_extension":33},"/en-us/blog/authors/sara-meadzinger",{"name":6911,"config":6912},"Sara Meadzinger",{"headshot":6913,"ctfId":6914},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750713474/ucbe3kgq9cylttuqy5lt.png","53lD8Rb05nXLHefXurjdvI",{"template":743},"content:en-us:blog:authors:sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger.yml","en-us/blog/authors/sara-meadzinger",{"_path":6920,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6921,"config":6925,"_id":6926,"_type":28,"title":6922,"_source":30,"_file":6927,"_stem":6928,"_extension":33},"/en-us/blog/authors/sarah-daily",{"name":6922,"config":6923},"Sarah Daily",{"headshot":774,"ctfId":6924},"2YhqRPG08HF0FCF1l7oeZL",{"template":743},"content:en-us:blog:authors:sarah-daily.yml","en-us/blog/authors/sarah-daily.yml","en-us/blog/authors/sarah-daily",{"_path":6930,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6931,"config":6935,"_id":6936,"_type":28,"title":6932,"_source":30,"_file":6937,"_stem":6938,"_extension":33},"/en-us/blog/authors/sarah-german",{"name":6932,"config":6933},"Sarah German",{"headshot":6934,"ctfId":4592},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755639969/jgc97wpptft48qsbrla7.jpg",{"template":743},"content:en-us:blog:authors:sarah-german.yml","en-us/blog/authors/sarah-german.yml","en-us/blog/authors/sarah-german",{"_path":6940,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6941,"config":6946,"_id":6947,"_type":28,"title":6942,"_source":30,"_file":6948,"_stem":6949,"_extension":33},"/en-us/blog/authors/sarah-matthies",{"name":6942,"config":6943},"Sarah Matthies",{"headshot":6944,"ctfId":6945},"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":743},"content:en-us:blog:authors:sarah-matthies.yml","en-us/blog/authors/sarah-matthies.yml","en-us/blog/authors/sarah-matthies",{"_path":6951,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6952,"config":6956,"_id":6957,"_type":28,"title":6958,"_source":30,"_file":6959,"_stem":6960,"_extension":33},"/en-us/blog/authors/sarah-odonnell",{"name":6953,"config":6954},"Sarah O’Donnell",{"headshot":7,"ctfId":6955},"sarahod",{"template":743},"content:en-us:blog:authors:sarah-odonnell.yml","Sarah Odonnell","en-us/blog/authors/sarah-odonnell.yml","en-us/blog/authors/sarah-odonnell",{"_path":6962,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6963,"config":6968,"_id":6969,"_type":28,"title":6964,"_source":30,"_file":6970,"_stem":6971,"_extension":33},"/en-us/blog/authors/sarah-waldner",{"name":6964,"config":6965},"Sarah Waldner",{"headshot":6966,"ctfId":6967},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667588/Blog/Author%20Headshots/sarahwaldner-headshot.png","sarahwaldner",{"template":743},"content:en-us:blog:authors:sarah-waldner.yml","en-us/blog/authors/sarah-waldner.yml","en-us/blog/authors/sarah-waldner",{"_path":6973,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6974,"config":6978,"_id":6979,"_type":28,"title":6975,"_source":30,"_file":6980,"_stem":6981,"_extension":33},"/en-us/blog/authors/sarrah-vesselov",{"name":6975,"config":6976},"Sarrah Vesselov",{"headshot":7,"ctfId":6977},"sarrahvesselov",{"template":743},"content:en-us:blog:authors:sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov.yml","en-us/blog/authors/sarrah-vesselov",{"_path":6983,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6984,"config":6988,"_id":6989,"_type":28,"title":6985,"_source":30,"_file":6990,"_stem":6991,"_extension":33},"/en-us/blog/authors/sarup-banskota",{"name":6985,"config":6986},"Sarup Banskota",{"headshot":774,"ctfId":6987},"3sY2Ef0sXxaJKCmArdSLsA",{"template":743},"content:en-us:blog:authors:sarup-banskota.yml","en-us/blog/authors/sarup-banskota.yml","en-us/blog/authors/sarup-banskota",{"_path":6993,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":6994,"config":6999,"_id":7000,"_type":28,"title":6995,"_source":30,"_file":7001,"_stem":7002,"_extension":33},"/en-us/blog/authors/sascha-eggenberger",{"name":6995,"config":6996},"Sascha Eggenberger",{"headshot":6997,"ctfId":6998},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749666141/Blog/Author%20Headshots/sascha_eggenberger_headshot.png","O6MskfzTlsw7vLqbd86bX",{"template":743},"content:en-us:blog:authors:sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger.yml","en-us/blog/authors/sascha-eggenberger",{"_path":7004,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7005,"config":7009,"_id":7010,"_type":28,"title":7006,"_source":30,"_file":7011,"_stem":7012,"_extension":33},"/en-us/blog/authors/sasha-bannister",{"name":7006,"config":7007},"Sasha Bannister",{"headshot":774,"ctfId":7008},"Sasha-Bannister",{"template":743},"content:en-us:blog:authors:sasha-bannister.yml","en-us/blog/authors/sasha-bannister.yml","en-us/blog/authors/sasha-bannister",{"_path":7014,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7015,"config":7020,"_id":7021,"_type":28,"title":7016,"_source":30,"_file":7022,"_stem":7023,"_extension":33},"/en-us/blog/authors/sasha-gazlay",{"name":7016,"config":7017},"Sasha Gazlay",{"headshot":7018,"ctfId":7019},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663565/Blog/Author%20Headshots/sasha_gazlay_headshot.png","77Cb6RM2x7PjvfDc64pZxa",{"template":743},"content:en-us:blog:authors:sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay.yml","en-us/blog/authors/sasha-gazlay",{"_path":7025,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7026,"config":7031,"_id":7032,"_type":28,"title":7027,"_source":30,"_file":7033,"_stem":7034,"_extension":33},"/en-us/blog/authors/saumya-upadhyaya",{"name":7027,"config":7028},"Saumya Upadhyaya",{"headshot":7029,"ctfId":7030},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665624/Blog/Author%20Headshots/supadhyaya-headshot.jpg","4aP7wXPoc3veAEWbngqxKR",{"template":743},"content:en-us:blog:authors:saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya.yml","en-us/blog/authors/saumya-upadhyaya",{"_path":7036,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7037,"config":7042,"_id":7043,"_type":28,"title":7044,"_source":30,"_file":7045,"_stem":7046,"_extension":33},"/en-us/blog/authors/scott-de-jonge",{"name":7038,"config":7039},"Scott de Jonge",{"headshot":7040,"ctfId":7041},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682764/Blog/Author%20Headshots/sdejonge-headshot.jpg","sdejonge",{"template":743},"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":7048,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7049,"config":7054,"_id":7055,"_type":28,"title":7050,"_source":30,"_file":7056,"_stem":7057,"_extension":33},"/en-us/blog/authors/scott-hampton",{"name":7050,"config":7051},"Scott Hampton",{"headshot":7052,"ctfId":7053},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682259/Blog/Author%20Headshots/shampton-headshot.png","shampton",{"template":743},"content:en-us:blog:authors:scott-hampton.yml","en-us/blog/authors/scott-hampton.yml","en-us/blog/authors/scott-hampton",{"_path":7059,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7060,"config":7064,"_id":7065,"_type":28,"title":7061,"_source":30,"_file":7066,"_stem":7067,"_extension":33},"/en-us/blog/authors/scott-williamson",{"name":7061,"config":7062},"Scott Williamson",{"headshot":7,"ctfId":7063},"sfwgitlab",{"template":743},"content:en-us:blog:authors:scott-williamson.yml","en-us/blog/authors/scott-williamson.yml","en-us/blog/authors/scott-williamson",{"_path":7069,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7070,"config":7075,"_id":7076,"_type":28,"title":7071,"_source":30,"_file":7077,"_stem":7078,"_extension":33},"/en-us/blog/authors/sean-arnold",{"name":7071,"config":7072},"Sean Arnold",{"headshot":7073,"ctfId":7074},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681647/Blog/Author%20Headshots/seanarnold-headshot.jpg","seanarnold",{"template":743},"content:en-us:blog:authors:sean-arnold.yml","en-us/blog/authors/sean-arnold.yml","en-us/blog/authors/sean-arnold",{"_path":7080,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7081,"config":7085,"_id":7086,"_type":28,"title":7087,"_source":30,"_file":7088,"_stem":7089,"_extension":33},"/en-us/blog/authors/sean-mcgivern",{"name":7082,"config":7083},"Sean McGivern",{"headshot":774,"ctfId":7084},"Sean-McGivern",{"template":743},"content:en-us:blog:authors:sean-mcgivern.yml","Sean Mcgivern","en-us/blog/authors/sean-mcgivern.yml","en-us/blog/authors/sean-mcgivern",{"_path":7091,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7092,"config":7096,"_id":7097,"_type":28,"title":7093,"_source":30,"_file":7098,"_stem":7099,"_extension":33},"/en-us/blog/authors/sean-packham",{"name":7093,"config":7094},"Sean Packham",{"headshot":774,"ctfId":7095},"Sean-Packham",{"template":743},"content:en-us:blog:authors:sean-packham.yml","en-us/blog/authors/sean-packham.yml","en-us/blog/authors/sean-packham",{"_path":7101,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7102,"config":7106,"_id":7107,"_type":28,"title":7103,"_source":30,"_file":7108,"_stem":7109,"_extension":33},"/en-us/blog/authors/sebastian-latacz",{"name":7103,"config":7104},"Sebastian Latacz",{"headshot":774,"ctfId":7105},"4DoWSQV719HEWt2rbDIoQR",{"template":743},"content:en-us:blog:authors:sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz.yml","en-us/blog/authors/sebastian-latacz",{"_path":7111,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7112,"config":7116,"_id":7117,"_type":28,"title":7113,"_source":30,"_file":7118,"_stem":7119,"_extension":33},"/en-us/blog/authors/sergey-nuzhdin",{"name":7113,"config":7114},"Sergey Nuzhdin",{"headshot":774,"ctfId":7115},"Sergey-Nuzhdin",{"template":743},"content:en-us:blog:authors:sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin.yml","en-us/blog/authors/sergey-nuzhdin",{"_path":7121,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7122,"config":7126,"_id":7127,"_type":28,"title":7123,"_source":30,"_file":7128,"_stem":7129,"_extension":33},"/en-us/blog/authors/seth-berger",{"name":7123,"config":7124},"Seth Berger",{"headshot":7,"ctfId":7125},"sethgitlab",{"template":743},"content:en-us:blog:authors:seth-berger.yml","en-us/blog/authors/seth-berger.yml","en-us/blog/authors/seth-berger",{"_path":7131,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7132,"config":7136,"_id":7137,"_type":28,"title":7133,"_source":30,"_file":7138,"_stem":7139,"_extension":33},"/en-us/blog/authors/shane-rice",{"name":7133,"config":7134},"Shane Rice",{"headshot":774,"ctfId":7135},"3uVL7xMsEf13JzpbXYTCbM",{"template":743},"content:en-us:blog:authors:shane-rice.yml","en-us/blog/authors/shane-rice.yml","en-us/blog/authors/shane-rice",{"_path":7141,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7142,"config":7147,"_id":7148,"_type":28,"title":7143,"_source":30,"_file":7149,"_stem":7150,"_extension":33},"/en-us/blog/authors/sharon-gaudin",{"name":7143,"config":7144},"Sharon Gaudin",{"headshot":7145,"ctfId":7146},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663767/Blog/Author%20Headshots/sharongaudinheadshot.png","sgaudin",{"template":743},"content:en-us:blog:authors:sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin.yml","en-us/blog/authors/sharon-gaudin",{"_path":7152,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7153,"config":7157,"_id":7158,"_type":28,"title":7154,"_source":30,"_file":7159,"_stem":7160,"_extension":33},"/en-us/blog/authors/shawn-winters",{"name":7154,"config":7155},"Shawn Winters",{"headshot":7,"ctfId":7156},"ShawnWinters",{"template":743},"content:en-us:blog:authors:shawn-winters.yml","en-us/blog/authors/shawn-winters.yml","en-us/blog/authors/shawn-winters",{"_path":7162,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7163,"config":7167,"_id":7168,"_type":28,"title":7169,"_source":30,"_file":7170,"_stem":7171,"_extension":33},"/en-us/blog/authors/sherida-mcmullan",{"name":7164,"config":7165},"Sherida McMullan",{"headshot":774,"ctfId":7166},"BpqiUFXm6aUxjXJdAeKuL",{"template":743},"content:en-us:blog:authors:sherida-mcmullan.yml","Sherida Mcmullan","en-us/blog/authors/sherida-mcmullan.yml","en-us/blog/authors/sherida-mcmullan",{"_path":7173,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7174,"config":7178,"_id":7179,"_type":28,"title":7175,"_source":30,"_file":7180,"_stem":7181,"_extension":33},"/en-us/blog/authors/shinya-maeda",{"name":7175,"config":7176},"Shinya Maeda",{"headshot":7,"ctfId":7177},"dosuken123",{"template":743},"content:en-us:blog:authors:shinya-maeda.yml","en-us/blog/authors/shinya-maeda.yml","en-us/blog/authors/shinya-maeda",{"_path":7183,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7184,"config":7189,"_id":7190,"_type":28,"title":7185,"_source":30,"_file":7191,"_stem":7192,"_extension":33},"/en-us/blog/authors/shrishti-choudhary",{"name":7185,"config":7186},"Shrishti Choudhary",{"headshot":7187,"ctfId":7188},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749671923/Blog/Author%20Headshots/shrishti.png","5tIiu8vyhWHEUi1tgQivzj",{"template":743},"content:en-us:blog:authors:shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary.yml","en-us/blog/authors/shrishti-choudhary",{"_path":7194,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7195,"config":7204,"_id":7205,"_type":28,"title":7197,"_source":30,"_file":7206,"_stem":7207,"_extension":33},"/en-us/blog/authors/sid-sijbrandij",{"role":7196,"name":7197,"bio":7198,"config":7199},"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":7200,"twitter":7201,"linkedin":7202,"ctfId":7203},"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":743},"content:en-us:blog:authors:sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij.yml","en-us/blog/authors/sid-sijbrandij",{"_path":7209,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7210,"config":7215,"_id":7216,"_type":28,"title":7211,"_source":30,"_file":7217,"_stem":7218,"_extension":33},"/en-us/blog/authors/siddharth-mathur",{"name":7211,"config":7212},"Siddharth Mathur",{"headshot":7213,"ctfId":7214},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682662/Blog/Author%20Headshots/smathur-headshot.png","smathur",{"template":743},"content:en-us:blog:authors:siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur.yml","en-us/blog/authors/siddharth-mathur",{"_path":7220,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7221,"config":7225,"_id":7226,"_type":28,"title":7222,"_source":30,"_file":7227,"_stem":7228,"_extension":33},"/en-us/blog/authors/simon-tarchichi",{"name":7222,"config":7223},"Simon Tarchichi",{"headshot":7,"ctfId":7224},"kartsims",{"template":743},"content:en-us:blog:authors:simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi.yml","en-us/blog/authors/simon-tarchichi",{"_path":7230,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7231,"config":7236,"_id":7237,"_type":28,"title":7232,"_source":30,"_file":7238,"_stem":7239,"_extension":33},"/en-us/blog/authors/sophia-manicor",{"name":7232,"config":7233},"Sophia Manicor",{"headshot":7234,"ctfId":7235},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665576/Blog/Author%20Headshots/sophie_manicor_headshot.png","79Msqcc9YZrC0IvTggfQ5y",{"template":743},"content:en-us:blog:authors:sophia-manicor.yml","en-us/blog/authors/sophia-manicor.yml","en-us/blog/authors/sophia-manicor",{"_path":7241,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7242,"config":7247,"_id":7248,"_type":28,"title":7243,"_source":30,"_file":7249,"_stem":7250,"_extension":33},"/en-us/blog/authors/sri-rangan",{"name":7243,"config":7244},"Sri Rangan",{"headshot":7245,"ctfId":7246},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665808/Blog/Author%20Headshots/sri19-headshot.jpg","sri19",{"template":743},"content:en-us:blog:authors:sri-rangan.yml","en-us/blog/authors/sri-rangan.yml","en-us/blog/authors/sri-rangan",{"_path":7252,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7253,"config":7258,"_id":7259,"_type":28,"title":7254,"_source":30,"_file":7260,"_stem":7261,"_extension":33},"/en-us/blog/authors/stacy-cline",{"name":7254,"config":7255},"Stacy Cline",{"headshot":7256,"ctfId":7257},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669909/Blog/Author%20Headshots/stacycline.jpg","5a2wvqC09jbT1kGMpVoNyg",{"template":743},"content:en-us:blog:authors:stacy-cline.yml","en-us/blog/authors/stacy-cline.yml","en-us/blog/authors/stacy-cline",{"_path":7263,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7264,"config":7269,"_id":7270,"_type":28,"title":7265,"_source":30,"_file":7271,"_stem":7272,"_extension":33},"/en-us/blog/authors/stan-hu",{"name":7265,"config":7266},"Stan Hu",{"headshot":7267,"ctfId":7268},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659504/Blog/Author%20Headshots/stanhu-headshot.jpg","stanhu",{"template":743},"content:en-us:blog:authors:stan-hu.yml","en-us/blog/authors/stan-hu.yml","en-us/blog/authors/stan-hu",{"_path":7274,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7275,"config":7279,"_id":7280,"_type":28,"title":7281,"_source":30,"_file":7282,"_stem":7283,"_extension":33},"/en-us/blog/authors/stephan-hochdrfer",{"name":7276,"config":7277},"Stephan Hochdörfer",{"headshot":774,"ctfId":7278},"Stephan-Hochdrfer",{"template":743},"content:en-us:blog:authors:stephan-hochdrfer.yml","Stephan Hochdrfer","en-us/blog/authors/stephan-hochdrfer.yml","en-us/blog/authors/stephan-hochdrfer",{"_path":7285,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7286,"config":7290,"_id":7291,"_type":28,"title":7287,"_source":30,"_file":7292,"_stem":7293,"_extension":33},"/en-us/blog/authors/stephanie-garza",{"name":7287,"config":7288},"Stephanie Garza",{"headshot":7,"ctfId":7289},"StephanieGarza",{"template":743},"content:en-us:blog:authors:stephanie-garza.yml","en-us/blog/authors/stephanie-garza.yml","en-us/blog/authors/stephanie-garza",{"_path":7295,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7296,"config":7300,"_id":7301,"_type":28,"title":7302,"_source":30,"_file":7303,"_stem":7304,"_extension":33},"/en-us/blog/authors/stephen-mcguinness",{"name":7297,"config":7298},"Stephen McGuinness",{"headshot":7,"ctfId":7299},"smcguinness1",{"template":743},"content:en-us:blog:authors:stephen-mcguinness.yml","Stephen Mcguinness","en-us/blog/authors/stephen-mcguinness.yml","en-us/blog/authors/stephen-mcguinness",{"_path":7306,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7307,"config":7312,"_id":7313,"_type":28,"title":7308,"_source":30,"_file":7314,"_stem":7315,"_extension":33},"/en-us/blog/authors/stephen-walters",{"name":7308,"config":7309},"Stephen Walters",{"headshot":7310,"ctfId":7311},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664996/Blog/Author%20Headshots/stephen_walters_gitlab.png","7uMrX0SDPVz1YkZnVqLmGm",{"template":743},"content:en-us:blog:authors:stephen-walters.yml","en-us/blog/authors/stephen-walters.yml","en-us/blog/authors/stephen-walters",{"_path":7317,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7318,"config":7323,"_id":7324,"_type":28,"title":7319,"_source":30,"_file":7325,"_stem":7326,"_extension":33},"/en-us/blog/authors/steve-abrams",{"name":7319,"config":7320},"Steve Abrams",{"headshot":7321,"ctfId":7322},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681809/Blog/Author%20Headshots/sabrams-headshot.png","sabrams",{"template":743},"content:en-us:blog:authors:steve-abrams.yml","en-us/blog/authors/steve-abrams.yml","en-us/blog/authors/steve-abrams",{"_path":7328,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7329,"config":7333,"_id":7334,"_type":28,"title":7330,"_source":30,"_file":7335,"_stem":7336,"_extension":33},"/en-us/blog/authors/steve-azzopardi",{"name":7330,"config":7331},"Steve Azzopardi",{"headshot":7,"ctfId":7332},"steveazz",{"template":743},"content:en-us:blog:authors:steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi.yml","en-us/blog/authors/steve-azzopardi",{"_path":7338,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7339,"config":7344,"_id":7345,"_type":28,"title":7340,"_source":30,"_file":7346,"_stem":7347,"_extension":33},"/en-us/blog/authors/steve-grossman",{"name":7340,"config":7341},"Steve Grossman",{"headshot":7342,"ctfId":7343},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682744/Blog/Author%20Headshots/Steevo-headshot.jpg","Steevo",{"template":743},"content:en-us:blog:authors:steve-grossman.yml","en-us/blog/authors/steve-grossman.yml","en-us/blog/authors/steve-grossman",{"_path":7349,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7350,"config":7354,"_id":7355,"_type":28,"title":7351,"_source":30,"_file":7356,"_stem":7357,"_extension":33},"/en-us/blog/authors/steve-ropa",{"name":7351,"config":7352},"Steve Ropa",{"headshot":774,"ctfId":7353},"Steve-Ropa",{"template":743},"content:en-us:blog:authors:steve-ropa.yml","en-us/blog/authors/steve-ropa.yml","en-us/blog/authors/steve-ropa",{"_path":7359,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7360,"config":7364,"_id":7365,"_type":28,"title":7361,"_source":30,"_file":7366,"_stem":7367,"_extension":33},"/en-us/blog/authors/steve-truong",{"name":7361,"config":7362},"Steve Truong",{"headshot":7,"ctfId":7363},"sttruong",{"template":743},"content:en-us:blog:authors:steve-truong.yml","en-us/blog/authors/steve-truong.yml","en-us/blog/authors/steve-truong",{"_path":7369,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7370,"config":7374,"_id":7375,"_type":28,"title":7371,"_source":30,"_file":7376,"_stem":7377,"_extension":33},"/en-us/blog/authors/steven-zinck",{"name":7371,"config":7372},"Steven Zinck",{"headshot":774,"ctfId":7373},"49JllsB7PFUrjj2Wi4Wa2O",{"template":743},"content:en-us:blog:authors:steven-zinck.yml","en-us/blog/authors/steven-zinck.yml","en-us/blog/authors/steven-zinck",{"_path":7379,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7380,"config":7384,"_id":7385,"_type":28,"title":7381,"_source":30,"_file":7386,"_stem":7387,"_extension":33},"/en-us/blog/authors/sunil-kowlgi",{"name":7381,"config":7382},"Sunil Kowlgi",{"headshot":774,"ctfId":7383},"Sunil-Kowlgi",{"template":743},"content:en-us:blog:authors:sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi.yml","en-us/blog/authors/sunil-kowlgi",{"_path":7389,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7390,"config":7394,"_id":7395,"_type":28,"title":7391,"_source":30,"_file":7396,"_stem":7397,"_extension":33},"/en-us/blog/authors/suri-patel",{"name":7391,"config":7392},"Suri Patel",{"headshot":774,"ctfId":7393},"suripatel",{"template":743},"content:en-us:blog:authors:suri-patel.yml","en-us/blog/authors/suri-patel.yml","en-us/blog/authors/suri-patel",{"_path":7399,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7400,"config":7405,"_id":7406,"_type":28,"title":7401,"_source":30,"_file":7407,"_stem":7408,"_extension":33},"/en-us/blog/authors/susan-tacker",{"name":7401,"config":7402},"Susan Tacker",{"headshot":7403,"ctfId":7404},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660253/Blog/Author%20Headshots/susantacker-headshot.jpg","6uxN75wAjT3afaKtVlr9GM",{"template":743},"content:en-us:blog:authors:susan-tacker.yml","en-us/blog/authors/susan-tacker.yml","en-us/blog/authors/susan-tacker",{"_path":7410,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7411,"config":7417,"_id":7418,"_type":28,"title":7412,"_source":30,"_file":7419,"_stem":7420,"_extension":33},"/en-us/blog/authors/susie-bitters",{"name":7412,"config":7413},"Susie Bitters",{"headshot":7414,"linkedin":7415,"ctfId":7416},"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":743},"content:en-us:blog:authors:susie-bitters.yml","en-us/blog/authors/susie-bitters.yml","en-us/blog/authors/susie-bitters",{"_path":7422,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7423,"config":7427,"_id":7428,"_type":28,"title":7424,"_source":30,"_file":7429,"_stem":7430,"_extension":33},"/en-us/blog/authors/suzanne-selhorn",{"name":7424,"config":7425},"Suzanne Selhorn",{"headshot":7426,"ctfId":4592},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1755616156/vboecuoyo8tjfdis7c5a.jpg",{"template":743},"content:en-us:blog:authors:suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn.yml","en-us/blog/authors/suzanne-selhorn",{"_path":7432,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7433,"config":7438,"_id":7439,"_type":28,"title":7434,"_source":30,"_file":7440,"_stem":7441,"_extension":33},"/en-us/blog/authors/tanuja-jayarama-raju",{"name":7434,"config":7435},"Tanuja Jayarama Raju",{"headshot":7436,"ctfId":7437},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662262/Blog/Author%20Headshots/tanuja_jayarama_raju_headshot.png","2Fssp8ttZw6Y78hzS15kMC",{"template":743},"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":7443,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7444,"config":7449,"_id":7450,"_type":28,"title":7445,"_source":30,"_file":7451,"_stem":7452,"_extension":33},"/en-us/blog/authors/taurie-davis",{"name":7445,"config":7446},"Taurie Davis",{"headshot":7447,"ctfId":7448},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667191/Blog/Author%20Headshots/tauriedavis-headshot.jpg","tauriedavis",{"template":743},"content:en-us:blog:authors:taurie-davis.yml","en-us/blog/authors/taurie-davis.yml","en-us/blog/authors/taurie-davis",{"_path":7454,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7455,"config":7460,"_id":7461,"_type":28,"title":7462,"_source":30,"_file":7463,"_stem":7464,"_extension":33},"/en-us/blog/authors/taylor-mccaslin",{"name":7456,"config":7457},"Taylor McCaslin",{"headshot":7458,"ctfId":7459},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667996/Blog/Author%20Headshots/tmccaslin-headshot.png","tmccaslin",{"template":743},"content:en-us:blog:authors:taylor-mccaslin.yml","Taylor Mccaslin","en-us/blog/authors/taylor-mccaslin.yml","en-us/blog/authors/taylor-mccaslin",{"_path":7466,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7467,"config":7471,"_id":7472,"_type":28,"title":7468,"_source":30,"_file":7473,"_stem":7474,"_extension":33},"/en-us/blog/authors/taylor-murphy",{"name":7468,"config":7469},"Taylor Murphy",{"headshot":7,"ctfId":7470},"tayloramurphy",{"template":743},"content:en-us:blog:authors:taylor-murphy.yml","en-us/blog/authors/taylor-murphy.yml","en-us/blog/authors/taylor-murphy",{"_path":7476,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7477,"config":7482,"_id":7483,"_type":28,"title":7478,"_source":30,"_file":7484,"_stem":7485,"_extension":33},"/en-us/blog/authors/ted-gieschen",{"name":7478,"config":7479},"Ted Gieschen",{"headshot":7480,"ctfId":7481},"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":743},"content:en-us:blog:authors:ted-gieschen.yml","en-us/blog/authors/ted-gieschen.yml","en-us/blog/authors/ted-gieschen",{"_path":7487,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7488,"config":7492,"_id":7493,"_type":28,"title":7489,"_source":30,"_file":7494,"_stem":7495,"_extension":33},"/en-us/blog/authors/thao-yeager",{"name":7489,"config":7490},"Thao Yeager",{"headshot":7,"ctfId":7491},"thaoyeager",{"template":743},"content:en-us:blog:authors:thao-yeager.yml","en-us/blog/authors/thao-yeager.yml","en-us/blog/authors/thao-yeager",{"_path":7497,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7498,"config":7503,"_id":7504,"_type":28,"title":7505,"_source":30,"_file":7506,"_stem":7507,"_extension":33},"/en-us/blog/authors/thiago-figueir",{"name":7499,"config":7500},"Thiago Figueiró",{"headshot":7501,"ctfId":7502},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667091/Blog/Author%20Headshots/thiagocsf-headshot.jpg","thiagocsf",{"template":743},"content:en-us:blog:authors:thiago-figueir.yml","Thiago Figueir","en-us/blog/authors/thiago-figueir.yml","en-us/blog/authors/thiago-figueir",{"_path":7509,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7510,"config":7515,"_id":7516,"_type":28,"title":7511,"_source":30,"_file":7517,"_stem":7518,"_extension":33},"/en-us/blog/authors/thong-kuah",{"name":7511,"config":7512},"Thong Kuah",{"headshot":7513,"ctfId":7514},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667179/Blog/Author%20Headshots/tkuah-headshot.jpg","tkuah",{"template":743},"content:en-us:blog:authors:thong-kuah.yml","en-us/blog/authors/thong-kuah.yml","en-us/blog/authors/thong-kuah",{"_path":7520,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7521,"config":7525,"_id":7526,"_type":28,"title":7522,"_source":30,"_file":7527,"_stem":7528,"_extension":33},"/en-us/blog/authors/tim-davis",{"name":7522,"config":7523},"Tim Davis",{"headshot":774,"ctfId":7524},"6PksqjEtq1Y8goFUvAUcIn",{"template":743},"content:en-us:blog:authors:tim-davis.yml","en-us/blog/authors/tim-davis.yml","en-us/blog/authors/tim-davis",{"_path":7530,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7531,"config":7535,"_id":7536,"_type":28,"title":7532,"_source":30,"_file":7537,"_stem":7538,"_extension":33},"/en-us/blog/authors/tim-lehnen",{"name":7532,"config":7533},"Tim Lehnen",{"headshot":7,"ctfId":7534},"hestenet",{"template":743},"content:en-us:blog:authors:tim-lehnen.yml","en-us/blog/authors/tim-lehnen.yml","en-us/blog/authors/tim-lehnen",{"_path":7540,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7541,"config":7546,"_id":7547,"_type":28,"title":7542,"_source":30,"_file":7548,"_stem":7549,"_extension":33},"/en-us/blog/authors/tim-rizzi",{"name":7542,"config":7543},"Tim Rizzi",{"headshot":7544,"ctfId":7545},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi",{"template":743},"content:en-us:blog:authors:tim-rizzi.yml","en-us/blog/authors/tim-rizzi.yml","en-us/blog/authors/tim-rizzi",{"_path":7551,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7552,"config":7556,"_id":7558,"_type":28,"title":7553,"_source":30,"_file":7559,"_stem":7560,"_extension":33},"/en-us/blog/authors/tim-zallmann",{"name":7553,"config":7554},"Tim Zallmann",{"headshot":7555},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1759175957/ddfyzux6oosrseryb4pg.png",{"template":743,"gitlabHandle":7557},"timzallmann","content:en-us:blog:authors:tim-zallmann.yml","en-us/blog/authors/tim-zallmann.yml","en-us/blog/authors/tim-zallmann",{"_path":7562,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7563,"config":7567,"_id":7568,"_type":28,"title":7564,"_source":30,"_file":7569,"_stem":7570,"_extension":33},"/en-us/blog/authors/tina-sturgis",{"name":7564,"config":7565},"Tina Sturgis",{"headshot":7,"ctfId":7566},"TinaS",{"template":743},"content:en-us:blog:authors:tina-sturgis.yml","en-us/blog/authors/tina-sturgis.yml","en-us/blog/authors/tina-sturgis",{"_path":7572,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7573,"config":7577,"_id":7578,"_type":28,"title":7579,"_source":30,"_file":7580,"_stem":7581,"_extension":33},"/en-us/blog/authors/tobias-gnther",{"name":7574,"config":7575},"Tobias Günther",{"headshot":774,"ctfId":7576},"Tobias-Gnther",{"template":743},"content:en-us:blog:authors:tobias-gnther.yml","Tobias Gnther","en-us/blog/authors/tobias-gnther.yml","en-us/blog/authors/tobias-gnther",{"_path":7583,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7584,"config":7588,"_id":7589,"_type":28,"title":7585,"_source":30,"_file":7590,"_stem":7591,"_extension":33},"/en-us/blog/authors/todd-barr",{"name":7585,"config":7586},"Todd Barr",{"headshot":7,"ctfId":7587},"twbarr",{"template":743},"content:en-us:blog:authors:todd-barr.yml","en-us/blog/authors/todd-barr.yml","en-us/blog/authors/todd-barr",{"_path":7593,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7594,"config":7598,"_id":7599,"_type":28,"title":7595,"_source":30,"_file":7600,"_stem":7601,"_extension":33},"/en-us/blog/authors/tom-cooney",{"name":7595,"config":7596},"Tom Cooney",{"headshot":7,"ctfId":7597},"tomcooney",{"template":743},"content:en-us:blog:authors:tom-cooney.yml","en-us/blog/authors/tom-cooney.yml","en-us/blog/authors/tom-cooney",{"_path":7603,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7604,"config":7609,"_id":7610,"_type":28,"title":7605,"_source":30,"_file":7611,"_stem":7612,"_extension":33},"/en-us/blog/authors/tomas-vik",{"name":7605,"config":7606},"Tomas Vik",{"headshot":7607,"ctfId":7608},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681785/Blog/Author%20Headshots/viktomas-headshot.jpg","viktomas",{"template":743},"content:en-us:blog:authors:tomas-vik.yml","en-us/blog/authors/tomas-vik.yml","en-us/blog/authors/tomas-vik",{"_path":7614,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7615,"config":7620,"_id":7621,"_type":28,"title":7616,"_source":30,"_file":7622,"_stem":7623,"_extension":33},"/en-us/blog/authors/tomasz-maczukin",{"name":7616,"config":7617},"Tomasz Maczukin",{"headshot":7618,"ctfId":7619},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682116/Blog/Author%20Headshots/tmaczukin-headshot.jpg","tmaczukin",{"template":743},"content:en-us:blog:authors:tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin.yml","en-us/blog/authors/tomasz-maczukin",{"_path":7625,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7626,"config":7631,"_id":7632,"_type":28,"title":7627,"_source":30,"_file":7633,"_stem":7634,"_extension":33},"/en-us/blog/authors/toon-claes",{"name":7627,"config":7628},"Toon Claes",{"headshot":7629,"ctfId":7630},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663082/Blog/Author%20Headshots/toon_claes_headshot.png","toon",{"template":743},"content:en-us:blog:authors:toon-claes.yml","en-us/blog/authors/toon-claes.yml","en-us/blog/authors/toon-claes",{"_path":7636,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7637,"config":7642,"_id":7643,"_type":28,"title":7638,"_source":30,"_file":7644,"_stem":7645,"_extension":33},"/en-us/blog/authors/torsten-linz",{"name":7638,"config":7639},"Torsten Linz",{"headshot":7640,"ctfId":7641},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658907/Blog/Author%20Headshots/tlinz-headshot.jpg","tlinz",{"template":743},"content:en-us:blog:authors:torsten-linz.yml","en-us/blog/authors/torsten-linz.yml","en-us/blog/authors/torsten-linz",{"_path":7647,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7648,"config":7652,"_id":7653,"_type":28,"title":7649,"_source":30,"_file":7654,"_stem":7655,"_extension":33},"/en-us/blog/authors/trevor-knudsen",{"name":7649,"config":7650},"Trevor Knudsen",{"headshot":7,"ctfId":7651},"Tknudsen",{"template":743},"content:en-us:blog:authors:trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen.yml","en-us/blog/authors/trevor-knudsen",{"_path":7657,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7658,"config":7663,"_id":7664,"_type":28,"title":7659,"_source":30,"_file":7665,"_stem":7666,"_extension":33},"/en-us/blog/authors/tristan-read",{"name":7659,"config":7660},"Tristan Read",{"headshot":7661,"ctfId":7662},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679131/Blog/Author%20Headshots/tristan.png","tristanread",{"template":743},"content:en-us:blog:authors:tristan-read.yml","en-us/blog/authors/tristan-read.yml","en-us/blog/authors/tristan-read",{"_path":7668,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7669,"config":7674,"_id":7675,"_type":28,"title":7670,"_source":30,"_file":7676,"_stem":7677,"_extension":33},"/en-us/blog/authors/tsukasa-komatsubara",{"name":7670,"config":7671},"Tsukasa Komatsubara",{"headshot":7672,"ctfId":7673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659784/Blog/Author%20Headshots/gitlab_tsukasa.jpg","31YQLiBRrJPn35BBhY69ly",{"template":743},"content:en-us:blog:authors:tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara.yml","en-us/blog/authors/tsukasa-komatsubara",{"_path":7679,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7680,"config":7684,"_id":7685,"_type":28,"title":7681,"_source":30,"_file":7686,"_stem":7687,"_extension":33},"/en-us/blog/authors/tsvi-zandany",{"name":7681,"config":7682},"Tsvi Zandany",{"headshot":774,"ctfId":7683},"Tsvi-Zandany",{"template":743},"content:en-us:blog:authors:tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany.yml","en-us/blog/authors/tsvi-zandany",{"_path":7689,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7690,"config":7694,"_id":7695,"_type":28,"title":7691,"_source":30,"_file":7696,"_stem":7697,"_extension":33},"/en-us/blog/authors/tye-davis",{"name":7691,"config":7692},"Tye Davis",{"headshot":7,"ctfId":7693},"davistye",{"template":743},"content:en-us:blog:authors:tye-davis.yml","en-us/blog/authors/tye-davis.yml","en-us/blog/authors/tye-davis",{"_path":7699,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7700,"config":7704,"_id":7705,"_type":28,"title":7701,"_source":30,"_file":7706,"_stem":7707,"_extension":33},"/en-us/blog/authors/tyler-williams",{"name":7701,"config":7702},"Tyler Williams",{"headshot":7,"ctfId":7703},"tywilliams",{"template":743},"content:en-us:blog:authors:tyler-williams.yml","en-us/blog/authors/tyler-williams.yml","en-us/blog/authors/tyler-williams",{"_path":7709,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7710,"config":7714,"_id":7715,"_type":28,"title":7716,"_source":30,"_file":7717,"_stem":7718,"_extension":33},"/en-us/blog/authors/ulrica-de-fort-menares",{"name":7711,"config":7712},"Ulrica de Fort-Menares",{"headshot":7,"ctfId":7713},"ulrica1",{"template":743},"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":7720,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7721,"config":7726,"_id":7727,"_type":28,"title":7722,"_source":30,"_file":7728,"_stem":7729,"_extension":33},"/en-us/blog/authors/valentine-mairet",{"name":7722,"config":7723},"Valentine Mairet",{"headshot":7724,"ctfId":7725},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665455/Blog/Author%20Headshots/valentine_mairet_headshot.png","1AQjHTpq6sBauRMdCibxQX",{"template":743},"content:en-us:blog:authors:valentine-mairet.yml","en-us/blog/authors/valentine-mairet.yml","en-us/blog/authors/valentine-mairet",{"_path":7731,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7732,"config":7736,"_id":7737,"_type":28,"title":7733,"_source":30,"_file":7738,"_stem":7739,"_extension":33},"/en-us/blog/authors/valerie-silverthorne",{"name":7733,"config":7734},"Valerie Silverthorne",{"headshot":774,"ctfId":7735},"vsilverthorne",{"template":743},"content:en-us:blog:authors:valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne.yml","en-us/blog/authors/valerie-silverthorne",{"_path":7741,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7742,"config":7746,"_id":7747,"_type":28,"title":7743,"_source":30,"_file":7748,"_stem":7749,"_extension":33},"/en-us/blog/authors/vanessa-wegner",{"name":7743,"config":7744},"Vanessa Wegner",{"headshot":7,"ctfId":7745},"vwegner",{"template":743},"content:en-us:blog:authors:vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner.yml","en-us/blog/authors/vanessa-wegner",{"_path":7751,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7752,"config":7757,"_id":7758,"_type":28,"title":7753,"_source":30,"_file":7759,"_stem":7760,"_extension":33},"/en-us/blog/authors/veethika-mishra",{"name":7753,"config":7754},"Veethika Mishra",{"headshot":7755,"ctfId":7756},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664676/Blog/Author%20Headshots/veethika-headshot.jpg","veethika",{"template":743},"content:en-us:blog:authors:veethika-mishra.yml","en-us/blog/authors/veethika-mishra.yml","en-us/blog/authors/veethika-mishra",{"_path":7762,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7763,"config":7768,"_id":7769,"_type":28,"title":7764,"_source":30,"_file":7770,"_stem":7771,"_extension":33},"/en-us/blog/authors/vick-kelkar",{"name":7764,"config":7765},"Vick Kelkar",{"headshot":7766,"ctfId":7767},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668508/Blog/Author%20Headshots/vkelkar-headshot.jpg","vkelkar",{"template":743},"content:en-us:blog:authors:vick-kelkar.yml","en-us/blog/authors/vick-kelkar.yml","en-us/blog/authors/vick-kelkar",{"_path":7773,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7774,"config":7778,"_id":7779,"_type":28,"title":7775,"_source":30,"_file":7780,"_stem":7781,"_extension":33},"/en-us/blog/authors/vicky-steeves",{"name":7775,"config":7776},"Vicky Steeves",{"headshot":7,"ctfId":7777},"vickysteeves",{"template":743},"content:en-us:blog:authors:vicky-steeves.yml","en-us/blog/authors/vicky-steeves.yml","en-us/blog/authors/vicky-steeves",{"_path":7783,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7784,"config":7788,"_id":7789,"_type":28,"title":7785,"_source":30,"_file":7790,"_stem":7791,"_extension":33},"/en-us/blog/authors/victor-hernandez",{"name":7785,"config":7786},"Victor Hernandez",{"headshot":774,"ctfId":7787},"KVTkvySIqkAu34p2jsXZz",{"template":743},"content:en-us:blog:authors:victor-hernandez.yml","en-us/blog/authors/victor-hernandez.yml","en-us/blog/authors/victor-hernandez",{"_path":7793,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7794,"config":7798,"_id":7799,"_type":28,"title":7795,"_source":30,"_file":7800,"_stem":7801,"_extension":33},"/en-us/blog/authors/victor-wu",{"name":7795,"config":7796},"Victor Wu",{"headshot":774,"ctfId":7797},"victorwu",{"template":743},"content:en-us:blog:authors:victor-wu.yml","en-us/blog/authors/victor-wu.yml","en-us/blog/authors/victor-wu",{"_path":7803,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7804,"config":7809,"_id":7810,"_type":28,"title":7805,"_source":30,"_file":7811,"_stem":7812,"_extension":33},"/en-us/blog/authors/viktor-nagy",{"name":7805,"config":7806},"Viktor Nagy",{"headshot":7807,"ctfId":7808},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749662918/Blog/Author%20Headshots/nagy-headshot.jpg","nagyvgitlab",{"template":743},"content:en-us:blog:authors:viktor-nagy.yml","en-us/blog/authors/viktor-nagy.yml","en-us/blog/authors/viktor-nagy",{"_path":7814,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7815,"config":7819,"_id":7820,"_type":28,"title":7816,"_source":30,"_file":7821,"_stem":7822,"_extension":33},"/en-us/blog/authors/vincent-jong",{"name":7816,"config":7817},"Vincent Jong",{"headshot":774,"ctfId":7818},"Vincent-Jong",{"template":743},"content:en-us:blog:authors:vincent-jong.yml","en-us/blog/authors/vincent-jong.yml","en-us/blog/authors/vincent-jong",{"_path":7824,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7825,"config":7830,"_id":7831,"_type":28,"title":7826,"_source":30,"_file":7832,"_stem":7833,"_extension":33},"/en-us/blog/authors/vincy-wilson",{"name":7826,"config":7827},"Vincy Wilson",{"headshot":7828,"ctfId":7829},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749669069/Blog/Author%20Headshots/vincy.jpg","1iyKndVlbE3dQnxOJoSY0q",{"template":743},"content:en-us:blog:authors:vincy-wilson.yml","en-us/blog/authors/vincy-wilson.yml","en-us/blog/authors/vincy-wilson",{"_path":7835,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7836,"config":7841,"_id":7842,"_type":28,"title":7837,"_source":30,"_file":7843,"_stem":7844,"_extension":33},"/en-us/blog/authors/vishal-tak",{"name":7837,"config":7838},"Vishal Tak",{"headshot":7839,"ctfId":7840},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663854/Blog/Author%20Headshots/vishal_tak_headshot.png","6BalO1YQUIuDdhUP80bFra",{"template":743},"content:en-us:blog:authors:vishal-tak.yml","en-us/blog/authors/vishal-tak.yml","en-us/blog/authors/vishal-tak",{"_path":7846,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7847,"config":7852,"_id":7853,"_type":28,"title":7848,"_source":30,"_file":7854,"_stem":7855,"_extension":33},"/en-us/blog/authors/vitor-meireles-de-sousa",{"name":7848,"config":7849},"Vitor Meireles De Sousa",{"headshot":7850,"ctfId":7851},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682001/Blog/Author%20Headshots/vdesousa-headshot.png","vdesousa",{"template":743},"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":7857,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7858,"config":7862,"_id":7863,"_type":28,"title":7859,"_source":30,"_file":7864,"_stem":7865,"_extension":33},"/en-us/blog/authors/vlad-budica",{"name":7859,"config":7860},"Vlad Budica",{"headshot":774,"ctfId":7861},"Vlad-Budica",{"template":743},"content:en-us:blog:authors:vlad-budica.yml","en-us/blog/authors/vlad-budica.yml","en-us/blog/authors/vlad-budica",{"_path":7867,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7868,"config":7872,"_id":7873,"_type":28,"title":7869,"_source":30,"_file":7874,"_stem":7875,"_extension":33},"/en-us/blog/authors/vlad-stoianovici",{"name":7869,"config":7870},"Vlad Stoianovici",{"headshot":7,"ctfId":7871},"vstoianovici",{"template":743},"content:en-us:blog:authors:vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici.yml","en-us/blog/authors/vlad-stoianovici",{"_path":7877,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7878,"config":7882,"_id":7883,"_type":28,"title":7879,"_source":30,"_file":7884,"_stem":7885,"_extension":33},"/en-us/blog/authors/wayne-haber",{"name":7879,"config":7880},"Wayne Haber",{"headshot":7,"ctfId":7881},"whaber",{"template":743},"content:en-us:blog:authors:wayne-haber.yml","en-us/blog/authors/wayne-haber.yml","en-us/blog/authors/wayne-haber",{"_path":7887,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7888,"config":7892,"_id":7893,"_type":28,"title":7889,"_source":30,"_file":7894,"_stem":7895,"_extension":33},"/en-us/blog/authors/will-chandler",{"name":7889,"config":7890},"Will Chandler",{"headshot":774,"ctfId":7891},"DKiIGSSRIyO6QdTQkRkjs",{"template":743},"content:en-us:blog:authors:will-chandler.yml","en-us/blog/authors/will-chandler.yml","en-us/blog/authors/will-chandler",{"_path":7897,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7898,"config":7903,"_id":7904,"_type":28,"title":7899,"_source":30,"_file":7905,"_stem":7906,"_extension":33},"/en-us/blog/authors/will-leidheiser",{"name":7899,"config":7900},"Will Leidheiser",{"headshot":7901,"ctfId":7902},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679335/Blog/Author%20Headshots/wleidheiser-headshot.jpg","wleidheiser",{"template":743},"content:en-us:blog:authors:will-leidheiser.yml","en-us/blog/authors/will-leidheiser.yml","en-us/blog/authors/will-leidheiser",{"_path":7908,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7909,"config":7914,"_id":7915,"_type":28,"title":7910,"_source":30,"_file":7916,"_stem":7917,"_extension":33},"/en-us/blog/authors/william-arias",{"name":7910,"config":7911},"William Arias",{"headshot":7912,"ctfId":7913},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667549/Blog/Author%20Headshots/warias-headshot.jpg","warias",{"template":743},"content:en-us:blog:authors:william-arias.yml","en-us/blog/authors/william-arias.yml","en-us/blog/authors/william-arias",{"_path":7919,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7920,"config":7924,"_id":7925,"_type":28,"title":7921,"_source":30,"_file":7926,"_stem":7927,"_extension":33},"/en-us/blog/authors/william-chia",{"name":7921,"config":7922},"William Chia",{"headshot":7,"ctfId":7923},"williamchia",{"template":743},"content:en-us:blog:authors:william-chia.yml","en-us/blog/authors/william-chia.yml","en-us/blog/authors/william-chia",{"_path":7929,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7930,"config":7934,"_id":7935,"_type":28,"title":7931,"_source":30,"_file":7936,"_stem":7937,"_extension":33},"/en-us/blog/authors/yannis-roussos",{"name":7931,"config":7932},"Yannis Roussos",{"headshot":7,"ctfId":7933},"iroussos",{"template":743},"content:en-us:blog:authors:yannis-roussos.yml","en-us/blog/authors/yannis-roussos.yml","en-us/blog/authors/yannis-roussos",{"_path":7939,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7940,"config":7944,"_id":7945,"_type":28,"title":7941,"_source":30,"_file":7946,"_stem":7947,"_extension":33},"/en-us/blog/authors/yevgeny-pats",{"name":7941,"config":7942},"Yevgeny Pats",{"headshot":7,"ctfId":7943},"ypats",{"template":743},"content:en-us:blog:authors:yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats.yml","en-us/blog/authors/yevgeny-pats",{"_path":7949,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7950,"config":7954,"_id":7955,"_type":28,"title":7951,"_source":30,"_file":7956,"_stem":7957,"_extension":33},"/en-us/blog/authors/yorick-peterse",{"name":7951,"config":7952},"Yorick Peterse",{"headshot":774,"ctfId":7953},"Yorick-Peterse",{"template":743},"content:en-us:blog:authors:yorick-peterse.yml","en-us/blog/authors/yorick-peterse.yml","en-us/blog/authors/yorick-peterse",{"_path":7959,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7960,"config":7964,"_id":7965,"_type":28,"title":7966,"_source":30,"_file":7967,"_stem":7968,"_extension":33},"/en-us/blog/authors/zeger-jan-van-de-weg",{"name":7961,"config":7962},"Zeger-Jan van de Weg",{"headshot":7,"ctfId":7963},"zjgitlab",{"template":743},"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":7970,"_dir":736,"_draft":6,"_partial":6,"_locale":7,"content":7971,"config":7976,"_id":7977,"_type":28,"title":7972,"_source":30,"_file":7978,"_stem":7979,"_extension":33},"/en-us/blog/authors/zhaochen-li",{"name":7972,"config":7973},"Zhaochen Li",{"headshot":7974,"ctfId":7975},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664331/Blog/Author%20Headshots/Zhaochen_Li_headshot.png","D67XqgLJdlpOsrG3ivCGT",{"template":743},"content:en-us:blog:authors:zhaochen-li.yml","en-us/blog/authors/zhaochen-li.yml","en-us/blog/authors/zhaochen-li",{"_path":7981,"_dir":36,"_draft":6,"_partial":6,"_locale":7,"header":7982,"eyebrow":7983,"blurb":7984,"button":7985,"secondaryButton":7989,"_id":7991,"_type":28,"title":7992,"_source":30,"_file":7993,"_stem":7994,"_extension":33},"/shared/en-us/next-steps","Start shipping better software faster","50%+ of the Fortune 100 trust GitLab","See what your team can do with the intelligent\n\n\nDevSecOps platform.\n",{"text":44,"config":7986},{"href":7987,"dataGaName":47,"dataGaLocation":7988},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":49,"config":7990},{"href":51,"dataGaName":52,"dataGaLocation":7988},"content:shared:en-us:next-steps.yml","Next Steps","shared/en-us/next-steps.yml","shared/en-us/next-steps",1762543488046]