[{"data":1,"prerenderedAt":1268},["ShallowReactive",2],{"/blog/impact-of-the-file-type-variable-change-15-7":3,"navigation-en-us":484,"banner-en-us":912,"footer-en-us":922,"blog-post-authors-en-us-Darren Eastman":1167,"blog-related-posts-en-us-impact-of-the-file-type-variable-change-15-7":1182,"blog-promotions-en-us":1204,"next-steps-en-us":1258},{"id":4,"title":5,"authors":6,"body":8,"category":462,"date":463,"description":464,"extension":465,"externalUrl":466,"faq":466,"featured":467,"heroImage":468,"meta":469,"navigation":470,"path":471,"seo":472,"slug":476,"stem":477,"tags":478,"template":482,"updatedDate":466,"__hash__":483},"blogPosts/en-us/blog/impact-of-the-file-type-variable-change-15-7.md","Understanding the file type variable expansion change in GitLab 15.7",[7],"Darren Eastman",{"type":9,"value":10,"toc":455},"minimark",[11,20,25,28,31,34,38,56,151,157,331,336,409,412,416,432,436,444,448,451],[12,13,14,15,19],"p",{},"In GitLab 15.7, we stopped expanding ",[16,17,18],"code",{},"file type"," variables in CI jobs. CI jobs that rely on the old expansion method will generate errors and not work. Here is a look at how this change came about, the difference in job outputs, and what to do next.",[21,22,24],"h2",{"id":23},"background","Background",[12,26,27],{},"GitLab CI has long-supported file type CI/CD variables. This is a helpful feature for CI jobs, as a file variable is a simple way to pass values to an external system. In cases where there is a concern about environment variable size limits, putting the information in a file and using an environment variable to reference the file is a good option.",[12,29,30],{},"Before 15.7, variable expansion expanded the contents of the file referenced in a file type variable. Some users found this expansion behavior to be quite valuable. In looking at some metrics on GitLab.com, for example, we saw over 1,000 unique projects that used a file variable inside another variable. However, other users did not find this unintended behavior helpful and implemented workarounds.",[12,32,33],{},"As expected, a file referenced in a file type variable may contain sensitive data. So performing variable expansion on the file contents could expose that data in the build environment. Even though the risk could be somewhat mitigated, continuing to expand file type variables was not the right approach to ensure the most secure system.",[21,35,37],{"id":36},"example-of-the-job-output-before-and-after-157","Example of the job output before and after 15.7",[39,40,41,53],"ol",{},[42,43,44,45,48,49,52],"li",{},"Create a file variable via the GitLab UI. For example: ",[16,46,47],{},"A_FILE_VAR"," with the value ",[16,50,51],{},"this is some super secret content",".",[42,54,55],{},"Create a CI job with this content:",[57,58,63],"pre",{"className":59,"code":60,"language":61,"meta":62,"style":62},"language-yaml shiki shiki-themes github-light","test_job:\n   stage: test\n   variables:\n     REF_FILE_VAR: $A_FILE_VAR\n   script:\n     - echo $A_FILE_VAR\n     - cat $A_FILE_VAR\n     - echo $REF_FILE_VAR\n     - cat $REF_FILE_VAR\n\n","yaml","",[16,64,65,78,91,99,110,118,127,135,143],{"__ignoreMap":62},[66,67,70,74],"span",{"class":68,"line":69},"line",1,[66,71,73],{"class":72},"shJU0","test_job",[66,75,77],{"class":76},"sgsFI",":\n",[66,79,81,84,87],{"class":68,"line":80},2,[66,82,83],{"class":72},"   stage",[66,85,86],{"class":76},": ",[66,88,90],{"class":89},"sYBdl","test\n",[66,92,94,97],{"class":68,"line":93},3,[66,95,96],{"class":72},"   variables",[66,98,77],{"class":76},[66,100,102,105,107],{"class":68,"line":101},4,[66,103,104],{"class":72},"     REF_FILE_VAR",[66,106,86],{"class":76},[66,108,109],{"class":89},"$A_FILE_VAR\n",[66,111,113,116],{"class":68,"line":112},5,[66,114,115],{"class":72},"   script",[66,117,77],{"class":76},[66,119,121,124],{"class":68,"line":120},6,[66,122,123],{"class":76},"     - ",[66,125,126],{"class":89},"echo $A_FILE_VAR\n",[66,128,130,132],{"class":68,"line":129},7,[66,131,123],{"class":76},[66,133,134],{"class":89},"cat $A_FILE_VAR\n",[66,136,138,140],{"class":68,"line":137},8,[66,139,123],{"class":76},[66,141,142],{"class":89},"echo $REF_FILE_VAR\n",[66,144,146,148],{"class":68,"line":145},9,[66,147,123],{"class":76},[66,149,150],{"class":89},"cat $REF_FILE_VAR\n",[12,152,153],{},[154,155,156],"strong",{},"Results before 15.7:",[57,158,162],{"className":159,"code":160,"language":161,"meta":62,"style":62},"language-shell shiki shiki-themes github-light","$ echo $A_FILE_VAR\n/builds/test-project-repo/test-project.tmp/A_FILE_VAR\n$ cat $A_FILE_VAR\nthis is some super secret content\n$ echo $REF_FILE_VAR\nthis is some super secret content\n$ cat $REF_FILE_VAR\ncat: can't open 'this': No such file or directory\ncat: can't open 'is': No such file or directory\ncat: can't open 'some': No such file or directory\ncat: can't open 'super': No such file or directory\ncat: can't open 'secret': No such file or directory\ncat: can't open 'content': No such file or directory\n","shell",[16,163,164,176,181,190,210,219,233,241,249,275,283,303,311],{"__ignoreMap":62},[66,165,166,170,173],{"class":68,"line":69},[66,167,169],{"class":168},"s7eDp","$",[66,171,172],{"class":89}," echo",[66,174,175],{"class":76}," $A_FILE_VAR\n",[66,177,178],{"class":68,"line":80},[66,179,180],{"class":168},"/builds/test-project-repo/test-project.tmp/A_FILE_VAR\n",[66,182,183,185,188],{"class":68,"line":93},[66,184,169],{"class":168},[66,186,187],{"class":89}," cat",[66,189,175],{"class":76},[66,191,192,195,198,201,204,207],{"class":68,"line":101},[66,193,194],{"class":168},"this",[66,196,197],{"class":89}," is",[66,199,200],{"class":89}," some",[66,202,203],{"class":89}," super",[66,205,206],{"class":89}," secret",[66,208,209],{"class":89}," content\n",[66,211,212,214,216],{"class":68,"line":112},[66,213,169],{"class":168},[66,215,172],{"class":89},[66,217,218],{"class":76}," $REF_FILE_VAR\n",[66,220,221,223,225,227,229,231],{"class":68,"line":120},[66,222,194],{"class":168},[66,224,197],{"class":89},[66,226,200],{"class":89},[66,228,203],{"class":89},[66,230,206],{"class":89},[66,232,209],{"class":89},[66,234,235,237,239],{"class":68,"line":129},[66,236,169],{"class":168},[66,238,187],{"class":89},[66,240,218],{"class":76},[66,242,243,246],{"class":68,"line":137},[66,244,245],{"class":168},"cat:",[66,247,248],{"class":89}," can't open 'this': No such file or directory\n",[66,250,251,254,257,260,263,266,269,272],{"class":68,"line":145},[66,252,253],{"class":89},"cat: can't",[66,255,256],{"class":89}," open",[66,258,259],{"class":89}," 'is':",[66,261,262],{"class":89}," No",[66,264,265],{"class":89}," such",[66,267,268],{"class":89}," file",[66,270,271],{"class":89}," or",[66,273,274],{"class":89}," directory\n",[66,276,278,280],{"class":68,"line":277},10,[66,279,245],{"class":168},[66,281,282],{"class":89}," can't open 'some': No such file or directory\n",[66,284,286,288,290,293,295,297,299,301],{"class":68,"line":285},11,[66,287,253],{"class":89},[66,289,256],{"class":89},[66,291,292],{"class":89}," 'super':",[66,294,262],{"class":89},[66,296,265],{"class":89},[66,298,268],{"class":89},[66,300,271],{"class":89},[66,302,274],{"class":89},[66,304,306,308],{"class":68,"line":305},12,[66,307,245],{"class":168},[66,309,310],{"class":89}," can't open 'secret': No such file or directory\n",[66,312,314,316,318,321,323,325,327,329],{"class":68,"line":313},13,[66,315,253],{"class":89},[66,317,256],{"class":89},[66,319,320],{"class":89}," 'content':",[66,322,262],{"class":89},[66,324,265],{"class":89},[66,326,268],{"class":89},[66,328,271],{"class":89},[66,330,274],{"class":89},[12,332,333],{},[154,334,335],{},"Results after 15.7:",[57,337,339],{"className":159,"code":338,"language":161,"meta":62,"style":62},"$ echo $A_FILE_VAR\n/builds/test-project-repo/test-project.tmp/A_FILE_VAR\n$ cat $A_FILE_VAR\nthis is some super secret content\n$ echo $REF_FILE_VAR\n/builds/test-project-repo/test-project.tmp/A_FILE_VAR\n$ cat $REF_FILE_VAR\nthis is some super secret content\n",[16,340,341,349,353,361,375,383,387,395],{"__ignoreMap":62},[66,342,343,345,347],{"class":68,"line":69},[66,344,169],{"class":168},[66,346,172],{"class":89},[66,348,175],{"class":76},[66,350,351],{"class":68,"line":80},[66,352,180],{"class":168},[66,354,355,357,359],{"class":68,"line":93},[66,356,169],{"class":168},[66,358,187],{"class":89},[66,360,175],{"class":76},[66,362,363,365,367,369,371,373],{"class":68,"line":101},[66,364,194],{"class":168},[66,366,197],{"class":89},[66,368,200],{"class":89},[66,370,203],{"class":89},[66,372,206],{"class":89},[66,374,209],{"class":89},[66,376,377,379,381],{"class":68,"line":112},[66,378,169],{"class":168},[66,380,172],{"class":89},[66,382,218],{"class":76},[66,384,385],{"class":68,"line":120},[66,386,180],{"class":168},[66,388,389,391,393],{"class":68,"line":129},[66,390,169],{"class":168},[66,392,187],{"class":89},[66,394,218],{"class":76},[66,396,397,399,401,403,405,407],{"class":68,"line":137},[66,398,194],{"class":168},[66,400,197],{"class":89},[66,402,200],{"class":89},[66,404,203],{"class":89},[66,406,206],{"class":89},[66,408,209],{"class":89},[12,410,411],{},"You will notice in the 15.7+ job output the echo command no longer prints the contents of the file.",[21,413,415],{"id":414},"what-is-the-current-status-of-the-change","What is the current status of the change?",[12,417,418,419,425,426,431],{},"We ",[420,421,424],"a",{"href":422,"rel":423},"https://docs.gitlab.com/update/deprecations/#file-type-variable-expansion-in-gitlab-ciyml",[],"deprecated"," this feature in 15.5 and removed it from the code base in ",[420,427,430],{"href":428,"rel":429},"https://gitlab.com/gitlab-org/gitlab/-/issues/29407",[],"15.7",". However, we neglected to include a follow-up removal notice in the 15.7 release, so some self-managed customers now upgrading to 15.7+ may have missed the initial deprecation notice.",[21,433,435],{"id":434},"what-do-i-need-to-do-before-upgrading-to-157-or-higher","What do I need to do before upgrading to 15.7 or higher?",[39,437,438,441],{},[42,439,440],{},"Check your CI jobs for any instances where a file variable is referenced inside another variable.",[42,442,443],{},"Change the references and test the CI jobs.",[21,445,447],{"id":446},"whats-next","What’s next",[12,449,450],{},"Secrets and variable handling are likely some of the most complex areas in a DevSecOps platform. On our end, we are continuously refining our processes to effectively communicate the potential impact of new features or the removal of existing ones. We also recommend that you reach out to us (the Verify team) directly on issues referenced in a release or deprecation notice if it's not clear how a change might affect your CI workflows.",[452,453,454],"style",{},"html pre.shiki code .shJU0, html code.shiki .shJU0{--shiki-default:#22863A}html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html pre.shiki code .s7eDp, html code.shiki .s7eDp{--shiki-default:#6F42C1}",{"title":62,"searchDepth":80,"depth":80,"links":456},[457,458,459,460,461],{"id":23,"depth":80,"text":24},{"id":36,"depth":80,"text":37},{"id":414,"depth":80,"text":415},{"id":434,"depth":80,"text":435},{"id":446,"depth":80,"text":447},"news","2023-02-13","Learn how the change to file type variable expansion can impact CI jobs that rely on the file contents and what to do.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664087/Blog/Hero%20Images/tanukicover.jpg",{},true,"/en-us/blog/impact-of-the-file-type-variable-change-15-7",{"title":5,"description":464,"ogTitle":5,"ogDescription":464,"noIndex":467,"ogImage":468,"ogUrl":473,"ogSiteName":474,"ogType":475,"canonicalUrls":473},"https://about.gitlab.com/blog/impact-of-the-file-type-variable-change-15-7","https://about.gitlab.com","article","impact-of-the-file-type-variable-change-15-7","en-us/blog/impact-of-the-file-type-variable-change-15-7",[479,480,481],"CI","CD","features","BlogPost","Zv2Q6AUWII3X6b292T1nqm1vlO-aXn-Xv1IAfuazUnc",{"logo":485,"freeTrial":490,"sales":495,"login":500,"items":505,"search":832,"minimal":863,"duo":882,"switchNav":891,"pricingDeployment":902},{"config":486},{"href":487,"dataGaName":488,"dataGaLocation":489},"/","gitlab logo","header",{"text":491,"config":492},"Get free trial",{"href":493,"dataGaName":494,"dataGaLocation":489},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":496,"config":497},"Request a demo",{"href":498,"dataGaName":499,"dataGaLocation":489},"/sales/?contact-topic=request-demo","sales",{"text":501,"config":502},"Sign in",{"href":503,"dataGaName":504,"dataGaLocation":489},"https://gitlab.com/users/sign_in/","sign in",[506,535,635,640,754,810],{"text":507,"config":508,"menu":510},"Platform",{"dataNavLevelOne":509},"platform",{"type":511,"columns":512},"cards",[513,519,527],{"title":507,"description":514,"link":515},"The intelligent orchestration platform for DevSecOps",{"text":516,"config":517},"Explore our Platform",{"href":518,"dataGaName":509,"dataGaLocation":489},"/platform/",{"title":520,"description":521,"link":522},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":523,"config":524},"Meet GitLab Duo",{"href":525,"dataGaName":526,"dataGaLocation":489},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":528,"description":529,"link":530},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":531,"config":532},"Learn more",{"href":533,"dataGaName":534,"dataGaLocation":489},"/why-gitlab/","why gitlab",{"text":536,"left":470,"config":537,"menu":539},"Product",{"dataNavLevelOne":538},"solutions",{"type":540,"link":541,"columns":545,"feature":614},"lists",{"text":542,"config":543},"View all Solutions",{"href":544,"dataGaName":538,"dataGaLocation":489},"/solutions/",[546,570,593],{"title":547,"description":548,"link":549,"items":554},"Automation","CI/CD and automation to accelerate deployment",{"config":550},{"icon":551,"href":552,"dataGaName":553,"dataGaLocation":489},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[555,559,562,566],{"text":556,"config":557},"CI/CD",{"href":558,"dataGaLocation":489,"dataGaName":556},"/solutions/continuous-integration/",{"text":520,"config":560},{"href":525,"dataGaLocation":489,"dataGaName":561},"gitlab duo agent platform - product menu",{"text":563,"config":564},"Source Code Management",{"href":565,"dataGaLocation":489,"dataGaName":563},"/solutions/source-code-management/",{"text":567,"config":568},"Automated Software Delivery",{"href":552,"dataGaLocation":489,"dataGaName":569},"Automated software delivery",{"title":571,"description":572,"link":573,"items":578},"Security","Deliver code faster without compromising security",{"config":574},{"href":575,"dataGaName":576,"dataGaLocation":489,"icon":577},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[579,583,588],{"text":580,"config":581},"Application Security Testing",{"href":575,"dataGaName":582,"dataGaLocation":489},"Application security testing",{"text":584,"config":585},"Software Supply Chain Security",{"href":586,"dataGaLocation":489,"dataGaName":587},"/solutions/supply-chain/","Software supply chain security",{"text":589,"config":590},"Software Compliance",{"href":591,"dataGaName":592,"dataGaLocation":489},"/solutions/software-compliance/","software compliance",{"title":594,"link":595,"items":600},"Measurement",{"config":596},{"icon":597,"href":598,"dataGaName":599,"dataGaLocation":489},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[601,605,609],{"text":602,"config":603},"Visibility & Measurement",{"href":598,"dataGaLocation":489,"dataGaName":604},"Visibility and Measurement",{"text":606,"config":607},"Value Stream Management",{"href":608,"dataGaLocation":489,"dataGaName":606},"/solutions/value-stream-management/",{"text":610,"config":611},"Analytics & Insights",{"href":612,"dataGaLocation":489,"dataGaName":613},"/solutions/analytics-and-insights/","Analytics and insights",{"title":615,"type":540,"items":616},"GitLab for",[617,623,629],{"text":618,"config":619},"Enterprise",{"icon":620,"href":621,"dataGaLocation":489,"dataGaName":622},"Building","/enterprise/","enterprise",{"text":624,"config":625},"Small Business",{"icon":626,"href":627,"dataGaLocation":489,"dataGaName":628},"Work","/small-business/","small business",{"text":630,"config":631},"Public Sector",{"icon":632,"href":633,"dataGaLocation":489,"dataGaName":634},"Organization","/solutions/public-sector/","public sector",{"text":636,"config":637},"Pricing",{"href":638,"dataGaName":639,"dataGaLocation":489,"dataNavLevelOne":639},"/pricing/","pricing",{"text":641,"config":642,"menu":644},"Resources",{"dataNavLevelOne":643},"resources",{"type":540,"link":645,"columns":649,"feature":743},{"text":646,"config":647},"View all resources",{"href":648,"dataGaName":643,"dataGaLocation":489},"/resources/",[650,683,710],{"title":651,"items":652},"Getting started",[653,658,663,668,673,678],{"text":654,"config":655},"Install",{"href":656,"dataGaName":657,"dataGaLocation":489},"/install/","install",{"text":659,"config":660},"Quick start guides",{"href":661,"dataGaName":662,"dataGaLocation":489},"/get-started/","quick setup checklists",{"text":664,"config":665},"Learn",{"href":666,"dataGaLocation":489,"dataGaName":667},"https://university.gitlab.com/","learn",{"text":669,"config":670},"Product documentation",{"href":671,"dataGaName":672,"dataGaLocation":489},"https://docs.gitlab.com/","product documentation",{"text":674,"config":675},"Best practice videos",{"href":676,"dataGaName":677,"dataGaLocation":489},"/getting-started-videos/","best practice videos",{"text":679,"config":680},"Integrations",{"href":681,"dataGaName":682,"dataGaLocation":489},"/integrations/","integrations",{"title":684,"items":685},"Discover",[686,691,696,701,705],{"text":687,"config":688},"Customer success stories",{"href":689,"dataGaName":690,"dataGaLocation":489},"/customers/","customer success stories",{"text":692,"config":693},"Blog",{"href":694,"dataGaName":695,"dataGaLocation":489},"/blog/","blog",{"text":697,"config":698},"Demo Hub",{"href":699,"dataGaName":700,"dataGaLocation":489},"/demo-hub/","demo hub",{"text":702,"config":703},"The Source",{"href":704,"dataGaName":695,"dataGaLocation":489},"/the-source/",{"text":706,"config":707},"Remote",{"href":708,"dataGaName":709,"dataGaLocation":489},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":711,"items":712},"Connect",[713,718,723,728,733,738],{"text":714,"config":715},"GitLab Services",{"href":716,"dataGaName":717,"dataGaLocation":489},"/services/","services",{"text":719,"config":720},"Contribute",{"href":721,"dataGaName":722,"dataGaLocation":489},"https://contributors.gitlab.com","contribute",{"text":724,"config":725},"Community",{"href":726,"dataGaName":727,"dataGaLocation":489},"/community/","community",{"text":729,"config":730},"Forum",{"href":731,"dataGaName":732,"dataGaLocation":489},"https://forum.gitlab.com/","forum",{"text":734,"config":735},"Events",{"href":736,"dataGaName":737,"dataGaLocation":489},"/events/","events",{"text":739,"config":740},"Partners",{"href":741,"dataGaName":742,"dataGaLocation":489},"/partners/","partners",{"config":744,"title":747,"text":748,"link":749},{"background":745,"textColor":746},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":750,"config":751},"Read the latest",{"href":752,"dataGaName":753,"dataGaLocation":489},"/whats-new/","whats new",{"text":755,"config":756,"menu":758},"Company",{"dataNavLevelOne":757},"company",{"type":540,"columns":759},[760],{"items":761},[762,767,773,775,780,785,790,795,800,805],{"text":763,"config":764},"About",{"href":765,"dataGaName":766,"dataGaLocation":489},"/company/","about",{"text":768,"config":769,"footerGa":772},"Jobs",{"href":770,"dataGaName":771,"dataGaLocation":489},"/jobs/","jobs",{"dataGaName":771},{"text":734,"config":774},{"href":736,"dataGaName":737,"dataGaLocation":489},{"text":776,"config":777},"Leadership",{"href":778,"dataGaName":779,"dataGaLocation":489},"/company/team/e-group/","leadership",{"text":781,"config":782},"Handbook",{"href":783,"dataGaName":784,"dataGaLocation":489},"https://handbook.gitlab.com/","handbook",{"text":786,"config":787},"Investor relations",{"href":788,"dataGaName":789,"dataGaLocation":489},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":791,"config":792},"Trust Center",{"href":793,"dataGaName":794,"dataGaLocation":489},"/security/","trust center",{"text":796,"config":797},"AI Transparency Center",{"href":798,"dataGaName":799,"dataGaLocation":489},"/ai-transparency-center/","ai transparency center",{"text":801,"config":802},"Newsletter",{"href":803,"dataGaName":804,"dataGaLocation":489},"/company/contact/#contact-forms","newsletter",{"text":806,"config":807},"Press",{"href":808,"dataGaName":809,"dataGaLocation":489},"/press/","press",{"text":811,"config":812,"menu":813},"Contact us",{"dataNavLevelOne":757},{"type":540,"columns":814},[815],{"items":816},[817,822,827],{"text":818,"config":819},"Talk to sales",{"href":820,"dataGaName":821,"dataGaLocation":489},"/sales/","talk to sales",{"text":823,"config":824},"Support portal",{"href":825,"dataGaName":826,"dataGaLocation":489},"https://support.gitlab.com/hc/en-us","support portal",{"text":828,"config":829},"Customer portal",{"href":830,"dataGaName":831,"dataGaLocation":489},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":833,"login":834,"suggestions":841},"Close",{"text":835,"link":836},"To search repositories and projects, login to",{"text":837,"config":838},"gitlab.com",{"href":503,"dataGaName":839,"dataGaLocation":840},"search login","search",{"text":842,"default":843},"Suggestions",[844,846,850,852,856,860],{"text":520,"config":845},{"href":525,"dataGaName":520,"dataGaLocation":840},{"text":847,"config":848},"Code Suggestions (AI)",{"href":849,"dataGaName":847,"dataGaLocation":840},"/solutions/code-suggestions/",{"text":556,"config":851},{"href":558,"dataGaName":556,"dataGaLocation":840},{"text":853,"config":854},"GitLab on AWS",{"href":855,"dataGaName":853,"dataGaLocation":840},"/partners/technology-partners/aws/",{"text":857,"config":858},"GitLab on Google Cloud",{"href":859,"dataGaName":857,"dataGaLocation":840},"/partners/technology-partners/google-cloud-platform/",{"text":861,"config":862},"Why GitLab?",{"href":533,"dataGaName":861,"dataGaLocation":840},{"freeTrial":864,"mobileIcon":869,"desktopIcon":874,"secondaryButton":877},{"text":865,"config":866},"Start free trial",{"href":867,"dataGaName":494,"dataGaLocation":868},"https://gitlab.com/-/trials/new/","nav",{"altText":870,"config":871},"Gitlab Icon",{"src":872,"dataGaName":873,"dataGaLocation":868},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":870,"config":875},{"src":876,"dataGaName":873,"dataGaLocation":868},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":878,"config":879},"Get Started",{"href":880,"dataGaName":881,"dataGaLocation":868},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":883,"mobileIcon":887,"desktopIcon":889},{"text":884,"config":885},"Learn more about GitLab Duo",{"href":525,"dataGaName":886,"dataGaLocation":868},"gitlab duo",{"altText":870,"config":888},{"src":872,"dataGaName":873,"dataGaLocation":868},{"altText":870,"config":890},{"src":876,"dataGaName":873,"dataGaLocation":868},{"button":892,"mobileIcon":897,"desktopIcon":899},{"text":893,"config":894},"/switch",{"href":895,"dataGaName":896,"dataGaLocation":868},"#contact","switch",{"altText":870,"config":898},{"src":872,"dataGaName":873,"dataGaLocation":868},{"altText":870,"config":900},{"src":901,"dataGaName":873,"dataGaLocation":868},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":903,"mobileIcon":908,"desktopIcon":910},{"text":904,"config":905},"Back to pricing",{"href":638,"dataGaName":906,"dataGaLocation":868,"icon":907},"back to pricing","GoBack",{"altText":870,"config":909},{"src":872,"dataGaName":873,"dataGaLocation":868},{"altText":870,"config":911},{"src":876,"dataGaName":873,"dataGaLocation":868},{"title":913,"titleMobile":914,"button":915,"config":920},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":531,"config":916},{"href":917,"dataGaName":918,"dataGaLocation":919},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":921,"disabled":467},"release",{"data":923},{"text":924,"source":925,"edit":931,"contribute":936,"config":941,"items":946,"minimal":1156},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":926,"config":927},"View page source",{"href":928,"dataGaName":929,"dataGaLocation":930},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":932,"config":933},"Edit this page",{"href":934,"dataGaName":935,"dataGaLocation":930},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":937,"config":938},"Please contribute",{"href":939,"dataGaName":940,"dataGaLocation":930},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":942,"facebook":943,"youtube":944,"linkedin":945},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[947,994,1048,1092,1124],{"title":636,"links":948,"subMenu":963},[949,953,958],{"text":950,"config":951},"View plans",{"href":638,"dataGaName":952,"dataGaLocation":930},"view plans",{"text":954,"config":955},"Why Premium?",{"href":956,"dataGaName":957,"dataGaLocation":930},"/pricing/premium/","why premium",{"text":959,"config":960},"Why Ultimate?",{"href":961,"dataGaName":962,"dataGaLocation":930},"/pricing/ultimate/","why ultimate",[964],{"title":965,"links":966},"Contact Us",[967,970,972,974,979,984,989],{"text":968,"config":969},"Contact sales",{"href":820,"dataGaName":499,"dataGaLocation":930},{"text":823,"config":971},{"href":825,"dataGaName":826,"dataGaLocation":930},{"text":828,"config":973},{"href":830,"dataGaName":831,"dataGaLocation":930},{"text":975,"config":976},"Status",{"href":977,"dataGaName":978,"dataGaLocation":930},"https://status.gitlab.com/","status",{"text":980,"config":981},"Terms of use",{"href":982,"dataGaName":983,"dataGaLocation":930},"/terms/","terms of use",{"text":985,"config":986},"Privacy statement",{"href":987,"dataGaName":988,"dataGaLocation":930},"/privacy/","privacy statement",{"text":990,"config":991},"Cookie preferences",{"dataGaName":992,"dataGaLocation":930,"id":993,"isOneTrustButton":470},"cookie preferences","ot-sdk-btn",{"title":536,"links":995,"subMenu":1004},[996,1000],{"text":997,"config":998},"DevSecOps platform",{"href":518,"dataGaName":999,"dataGaLocation":930},"devsecops platform",{"text":1001,"config":1002},"AI-Assisted Development",{"href":525,"dataGaName":1003,"dataGaLocation":930},"ai-assisted development",[1005],{"title":1006,"links":1007},"Topics",[1008,1013,1018,1023,1028,1033,1038,1043],{"text":1009,"config":1010},"CICD",{"href":1011,"dataGaName":1012,"dataGaLocation":930},"/topics/ci-cd/","cicd",{"text":1014,"config":1015},"GitOps",{"href":1016,"dataGaName":1017,"dataGaLocation":930},"/topics/gitops/","gitops",{"text":1019,"config":1020},"DevOps",{"href":1021,"dataGaName":1022,"dataGaLocation":930},"/topics/devops/","devops",{"text":1024,"config":1025},"Version Control",{"href":1026,"dataGaName":1027,"dataGaLocation":930},"/topics/version-control/","version control",{"text":1029,"config":1030},"DevSecOps",{"href":1031,"dataGaName":1032,"dataGaLocation":930},"/topics/devsecops/","devsecops",{"text":1034,"config":1035},"Cloud Native",{"href":1036,"dataGaName":1037,"dataGaLocation":930},"/topics/cloud-native/","cloud native",{"text":1039,"config":1040},"AI for Coding",{"href":1041,"dataGaName":1042,"dataGaLocation":930},"/topics/devops/ai-for-coding/","ai for coding",{"text":1044,"config":1045},"Agentic AI",{"href":1046,"dataGaName":1047,"dataGaLocation":930},"/topics/agentic-ai/","agentic ai",{"title":1049,"links":1050},"Solutions",[1051,1053,1055,1060,1064,1067,1071,1074,1076,1079,1082,1087],{"text":580,"config":1052},{"href":575,"dataGaName":580,"dataGaLocation":930},{"text":569,"config":1054},{"href":552,"dataGaName":553,"dataGaLocation":930},{"text":1056,"config":1057},"Agile development",{"href":1058,"dataGaName":1059,"dataGaLocation":930},"/solutions/agile-delivery/","agile delivery",{"text":1061,"config":1062},"SCM",{"href":565,"dataGaName":1063,"dataGaLocation":930},"source code management",{"text":1009,"config":1065},{"href":558,"dataGaName":1066,"dataGaLocation":930},"continuous integration & delivery",{"text":1068,"config":1069},"Value stream management",{"href":608,"dataGaName":1070,"dataGaLocation":930},"value stream management",{"text":1014,"config":1072},{"href":1073,"dataGaName":1017,"dataGaLocation":930},"/solutions/gitops/",{"text":618,"config":1075},{"href":621,"dataGaName":622,"dataGaLocation":930},{"text":1077,"config":1078},"Small business",{"href":627,"dataGaName":628,"dataGaLocation":930},{"text":1080,"config":1081},"Public sector",{"href":633,"dataGaName":634,"dataGaLocation":930},{"text":1083,"config":1084},"Education",{"href":1085,"dataGaName":1086,"dataGaLocation":930},"/solutions/education/","education",{"text":1088,"config":1089},"Financial services",{"href":1090,"dataGaName":1091,"dataGaLocation":930},"/solutions/finance/","financial services",{"title":641,"links":1093},[1094,1096,1098,1100,1103,1105,1108,1110,1112,1114,1116,1118,1120,1122],{"text":654,"config":1095},{"href":656,"dataGaName":657,"dataGaLocation":930},{"text":659,"config":1097},{"href":661,"dataGaName":662,"dataGaLocation":930},{"text":664,"config":1099},{"href":666,"dataGaName":667,"dataGaLocation":930},{"text":669,"config":1101},{"href":671,"dataGaName":1102,"dataGaLocation":930},"docs",{"text":692,"config":1104},{"href":694,"dataGaName":695,"dataGaLocation":930},{"text":1106,"config":1107},"What's new",{"href":752,"dataGaName":753,"dataGaLocation":930},{"text":687,"config":1109},{"href":689,"dataGaName":690,"dataGaLocation":930},{"text":706,"config":1111},{"href":708,"dataGaName":709,"dataGaLocation":930},{"text":714,"config":1113},{"href":716,"dataGaName":717,"dataGaLocation":930},{"text":719,"config":1115},{"href":721,"dataGaName":722,"dataGaLocation":930},{"text":724,"config":1117},{"href":726,"dataGaName":727,"dataGaLocation":930},{"text":729,"config":1119},{"href":731,"dataGaName":732,"dataGaLocation":930},{"text":734,"config":1121},{"href":736,"dataGaName":737,"dataGaLocation":930},{"text":739,"config":1123},{"href":741,"dataGaName":742,"dataGaLocation":930},{"title":755,"links":1125},[1126,1128,1130,1132,1134,1136,1140,1145,1147,1149,1151],{"text":763,"config":1127},{"href":765,"dataGaName":757,"dataGaLocation":930},{"text":768,"config":1129},{"href":770,"dataGaName":771,"dataGaLocation":930},{"text":776,"config":1131},{"href":778,"dataGaName":779,"dataGaLocation":930},{"text":781,"config":1133},{"href":783,"dataGaName":784,"dataGaLocation":930},{"text":786,"config":1135},{"href":788,"dataGaName":789,"dataGaLocation":930},{"text":1137,"config":1138},"Sustainability",{"href":1139,"dataGaName":1137,"dataGaLocation":930},"/sustainability/",{"text":1141,"config":1142},"Diversity, inclusion and belonging (DIB)",{"href":1143,"dataGaName":1144,"dataGaLocation":930},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":791,"config":1146},{"href":793,"dataGaName":794,"dataGaLocation":930},{"text":801,"config":1148},{"href":803,"dataGaName":804,"dataGaLocation":930},{"text":806,"config":1150},{"href":808,"dataGaName":809,"dataGaLocation":930},{"text":1152,"config":1153},"Modern Slavery Transparency Statement",{"href":1154,"dataGaName":1155,"dataGaLocation":930},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1157},[1158,1161,1164],{"text":1159,"config":1160},"Terms",{"href":982,"dataGaName":983,"dataGaLocation":930},{"text":1162,"config":1163},"Cookies",{"dataGaName":992,"dataGaLocation":930,"id":993,"isOneTrustButton":470},{"text":1165,"config":1166},"Privacy",{"href":987,"dataGaName":988,"dataGaLocation":930},[1168],{"id":1169,"title":7,"body":466,"config":1170,"content":1172,"description":466,"extension":1176,"meta":1177,"navigation":470,"path":1178,"seo":1179,"stem":1180,"__hash__":1181},"blogAuthors/en-us/blog/authors/darren-eastman.yml",{"template":1171},"BlogAuthor",{"name":7,"config":1173},{"headshot":1174,"ctfId":1175},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665148/Blog/Author%20Headshots/darren_eastman.png","DarrenEastman","yml",{},"/en-us/blog/authors/darren-eastman",{},"en-us/blog/authors/darren-eastman","iXnMUFNVF56JYxVUygLV2-q6FjfdZM8UekM1NED6tu0",[1183,1191,1198],{"title":1184,"description":1185,"heroImage":1186,"category":462,"date":1187,"authors":1188,"slug":1190,"externalUrl":466},"GitLab named a Leader in the 2026 Gartner® Magic Quadrant™ for DevSecOps Platforms","Agents made coding fast. GitLab is the Intelligent Orchestration Platform for DevSecOps that brings speed with control for the rest of the software lifecycle.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750099203/Blog/Hero%20Images/Blog/Hero%20Images/blog-image-template-1800x945%20%2820%29_2bJGC5ZP3WheoqzlLT05C5_1750099203484.png","2026-06-17",[1189],"Manav Khurana","gitlab-leader-2026-gartner-mq-devsecops-platforms",{"title":1192,"description":1193,"heroImage":1194,"category":462,"date":1187,"authors":1195,"slug":1197,"externalUrl":466},"GitLab and Capgemini accelerate DevSecOps transformation","The global alliance helps organizations modernize software delivery, secure their supply chain, and bring AI into development workflows.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1781279411/n3pkmddd2eswa8qbu06z.png",[1196],"Alex Picker","gitlab-and-capgemini-global-alliance-partnership",{"title":1199,"description":1200,"heroImage":1201,"category":462,"date":1187,"authors":1202,"slug":1203,"externalUrl":466},"Introducing the 2026 EMEA GitLab Partner Award winners","Learn about the EMEA partners who made an outstanding impact over the past year.\n","https://res.cloudinary.com/about-gitlab-com/image/upload/v1781608381/biycl2ib2kpsbspjlac7.png",[1196],"2026-emea-gitlab-partner-awards",{"promotions":1205},[1206,1220,1232,1244],{"id":1207,"categories":1208,"header":1210,"text":1211,"button":1212,"image":1217},"ai-modernization",[1209],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1213,"config":1214},"Get your AI maturity score",{"href":1215,"dataGaName":1216,"dataGaLocation":695},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1218},{"src":1219},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1221,"categories":1222,"header":1224,"text":1211,"button":1225,"image":1229},"devops-modernization",[1223,1032],"product","Are you just managing tools or shipping innovation?",{"text":1226,"config":1227},"Get your DevOps maturity score",{"href":1228,"dataGaName":1216,"dataGaLocation":695},"/assessments/devops-modernization-assessment/",{"config":1230},{"src":1231},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1233,"categories":1234,"header":1236,"text":1211,"button":1237,"image":1241},"security-modernization",[1235],"security","Are you trading speed for security?",{"text":1238,"config":1239},"Get your security maturity score",{"href":1240,"dataGaName":1216,"dataGaLocation":695},"/assessments/security-modernization-assessment/",{"config":1242},{"src":1243},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1245,"paths":1246,"header":1249,"text":1250,"button":1251,"image":1256},"github-azure-migration",[1247,1248],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":1252,"config":1253},"See how GitLab compares to GitHub",{"href":1254,"dataGaName":1255,"dataGaLocation":695},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1257},{"src":1231},{"header":1259,"blurb":1260,"button":1261,"secondaryButton":1266},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1262,"config":1263},"Get your free trial",{"href":1264,"dataGaName":494,"dataGaLocation":1265},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":968,"config":1267},{"href":820,"dataGaName":499,"dataGaLocation":1265},1786803770438]