An error occurred fetching the project authors.
- 27 Aug, 2019 3 commits
-
-
Stan Hu authored
-
Etienne Baqué authored
-
Etienne Baqué authored
Added migrations to make token column accepting null values and to add encrypted token column.
-
- 26 Aug, 2019 1 commit
-
-
Aishwarya Subramanian authored
Removed unused method for name setter method
-
- 23 Aug, 2019 1 commit
-
-
Sean Carroll authored
-
- 21 Aug, 2019 1 commit
-
-
George Koltsov authored
Sorting preference functionality has been extracted from `IssuableCollections` to a new `SortingPreference` concern in order to reuse this functionality in projects (and groups in the future).
-
- 16 Aug, 2019 2 commits
-
-
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
-
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.
-
- 15 Aug, 2019 2 commits
-
-
Adam Hegyi authored
This change lays the foundation for customizable cycle analytics stages. The main reason for the change is to extract the event definitions to separate objects (start_event, end_event) so that it could be easily customized later on.
-
Brett Walker authored
- Adds UI to configure in group and project settings - Removes notification configuration for users when disabled at group or project level
-
- 14 Aug, 2019 1 commit
-
-
Adam Hegyi authored
-
- 13 Aug, 2019 1 commit
-
-
Gabriel Mazetto authored
-
- 09 Aug, 2019 1 commit
-
-
Heinrich Lee Yu authored
This makes `epic_issues` consistent with other tables using our `RelativePositioning` class
-
- 08 Aug, 2019 1 commit
-
-
Douglas Barbosa Alexandre authored
-
- 07 Aug, 2019 4 commits
-
-
Reuben Pereira authored
- This will make it easy to identify the project even if admins change the name of the project or move it.
-
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14943Valery Sizov authored
Docker Registry Replication
-
Alex Buijs authored
-
Tiger Watson authored
Kubernetes deployments on new clusters will now have a separate namespace per project environment, instead of sharing a single namespace for the project. Behaviour of existing clusters is unchanged. All new functionality is controlled by the :kubernetes_namespace_per_environment feature flag, which is safe to enable/disable at any time.
-
- 06 Aug, 2019 1 commit
-
-
Pavel Shutsin authored
-
- 05 Aug, 2019 2 commits
-
-
Stan Hu authored
Per https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/31384, this appears to drop the runtime of the query from 1.2 ms (cold), 500ms (warm cache) to < 20 ms.
-
Heinrich Lee Yu authored
Also removes unnecessary methods causing extra queries
-
- 02 Aug, 2019 3 commits
-
-
George Koltsov authored
`allow_local_requests_for_hooks_and_services` was renamed to `allow_local_requests_for_web_hooks_and_services`.
-
George Koltsov authored
Simplify SystemHookUrlValidator to inherit from PublicUrlValidator Refactor specs to move out shared examples to be used in both system hooks and public url validators.
-
George Koltsov authored
This MR adds new application setting to network section `allow_local_requests_from_system_hooks`. Prior to this change system hooks were allowed to do local network requests by default and we are adding an ability for admins to control it.
-
- 01 Aug, 2019 3 commits
-
-
Patrick Bajao authored
CE port of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14520
-
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3809Valery Sizov authored
Introducing Docker Registry replication
-
Kamil Trzciński authored
This implements the support for `needs:` keyword as part of GitLab CI. That makes some of the jobs to be run out of order.
-
- 30 Jul, 2019 1 commit
-
-
Stan Hu authored
For customers with thousands of entries in the table, lookups for an LDAP identity dominated the PostgreSQL statistics because of sequential scans. We can speed this up by adding a partial index with the extern_uid and provider. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/59630
-
- 29 Jul, 2019 3 commits
-
-
Andreas Brandl authored
-
Luke Duncalfe authored
These migrations do the following: - Adds a new `issue_id` column to `versions`. This fixes an n+1 problem when loading versions for an issue in GraphQL as AR can now load from cache - Change the unique restraint on versions.sha to be scoped to `issue_id` as in order to import version data, we need to allow duplicate `sha` values for versions - Update all versions with an `issue_id` https://gitlab.com/gitlab-org/gitlab-ee/issues/11090
-
Matija Čupić authored
Adds Job specific variables to facilitate specifying variables when running manual jobs.
-
- 25 Jul, 2019 1 commit
-
-
Thong Kuah authored
It needs to default to an empty array logically.
-
- 24 Jul, 2019 4 commits
-
-
Alex Kalderimis authored
Also adds index to support scopes and queries This supports https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14656
-
Mayra Cabrera authored
* Limits raw requests to 300 per minute and per raw path. * Add a new attribute to ApplicationSettings so user can change this value on their instance. * Uses Gitlab::ActionRateLimiter to limit the raw requests. * Add a new method into ActionRateLimiter to log the event into auth.log Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/48717
-
Reuben Pereira authored
Signed-off-by:
Istvan szalai <istvan.szalai@savoirfairelinux.com>
-
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14597Valery Sizov authored
This is the first part of Docker Registry replication for secondary Geo node.
-
- 23 Jul, 2019 3 commits
-
-
Stan Hu authored
This is no longer needed with Rails 5.2. opclass is the attribute used per https://github.com/rails/rails/pull/19090/files. Now that we've removed the monkey patch and restored the Rails schema dumper, it appears Rails has dropped the inclusion of `using: :btree` as well (https://github.com/rails/rails/pull/27981). Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64529
-
Małgorzata Ksionek authored
Add cr remarks Improve specs according to the review Fix schema Add cr remarks Fix naming Add cr remarks
-
Małgorzata Ksionek authored
To allow project filtering Prepare summary for accepting multiple groups Modify deploys group summary class Add filtering by project name in issues summary Fix rubocop offences Add changelog entry Change name to id in project filtering Fix rebase problem Add project extraction
-
- 22 Jul, 2019 1 commit
-
-
Brett Walker authored
and state
-