- 19 Aug, 2019 12 commits
-
-
Jonathan Love authored
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.
-
Evan Read authored
Update screenshot to fix bad html Closes #63920 See merge request gitlab-org/gitlab-ce!31889
-
Marcel Amirault authored
-
Evan Read authored
Fix required runner permissions Closes #52513 See merge request gitlab-org/gitlab-ce!31598
-
Evan Read authored
Docs: Improve clarity of SCIM workflow Closes #65097 See merge request gitlab-org/gitlab-ce!31881
-
Tristan Williams authored
-
Mark Lapierre authored
Quarantine failing test See merge request gitlab-org/gitlab-ce!31943
-
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!
-
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
-
- 18 Aug, 2019 6 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`
-
Evan Read authored
Update srmX configuration description See merge request gitlab-org/gitlab-ce!31142
-
Evan Read authored
add GitLab CI job token API authentication section See merge request gitlab-org/gitlab-ce!30698
-
Ben Bodenmiller authored
-
Mark Lapierre authored
-
- 17 Aug, 2019 2 commits
-
-
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
-
-
Michael Kozono authored
Migrate legacy uploads rake tasks See merge request gitlab-org/gitlab-ce!29409
-
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
-
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.
-
Stan Hu authored
Fix starrers counts after searching See merge request gitlab-org/gitlab-ce!31823
-
Stan Hu authored
Look up upstream commits once before queuing ProcessCommitWorkers Closes #65464 See merge request gitlab-org/gitlab-ce!31871
-
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
-
Mayra Cabrera authored
Fix Arel deprecation warning in clusters_hierarchy See merge request gitlab-org/gitlab-ce!31916
-
Markus Koller authored
To index notes, we exclude system notes and use `find_in_batches` to load them in batches for submission to the ES bulk import API. These queries often result in DB timeouts because the usage of `ORDER BY id` results in the `notes_pkey` index being used. This adds an optimized partial index, and removes the unused index `index_notes_on_noteable_type` which is already covered for our usage by the existing `index_notes_on_noteable_id_and_noteable_type`. Newer versions of PostgreSQL (at least 11) are smarter about this and use `index_notes_on_project_id_and_noteable_type` instead, so we might be able to remove the partial index again in the future.
-
Douwe Maan authored
Instead of checking if a commit already exists in the upstream project in its ProcessCommitWorker and bailing out if it does, we check the existence of all commits in bulk in Git::BranchHooksService, so that we can skip scheduling ProcessCommitWorker jobs for those commits that already exist upstream entirely.
-
Stan Hu authored
Remove Security Dashboard feature flag See merge request gitlab-org/gitlab-ce!31820
-
rossfuhrman authored
This removes the group_overview_security_dashboard feature flag
-
Stan Hu authored
As mentioned in https://github.com/rails/rails/pull/29619, this removes this warning message: ``` Delegating join_sources to arel is deprecated and will be removed in Rails 6.0. (called from project_clusters_base_query at app/models/clusters/clusters_hierarchy.rb:62) ``` Part of https://gitlab.com/gitlab-org/gitlab-ce/issues/61451
-
Walmyr Lima e Silva Filho authored
Quarantining add_file_template_spec See merge request gitlab-org/gitlab-ce!31908
-
Grant Young authored
Issue - https://gitlab.com/gitlab-org/quality/nightly/issues/127
-
Filipa Lacerda authored
Generate shareable link for specific metric charts See merge request gitlab-org/gitlab-ce!31339
-
Tristan Read authored
Adds a clipboard button to the metrics dashboard, that allows copying a link to an individual chart.
-