[{"data":1,"prerenderedAt":1029},["ShallowReactive",2],{"/blog/improving-oauth-ropc-security-on-gitlab-com":3,"navigation-en-us":251,"banner-en-us":678,"footer-en-us":688,"blog-post-authors-en-us-GitLab Security Team":932,"blog-related-posts-en-us-improving-oauth-ropc-security-on-gitlab-com":948,"blog-promotions-en-us":967,"next-steps-en-us":1019},{"id":4,"title":5,"authors":6,"body":8,"category":230,"date":231,"description":232,"extension":233,"externalUrl":234,"faq":234,"featured":235,"heroImage":236,"meta":237,"navigation":238,"path":239,"seo":240,"slug":244,"stem":245,"tags":246,"template":249,"updatedDate":234,"__hash__":250},"blogPosts/en-us/blog/improving-oauth-ropc-security-on-gitlab-com.md","Improving OAuth ROPC security on GitLab.com",[7],"GitLab Security Team",{"type":9,"value":10,"toc":222},"minimark",[11,20,25,43,47,65,69,76,119,123,134,140,150,155,159,165,170,176,181,187,191],[12,13,14,15,19],"p",{},"GitLab.com will require client authentication for OAuth Resource Owner Password Credentials (ROPC) beginning on ",[16,17,18],"strong",{},"April 8, 2025",". ROPC was omitted by the OAuth working group in RFC Version 2.1. Existing ROPC integrations without client credentials will experience service disruption after this date. Please update your integrations to include client credentials before the deadline.",[21,22,24],"h2",{"id":23},"what-is-changing","What is changing",[12,26,27,28,30,31,36,37,42],{},"GitLab.com is improving the security of OAuth ROPC by requiring client authentication for all requests, effective ",[16,29,18],{},". For more details about ROPC and authentication mechanisms, read more in the ",[32,33,35],"a",{"href":34},"#example-ropc-request-types","“Example ROPC Request Types” section of this notice"," or read about ",[32,38,41],{"href":39,"rel":40},"https://docs.gitlab.com/api/oauth2/#resource-owner-password-credentials-flow",[],"ROPC in the OAuth API GitLab page",".",[21,44,46],{"id":45},"why-this-change-matters","Why this change matters",[48,49,50],"ul",{},[51,52,53,56,57,60,61,64],"li",{},[16,54,55],{},"Enhanced security:"," Client authentication provides an additional layer of security by ensuring that only authorized applications can request access tokens.  * ",[16,58,59],{},"Standards compliance:"," This change brings GitLab's OAuth implementation into alignment with industry best practices and OAuth 2.0 specifications.  * ",[16,62,63],{},"Improved auditing:"," Client authentication improves application request traceability and monitoring.",[21,66,68],{"id":67},"required-action","Required action",[12,70,71,72,75],{},"We strongly recommend updating your implementation before ",[16,73,74],{},"April 8, 2025,"," by following these steps:",[77,78,79],"ol",{},[51,80,81,84,85,88,89,93,94,97,98,101,102,105,106,109,110,113,114],{},[16,82,83],{},"Register your application"," in GitLab to obtain client credentials:     * Navigate to ",[16,86,87],{},"User Settings > Applications"," (or register a group or instance OAuth application as desired).     * Create a new application or use an existing one.     * Note the provided ",[90,91,92],"code",{},"Application ID"," (client_id) and ",[90,95,96],{},"Secret"," (client_secret).  2. ",[16,99,100],{},"Update your authentication requests"," to include the client credentials:     * Add the ",[90,103,104],{},"client_id"," and ",[90,107,108],{},"client_secret"," parameters to your token requests.     * Test your implementation in our staging environment.  3. ",[16,111,112],{},"Review our implementation documentation"," for detailed guidance:     * ",[32,115,118],{"href":116,"rel":117},"https://docs.gitlab.com/api/oauth2/",[],"GitLab OAuth Authentication Guide",[21,120,122],{"id":121},"example-ropc-request-types","Example ROPC request types",[12,124,125,126,130,131],{},"Detailed examples of authorization requests as documented in the ",[32,127,129],{"href":39,"rel":128},[],"OAuth API GitLab page"," are listed below.\n",[16,132,133],{},"Insecure ROPC method example:",[12,135,136],{},[137,138,139],"em",{},"This insecure ROPC method does not use client authentication, and will not work on GitLab.com after April 8, 2025.",[141,142,148],"pre",{"className":143,"code":145,"language":146,"meta":147},[144],"language-text","POST /oauth/token\nContent-Type: application/x-www-form-urlencoded\n\ngrant_type=password&username=user@example.com&password=secret   \n","text","",[90,149,145],{"__ignoreMap":147},[12,151,152],{},[16,153,154],{},"Insecure ROPC JSON method example:",[12,156,157],{},[137,158,139],{},[141,160,163],{"className":161,"code":162,"language":146,"meta":147},[144],"POST /oauth/token\nContent-Type: application/json\n{\n  \"grant_type\": \"password\",\n  \"username\": \"user@example.com\",\n  \"password\": \"secret\"\n}\n",[90,164,162],{"__ignoreMap":147},[12,166,167],{},[16,168,169],{},"Required method going forward:",[141,171,174],{"className":172,"code":173,"language":146,"meta":147},[144],"POST /oauth/token\nContent-Type: application/x-www-form-urlencoded\n\ngrant_type=password&username=user@example.com&password=secret&client_id=APP_ID&client_secret=APP_SECRET\n",[90,175,173],{"__ignoreMap":147},[12,177,178],{},[16,179,180],{},"Required method - JSON example:",[141,182,185],{"className":183,"code":184,"language":146,"meta":147},[144],"POST /oauth/token\nContent-Type: application/json\n\n{\n  \"grant_type\": \"password\",\n  \"username\": \"user@example.com\",\n  \"password\": \"secret\",\n  \"client_id\": \"APP_ID\",\n  \"client_secret\": \"APP_SECRET\"\n}\n",[90,186,184],{"__ignoreMap":147},[21,188,190],{"id":189},"need-further-guidance","Need further guidance?",[48,192,193],{},[51,194,195,198,199,203,204,207,208,203,213,216,217],{},[16,196,197],{},"Documentation:"," ",[32,200,202],{"href":116,"rel":201},[],"GitLab OAuth 2.0 Guide","  * ",[16,205,206],{},"Support:"," Contact ",[32,209,212],{"href":210,"rel":211},"https://support.gitlab.com/hc/en-us/articles/11626483177756-GitLab-Support",[],"GitLab Support",[16,214,215],{},"Community Forum:"," Discuss this change in the ",[32,218,221],{"href":219,"rel":220},"https://forum.gitlab.com/",[],"GitLab Forum",{"title":147,"searchDepth":223,"depth":223,"links":224},2,[225,226,227,228,229],{"id":23,"depth":223,"text":24},{"id":45,"depth":223,"text":46},{"id":67,"depth":223,"text":68},{"id":121,"depth":223,"text":122},{"id":189,"depth":223,"text":190},"product","2025-04-01","GitLab.com is improving the security of OAuth Resource Owner Password Credentials (ROPC) by requiring client authentication, effective April 8, 2025.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663239/Blog/Hero%20Images/AdobeStock_1023776629.jpg",{},true,"/en-us/blog/improving-oauth-ropc-security-on-gitlab-com",{"title":5,"description":232,"ogTitle":5,"ogDescription":232,"noIndex":235,"ogImage":236,"ogUrl":241,"ogSiteName":242,"ogType":243,"canonicalUrls":241},"https://about.gitlab.com/blog/improving-oauth-ropc-security-on-gitlab-com","https://about.gitlab.com","article","improving-oauth-ropc-security-on-gitlab-com","en-us/blog/improving-oauth-ropc-security-on-gitlab-com",[230,247,248],"security","DevSecOps platform","BlogPost","t78icnUOZVlSVNyee_TlRgBi6zSHQPsgtoVDe1oXOUI",{"logo":252,"freeTrial":257,"sales":262,"login":267,"items":272,"search":598,"minimal":629,"duo":648,"switchNav":657,"pricingDeployment":668},{"config":253},{"href":254,"dataGaName":255,"dataGaLocation":256},"/","gitlab logo","header",{"text":258,"config":259},"Get free trial",{"href":260,"dataGaName":261,"dataGaLocation":256},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":263,"config":264},"Request a demo",{"href":265,"dataGaName":266,"dataGaLocation":256},"/sales/?contact-topic=request-demo","sales",{"text":268,"config":269},"Sign in",{"href":270,"dataGaName":271,"dataGaLocation":256},"https://gitlab.com/users/sign_in/","sign in",[273,302,402,407,520,576],{"text":274,"config":275,"menu":277},"Platform",{"dataNavLevelOne":276},"platform",{"type":278,"columns":279},"cards",[280,286,294],{"title":274,"description":281,"link":282},"The intelligent orchestration platform for DevSecOps",{"text":283,"config":284},"Explore our Platform",{"href":285,"dataGaName":276,"dataGaLocation":256},"/platform/",{"title":287,"description":288,"link":289},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":290,"config":291},"Meet GitLab Duo",{"href":292,"dataGaName":293,"dataGaLocation":256},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":295,"description":296,"link":297},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":298,"config":299},"Learn more",{"href":300,"dataGaName":301,"dataGaLocation":256},"/why-gitlab/","why gitlab",{"text":303,"left":238,"config":304,"menu":306},"Product",{"dataNavLevelOne":305},"solutions",{"type":307,"link":308,"columns":312,"feature":381},"lists",{"text":309,"config":310},"View all Solutions",{"href":311,"dataGaName":305,"dataGaLocation":256},"/solutions/",[313,337,360],{"title":314,"description":315,"link":316,"items":321},"Automation","CI/CD and automation to accelerate deployment",{"config":317},{"icon":318,"href":319,"dataGaName":320,"dataGaLocation":256},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[322,326,329,333],{"text":323,"config":324},"CI/CD",{"href":325,"dataGaLocation":256,"dataGaName":323},"/solutions/continuous-integration/",{"text":287,"config":327},{"href":292,"dataGaLocation":256,"dataGaName":328},"gitlab duo agent platform - product menu",{"text":330,"config":331},"Source Code Management",{"href":332,"dataGaLocation":256,"dataGaName":330},"/solutions/source-code-management/",{"text":334,"config":335},"Automated Software Delivery",{"href":319,"dataGaLocation":256,"dataGaName":336},"Automated software delivery",{"title":338,"description":339,"link":340,"items":345},"Security","Deliver code faster without compromising security",{"config":341},{"href":342,"dataGaName":343,"dataGaLocation":256,"icon":344},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[346,350,355],{"text":347,"config":348},"Application Security Testing",{"href":342,"dataGaName":349,"dataGaLocation":256},"Application security testing",{"text":351,"config":352},"Software Supply Chain Security",{"href":353,"dataGaLocation":256,"dataGaName":354},"/solutions/supply-chain/","Software supply chain security",{"text":356,"config":357},"Software Compliance",{"href":358,"dataGaName":359,"dataGaLocation":256},"/solutions/software-compliance/","software compliance",{"title":361,"link":362,"items":367},"Measurement",{"config":363},{"icon":364,"href":365,"dataGaName":366,"dataGaLocation":256},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[368,372,376],{"text":369,"config":370},"Visibility & Measurement",{"href":365,"dataGaLocation":256,"dataGaName":371},"Visibility and Measurement",{"text":373,"config":374},"Value Stream Management",{"href":375,"dataGaLocation":256,"dataGaName":373},"/solutions/value-stream-management/",{"text":377,"config":378},"Analytics & Insights",{"href":379,"dataGaLocation":256,"dataGaName":380},"/solutions/analytics-and-insights/","Analytics and insights",{"title":382,"type":307,"items":383},"GitLab for",[384,390,396],{"text":385,"config":386},"Enterprise",{"icon":387,"href":388,"dataGaLocation":256,"dataGaName":389},"Building","/enterprise/","enterprise",{"text":391,"config":392},"Small Business",{"icon":393,"href":394,"dataGaLocation":256,"dataGaName":395},"Work","/small-business/","small business",{"text":397,"config":398},"Public Sector",{"icon":399,"href":400,"dataGaLocation":256,"dataGaName":401},"Organization","/solutions/public-sector/","public sector",{"text":403,"config":404},"Pricing",{"href":405,"dataGaName":406,"dataGaLocation":256,"dataNavLevelOne":406},"/pricing/","pricing",{"text":408,"config":409,"menu":411},"Resources",{"dataNavLevelOne":410},"resources",{"type":307,"link":412,"columns":416,"feature":509},{"text":413,"config":414},"View all resources",{"href":415,"dataGaName":410,"dataGaLocation":256},"/resources/",[417,450,477],{"title":418,"items":419},"Getting started",[420,425,430,435,440,445],{"text":421,"config":422},"Install",{"href":423,"dataGaName":424,"dataGaLocation":256},"/install/","install",{"text":426,"config":427},"Quick start guides",{"href":428,"dataGaName":429,"dataGaLocation":256},"/get-started/","quick setup checklists",{"text":431,"config":432},"Learn",{"href":433,"dataGaLocation":256,"dataGaName":434},"https://university.gitlab.com/","learn",{"text":436,"config":437},"Product documentation",{"href":438,"dataGaName":439,"dataGaLocation":256},"https://docs.gitlab.com/","product documentation",{"text":441,"config":442},"Best practice videos",{"href":443,"dataGaName":444,"dataGaLocation":256},"/getting-started-videos/","best practice videos",{"text":446,"config":447},"Integrations",{"href":448,"dataGaName":449,"dataGaLocation":256},"/integrations/","integrations",{"title":451,"items":452},"Discover",[453,458,463,468,472],{"text":454,"config":455},"Customer success stories",{"href":456,"dataGaName":457,"dataGaLocation":256},"/customers/","customer success stories",{"text":459,"config":460},"Blog",{"href":461,"dataGaName":462,"dataGaLocation":256},"/blog/","blog",{"text":464,"config":465},"Demo Hub",{"href":466,"dataGaName":467,"dataGaLocation":256},"/demo-hub/","demo hub",{"text":469,"config":470},"The Source",{"href":471,"dataGaName":462,"dataGaLocation":256},"/the-source/",{"text":473,"config":474},"Remote",{"href":475,"dataGaName":476,"dataGaLocation":256},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":478,"items":479},"Connect",[480,485,490,495,499,504],{"text":481,"config":482},"GitLab Services",{"href":483,"dataGaName":484,"dataGaLocation":256},"/services/","services",{"text":486,"config":487},"Contribute",{"href":488,"dataGaName":489,"dataGaLocation":256},"https://contributors.gitlab.com","contribute",{"text":491,"config":492},"Community",{"href":493,"dataGaName":494,"dataGaLocation":256},"/community/","community",{"text":496,"config":497},"Forum",{"href":219,"dataGaName":498,"dataGaLocation":256},"forum",{"text":500,"config":501},"Events",{"href":502,"dataGaName":503,"dataGaLocation":256},"/events/","events",{"text":505,"config":506},"Partners",{"href":507,"dataGaName":508,"dataGaLocation":256},"/partners/","partners",{"config":510,"title":513,"text":514,"link":515},{"background":511,"textColor":512},"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":516,"config":517},"Read the latest",{"href":518,"dataGaName":519,"dataGaLocation":256},"/whats-new/","whats new",{"text":521,"config":522,"menu":524},"Company",{"dataNavLevelOne":523},"company",{"type":307,"columns":525},[526],{"items":527},[528,533,539,541,546,551,556,561,566,571],{"text":529,"config":530},"About",{"href":531,"dataGaName":532,"dataGaLocation":256},"/company/","about",{"text":534,"config":535,"footerGa":538},"Jobs",{"href":536,"dataGaName":537,"dataGaLocation":256},"/jobs/","jobs",{"dataGaName":537},{"text":500,"config":540},{"href":502,"dataGaName":503,"dataGaLocation":256},{"text":542,"config":543},"Leadership",{"href":544,"dataGaName":545,"dataGaLocation":256},"/company/team/e-group/","leadership",{"text":547,"config":548},"Handbook",{"href":549,"dataGaName":550,"dataGaLocation":256},"https://handbook.gitlab.com/","handbook",{"text":552,"config":553},"Investor relations",{"href":554,"dataGaName":555,"dataGaLocation":256},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":557,"config":558},"Trust Center",{"href":559,"dataGaName":560,"dataGaLocation":256},"/security/","trust center",{"text":562,"config":563},"AI Transparency Center",{"href":564,"dataGaName":565,"dataGaLocation":256},"/ai-transparency-center/","ai transparency center",{"text":567,"config":568},"Newsletter",{"href":569,"dataGaName":570,"dataGaLocation":256},"/company/contact/#contact-forms","newsletter",{"text":572,"config":573},"Press",{"href":574,"dataGaName":575,"dataGaLocation":256},"/press/","press",{"text":577,"config":578,"menu":579},"Contact us",{"dataNavLevelOne":523},{"type":307,"columns":580},[581],{"items":582},[583,588,593],{"text":584,"config":585},"Talk to sales",{"href":586,"dataGaName":587,"dataGaLocation":256},"/sales/","talk to sales",{"text":589,"config":590},"Support portal",{"href":591,"dataGaName":592,"dataGaLocation":256},"https://support.gitlab.com/hc/en-us","support portal",{"text":594,"config":595},"Customer portal",{"href":596,"dataGaName":597,"dataGaLocation":256},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":599,"login":600,"suggestions":607},"Close",{"text":601,"link":602},"To search repositories and projects, login to",{"text":603,"config":604},"gitlab.com",{"href":270,"dataGaName":605,"dataGaLocation":606},"search login","search",{"text":608,"default":609},"Suggestions",[610,612,616,618,622,626],{"text":287,"config":611},{"href":292,"dataGaName":287,"dataGaLocation":606},{"text":613,"config":614},"Code Suggestions (AI)",{"href":615,"dataGaName":613,"dataGaLocation":606},"/solutions/code-suggestions/",{"text":323,"config":617},{"href":325,"dataGaName":323,"dataGaLocation":606},{"text":619,"config":620},"GitLab on AWS",{"href":621,"dataGaName":619,"dataGaLocation":606},"/partners/technology-partners/aws/",{"text":623,"config":624},"GitLab on Google Cloud",{"href":625,"dataGaName":623,"dataGaLocation":606},"/partners/technology-partners/google-cloud-platform/",{"text":627,"config":628},"Why GitLab?",{"href":300,"dataGaName":627,"dataGaLocation":606},{"freeTrial":630,"mobileIcon":635,"desktopIcon":640,"secondaryButton":643},{"text":631,"config":632},"Start free trial",{"href":633,"dataGaName":261,"dataGaLocation":634},"https://gitlab.com/-/trials/new/","nav",{"altText":636,"config":637},"Gitlab Icon",{"src":638,"dataGaName":639,"dataGaLocation":634},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":636,"config":641},{"src":642,"dataGaName":639,"dataGaLocation":634},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":644,"config":645},"Get Started",{"href":646,"dataGaName":647,"dataGaLocation":634},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":649,"mobileIcon":653,"desktopIcon":655},{"text":650,"config":651},"Learn more about GitLab Duo",{"href":292,"dataGaName":652,"dataGaLocation":634},"gitlab duo",{"altText":636,"config":654},{"src":638,"dataGaName":639,"dataGaLocation":634},{"altText":636,"config":656},{"src":642,"dataGaName":639,"dataGaLocation":634},{"button":658,"mobileIcon":663,"desktopIcon":665},{"text":659,"config":660},"/switch",{"href":661,"dataGaName":662,"dataGaLocation":634},"#contact","switch",{"altText":636,"config":664},{"src":638,"dataGaName":639,"dataGaLocation":634},{"altText":636,"config":666},{"src":667,"dataGaName":639,"dataGaLocation":634},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":669,"mobileIcon":674,"desktopIcon":676},{"text":670,"config":671},"Back to pricing",{"href":405,"dataGaName":672,"dataGaLocation":634,"icon":673},"back to pricing","GoBack",{"altText":636,"config":675},{"src":638,"dataGaName":639,"dataGaLocation":634},{"altText":636,"config":677},{"src":642,"dataGaName":639,"dataGaLocation":634},{"title":679,"titleMobile":680,"button":681,"config":686},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":298,"config":682},{"href":683,"dataGaName":684,"dataGaLocation":685},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":687,"disabled":235},"release",{"data":689},{"text":690,"source":691,"edit":697,"contribute":702,"config":707,"items":712,"minimal":921},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":692,"config":693},"View page source",{"href":694,"dataGaName":695,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":698,"config":699},"Edit this page",{"href":700,"dataGaName":701,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":703,"config":704},"Please contribute",{"href":705,"dataGaName":706,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":708,"facebook":709,"youtube":710,"linkedin":711},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[713,760,813,857,889],{"title":403,"links":714,"subMenu":729},[715,719,724],{"text":716,"config":717},"View plans",{"href":405,"dataGaName":718,"dataGaLocation":696},"view plans",{"text":720,"config":721},"Why Premium?",{"href":722,"dataGaName":723,"dataGaLocation":696},"/pricing/premium/","why premium",{"text":725,"config":726},"Why Ultimate?",{"href":727,"dataGaName":728,"dataGaLocation":696},"/pricing/ultimate/","why ultimate",[730],{"title":731,"links":732},"Contact Us",[733,736,738,740,745,750,755],{"text":734,"config":735},"Contact sales",{"href":586,"dataGaName":266,"dataGaLocation":696},{"text":589,"config":737},{"href":591,"dataGaName":592,"dataGaLocation":696},{"text":594,"config":739},{"href":596,"dataGaName":597,"dataGaLocation":696},{"text":741,"config":742},"Status",{"href":743,"dataGaName":744,"dataGaLocation":696},"https://status.gitlab.com/","status",{"text":746,"config":747},"Terms of use",{"href":748,"dataGaName":749,"dataGaLocation":696},"/terms/","terms of use",{"text":751,"config":752},"Privacy statement",{"href":753,"dataGaName":754,"dataGaLocation":696},"/privacy/","privacy statement",{"text":756,"config":757},"Cookie preferences",{"dataGaName":758,"dataGaLocation":696,"id":759,"isOneTrustButton":238},"cookie preferences","ot-sdk-btn",{"title":303,"links":761,"subMenu":769},[762,765],{"text":248,"config":763},{"href":285,"dataGaName":764,"dataGaLocation":696},"devsecops platform",{"text":766,"config":767},"AI-Assisted Development",{"href":292,"dataGaName":768,"dataGaLocation":696},"ai-assisted development",[770],{"title":771,"links":772},"Topics",[773,778,783,788,793,798,803,808],{"text":774,"config":775},"CICD",{"href":776,"dataGaName":777,"dataGaLocation":696},"/topics/ci-cd/","cicd",{"text":779,"config":780},"GitOps",{"href":781,"dataGaName":782,"dataGaLocation":696},"/topics/gitops/","gitops",{"text":784,"config":785},"DevOps",{"href":786,"dataGaName":787,"dataGaLocation":696},"/topics/devops/","devops",{"text":789,"config":790},"Version Control",{"href":791,"dataGaName":792,"dataGaLocation":696},"/topics/version-control/","version control",{"text":794,"config":795},"DevSecOps",{"href":796,"dataGaName":797,"dataGaLocation":696},"/topics/devsecops/","devsecops",{"text":799,"config":800},"Cloud Native",{"href":801,"dataGaName":802,"dataGaLocation":696},"/topics/cloud-native/","cloud native",{"text":804,"config":805},"AI for Coding",{"href":806,"dataGaName":807,"dataGaLocation":696},"/topics/devops/ai-for-coding/","ai for coding",{"text":809,"config":810},"Agentic AI",{"href":811,"dataGaName":812,"dataGaLocation":696},"/topics/agentic-ai/","agentic ai",{"title":814,"links":815},"Solutions",[816,818,820,825,829,832,836,839,841,844,847,852],{"text":347,"config":817},{"href":342,"dataGaName":347,"dataGaLocation":696},{"text":336,"config":819},{"href":319,"dataGaName":320,"dataGaLocation":696},{"text":821,"config":822},"Agile development",{"href":823,"dataGaName":824,"dataGaLocation":696},"/solutions/agile-delivery/","agile delivery",{"text":826,"config":827},"SCM",{"href":332,"dataGaName":828,"dataGaLocation":696},"source code management",{"text":774,"config":830},{"href":325,"dataGaName":831,"dataGaLocation":696},"continuous integration & delivery",{"text":833,"config":834},"Value stream management",{"href":375,"dataGaName":835,"dataGaLocation":696},"value stream management",{"text":779,"config":837},{"href":838,"dataGaName":782,"dataGaLocation":696},"/solutions/gitops/",{"text":385,"config":840},{"href":388,"dataGaName":389,"dataGaLocation":696},{"text":842,"config":843},"Small business",{"href":394,"dataGaName":395,"dataGaLocation":696},{"text":845,"config":846},"Public sector",{"href":400,"dataGaName":401,"dataGaLocation":696},{"text":848,"config":849},"Education",{"href":850,"dataGaName":851,"dataGaLocation":696},"/solutions/education/","education",{"text":853,"config":854},"Financial services",{"href":855,"dataGaName":856,"dataGaLocation":696},"/solutions/finance/","financial services",{"title":408,"links":858},[859,861,863,865,868,870,873,875,877,879,881,883,885,887],{"text":421,"config":860},{"href":423,"dataGaName":424,"dataGaLocation":696},{"text":426,"config":862},{"href":428,"dataGaName":429,"dataGaLocation":696},{"text":431,"config":864},{"href":433,"dataGaName":434,"dataGaLocation":696},{"text":436,"config":866},{"href":438,"dataGaName":867,"dataGaLocation":696},"docs",{"text":459,"config":869},{"href":461,"dataGaName":462,"dataGaLocation":696},{"text":871,"config":872},"What's new",{"href":518,"dataGaName":519,"dataGaLocation":696},{"text":454,"config":874},{"href":456,"dataGaName":457,"dataGaLocation":696},{"text":473,"config":876},{"href":475,"dataGaName":476,"dataGaLocation":696},{"text":481,"config":878},{"href":483,"dataGaName":484,"dataGaLocation":696},{"text":486,"config":880},{"href":488,"dataGaName":489,"dataGaLocation":696},{"text":491,"config":882},{"href":493,"dataGaName":494,"dataGaLocation":696},{"text":496,"config":884},{"href":219,"dataGaName":498,"dataGaLocation":696},{"text":500,"config":886},{"href":502,"dataGaName":503,"dataGaLocation":696},{"text":505,"config":888},{"href":507,"dataGaName":508,"dataGaLocation":696},{"title":521,"links":890},[891,893,895,897,899,901,905,910,912,914,916],{"text":529,"config":892},{"href":531,"dataGaName":523,"dataGaLocation":696},{"text":534,"config":894},{"href":536,"dataGaName":537,"dataGaLocation":696},{"text":542,"config":896},{"href":544,"dataGaName":545,"dataGaLocation":696},{"text":547,"config":898},{"href":549,"dataGaName":550,"dataGaLocation":696},{"text":552,"config":900},{"href":554,"dataGaName":555,"dataGaLocation":696},{"text":902,"config":903},"Sustainability",{"href":904,"dataGaName":902,"dataGaLocation":696},"/sustainability/",{"text":906,"config":907},"Diversity, inclusion and belonging (DIB)",{"href":908,"dataGaName":909,"dataGaLocation":696},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":557,"config":911},{"href":559,"dataGaName":560,"dataGaLocation":696},{"text":567,"config":913},{"href":569,"dataGaName":570,"dataGaLocation":696},{"text":572,"config":915},{"href":574,"dataGaName":575,"dataGaLocation":696},{"text":917,"config":918},"Modern Slavery Transparency Statement",{"href":919,"dataGaName":920,"dataGaLocation":696},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":922},[923,926,929],{"text":924,"config":925},"Terms",{"href":748,"dataGaName":749,"dataGaLocation":696},{"text":927,"config":928},"Cookies",{"dataGaName":758,"dataGaLocation":696,"id":759,"isOneTrustButton":238},{"text":930,"config":931},"Privacy",{"href":753,"dataGaName":754,"dataGaLocation":696},[933],{"id":934,"title":935,"body":234,"config":936,"content":938,"description":234,"extension":942,"meta":943,"navigation":238,"path":944,"seo":945,"stem":946,"__hash__":947},"blogAuthors/en-us/blog/authors/gitlab-security-team.yml","Gitlab Security Team",{"template":937},"BlogAuthor",{"name":7,"config":939},{"headshot":940,"ctfId":941},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","GitLab-Security-Team","yml",{},"/en-us/blog/authors/gitlab-security-team",{},"en-us/blog/authors/gitlab-security-team","M5RMqW6Lb84jEWdwJrctViGP9u1WMH2dPkXsUXXXcrk",[949,955,959],{"title":950,"description":951,"heroImage":952,"category":230,"date":953,"authors":234,"slug":234,"externalUrl":954},"GitLab Patch Release: 19.2.2, 19.1.4, 19.0.6","Learn about this latest patch release for Community Edition and Enterprise Edition.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661926/Blog/Hero%20Images/security-patch-blog-image-r2-0506-700x400-fy25_2x.jpg","2026-08-12","https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-2-2-released/",{"title":956,"description":951,"heroImage":952,"category":230,"date":957,"authors":234,"slug":234,"externalUrl":958}," GitLab Patch Release: 19.2.1, 19.1.3, 19.0.5","2026-07-29","https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-2-1-released/",{"title":960,"description":961,"heroImage":962,"category":230,"date":963,"authors":964,"slug":966,"externalUrl":234},"Automate work item assignment with a \"Work item created\" trigger","Our step-by-step guide walks through this AI capability, which enables instant, scalable triage without manual intervention.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-07-20",[965],"Cesar Saavedra","how-to-use-a-work-item-created-trigger",{"promotions":968},[969,983,994,1005],{"id":970,"categories":971,"header":973,"text":974,"button":975,"image":980},"ai-modernization",[972],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":976,"config":977},"Get your AI maturity score",{"href":978,"dataGaName":979,"dataGaLocation":462},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":981},{"src":982},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":984,"categories":985,"header":986,"text":974,"button":987,"image":991},"devops-modernization",[230,797],"Are you just managing tools or shipping innovation?",{"text":988,"config":989},"Get your DevOps maturity score",{"href":990,"dataGaName":979,"dataGaLocation":462},"/assessments/devops-modernization-assessment/",{"config":992},{"src":993},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":995,"categories":996,"header":997,"text":974,"button":998,"image":1002},"security-modernization",[247],"Are you trading speed for security?",{"text":999,"config":1000},"Get your security maturity score",{"href":1001,"dataGaName":979,"dataGaLocation":462},"/assessments/security-modernization-assessment/",{"config":1003},{"src":1004},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1006,"paths":1007,"header":1010,"text":1011,"button":1012,"image":1017},"github-azure-migration",[1008,1009],"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":1013,"config":1014},"See how GitLab compares to GitHub",{"href":1015,"dataGaName":1016,"dataGaLocation":462},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1018},{"src":993},{"header":1020,"blurb":1021,"button":1022,"secondaryButton":1027},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1023,"config":1024},"Get your free trial",{"href":1025,"dataGaName":261,"dataGaLocation":1026},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":734,"config":1028},{"href":586,"dataGaName":266,"dataGaLocation":1026},1786803762873]