该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 3月 13, 2025
-
-
由 Kassio Borges 创作于
With the goal to reduce the number of objects created during a GraphQL call, the condition to initialize a `Gitlab::Graphql::Authorize::FieldExtension::Redactor`, the `Gitlab::Graphql::Authorize::FieldExtension::Redactor#active?` was extracted to the `Gitlab::Graphql::Authorize::FieldExtension#authorized?`. Local benchmark comparisons: * ips (iterations per second) ``` Warming up -------------------------------------- master 1.000 i/100ms avoid_redact 1.000 i/100ms Calculating ------------------------------------- master 0.324 (± 0.0%) i/s (3.08 s/i) - 4.000 in 12.343343s avoid_redact 0.326 (± 0.0%) i/s (3.07 s/i) - 4.000 in 12.277845s Comparison: avoid_redact: 0.3 i/s master: 0.3 i/s - 1.01x slower ``` * memory comsumption ``` Calculating ------------------------------------- master 570.367M memsize ( 807.319k retained) 3.385M objects ( 2.032k retained) 50.000 strings ( 50.000 retained) avoid_redact 569.443M memsize ( 617.745k retained) 3.380M objects ( 1.319k retained) 50.000 strings ( 50.000 retained) Comparison: avoid_redact: 569442619 allocated master: 570366893 allocated - 1.00x more ``` Related to: https://gitlab.com/gitlab-org/gitlab/-/issues/521588
-
由 Tomas Bulva 创作于
-
由 Chaoyue Zhao 创作于
This happens when user navigate to the blob page from repository page. The `Mousetrap.bind()` in mounted() is getting ovewritten by the shortcuts_blob.js, which we use to trigger the old permalink button (when flag is off). This adds a feature flag check in `shortcuts_blob.js. Additionally, this also adds a new const under keybindings.js that better reflects the nature of the new permalink (e.g. copy). This feature was originally added in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/181901 and is behind the `blob_overflow_menu` feature flag.
-
由 Madelein van Niekerk 创作于
Changelog: changed
-
由 David Fernandez 创作于
Users can now set Docker Hub credentials (username/password, PAT or OAT) in the dependency proxy for containers. When pulling images that are not known by the dependency proxy, they will be pulled from Docker Hub using the provided credentials. Update the dependency proxy documentation. Changelog: changed
-
由 Niko Belokolodov 创作于
-
由 Nick Leonard 创作于
Adds tooltips with keys for work item fields with shortcuts. Changelog: added
-
由 Paul Slaughter 创作于
- Based on `vscode_extension_marketplace_settings` feature flag. - Add extension_marketplace_generator to Web IDE settings that optionally reads from application settings or returns the current Open VSX default. - Updates marketplace_home_url to be based on the value from this setting.
-
- 3月 12, 2025
-
-
由 Samuel Suikkanen 创作于
Markdown link syntax can now be used in math expressions without losing characters. Changelog: fixed
-
由 Michał Wielich 创作于
Add migrated event shared examples
-
由 Gerardo Navarro 创作于
Changelog: other EE: true
-
由 Nicholas Wittstruck 创作于
Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/517491 Changelog: added
-
由 Gerardo Navarro 创作于
The attribute `minimum_access_level_for_delete` that was introduced in the MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/179739 . This commit includes the attribute `minimum_access_level_for_delete` in the GRAPHQL API and also updates the documentation. Changelog: added
-
由 Pratibha Gupta 创作于
-
由 Matt D'Angelo 创作于
Changelog: fixed
-
由 Jonas Larsen 创作于
-
由 Dylan Griffith 创作于
-
This reverts merge request !183259
-
由 Eduardo Sanz García 创作于
In addition, we unify all the usage in a single place. Changelog: fixed
-
由 Taka Nishida 创作于
Using the same create service for both REST API and GraphQL improves the consistency and DRY.
-
由 Dylan Griffith 创作于
This foreign key caused the incident https://gitlab.com/gitlab-com/gl-infra/production/-/issues/19474 . It was added in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/177799 . The problem is that we added a foreign key before adding an index. This means that all statements like `DELETE FROM projects ...` will need to scan the entire `merge_request_diff_files` table to check if the foreign key is valid. This was causing timeouts. In order to resolve the incident we've already manually deleted this migration on GitLab.com . This MR additionally adds another migration to remove the foreign key to clean up any environments where this migration may have already run.
-
由 Stanislav Lashmanov 创作于
-
由 Agnes Slota 创作于
Given that configurable statuses functionality should only be available for Premium and Ultimate users, we need to ensure the status widget is EE-only. This commit moves the status widget-related classes under the EE namespace to achieve that.
-
由 Miguel Rincon 创作于
In order to display entire days in the CI/CD analytics chart, this change removes the time of day and timezone from the dates sent to request pipelines' information.
-
由 fdegier 创作于
Changelog: added
-
由 Sincheol (David) Kim 创作于
This adds `diff_files_metadata` endpoint for each resource that we support in rapid diffs (e.g. `MergeRequest`, `Commit` and `Compare`). This is behind `rapid_diffs` FF.
-
由 James Nutt 创作于
This MR adds an API endpoint to allow a user to perform bulk placeholder reassignments by CSV upload without interacting with the GitLab UI. Download endpoint MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/183360 Related issue: https://gitlab.com/gitlab-org/gitlab/-/issues/513794
-
由 Thong Kuah 创作于
This is meant to more clearly denote groups of tables that are cell-local. These cell-local tables should not have references to organization tables.
-
由 Carla Drago 创作于
This adds internal event tracking to several events in placeholder reassignment. Changelog: other
-
由 Pedro Pombeiro 创作于
Changelog: other
-
由 Nate Rosandich 创作于
Changelog: changed
-
由 Alexander Turinske 创作于
- sometimes getModel returns nul and the ui errors - add a check for this - update tests Changelog: fixed
-
由 Emma Park 创作于
Previously, the file size check required a complete graph walk, which was slow. This change optimizes the process by using an existing method that checks only the quarantine directory, improving performance. Additionally, since this is an EE feature, a new EE-specific FileSizeCheck class was introduced to retrieve and apply the push rule file size limit Changelog: changed EE: true
-
由 long nguyen huy 创作于
Remove only create validation of validate_only_one_sharding_key_present and validate_imported_entity_type Changelog: other
-
由 Deepak kumar 创作于
-
由 Kerri Miller 创作于
-
由 Dmytro Biryukov 创作于
Add a callback to backfill project with pipeline variables table on new records Address all the comments Skip id primary key in favor of project_id Add a trigger function instead of model callback Add a trigger migration Allow projects_with_pipeline_variables cross database Changelog: added
-
由 Kerri Miller 创作于
-
由 Peter Hegman 创作于
So we can delete top level groups without reloading the page
-
由 Gerardo Navarro 创作于
In GitLab 17.6, the package protection feature was made generally available. But, this realease did not include the deletion package protection, see https://gitlab.com/gitlab-org/gitlab/-/issues/472655 . The attribute `minimum_access_level_for_delete` that was introduced in the MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/179739 . This attribute is integrated in this MR in order to prevent the deletion of delete protected packages. At the moment, the attribute `minimum_access_level_for_delete` cannot be updated via UI, REST nor GraphQL API. This possibility will be added in a future iteration. Changelog: added
-