- 02 Feb, 2016 6 commits
-
-
Stan Hu authored
Currently any spam detected by Akismet by non-members via API will be logged in a separate table in the admin page. Closes #5612
-
Douwe Maan authored
Allow "@" in file names and path Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/4111 See merge request !2665
-
Douwe Maan authored
Generate valid (RFC 2111) Message-ID in email rejection mailer Use a Message-ID that is RFC 2111 compliant. This fix is consistent with how the Message-ID is generated in the 'notify' mailer. See merge request !2656
-
Achilleas Pipinellis authored
Fix typo indentation in CI projects' API See merge request !2561
-
Dmitriy Zaporozhets authored
Add notes about the regression issues to CONTRIBUTING.md [ci skip] See merge request !2661
-
Yorick Peterse authored
Expand Git instrumentation This instruments some extra `Gitlab::Git` code as well as a collection of `Rugged` constants. See merge request !2664
-
- 01 Feb, 2016 14 commits
-
-
Robert Speicher authored
Allow manual resize of js-autosize textareas First, the autosize library was being too controlling and removed the `resize` property from any elements to which it was attached, removing the drag handle. We've disabled this behavior in the vendored library and added a spec to prevent a regression during an upgrade. Second, we detect (as best we can) when the user manually resizes an autosize textarea, and then remove the autosize behavior from it and increase its max-height. This should allow for the best of both worlds. Closes #12832 See merge request !2653
-
Robert Speicher authored
First, the autosize library was being too controlling and removed the `resize` property from any elements to which it was attached, removing the drag handle. Second, we detect when the user manually resizes an autosize textarea, and then remove the autosize behavior from it and increase its max-height. This should allow for the best of both worlds. Closes #12832
-
Robert Speicher authored
[ci skip]
-
Robert Speicher authored
Optimize fetching issues closed by a merge request Related issue: #12419 See merge request !2625
-
Dmitriy Zaporozhets authored
Render sanitized SVG images Originally opened at !637 by @stanhu. Closes https://github.com/gitlabhq/gitlabhq/issues/9265 ![Screen_Shot_2016-02-01_at_17.04.01](/uploads/8e5de906698493e127dcdc475da9aaef/Screen_Shot_2016-02-01_at_17.04.01.png) See merge request !2667
-
Stan Hu authored
Closes https://github.com/gitlabhq/gitlabhq/issues/9265
-
Jacob Vosmaer authored
-
Yorick Peterse authored
-
Yorick Peterse authored
-
Dmitriy Zaporozhets authored
Link to Thoughtbot review guidelines. See merge request !2658
-
Yorick Peterse authored
Instead of running ClosingIssueExtractor for every commit in a merge request we can gather all the commit messages (and the merge request description), concatenate all this together and then run ClosingIssueExtractor only once. The result of this is that MergeRequest#closes_issues is now between 3.5x and 4x faster than the old setup. Using a merge request with 10 commits (each referencing a number of issues to close) this reduced the call duration from around 200 milliseconds to around 50 milliseconds. As a result of these changes the Jira related tests for MergeRequest#closes_issues have been removed. These tests stubbed Commit#closes_issues meaning that the only code that was really tested was the call to Array#uniq to filter out duplicate issues. As this code is no longer used (nor present) the corresponding tests were removed. Related: gitlab-org/gitlab-ce#12419
-
Robert Speicher authored
Make "Two-factor" casing consistent throughout the application See merge request !2662
-
Robert Speicher authored
-
Robert Speicher authored
[ci skip]
-
- 31 Jan, 2016 3 commits
-
-
Robert Speicher authored
[ci skip]
-
Achilleas Pipinellis authored
Improve GitLab flow documentation regarding the WIP merge requests See merge request !2647
-
Robert Speicher authored
Mark inline difference between old and new paths when a file is renamed See merge request !2652
-
- 30 Jan, 2016 9 commits
-
-
Sytse Sijbrandij authored
-
Douwe Maan authored
Increase the minimum length for commit SHA matching to 7 This is the git default and will help to prevent false positive matches. Closes #12706 See merge request !2655
-
Douwe Maan authored
-
Douwe Maan authored
-
Dmitriy Zaporozhets authored
Cache BroadcastMessage.current. Fixes #12770 See merge request !2633
-
Dmitriy Zaporozhets authored
-
Warren Guy authored
Use a Message-ID that is RFC 2111 compliant. This fix is consistent with how the Message-ID is generated in the 'notify' mailer.
-
Douwe Maan authored
Warn admin of granting admin rights during OAuth Fixes #3951 Warning style the same as the warning a user sees on a archived project. ![Screenshot_from_2016-01-25_20-06-33](/uploads/42e6a218b963311fd20c0b7c87c8cf4f/Screenshot_from_2016-01-25_20-06-33.png) See merge request !2601
-
Robert Speicher authored
This is the git default and will help to prevent false positive matches. Closes #12706
-
- 29 Jan, 2016 8 commits
-
-
Josh Frye authored
-
Josh Frye authored
-
Douwe Maan authored
-
Achilleas Pipinellis authored
Fixed typo for PRIVATE-TOKEN header Was PRIVATE_TOKEN but should be PRIVATE-TOKEN. Underscore vs. kebab-case. See merge request !2624
-
Robert Speicher authored
add missing `RAILS_ENV=production` bit to bundle command [ci skip] See merge request !2626
-
Douglas Barbosa Alexandre authored
Fix "old version" warning when viewing wiki page's latest version via version_id in URL Fixes #12712 See merge request !2627
-
Drew Blessing authored
Increase LFS objects size column Fixes #12745 Increases the `size` column integer limit to an 8-byte integer. This allows for a max value of `9223372036854775807` which is 9,223,372,036 GB. That should do it
😃 I tested this by first reproducing the error (push a file larger than 2.1 GB). The error was: ``` RangeError (3145728000 is out of range for ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer with limit 4): lib/gitlab/lfs/response.rb:232:in `store_file' lib/gitlab/lfs/response.rb:170:in `render_lfs_upload_ok' lib/gitlab/lfs/response.rb:51:in `block in render_storage_upload_store_response' lib/gitlab/lfs/response.rb:204:in `render_response_to_push' lib/gitlab/lfs/response.rb:50:in `render_storage_upload_store_response' lib/gitlab/lfs/router.rb:76:in `put_response' lib/gitlab/lfs/router.rb:20:in `try_call' lib/gitlab/backend/grack_auth.rb:41:in `call' lib/gitlab/backend/grack_auth.rb:18:in `call_with_kerberos_support' lib/gitlab/backend/grack_auth.rb:8:in `call' ``` Then I ran this migration and pushed the file again. It uploaded successfully. See merge request !2644 -
Douglas Barbosa Alexandre authored
-