- Sep 04, 2019
-
-
Eugenia Grieff authored
- Add new service that transfers milestones from a group to a project - Include new service in Projects transfer service - Include FromUnion module in Milestone model to use in transfer service - Add specs for new milestones service - Add specs for transferring milestones in project transfer service
-
Filipa Lacerda authored
Creates a link component, a line component and a clickable line component to handle the new job log format
-
Kamil Trzcińśki authored
In case when `needs:` is missing, but when requested by service, we would not save the pipeline with config_error. This makes it explicit that we want to persist the error as `config_error` failure reason.
-
Lee Tickett authored
This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
-
- Sep 03, 2019
-
-
Jacques Erasmus authored
Added a cluster domain wanring if no domain is defined
-
Mike Greiling authored
This reverts merge request !32400
-
Lee Tickett authored
This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
-
Lee Tickett authored
This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
-
Alexandru Croitor authored
Fix wording on milestone due date, to show today instead of hours ago or remaining, when milestone is due today.
-
Andreas Brandl authored
This fixes a high frequency N+1 issue: `RoutableActions#find_routable!` is used across many controllers to retrieve e.g. the Project or Namespace by path. The `#find_routable!` method calls `#ensure_canonical_path` which in turn retrieves `#full_path` from the given Routable. This in turn triggers a lookup on `routes`, leading to a high frequency of these queries: ```sql SELECT "routes".* FROM "routes" WHERE "routes"."source_id" = $1 AND "routes"."source_type" = $2 LIMIT $3 ``` This is unnecessary as we already join `routes` in `Routable#find_by_full_path` anyways.
-
Modified schema via migrations. Added one-to-one relationship between the two models. Added changelog file
-
Fatih Acet authored
This commit also unifies layout structure and remove no_container flag
-
Filipa Lacerda authored
With the new job log json format we need a parser on the frontend
-
Extends the permission of $CI_REGISTRY_USER to allow them to delete tags in addition to just pushing. https://gitlab.com/gitlab-org/gitlab-ce/issues/40096
-
Heinrich Lee Yu authored
We're reversing the deprecation due to user feedback
-
- Sep 02, 2019
-
-
Brandon Williams authored
When updating group and project members, new system hooks `user_update_for_group` and `user_update_for_team` will be executed. Fixes https://gitlab.com/gitlab-org/gitlab-ee/issues/12252
-
Andreas Brandl authored
This column is not present in `db/schema.rb` and hence needs to be removed conditionally. See https://gitlab.com/gitlab-org/gitlab-ce/issues/66901 for background
-
The 'assigned' reason doesn't apply to notes, but the other two can ('mentioned' and 'own_activity'), so we can still use this for note emails.
-
This fixes a regression where an underscore in labels no longer worked: https://github.com/knsv/mermaid/releases
-
GitLab Release Tools Bot authored
[ci skip]
-
Andreas Brandl authored
This adjusts the partial condition for an index. The index is intended to be used when counting active users with `ghost IS NOT TRUE AND bot_type IS NULL`. With the current index, this wasn't working as the partial condition didn't match the query: `ghost <> TRUE` is not semantically equivalent to `ghost IS NOT TRUE` (null semantics). The reason we add an index particularly intended for EE is that the EE query is going to have the additional part `AND bot_type IS NULL` whereas the CE query doesn't. Logically, it'd be enough to have an index for `ghost IS NOT TRUE`. However, on GitLab.com, the query planner makes poor choices when the additional `AND bot_type IS NULL` part is present: It goes for the index on `bot_type` and doesn't use the partial index. Note the existing index isn't being used at all according to GitLab.com index statistics. Hence we can first remove it and don't have to worry about the window of time without an index. Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/66770
-
as requested by the reviewer
-
Wrong format on MS Teams integration push events with multi line commit messages
-
-
Nick Kipling authored
-
Heinrich Lee Yu authored
Fixes RelativeLinkFilter for users that don't have access to the project's repository
-
Patrick Bajao authored
Instead of highlighting all lines when not all of them are needed, only highlight from the beginning up to the specified limit. The `BlobPresenter#highlight` method has been updated to support `to` param. This param will be used to limit the content to be highlighted.
-
Thong Kuah authored
The current default is too small for a user to see what they have pasted in.
-
- Sep 01, 2019
-
-
Stan Hu authored
This fixes a regression where an underscore in labels no longer worked: https://github.com/knsv/mermaid/releases
-
Nick Thomas authored
-
- Aug 31, 2019
-
-
Stan Hu authored
Previously the following syntax would fail in the linter with an error 500: ``` include: template: - License-Management.gitlab-ci.yml - Dependency-Scanning.gitlab-ci.yml - SAST.gitlab-ci.yml ``` Now the error will call out specifically that the value is not a string. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66605
-
- Aug 30, 2019
-
-
Arun Kumar Mohan authored
Previously, the `showStagedIcon` property was doing the opposite of what its name suggested. It was rendering the staged icon when `showStagedIcon` was `false` and rendering the regular icon when it was `true`.
-
This change limits the number of emails for new access requests notifications to 10 most recently active owners/maintainers
-
https://gitlab.com/gitlab-org/gitlab-ce/issues/56295Jesse Hall authored
All avatars now visible in commit trailers.
-
Nathan Friend authored
This commit adds a warning message that is always displayed that informs users that their GitLab Pages sites will take a bit of time before they can be accessed after being deployed for the first time.
-
James Fargher authored
This does not support upgrading from earlier versions
-
Shinya Maeda authored
When deployable is nil, we gracefully take care of the case.
-
Rename epic column state to state_id to be consistent with issues and merge requests
-
Markus Koller authored
- Use "results" instead of "blobs", "wiki blobs", "snippet blobs" - Use "comments" instead of "notes" - Use correct pluralization - Don't add "1 - 10 of" if there's only one page
-