该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 3月 14, 2025
-
-
由 Phil Hughes 创作于
Add GitLabDuo feedback string for diff review comments See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184073 Merged-by:
Phil Hughes <me@iamphill.com> Approved-by:
Phil Hughes <me@iamphill.com> Reviewed-by:
Phil Hughes <me@iamphill.com> Co-authored-by:
Kinshuk Singh <kinsingh@gitlab.com>
-
由 Kinshuk Singh 创作于
-
由 Kos Palchyk 创作于
Remove defaultGroupLabels from VSA Vuex store See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184164 Merged-by:
Kos Palchyk <kpalchyk@gitlab.com> Approved-by:
Kos Palchyk <kpalchyk@gitlab.com> Reviewed-by:
Kos Palchyk <kpalchyk@gitlab.com> Reviewed-by:
Alex Pennells <apennells@gitlab.com> Reviewed-by:
Rudy Crespo <rcrespo@gitlab.com> Co-authored-by:
Alex Pennells <apennells@gitlab.com>
-
由 Alex Pennells 创作于
The only place it is being used is already capable of loading the group labels in the Vue component.
-
由 Avielle Wolfe 创作于
Skip saving pipeline config when using inputs See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184318 Merged-by:
Avielle Wolfe <awolfe@gitlab.com> Approved-by:
Laura Montemayor <lmontemayor@gitlab.com> Approved-by:
Avielle Wolfe <awolfe@gitlab.com> Reviewed-by:
Furkan Ayhan <furkanayhn@gmail.com> Co-authored-by:
Furkan Ayhan <furkanayhn@gmail.com>
-
由 Furkan Ayhan 创作于
Inputs may contain secrets, so we don't want to save them in the DB as plain text. It's safe to not save a pipeline-config because we are currently considering dropping the `p_ci_pipelines_config` table because it's not used anywhere. https://gitlab.com/gitlab-org/gitlab/-/issues/520828#note_2364398251 related to https://gitlab.com/gitlab-org/gitlab/-/issues/523238 Changelog: other
-
由 Gregory Havenga 创作于
BBM for removing orphaned notes See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/180624 Merged-by:
Gregory Havenga <11164960-ghavenga@users.noreply.gitlab.com> Approved-by:
Michał Zając <mzajac@gitlab.com> Reviewed-by:
Lucas Charles <me@lucascharles.me> Co-authored-by:
anarinesingh <adinzey@gitlab.com>
-
由 Adrien Narinesingh 创作于
Cleaning up notes for which the associated vulnerability has been deleted. Changelog: removed
-
由 Paul Gascou-Vaillancourt 创作于
Implement `network-only` refetch policy for Duo Chat messages See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184399 Merged-by:
Paul Gascou-Vaillancourt <pgascouvaillancourt@gitlab.com> Approved-by:
Lindsey Shelton <lshelton@gitlab.com> Approved-by:
Paul Gascou-Vaillancourt <pgascouvaillancourt@gitlab.com> Co-authored-by:
lesley <lrazzaghian@gitlab.com>
-
由 Jose Ivan Vargas 创作于
Fix minor UX issues for container protected image tags See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184416 Merged-by:
Jose Ivan Vargas <jvargas@gitlab.com> Approved-by:
Jose Ivan Vargas <jvargas@gitlab.com> Co-authored-by:
Rahul Chanila <rchanila@gitlab.com>
-
由 Amy Qualls 创作于
Fix issues with tutorial code snippet See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184453 Merged-by:
Amy Qualls <aqualls@gitlab.com> Approved-by:
Amy Qualls <aqualls@gitlab.com> Co-authored-by:
Jonathan Glassman <jglassman@gitlab.com>
-
由 Jon Glassman 创作于
-
由 Gregory Havenga 创作于
Implement vulnerability archive export API See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/183521 Merged-by:
Gregory Havenga <11164960-ghavenga@users.noreply.gitlab.com> Approved-by:
Schmil Monderer <smonderer@gitlab.com> Approved-by:
Brian Williams <bwilliams@gitlab.com> Approved-by:
Gregory Havenga <11164960-ghavenga@users.noreply.gitlab.com> Approved-by:
Ian Anderson <ianderson@gitlab.com> Reviewed-by:
Mehmet Emin INAC <minac@gitlab.com> Reviewed-by:
Brian Williams <bwilliams@gitlab.com> Reviewed-by:
Schmil Monderer <smonderer@gitlab.com> Co-authored-by:
Mehmet Emin INAC <minac@gitlab.com>
-
由 Mehmet Emin INAC 创作于
Changelog: added EE: true
-
- 3月 13, 2025
-
-
由 Omar Qunsul 创作于
Merge branch 'backfill-multiple-desired-sharding-key-small-table-snippet_user_mentions' into 'master' Add & backfill sharding keys for snippet_user_mentions See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/180836 Merged-by:
Omar Qunsul <oqunsul@gitlab.com> Approved-by:
Omar Qunsul <oqunsul@gitlab.com> Co-authored-by:
Shubham Kumar <shukumar@gitlab.com>
-
由 Shubham Kumar 创作于
Add and backfill multiple sharding keys for snippet_user_mentions. This table has a [desired sharding key](https://docs.gitlab.com/ee/development/database/multiple_databases.html#define-a-desired_sharding_key-to-automatically-backfill-a-sharding_key) configured ([view configuration](https://gitlab.com/gitlab-org/gitlab/-/blob/master/db/docs/snippet_user_mentions.yml)). This merge request is the first step towards transforming the desired sharding key into a [sharding key](https://docs.gitlab.com/ee/development/database/multiple_databases.html#defining-a-sharding-key-for-all-cell-local-tables). This involves three changes: - Adding a new column that will serve as the sharding key (along with the relevant index and foreign key). - Populating the sharding key when new records are created by adding a database function and trigger. - Scheduling a [batched background migration](https://docs.gitlab.com/ee/development/database/batched_background_migrations.html) to set the sharding key for existing records. Once the background migration has completed, a second merge request will be created to finalize the background migration and validate the not null constraint. Please review this merge request from a ~backend perspective. The main thing we are looking to verify is that the added column and association match the values specified by the [desired sharding key](https://gitlab.com/gitlab-org/gitlab/-/blob/master/db/docs/snippet_user_mentions.yml) configuration and that backfilling the column from this other table makes sense in the context of this feature. When you are finished, please: 1. Trigger the [database testing pipeline](https://docs.gitlab.com/ee/development/database/database_migration_pipeline.html) as instructed by Danger. 1. Request a review from the ~backend maintainer and ~database reviewer suggested by Danger. If you have any questions or concerns, reach out to `@tigerwnz` or @shubhamkrai. This merge request was generated by a once off keep implemented in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/143774 This change was generated by [gitlab-housekeeper](https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-housekeeper) using the Keeps::BackfillMultipleDesiredShardingKeySmallTable keep. To provide feedback on your experience with `gitlab-housekeeper` please create an issue with the label ~"GitLab Housekeeper" and consider pinging the author of this keep. Changelog: other
-
由 Omar Qunsul 创作于
Merge branch 'backfill-multiple-desired-sharding-key-small-table-snippet_repositories' into 'master' Add & backfill sharding keys for snippet_repositories See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/175410 Merged-by:
Omar Qunsul <oqunsul@gitlab.com> Approved-by:
Omar Qunsul <oqunsul@gitlab.com> Reviewed-by:
Rutger Wessels <rwessels@gitlab.com> Co-authored-by:
Shubham Kumar <shukumar@gitlab.com>
-
由 Shubham Kumar 创作于
Add and backfill multiple sharding keys for snippet_repositories. This table has a [desired sharding key](https://docs.gitlab.com/ee/development/database/multiple_databases.html#define-a-desired_sharding_key-to-automatically-backfill-a-sharding_key) configured ([view configuration](https://gitlab.com/gitlab-org/gitlab/-/blob/master/db/docs/snippet_repositories.yml)). This merge request is the first step towards transforming the desired sharding key into a [sharding key](https://docs.gitlab.com/ee/development/database/multiple_databases.html#defining-a-sharding-key-for-all-cell-local-tables). This involves three changes: - Adding a new column that will serve as the sharding key (along with the relevant index and foreign key). - Populating the sharding key when new records are created by adding a database function and trigger. - Scheduling a [batched background migration](https://docs.gitlab.com/ee/development/database/batched_background_migrations.html) to set the sharding key for existing records. Once the background migration has completed, a second merge request will be created to finalize the background migration and validate the not null constraint. Please review this merge request from a ~backend perspective. The main thing we are looking to verify is that the added column and association match the values specified by the [desired sharding key](https://gitlab.com/gitlab-org/gitlab/-/blob/master/db/docs/snippet_repositories.yml) configuration and that backfilling the column from this other table makes sense in the context of this feature. When you are finished, please: 1. Trigger the [database testing pipeline](https://docs.gitlab.com/ee/development/database/database_migration_pipeline.html) as instructed by Danger. 1. Request a review from the ~backend maintainer and ~database reviewer suggested by Danger. If you have any questions or concerns, reach out to `@tigerwnz` or @shubhamkrai. This merge request was generated by a once off keep implemented in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/143774 This change was generated by [gitlab-housekeeper](https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-housekeeper) using the Keeps::BackfillMultipleDesiredShardingKeySmallTable keep. To provide feedback on your experience with `gitlab-housekeeper` please create an issue with the label ~"GitLab Housekeeper" and consider pinging the author of this keep. Changelog: other
-
由 Marius Bobin 创作于
No-op 20250307080100 migration and retry in 20250307080101 See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184439 Merged-by:
Marius Bobin <mbobin@gitlab.com> Approved-by:
Marius Bobin <mbobin@gitlab.com> Approved-by:
Pavel Shutsin <pshutsin@gitlab.com> Reviewed-by:
Marius Bobin <mbobin@gitlab.com> Reviewed-by:
Pedro Pombeiro <noreply@pedro.pombei.ro> Co-authored-by: Pedro Pombeiro <>
-
由 Pedro Pombeiro 创作于
Changelog: other
-
由 Zachary Painter 创作于
Update image alt text See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184405 Merged-by:
Zachary Painter <zpainter@gitlab.com> Approved-by:
Zachary Painter <zpainter@gitlab.com> Approved-by:
Missy Davies <mdavies@gitlab.com> Co-authored-by:
ahmad-kashkoush <ahmedkashkoush464@gmail.com>
-
由 Ahmed_Kashkoush 创作于
-
由 Suzanne Selhorn 创作于
Add rails console link See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184463 Merged-by:
Suzanne Selhorn <sselhorn@gitlab.com> Approved-by:
Suzanne Selhorn <sselhorn@gitlab.com> Co-authored-by:
Vidhya Hariharan <7292346-vidhya.h@users.noreply.gitlab.com>
-
由 Lukas Eipert 创作于
Make snippet list info focusable See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184209 Merged-by:
Lukas Eipert <leipert@gitlab.com> Approved-by:
Buck O'Leary <bucoleary@gitlab.com> Approved-by:
Lukas Eipert <leipert@gitlab.com> Co-authored-by:
Annabel Dunstone Gray <annabel.dunstone@gmail.com>
-
由 Suzanne Selhorn 创作于
Update AI Gateway URL example to not use localhost See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184421 Merged-by:
Suzanne Selhorn <sselhorn@gitlab.com> Approved-by:
Suzanne Selhorn <sselhorn@gitlab.com> Co-authored-by:
Justin Farmiloe <jfarmiloe@gitlab.com>
-
由 Javiera Tapia 创作于
Create Projects::BranchRules::MergeRequestApprovalSetting model See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/183679 Merged-by:
Javiera Tapia <jtapia@gitlab.com> Approved-by:
Fabien Catteau <fcatteau@gitlab.com> Reviewed-by:
Fabien Catteau <fcatteau@gitlab.com> Reviewed-by:
Jerry Seto <jseto@gitlab.com>
-
由 Frédéric Caplette 创作于
Update URL in default readme See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184286 Merged-by:
Frédéric Caplette <fcaplette@gitlab.com> Approved-by:
Vamsi Vempati <vvempati@gitlab.com> Approved-by:
Frédéric Caplette <fcaplette@gitlab.com> Co-authored-by:
Filip Aleksic <faleksic@gitlab.com>
-
由 Pavel Shutsin 创作于
Extract metadata from conaninfo.txt See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/178728 Merged-by:
Pavel Shutsin <pshutsin@gitlab.com> Approved-by:
Moaz Khalifa <mkhalifa@gitlab.com> Approved-by:
Abdul Wadood <awadood@gitlab.com> Approved-by:
David Fernandez <dfernandez@gitlab.com> Approved-by:
Pavel Shutsin <pshutsin@gitlab.com> Reviewed-by:
David Fernandez <dfernandez@gitlab.com> Reviewed-by:
Moaz Khalifa <mkhalifa@gitlab.com> Reviewed-by:
Mariana Bocoi <mariana.bocoi@scania.com> Co-authored-by:
Mariana Bocoi <mariana.bocoi@scania.com>
-
由 Mariana Bocoi 创作于
-
由 Terri Chu 创作于
Reorder runners backfill migrations See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184341 Merged-by:
Terri Chu <tchu@gitlab.com> Approved-by:
Pedro Pombeiro <noreply@pedro.pombei.ro> Approved-by:
Leonardo da Rosa <ldarosa@gitlab.com> Approved-by:
Terri Chu <tchu@gitlab.com> Reviewed-by:
Leonardo da Rosa <ldarosa@gitlab.com> Co-authored-by:
Marius Bobin <mbobin@gitlab.com>
-
由 Lukas Eipert 创作于
Sync translations from crowdin (2025-03-13) See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184470 Merged-by:
Lukas Eipert <leipert@gitlab.com> Approved-by:
Lukas Eipert <leipert@gitlab.com> Co-authored-by:
GitLab Crowdin Bot <opysaryuk+crowdinbot@gitlab.com>
-
由 Marcin Sedlak-Jakubowski 创作于
Update status_uri description for health checking See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184272 Merged-by:
Marcin Sedlak-Jakubowski <msedlakjakubowski@gitlab.com> Approved-by:
Marcin Sedlak-Jakubowski <msedlakjakubowski@gitlab.com> Approved-by:
Naman Jagdish Gala <ngala@gitlab.com> Co-authored-by:
James Reed <jreed@gitlab.com>
-
由 Michał Zając 创作于
Add actual_state_updated_at column to workspaces table See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184104 Merged-by:
Michał Zając <mzajac@gitlab.com> Approved-by:
Michał Zając <mzajac@gitlab.com> Reviewed-by:
Chad Woolley <cwoolley@gitlab.com> Co-authored-by:
Chad Woolley <cwoolley@gitlab.com>
-
由 Kev Kloss 创作于
Default to metadata cache for dependency-cruiser and disable cache on CI See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184319 Merged-by:
Kev Kloss <kkloss@gitlab.com> Approved-by:
Kev Kloss <kkloss@gitlab.com> Reviewed-by:
Kev Kloss <kkloss@gitlab.com> Co-authored-by:
Lohit Peesapati <lpeesapati@gitlab.com>
-
由 Kassio Borges 创作于
Update /set_parent work item quick action to fail gracefully See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184133 Merged-by:
Kassio Borges <kborges@gitlab.com> Approved-by:
Kassio Borges <kborges@gitlab.com> Reviewed-by:
Kassio Borges <kborges@gitlab.com> Reviewed-by:
Nicolas Dular <ndular@gitlab.com> Co-authored-by:
Matt D'Angelo <mdangelo@gitlab.com>
-
由 Matt D'Angelo 创作于
-
由 Kassio Borges 创作于
cleanup license-checker-step in AgentConfigOperations See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/184385 Merged-by:
Kassio Borges <kborges@gitlab.com> Approved-by:
Vishal Tak <vtak@gitlab.com> Approved-by:
Kassio Borges <kborges@gitlab.com> Co-authored-by:
safwanuahmed <safahmed@gitlab.com>
-
由 Bogdan Denkovych 创作于
Endpoint to update service accounts as a group owner See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/182607 Merged-by:
Bogdan Denkovych <bdenkovych@gitlab.com> Approved-by:
Bogdan Denkovych <bdenkovych@gitlab.com> Reviewed-by:
Bogdan Denkovych <bdenkovych@gitlab.com> Reviewed-by:
Ian Anderson <ianderson@gitlab.com> Co-authored-by:
Aboobacker MK <akarakath@gitlab.com>
-
由 Brett Walker 创作于
Adding extensions (yml, yaml, properties) to SAST templates See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/180712 Merged-by:
Brett Walker <bwalker@gitlab.com> Approved-by:
Tiger Watson <twatson@gitlab.com> Approved-by:
Meir Benayoun <mbenayoun@gitlab.com> Approved-by:
Brett Walker <bwalker@gitlab.com> Reviewed-by:
Meir Benayoun <mbenayoun@gitlab.com> Co-authored-by:
Julian Thome <jthome@gitlab.com>
-
由 Julian Thome 创作于
-