该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 6月 28, 2022
-
-
由 Eugenia Grieff 创作于
Checking for each epic validatiy in Issues::ExportCsvService is no longer needed after migration that deleted invalida records. Given it is an expensive check, we need to remove it Changelog: fixed EE: true
-
- 6月 02, 2022
-
-
由 Jarka Košanová 创作于
- Removes the validation checks from services and adds a validation to the model instead - Modify the epic_issues factory to create valid associations - Fix specs with invalid records Changelog: added EE: true
-
- 9月 09, 2021
-
-
由 Felipe Artur 创作于
Nullify parent epic when moving an issue to a different group hierarchy Changelog: security EE: true
-
- 4月 08, 2021
-
-
由 Abdul Wadood 创作于
-
- 6月 05, 2020
-
-
由 Arturo Herrero 创作于
The plan for RSpec 4.0 is to disable monkey patching: https://rspec.info/blog/2013/07/the-plan-for-rspec-3/#zero-monkey-patching-mode This commit stops using RSpec monkey patching: https://relishapp.com/rspec/rspec-core/docs/configuration/zero-monkey-patching-mode
-
- 4月 16, 2020
-
-
由 Felipe Artur 创作于
Export issues feature is being open sourced because we allow importing on core but not export.
-
- 3月 02, 2020
-
-
由 Josianne Hyson 创作于
We want to be able to export issues and then use that export file to import the issues to another GitLab project. Prior to this change, the format of the export file did not match the structure of the file that the issue importer expects. This change expands the importer to first look for the know export column names and then fallback to positional values if they are not present. Addresses: - https://gitlab.com/gitlab-org/gitlab/issues/199038 - https://gitlab.com/gitlab-org/gitlab/issues/30931
-
- 1月 14, 2020
-
-
由 Jarka Košanová 创作于
- only include when the epics feature is available
-
- 9月 27, 2019
-
- 6月 02, 2018
-
-
由 Stan Hu 创作于
Move creation of time logs before the update of the issue in the setup. The introduction of `touch: true` in gitlab-org/gitlab-ce!19065 causes the timestamp to be updated.
-
- 4月 10, 2018
-
-
由 James Edwards-Jones 创作于
-
- 4月 09, 2018
-
-
由 James Edwards-Jones 创作于
-
- 2月 15, 2018
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 12月 20, 2017
-
-
由 Jan Provaznik 创作于
If issues are filtered by multiple labels, then GROUP BY statement is used to filter only issues with these labels. This is problem in combination with '.includes' which may use JOIN statement to load associated resources in single query instead of a separate query. Then the generated SQL query fails because associated resources are included in 'SELECT ...' statements but not in the GROUP BY statement. Usage of '.preload' instead of '.includes' ensures that Active Record uses a separate query instead of JOIN. Closes #4376
-
- 9月 06, 2017
-
-
由 Jarka Kadlecova 创作于
-
- 8月 18, 2017
-
-
由 Vlad 创作于
-
- 8月 09, 2017
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 8月 03, 2017
-
-
由 Robert Speicher 创作于
-
- 7月 28, 2017
-
-
由 Yorick Peterse 创作于
Having two states that essentially mean the same thing is very much like having a boolean "true" and boolean "mostly-true": it's rather silly. This commit merges the "reopened" state into the "opened" state while taking care of system notes still showing messages along the lines of "Alice reopened this issue". A big benefit from having only two states (opened and closed) is that indexing and querying becomes simpler and more performant. For example, to get all the opened queries we no longer have to query both states: SELECT * FROM issues WHERE project_id = 2 AND state IN ('opened', 'reopened'); Instead we can query a single state directly, which can be much faster: SELECT * FROM issues WHERE project_id = 2 AND state = 'opened'; Further, only having two states makes indexing easier as we will only ever filter (and thus scan an index) using a single value. Partial indexes could help but aren't supported on MySQL, complicating the development process and not being helpful for MySQL.
-
- 7月 26, 2017
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 6月 07, 2017
-
-
由 Stan Hu 创作于
-
- 3月 28, 2017
-
-
由 Valery Sizov 创作于
-
- 3月 20, 2017
-
-
由 James Edwards-Jones 创作于
-
- 3月 08, 2017
-
-
由 James Edwards-Jones 创作于
-
- 3月 07, 2017
-
-
由 James Edwards-Jones 创作于
-
- 3月 03, 2017
-
-
由 James Edwards-Jones 创作于
-
由 James Edwards-Jones 创作于
-
- 2月 27, 2017
-
-
由 James Edwards-Jones 创作于
-
- 2月 20, 2017
-
-
由 James Edwards-Jones 创作于
-