An error occurred fetching the project authors.
- 06 Sep, 2019 2 commits
-
-
Marcel Amirault authored
Add missing shortcuts, remove shortcuts that don't exist, and reorder as needed
-
Mayra Cabrera authored
Also fixes duplicated entry
-
- 05 Sep, 2019 2 commits
-
-
Maneschi Romain authored
to doc
-
Adam Hegyi authored
-
- 04 Sep, 2019 2 commits
-
-
🙈 jacopo beschi 🙉 authored
When using /due quick action with an invalid date a meaninful error message is shown.
-
Lee Tickett authored
This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
-
- 03 Sep, 2019 3 commits
-
-
Jacques Erasmus authored
Added a cluster domain wanring if no domain is defined
-
Shinya Maeda authored
This commit adds pipeline.type key to PipelineEntity. This key will be used in MR widget in the next iteration.
-
Heinrich Lee Yu authored
We're reversing the deprecation due to user feedback
-
- 02 Sep, 2019 2 commits
-
-
Reuben Pereira authored
Prometheus listen_address can be in formats of :9090 and 0.0.0.0:9090. But before these can be used to connect a project to Prometheus, they have to converted into absolute URIs.
-
Nick Kipling authored
-
- 30 Aug, 2019 4 commits
-
-
Filipa Lacerda authored
Updates frontend code and specs to allow for the new feature flag
-
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.
-
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
-
Juliette de Rancourt authored
-
- 29 Aug, 2019 2 commits
-
-
Lee Tickett authored
-
Tao Wang authored
Signed-off-by:
Tao Wang <twang2218@gmail.com> Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 28 Aug, 2019 2 commits
-
-
Payton Burdette authored
Add changelog entry Remove unnecessary test checking for form value Translations updated for gitlab.pot Use proper format on changelog entry
-
Arun Kumar Mohan authored
Only displays the todo body if the todo has a note. This is to avoid redundant Issue or Merge Request titles displayed both in the Todo title and body.
-
- 26 Aug, 2019 1 commit
-
-
Patrick Derichs authored
Call QuickActionsService on Note update Add support for notes which just contain commands after editing Return http status gone (410) if note was deleted Temporary frontend addition so it is not failing when a note is deleted Move specs to shared examples Fix rubocop style issue Deleting note on frontend when status is 410 Use guard clause for note which got deleted Simplified condition for nil note This method should no longer be called with nil note Refactoring of execute method to reduce complexity Move errors update to delete_note method Note is now deleted visually when it only contains commands after update Add expectation Fix style issues Changing action to fix tests Add tests for removeNote and update deleteNote expectations
-
- 24 Aug, 2019 1 commit
-
-
Владислав Поляков authored
Update show.html.haml
-
- 23 Aug, 2019 4 commits
-
-
Reuben Pereira authored
Add to the service and migration both.
-
Scott Hampton authored
Some pipeline status icon tooltips were showing "Commit: ..." which customers found to be misleading since it was not the commit that was failing but the pipeline. We are changing all status icon tooltips to say "Pipeline: ..." instead of "Commit: ..." now.
-
Adam Hegyi authored
- Introducting StageEvents to define the available events - Define the event pairing rules, since some events are not compatible - Express default Cycle Analytics stages with the event structure
-
NeroBurner authored
-
- 22 Aug, 2019 2 commits
-
-
Scott Hampton authored
Oauth2 tokens are causing issues with mirroring repos, because it effectively limits the number of repos you can mirror. Personal Access Tokens do not have this problem. This change removes the OAuth2 option from the import page for CI/CD only, and only provides the personal access token form.
-
Dimitrie Hoekstra authored
-
- 20 Aug, 2019 2 commits
-
-
Luke Duncalfe authored
Previously we asked a user to enter a new slug before taking them to the Create Page page. As a UX improvement, we now take them to a randomly generated URI so they can begin creating their new page. https://gitlab.com/gitlab-org/gitlab-ce/issues/46299
-
Samantha Ming authored
Add merge warning on avatar in: - open view assigness - collapsed view assigness - dropdown (search) view assigness Add can_merge option to MR sidebar entity
-
- 19 Aug, 2019 3 commits
-
-
jakeburden authored
-
Vladimir Shushlin authored
* Refactor some tests as well
-
Ezekiel Kigbo authored
The existing stage list items are rendered in haml, migrating them to vuejs for future work. Fix alignment of median value Test for stage_nav_item.vue
-
- 17 Aug, 2019 2 commits
-
-
Jacopo authored
changes: @user a Zoom call was added to this issue into: @user added a Zoom call to this issue Same concept appleis for "removed"
-
Brett Walker authored
- Adds UI to configure in group and project settings - Removes notification configuration for users when disabled at group or project level
-
- 16 Aug, 2019 1 commit
-
-
Tristan Read authored
Adds a clipboard button to the metrics dashboard, that allows copying a link to an individual chart.
-
- 14 Aug, 2019 4 commits
-
-
Alex Buijs authored
This link is shown when a user tries to login with an unconfirmed email address and the grace period has expired
-
Jeremy Jackson authored
This introduces several changes, but these are all just ported from the EE project.
-
Kushal Pandya authored
This reverts merge request !30808
-
Dennis Tang authored
This adds a notification to let users know of our updated privacy policy. Users can dismiss the notification either by following the link or closing the notification via an "x" icon.
-
- 13 Aug, 2019 1 commit
-
-
Bob Van Landuyt authored
**Prevention of running 2 simultaneous updates** Instead of using `RemoteMirror#update_status` and raise an error if it's already running to prevent the same mirror being updated at the same time we now use `Gitlab::ExclusiveLease` for that. When we fail to obtain a lease in 3 tries, 30 seconds apart, we bail and reschedule. We'll reschedule faster for the protected branches. If the mirror already ran since it was scheduled, the job will be skipped. **Error handling: Remote side** When an update fails because of a `Gitlab::Git::CommandError`, we won't track this error in sentry, this could be on the remote side: for example when branches have diverged. In this case, we'll try 3 times scheduled 1 or 5 minutes apart. In between, the mirror is marked as "to_retry", the error would be visible to the user when they visit the settings page. After 3 tries we'll mark the mirror as failed and notify the user. We won't track this error in sentry, as it's not likely we can help it. The next event that would trigger a new refresh. **Error handling: our side** If an unexpected error occurs, we mark the mirror as failed, but we'd still retry the job based on the regular sidekiq retries with backoff. Same as we used to The error would be reported in sentry, since its likely we need to do something about it.
-