- 19 Aug, 2019 8 commits
-
-
GitLab Bot authored
-
Evan Read authored
Improve docs for cross-project MR dependencies Closes gitlab-ee#12980 See merge request gitlab-org/gitlab-ce!31904
-
Nick Thomas authored
Addressing a documentation review by Marcia!
-
GitLab Bot authored
-
Evan Read authored
Docs: Refresh CI quick start screenshots See merge request gitlab-org/gitlab-ce!31877
-
Tristan Williams authored
-
Evan Read authored
Remove MySQL references from development docs See merge request gitlab-org/gitlab-ce!31712
-
GitLab Bot authored
-
- 18 Aug, 2019 9 commits
-
-
Evan Read authored
Mentions `auth.log` on Rate limit docs See merge request gitlab-org/gitlab-ce!31906
-
Mayra Cabrera authored
Requests over the rate limit are logged into `auth.log`
-
GitLab Bot authored
-
Evan Read authored
Update srmX configuration description See merge request gitlab-org/gitlab-ce!31142
-
GitLab Bot authored
-
Evan Read authored
add GitLab CI job token API authentication section See merge request gitlab-org/gitlab-ce!30698
-
Ben Bodenmiller authored
-
Thong Kuah authored
Regenerate locale/gitlab.pot See merge request gitlab-org/gitlab-ee!15344
-
Stan Hu authored
-
- 17 Aug, 2019 3 commits
-
-
GitLab Bot authored
-
Paul Slaughter authored
Merge branch '50020-fe-allow-email-notifications-to-be-disabled-for-all-users-of-a-group' into 'master' UI for disabling group/project email notifications Closes #50020 See merge request gitlab-org/gitlab-ce!30961
-
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 20 commits
-
-
GitLab Bot authored
-
Michael Kozono authored
Migrate legacy uploads rake tasks See merge request gitlab-org/gitlab-ce!29409
-
GitLab Bot authored
-
Paul Slaughter authored
Add new table to store email domain per group See merge request gitlab-org/gitlab-ce!31071
-
Gosia Ksionek authored
In order to save user preferences regarding user emails allowed to be invited to group Add foreign_key and down method Change adding foreign key Add partial call to view Add changelog entry Fix schema
-
Paul Slaughter authored
Allow restricting group members by a domain whitelist Closes #10972 See merge request gitlab-org/gitlab-ee!14800
-
Gosia Ksionek authored
From squash: > Add new table to store email domain > > In order to save user preferences regarding users allowed to be invited to group
-
Paul Slaughter authored
Add a Upgrade button to group's billings page Closes customers-gitlab-com#517 See merge request gitlab-org/gitlab-ee!14849
-
Oswaldo Ferreira authored
It adds an upgrade button to the group billings page that redirects to the customers portal upgrade checkout page. If the user is not logged in at the portal he/she will be automatically redirected after the login process. If the user is at the latest tier, the button won't be presented.
-
GitLab Bot authored
-
Clement Ho authored
Embed specific metrics chart in issue Closes #62971 See merge request gitlab-org/gitlab-ce!31644
-
Laura Montemayor authored
This MR adds the styles for displaying a single chart next to another one when embedding them in an issue.
-
GitLab Bot authored
-
Stan Hu authored
Fix starrers counts after searching See merge request gitlab-org/gitlab-ce!31823
-
Douglas Barbosa Alexandre authored
Resolve "Broken master: Job Failed #274177103" Closes #13587 See merge request gitlab-org/gitlab-ee!15302
-
Stan Hu authored
Look up upstream commits once before queuing ProcessCommitWorkers Closes #65464 See merge request gitlab-org/gitlab-ce!31871
-
GitLab Bot authored
-
Mayra Cabrera authored
Optimize DB indexes for ES indexing of notes See merge request gitlab-org/gitlab-ce!31846
-
Douwe Maan authored
Expire project caches once per push instead of once per ref Closes #52046 See merge request gitlab-org/gitlab-ce!31876
-
Stan Hu authored
Previously `ProjectCacheWorker` would be scheduled once per ref, which would generate unnecessary I/O and load on Sidekiq, especially if many tags or branches were pushed at once. `ProjectCacheWorker` would expire three items: 1. Repository size: This only needs to be updated once per push. 2. Commit count: This only needs to be updated if the default branch is updated. 3. Project method caches: This only needs to be updated if the default branch changes, but only if certain files change (e.g. README, CHANGELOG, etc.). Because the third item requires looking at the actual changes in the commit deltas, we schedule one `ProjectCacheWorker` to handle the first two cases, and schedule a separate `ProjectCacheWorker` for the third case if it is needed. As a result, this brings down the number of `ProjectCacheWorker` jobs from N to 2. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52046
-