- 09 Jan, 2017 22 commits
-
-
Douwe Maan authored
Remove the project_authorizations.id column See merge request !8479
-
Alfredo Sumaran authored
Change CI template linter textarea with Ace Editor Closes #24179 and #19701 See merge request !8452
-
Robert Speicher authored
Use #parts instead of #part to read all the parts of the Message. Closes #26463 See merge request !8507
-
Clement Ho authored
Make play button on Pipelines page accessible via keyboard See merge request !8496
-
Annabel Dunstone Gray authored
Resolve "Certain buttons are not accessible via the keyboard (Web)" Closes #26238 See merge request !8469
-
Clement Ho authored
View spec for Ryancharris/gitlab milestone counter number with delimiter See merge request !8482
-
Clement Ho authored
Made download artifacts button accessible via keyboard Closes #26446 See merge request !8493
-
Ruben Davila authored
Looks like I was accidentally using #part which was adding an extra empty Mime section
-
Sean McGivern authored
Fix Double Spaced CI Log Closes #19086 See merge request !8349
-
Sean McGivern authored
Make successful pipeline emails off for watchers Closes #24845 See merge request !8176
-
Rémy Coutable authored
Log LDAP blocking/unblocking events to application log See merge request !8042
-
Rémy Coutable authored
Don't instrument 405 Grape calls Closes #26051 See merge request !8445
-
Rémy Coutable authored
Added update guides for 8.16RC1 See merge request !8502
-
James Lopez authored
-
James Lopez authored
-
James Lopez authored
-
Achilleas Pipinellis authored
Re-order update steps in the 8.14 -> 8.15 upgrade guide Closes #26014 See merge request !8287
-
Sean McGivern authored
Record and show last used date of SSH Keys See merge request !8113
-
Sean McGivern authored
Fix broken url on group avatar Closes #26452 See merge request !8464
-
Rémy Coutable authored
Fixes #26051. Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
1. Gems need to be installed before we can run the gitlab:workhorse:install task 1. Update gitlab-shell after gitlab-workhorse since it's a manual step that needs to be done in `/home/git/gitlab-shell` Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Ryan Harris authored
-
- 08 Jan, 2017 3 commits
-
-
Ryan Harris authored
-
Vincent Wong authored
Addresses: Issue #13810 1. Adds a last_used_at attribute to the Key table/model 2. Update a key's last_used_at whenever it gets used 3. Display how long ago an ssh key was last used
-
Yorick Peterse authored
This column used to be a 32 bits integer, allowing for only a maximum of 2 147 483 647 rows. Given enough users one can hit this limit pretty quickly, as was the case for GitLab.com. Changing this type to bigint (= 64 bits) would give us more space, but we'd eventually hit the same limit given enough users and projects. A much more sustainable solution is to simply drop the "id" column. There were only 2 lines of code depending on this column being present, and neither truly required it to be present. Instead the code now uses the "project_id" column combined with the "user_id" column. This means that instead of something like this: DELETE FROM project_authorizations WHERE user_id = X AND id = Y; We now run the following when removing rows: DELETE FROM project_authorizations WHERE user_id = X AND project_id = Y; Since both user_id and project_id are indexed this should not slow down the DELETE query. This commit also removes the "dependent: destroy" clause from the "project_authorizations" relation in the User and Project models. Keeping this prevents Rails from being able to remove data as it relies on an "id" column being present. Since the "project_authorizations" table has proper foreign keys set up (with cascading removals) we don't need to depend on any Rails logic.
-
- 07 Jan, 2017 3 commits
-
-
Luke "Jared" Bennett authored
-
Ryan Harris authored
-
Alfredo Sumaran authored
-
- 06 Jan, 2017 12 commits
-
-
Achilleas Pipinellis authored
Fix dead link in Reply by email documentation Closes #26247 See merge request !8474
-
Clement Ho authored
Add label to Environments "Date Created" column Closes #25371 See merge request !8376
-
Alfredo Sumaran authored
Moved the members and groups to single option called members Closes #25985 See merge request !8281
-
Filipa Lacerda authored
Adds CHANGELOG entry Adds MR ID to CHANGELOG entry
-
Stan Hu authored
Re-add Google Cloud Storage as a backup strategy Closes #26362 See merge request !8481
-
Allison Whilden authored
Improve UX copy docs on capitalization and punctuation See merge request !8439
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Fixed failing markdown button tests See merge request !8471
-
Rémy Coutable authored
Fixed edit form authenticity_token call failing the tests See merge request !8472
-
Douglas Barbosa Alexandre authored
[ci skip]
-
Rémy Coutable authored
With Gitea v1.0.0, notes are imported See merge request !8298
-
Fatih Acet authored
Added animations to issue boards Closes #25630 See merge request !8417
-