- 19.08.2019 27 коммитов
-
-
Marin Jankovski создал
-
Nick Thomas создал
Fix pipelines not always being created after a push Closes #66196 See merge request gitlab-org/gitlab-ce!31927 (cherry picked from commit c7d12e60) b46b9d5e Fix pipelines not always being created after a push
-
Achilleas Pipinellis создал
Migrate cycle analytics topic to new section See merge request gitlab-org/gitlab-ce!31827
-
Evan Read создал
Also fixes links to new section and refactors some existing content for the GitLab 12.2 changes.
-
Nick Thomas создал
Fix pipelines not always being created after a push Closes #66196 See merge request gitlab-org/gitlab-ce!31927
-
Evan Read создал
Update docs jira service page screenshot Closes #64778 See merge request gitlab-org/gitlab-ce!31911
-
Kemais Ehlers создал
Update doc/user/project/integrations/jira.md, doc/user/project/integrations/img/jira_service_page_v12_2.png files Deleted doc/user/project/integrations/img/jira_service_page.png
-
Evan Read создал
Escape vertical bars inside code blocks in quick_actions.md See merge request gitlab-org/gitlab-ce!31556
-
Jonathan Love создал
Escape vertical bars inside code blocks in quick_actions.md - Markdown parsing in previews and Gitlab.com appear to parse these as table delimiters even when inside a code block.
-
Mark Lapierre создал
Quarantine failing test See merge request gitlab-org/gitlab-ce!31943 (cherry picked from commit 15085d03) 56dcd45a Quarantine failing test
-
Evan Read создал
Update screenshot to fix bad html Closes #63920 See merge request gitlab-org/gitlab-ce!31889
-
Marcel Amirault создал
-
Evan Read создал
Fix required runner permissions Closes #52513 See merge request gitlab-org/gitlab-ce!31598
-
Evan Read создал
Docs: Improve clarity of SCIM workflow Closes #65097 See merge request gitlab-org/gitlab-ce!31881
-
Tristan Williams создал
-
-
Evan Read создал
Improve docs for cross-project MR dependencies Closes gitlab-ee#12980 See merge request gitlab-org/gitlab-ce!31904
-
-
Evan Read создал
Docs: Refresh CI quick start screenshots See merge request gitlab-org/gitlab-ce!31877
-
Tristan Williams создал
-
Evan Read создал
Remove MySQL references from development docs See merge request gitlab-org/gitlab-ce!31712
-
Evan Read создал
Mentions `auth.log` on Rate limit docs See merge request gitlab-org/gitlab-ce!31906
-
-
-
Evan Read создал
add GitLab CI job token API authentication section See merge request gitlab-org/gitlab-ce!30698
-
Ben Bodenmiller создал
-
Mark Lapierre создал
-
- 17.08.2019 8 коммитов
-
-
Stan Hu создал
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/31741 introduced a regression where not all the right parameters would be passed into `Ci::CreatePipelineService`. We fix this by breaking out the pipeline parameters and reusing a method from `Gitlab::DataBuilder::Push`. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66196
-
Paul Slaughter создал
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 создал
- Adds UI to configure in group and project settings - Removes notification configuration for users when disabled at group or project level
-
Michael Kozono создал
Migrate legacy uploads rake tasks See merge request gitlab-org/gitlab-ce!29409
-
Paul Slaughter создал
Add new table to store email domain per group See merge request gitlab-org/gitlab-ce!31071
-
Gosia Ksionek создал
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
-
Clement Ho создал
Embed specific metrics chart in issue Closes #62971 See merge request gitlab-org/gitlab-ce!31644
-
Laura Montemayor создал
This MR adds the styles for displaying a single chart next to another one when embedding them in an issue.
-
- 16.08.2019 5 коммитов
-
-
-
Stan Hu создал
Look up upstream commits once before queuing ProcessCommitWorkers Closes #65464 See merge request gitlab-org/gitlab-ce!31871
-
Mayra Cabrera создал
Optimize DB indexes for ES indexing of notes See merge request gitlab-org/gitlab-ce!31846
-
Douwe Maan создал
Expire project caches once per push instead of once per ref Closes #52046 See merge request gitlab-org/gitlab-ce!31876
-
Stan Hu создал
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
-