- 20 Jul, 2018 7 commits
-
-
Sean McGivern authored
Gitaly migrate old DB migrations Closes gitaly#1106 See merge request gitlab-org/gitlab-ce!20708
-
GitLab Release Tools Bot authored
-
GitLab Release Tools Bot authored
[ci skip]
-
Sean McGivern authored
Migrate add_remote, remove_remote, fetch_internal_remote to gitaly See merge request gitlab-org/gitlab-ce!20724
-
Phil Hughes authored
Don't overflow project/group dropdown results Closes #49382 and #49379 See merge request gitlab-org/gitlab-ce!20704
-
Phil Hughes authored
Resolve "Web IDE crashes for directories named "blob"" Closes #48036 See merge request gitlab-org/gitlab-ce!20712
-
Phil Hughes authored
Moves CSS of security reports into CE folder See merge request gitlab-org/gitlab-ce!20696
-
- 19 Jul, 2018 29 commits
-
-
gfyoung authored
Closes #49382.
-
Alejandro Rodríguez authored
-
Paul Slaughter authored
-
Douglas Barbosa Alexandre authored
Backport of gitlab-org/gitlab-ee!6137 See merge request gitlab-org/gitlab-ce!20699
-
Valery Sizov authored
-
Rémy Coutable authored
Add missing Gitaly branch_update nil checks Closes #49263 See merge request gitlab-org/gitlab-ce!20711
-
Jacob Vosmaer (GitLab) authored
-
Rémy Coutable authored
Add a Gitlab::Profiler.print_by_total_time convenience method See merge request gitlab-org/gitlab-ce!20715
-
Filipa Lacerda authored
Allow testAction to work for async actions that don't return a Promise Closes #49413 See merge request gitlab-org/gitlab-ce!20718
-
Sean McGivern authored
This method uses Gitlab::Profiler::TotalTimeFlatPrinter internally, which is the same as RubyProf::FlatPrinter, but the min_percent option (and new max_percent option) applies to the _total_ time, not the _self_ time. This helps us figure out if we're calling a library inefficiently, for instance.
-
Rémy Coutable authored
Enable more frozen string in app/services/**/*.rb See merge request gitlab-org/gitlab-ce!20702
-
Lukas Eipert authored
-
Zeger-Jan van de Weg authored
Prior to this change, the migration touched the disk path. This has been removed. Further, I believe it also fixes a bug. It seems that GitLab Shell checks if the root path exists, when the path is duplicated. For example, if the shard is located at /home/git, it did check if `/home/git/home/git` existed.
-
Rémy Coutable authored
Remove duplicated include IgnorableColumn in user model See merge request gitlab-org/gitlab-ce!20710
-
Grzegorz Bizon authored
Escape username and password in UrlSanitizer#full_url See merge request gitlab-org/gitlab-ce!20684
-
Zeger-Jan van de Weg authored
This old migration used Rugged to find a commit, while Gitaly is the prefered way now. By migrating this to Gitaly, Gitaly is now a required running component for this migration. Part of https://gitlab.com/gitlab-org/gitaly/issues/1106
-
Douwe Maan authored
Use rugged to validate ref name Closes #49043 See merge request gitlab-org/gitlab-ce!20669
-
Rémy Coutable authored
Rails5 fix user sees revert modal spec See merge request gitlab-org/gitlab-ce!20706
-
Rémy Coutable authored
Delete UserActivities and related workers Closes #43312 See merge request gitlab-org/gitlab-ce!20597
-
Douwe Maan authored
Add button to regenerate 2FA codes. Closes #48408 See merge request gitlab-org/gitlab-ce!20295
-
Luke Picciau authored
-
Ahmad Hassan authored
-
Stan Hu authored
If a user uses a password with certain characters (e.g. /, #, +, etc.) UrlSanitizer#full_url will generate an invalid URL that cannot be parsed properly by Addressable::URI. If used with UrlBlocker, this will be flagged as an invalid URI.
-
Sean McGivern authored
Improve email address parsing Closes #44676 See merge request gitlab-org/gitlab-ce!18192
-
Lin Jen-Shin authored
It's probably duplicated during resolving a conflict?
-
Douwe Maan authored
Incorporate Gitaly's RefService.FindAllRemoteBranches RPC See merge request gitlab-org/gitlab-ce!20701
-
Filipa Lacerda authored
Updates CSS to reflect latest changes
-
Jasper Maes authored
-
George Thomas authored
If you enter the following RFC 2822 compliant address: `John Doe <john@doe.com>` Gitlab will attempt to send three emails: 1) John 2) Doe 3) john@doe.com With this change given the following: `John Doe <johndoe@example.com>` `Jane Doe <janedoe@example.com>` Gitlab will send emails to `johndoe@example.com` and `janedoe@example.com`
-
- 18 Jul, 2018 4 commits
-
-
Robert Speicher authored
Limit the TTL for anonymous sessions to 1 hour Closes #48101 See merge request gitlab-org/gitlab-ce!20700
-
gfyoung authored
Partially addresses #47424.
-
Alejandro Rodríguez authored
-
Stan Hu authored
By default, all sessions are given the same expiration time configured in the session store (e.g. 1 week). However, unauthenticated users can generate a lot of sessions, primarily for CSRF verification. It makes sense to reduce the TTL for unauthenticated to something much lower than the default (e.g. 1 hour) to limit Redis memory. In addition, Rails creates a new session after login, so the short TTL doesn't even need to be extended. Closes #48101
-