- 15 Jan, 2020 40 commits
-
-
Dmytro Zaporozhets authored
Add RuboCop to unify `have_gitlab_http_status(:symbol)` See merge request gitlab-org/gitlab!17705
-
Peter Leitzen authored
# bad expect(response).to have_http_status(200) expect(response).to have_http_status(:ok) expect(response).to have_gitlab_http_status(200) # good expect(response).to have_gitlab_http_status(:ok) Our "Testing best practices" already suggests to prefer `have_gitlab_http_status` over `have_http_status`.
-
Dmytro Zaporozhets authored
Return slug in /api/v4/projects/ID/services Closes #195795 See merge request gitlab-org/gitlab!22664
-
Andy Soiron authored
-
Imre Farkas authored
Adds pipeline object to package See merge request gitlab-org/gitlab!22854
-
Walmyr Lima e Silva Filho authored
Shorten test code See merge request gitlab-org/gitlab!23073
-
Dmytro Zaporozhets authored
Check feature flag when deciding occurrence state See merge request gitlab-org/gitlab!22791
-
Dmytro Zaporozhets authored
Bump grape-path-helpers version to 1.2.x See merge request gitlab-org/gitlab!22965
-
Imre Farkas authored
Move SidekiqConfig methods used by CLI to own module See merge request gitlab-org/gitlab!22966
-
Nick Thomas authored
Add support for ES7 & Drop suport for ES5 Closes #196503 See merge request gitlab-org/gitlab!22859
-
Nick Thomas authored
Add deprecation warning to tasks in `sidekiq` namespace See merge request gitlab-org/gitlab!22983
-
Nick Thomas authored
Include subgroups when searching inside a group Closes #22599 See merge request gitlab-org/gitlab!22991
-
Nick Thomas authored
Scope approval rules by protected branches via API See merge request gitlab-org/gitlab!22673
-
Patrick Bajao authored
A new `protected_branch_ids` has been added so we can associate `ProtectedBranch` records to a `ApprovalProjectRule`. The IDs get filtered and will only allow those coming from the same project.
-
Achilleas Pipinellis authored
Docs: Add HA steps to get a Geo tracking DB console See merge request gitlab-org/gitlab!22564
-
Michael Kozono authored
-
Phil Hughes authored
Prevent auto disable of submit buttons with class See merge request gitlab-org/gitlab!22992
-
Nicolò Maria Mezzopera authored
- prevent button with defined class to be disabled
-
Natalia Tepluhina authored
Puts Vue LFS badge behind a feature flag See merge request gitlab-org/gitlab!23071
-
Imre Farkas authored
Add tracking for cluster application installs Closes #121724 See merge request gitlab-org/gitlab!23000
-
Bob Van Landuyt authored
Prevent builds from halting unnecessarily when completing prerequisites See merge request gitlab-org/gitlab!22938
-
Peter Leitzen authored
Remove dormant Code Analytics' code See merge request gitlab-org/gitlab!22984
-
Aakriti Gupta authored
This feature is frozen and there are no plans of continuation on the inital plan.
-
Nick Thomas authored
Fix incorrect configuration name See merge request gitlab-org/gitlab!23069
-
Natalia Tepluhina authored
Display fn, line num and column in stacktrace entry caption See merge request gitlab-org/gitlab!22905
-
Olena Horal-Koretska authored
Add caption for all entries
-
Walmyr Lima authored
-
Phil Hughes authored
This puts the LFS badge entity in the GraphQL query behind a feature flag. We have seen some errors in production that could be caused by this entity. Also added an extra check around the path locks button.
-
Bob Van Landuyt authored
The application reads `Settings.gitlab.max_request_duration_seconds` This also needs to be fixed in omnibus.
-
Bob Van Landuyt authored
Gracefully handle marking a project deletion multiple times Closes #121730 See merge request gitlab-org/gitlab!22949
-
Kushal Pandya authored
Implement design presentation component See merge request gitlab-org/gitlab!22852
-
Tom Quirk authored
This component contains all logic related to the presentation of a design, with comment pins overlayed, to the user.
-
Kushal Pandya authored
Fix display 403 errors for cycle analytics See merge request gitlab-org/gitlab!22987
-
Rémy Coutable authored
Delete load dir and its file from qa dir See merge request gitlab-org/gitlab!23011
-
Andreas Brandl authored
Add indexes for authenticated project api calls See merge request gitlab-org/gitlab!22886
-
Rémy Coutable authored
Expose `blocked` attribute for board issues See merge request gitlab-org/gitlab!22811
-
Walmyr Lima e Silva Filho authored
Remove old wait method See merge request gitlab-org/gitlab!22861
-
Mark Lapierre authored
Renames `wait` to `wait_until` and updates parameters. Simplifies a few cases where `wait` was unnecessary because it had reload: false and therefore was no different than using Capybara's built in wait parameter.
-
Sean McGivern authored
Add basic docs for adding context metadata See merge request gitlab-org/gitlab!22896
-
Andreas Brandl authored
This is to support queries like the following: ```sql SELECT "projects".* FROM "projects" WHERE (EXISTS ( SELECT 1 FROM "project_authorizations" WHERE "project_authorizations"."user_id" = 1562869 AND (project_authorizations.project_id = projects.id)) OR projects.visibility_level IN (10, 20)) AND "projects"."pending_delete" = FALSE ORDER BY "projects"."updated_at" DESC, "projects"."id" DESC LIMIT 20 OFFSET 0; ``` With this change, we add indexes for all order_by options. The regularly sorted index (`asc, asc`) has the common name whereas the one with `desc, desc` is optimized for API calls. It may be subject to removal later (see https://gitlab.com/gitlab-org/gitlab/issues/195881). Relates to https://gitlab.com/gitlab-org/gitlab/issues/36390. A similar MR for unauthenticated calls is https://gitlab.com/gitlab-org/gitlab/merge_requests/22784.
-