Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-20Auto-DevOps pipeline skipped bannerauto_devops_detectJames Fargher
Small banner to show the user why their pipeline was skipped
2019-08-20Initial detection of Auto-DevOps buildable projectsJames Fargher
Contains a large list of files we expect to find for an Auto-DevOps project.
2019-08-17Merge branch ↵Paul Slaughter
'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
2019-08-17UI for disabling group/project email notificationBrett Walker
- Adds UI to configure in group and project settings - Removes notification configuration for users when disabled at group or project level
2019-08-17Merge branch 'legacy-attachments-migrate-fix' into 'master'Michael Kozono
Migrate legacy uploads rake tasks See merge request gitlab-org/gitlab-ce!29409
2019-08-17Merge branch ↵Paul Slaughter
'10972-be-allow-restricting-group-members-by-a-domain-whitelist-ce' into 'master' Add new table to store email domain per group See merge request gitlab-org/gitlab-ce!31071
2019-08-17Add new table to store email domainGosia 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
2019-08-17Merge branch '62971-embed-specific-metrics-chart-in-issue' into 'master'Clement Ho
Embed specific metrics chart in issue Closes #62971 See merge request gitlab-org/gitlab-ce!31644
2019-08-17Adds specific metric styles and propLaura Montemayor
This MR adds the styles for displaying a single chart next to another one when embedding them in an issue.
2019-08-16Merge branch '66023-starrers-count-do-not-match-after-searching' into 'master'Stan Hu
Fix starrers counts after searching See merge request gitlab-org/gitlab-ce!31823
2019-08-16Merge branch 'dm-process-commit-worker-n+1' into 'master'Stan Hu
Look up upstream commits once before queuing ProcessCommitWorkers Closes #65464 See merge request gitlab-org/gitlab-ce!31871
2019-08-16Merge branch 'optimize-note-indexes' into 'master'Mayra Cabrera
Optimize DB indexes for ES indexing of notes See merge request gitlab-org/gitlab-ce!31846
2019-08-16Merge branch 'sh-post-receive-cache-clear-once' into 'master'Douwe Maan
Expire project caches once per push instead of once per ref Closes #52046 See merge request gitlab-org/gitlab-ce!31876
2019-08-16Expire project caches once per push instead of once per refStan 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
2019-08-16Merge branch 'sh-fix-arel-deprecation-join' into 'master'Mayra Cabrera
Fix Arel deprecation warning in clusters_hierarchy See merge request gitlab-org/gitlab-ce!31916
2019-08-16Optimize DB indexes for ES indexing of notesMarkus Koller
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.
2019-08-16Look up upstream commits once before queuing ProcessCommitWorkersDouwe Maan
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.
2019-08-16Merge branch 'rf-remove-group-overview-security-dashboard-feature-flag' into ↵Stan Hu
'master' Remove Security Dashboard feature flag See merge request gitlab-org/gitlab-ce!31820
2019-08-16Remove Security Dashboard feature flagrossfuhrman
This removes the group_overview_security_dashboard feature flag
2019-08-16Fix Arel deprecation warning in clusters_hierarchyStan Hu
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
2019-08-16Merge branch 'gy-quarantine-web-ide-test' into 'master'Walmyr Lima e Silva Filho
Quarantining add_file_template_spec See merge request gitlab-org/gitlab-ce!31908
2019-08-16Quarantining add_file_template_spec testGrant Young
Issue - https://gitlab.com/gitlab-org/quality/nightly/issues/127
2019-08-16Merge branch 'tr-embed-metric-links' into 'master'Filipa Lacerda
Generate shareable link for specific metric charts See merge request gitlab-org/gitlab-ce!31339
2019-08-16Add clipboard button to metric chart dropdownTristan Read
Adds a clipboard button to the metrics dashboard, that allows copying a link to an individual chart.
2019-08-16Merge branch 'mc/feature/pipeline-tracking-config-ce' into 'master'Kamil Trzciński
Add `needs:` CI config option CE Closes gitlab-ee#12334 See merge request gitlab-org/gitlab-ce!31346
2019-08-16Merge branch 'fix/commits-api-empty-refname' into 'master'Nick Thomas
fix handling of empty ref_name parameter string in commits api Closes #64745 See merge request gitlab-org/gitlab-ce!31687
2019-08-16Merge branch 'patch-31' into 'master'Nick Thomas
Removed duplicate Live preview entry for MR docs See merge request gitlab-org/gitlab-ce!31763
2019-08-16Merge branch '12111-snippet-index-ee-docs' into 'master'Grzegorz Bizon
Doc: sync ES updates See merge request gitlab-org/gitlab-ce!31883
2019-08-16Merge branch '56130-deployment-date' into 'master'Grzegorz Bizon
Expose finished_at for the Deployment entity See merge request gitlab-org/gitlab-ce!31808
2019-08-16Merge branch ↵Grzegorz Bizon
'47003-user-onboarding-replace-current-email-confirmation-flow-with-a-soft-email-confirmation-flow' into 'master' Soft email confirmation flow Closes #47003 See merge request gitlab-org/gitlab-ce!31245
2019-08-16Merge branch 'add-rate-limiter-on-raw-endpoint-docs' into 'master'Marcia Ramos
Add docs for rate limiter on raw endpoints See merge request gitlab-org/gitlab-ce!31723
2019-08-16Add docs for rate limiter on raw endpointsMayra Cabrera
The section was included on security/raw_limits and on the admin area settings. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/48717
2019-08-16Merge branch 'docs-lists-cleanup-3' into 'master'Marcia Ramos
Adjust headers in /university See merge request gitlab-org/gitlab-ce!31702
2019-08-16Adjust headers in /universityMarcel Amirault
2019-08-16Merge branch 'docs-styleguide-codeblocks' into 'master'Marcia Ramos
Update docs style for code blocks Closes #65373 See merge request gitlab-org/gitlab-ce!31297
2019-08-16Update docs style for code blocksMarcel Amirault
Clarify rules for code blocks, including spaces above and below, and to use tilde when code blocks contain triple backticks
2019-08-16Merge branch 'dm-fix-quarantined-spec' into 'master'Nick Thomas
Fix quarantined spec by waiting for requests Closes #65329 See merge request gitlab-org/gitlab-ce!31862
2019-08-16Merge branch '61335-fix-file-icon-status' into 'master'Filipa Lacerda
Resolve "Web IDE uncommitted files use wrong icon in tree" Closes #61335 See merge request gitlab-org/gitlab-ce!31560
2019-08-16Rewrite changed_file_icon_spec in JestPaul Slaughter
- Uses vue-test-utils - More complete coverage with parameterized tests
2019-08-16Merge branch 'add-feature-flag-cleanup-to-template' into 'master'Marin Jankovski
Document cleanup of feature flag after deploy See merge request gitlab-org/gitlab-ce!31893
2019-08-16Document cleanup of feature flag after deployHeinrich Lee Yu
2019-08-16Merge branch 'enable-dag-support-by-default' into 'master'Kamil Trzciński
Enable DAG support by default Closes #65457 See merge request gitlab-org/gitlab-ce!31814
2019-08-16Merge branch 'do-not-vendor-go-mod' into 'master'Grzegorz Bizon
Don't use go mod vendor See merge request gitlab-org/gitlab-ce!31721
2019-08-16Merge branch 'ce-issue_12619' into 'master'Jan Provaznik
[Backport] Add feature specs for multiple issue boards for groups See merge request gitlab-org/gitlab-ce!31481
2019-08-16Add feature specs for multiple group issue boardsFelipe Artur
Add feature specs for multiple issue boards for groups
2019-08-16Merge branch 'fe-add-unbinds-to-discussion-keyboard-navigator' into 'master'Kushal Pandya
Add key unbinds to DiscussionKeyboardNavigator See merge request gitlab-org/gitlab-ce!31857
2019-08-16Add rake tasks for migrating leacy uploadsJarka Košanová
- move uploads created by AttachmentUploader - handle also files created for legacy_diff_notes
2019-08-16Merge branch 'docs-arm64-k8s-support' into 'master'Evan Read
Add a note about the lack of arm64 support See merge request gitlab-org/gitlab-ce!31887
2019-08-16Add a note about the lack of arm64 supportAlexander Tanayno
2019-08-16Merge branch 'docs/profile-security-dashboard' into 'master'Evan Read
Document option to set Security Dashboard as default view for groups See merge request gitlab-org/gitlab-ce!31795