该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 7月 24, 2024
-
-
由 Jose Ivan Vargas 创作于
This moves the Troubleshoot button from the top bar of the job logs to the bottom just underneath the log itself
-
由 Vlad Wolanyk 创作于
updates copy for workflow rules and rules failure messages
-
由 Paul Gascou-Vaillancourt 创作于
The `clear` method was not bound to the correct context, preventing it from referencing the `input` property. This fixes it by properly binding the method in the class constructor. Changelog: fixed
-
由 Cindy Halim 创作于
-
由 Mario Celi 创作于
We are dropping the work_item_types.namespace_id column, so we first need to ignore it in this release (17.3) so it can be dropped from the DB in 17.4
-
由 Gosia Ksionek 创作于
-
由 Eugenia Grieff 创作于
Changelog: fixed EE: true
-
- 7月 23, 2024
-
-
由 Nick Leonard 创作于
Shows just IID if same namespace or full path if not same namespace.
-
由 Javiera Tapia 创作于
This commit introduces an advisory lock at the lfs_objects_model level to ensure uniqueness of new records (only one lfs_objects_project per repository type). After this, we need to add a migration that deduplicates lfs_objects_projects by lfs_object_id, project_id and repository_type. After the migration is finalized, we need to add a unique index on all three columns to ensure data integrity since the unique validation already exists at the model level. Changelog: other
-
由 Frédéric Caplette 创作于
In an effort to help developers debug their local setup and features, we are adding an info button to the perf bar for local development. In this first step, we are adding the host information inside this new modal.
-
由 Rutger Wessels 创作于
Only in rspec context
-
由 Adie (she/her) 创作于
-
由 Rajan Mistry 创作于
-
由 Chen Charnolevsky 创作于
Add the left side of 'code flow' that including description and steps Disable feature flag Update 'vulnerability_file_contents' with new highlighted component remove unnecessary code move functions fix pipeline errors CR changes Fix unit test Fix error
-
由 Kassio Borges 创作于
With the introduction of the [RolledupDates] we also introduced `WorkItems::DatesSource` model to be the work item single source of truth for dates. However, the `StartAndDueDate` widget still writing dates directly on the `issues` table. To make matters worse, there's also some confusion between the `RolledupDates` and the `StartAndDueDate` widgets, not writting to the same table, making it hard to query work items based on their date fields. Now with more knowledge, we see that the `RolledupDates` widget should be actually just an EE extension for the already existing `StartAndDueDate`. To simplify all that, we need to: 1. https://gitlab.com/gitlab-org/gitlab/-/issues/469379: First, during this transition period, ensure that `issues` table is our initial Single Source of Truth for work items `star_date` and `due_date` fields. This where we introduced a database trigger to ensure every `start_date` and `due_date` writes on the `work_item_dates_sources` update the same fields in the `issues` table. 1. (>> this work) Ensure that `StartAndDueDate` widget writes to the `work_item_dates_sources` table. This way, both widgets are writting to the same place, which is synced with the `issues` table. 1. Change the `RolledupDates` widget to be an `EE` extension of the `StartAndDueDate` widget. This will simplify the ~frontend and ~backend as we will need to manage a single widget for the dates fields. 1. Migrate the `start_date` and `due_date` fields from `issues` table to the `work_item_dates_sources` table and ensure all writting of the `start_date` and `due_date` fields also writes to the `work_item_dates_sources` table (invert the `#1`). This is a larger work, and would block the migration of the Epics -> WorkItems, that's why it'll be done later. 1. Change all the readings of dates to be done through the `work_item_dates_sources` table, instead of issues `table` 1. Remove the `start_date` and `due_date` columns from the `issues` table. Related to: https://gitlab.com/gitlab-org/gitlab/-/issues/470375 [RolledupDates]: https://gitlab.com/gitlab-org/gitlab/-/issues/409936
-
由 Lee Tickett 创作于
Co-authored-by:
Deepika Guliani <dguliani@gitlab.com>
-
由 Himanshu Kapoor 创作于
Split some node serializers for rich text editor in separate files. Moves them from markdown_serializer.js and serialization_helper.js to their own files under a serializer directory. The markdown_serializer.js and serialization_helper.js files were getting too large. The nodes moved include description_item, description_list, details_content, details, emoji, figure_caption, figure, footnote_definition, footnote_reference, frontmatter, heading, horizontal_rule, list_item, loading.
-
由 Himanshu Kapoor 创作于
Split some node serializers for rich text editor in separate files. Moves them from markdown_serializer.js and serialization_helper.js to their own files under a serializer directory. The markdown_serializer.js and serialization_helper.js files were getting too large. The nodes moved include audio, blockquote, code_block, code_suggestion, diagram, drawio_diagram, image and video.
-
由 Tianwen Chen 创作于
- merge_requests.head_pipeline_id_convert_to_bigint - merge_request_metrics.pipeline_id_convert_to_bigint - merge_trains.pipeline_id_convert_to_bigint - vulnerability_feedback.pipeline_id_convert_to_bigint - vulnerability_occurrence_pipelines.pipeline_id_convert_to_bigint Changelog: changed
-
由 Keeyan Nejad 创作于
Prevents errors if we rename models/columns of referenced data
-
由 Tian Chen 创作于
- Ci::DailyBuildGroupReportResult - Ci::PipelineMessage - Ci::Sources::Project
-
由 Austin Regnery 创作于
Changelog: removed EE: true
-
由 Rudy Crespo 创作于
Fixes bug on the Usage trends page in which the tooltips in the Total projects & groups, Pipelines and Issues & Merge Requests charts are empty upon fetching paginated data Changelog: fixed
-
由 Thomas Hutterer 创作于
Changelog: fixed
-
由 Javiera Tapia 创作于
Since the `disable_git_http_fetch_writes` FF does not define a feature flag actor, it is currently not possible to increment the fetch project statistics without enabling or disabling it for all projects. This commit introduces the `allow_git_http_fetch_writes` FF that allow us to control this and unskip the statistics for specific projects.
-
由 Ian Anderson 创作于
Changelog: changed
-
由 Peter Hegman 创作于
Part of a larger migration effort to move everything to Tailwind CSS
-
Adds confidential, group, and my-reaction filters Behind feature flags - work_item_epics - work_item_epics_rollout - namespace_level_work_items
-
由 Michael 创作于
Changelog: changed
-
由 Rutger Wessels 创作于
Changelog: changed
-
由 Frédéric Caplette 创作于
When we executed DuoChat quick actions, no loading state was triggered. This commit adds a util function that decrease complexoty and fixes the loading state.
-
由 Nick Leonard 创作于
Removes project-only limitation since group milestones can be linked to project releases Changelog: changed EE: true
-
由 Abdul Wadood 创作于
GraphQL filters out the SAML groups where the current user is a member and the SAML session has expired because the `needs_new_sso_session` condition in EE::GroupPolicy evaluates to true for expired SAML sessions which in turn makes the `read_group` policy to evaluate to false. This results in GraphQL returning less groups than queried. Here we filter out the inactive SAML session groups from the database itself and return the expected number of groups requested by GraphQL query.
-
由 Jack Chapman 创作于
Removes duplicate projects from the list when selecting the project a child item should be created in. If a project is in the 'Recently used' group in the list, it will not appear in the 'Projects' group Changelog: fixed
-
由 Mario Celi 创作于
Initially we assumed that auto closing issues via merge request was enabled for issues that exist at the group level. Now we want to default to disabled if an issue exists at the group level. In the future, we could add a setting to groups to add the auto close feature. Better this way, as the other way, there's no way to disable it. Changelog: changed
-
由 Sascha Eggenberger 创作于
Changelog: changed
-
由 Anna Vovchenko 创作于
Click Flux sync badge to view resource details in a drawer. Changelog: added
-
由 Zack Cuddy 创作于
This change migrates the new UI to use Vue Router rather than direct url manipulation.
-