- 08 May, 2015 6 commits
-
-
Job van der Voort authored
-
Dmitriy Zaporozhets authored
7.10.3 cc @job See merge request !1816
-
Valery Sizov authored
Change the MySQL collation type to utf8_bin to ensure case-sensitive tags are supported MySQL tables had a collation type of utf8_ci, which makes the name case-insensitive. Previously this migration was run only after indices were built, but it needs to happen before if there is existing data that is case-sensitive. This is an idempotent change, so applying it again in the existing migration (20150425164651) should not change anything. This is related to !623, but this migration should run before that one. * Closes #1589 * Closes https://github.com/gitlabhq/gitlabhq/issues/9255 See merge request !625
-
Valery Sizov authored
Conditionally remove indices that may not exist in pre-GitLab v6.7 installations In pre-GitLab v6.7 installations, the `tagging` indices were directly added to the init schema and not added in a migration. Anyone using this older DB schema may not have these indicies, so only remove them if they are there. Closes #1593 See merge request !626
-
Valery Sizov authored
Remove tag duplicates Prevention of getting this error: ``` ActiveRecord::RecordNotUnique: PG::Error: ERROR: could not create unique index "index_tags_on_name" DETAIL: Key (name)=(XSS') is duplicated. : CREATE UNIQUE INDEX "index_tags_on_name" ON "tags" ("name") ``` This migration fails if there are duplicates: https://github.com/mbleigh/acts-as-taggable-on/blob/v3.5.0/db/migrate/2_add_missing_unique_indices.rb#L3 See merge request !623
-
Jacob Vosmaer authored
It looks like SIGTERM may not be enough to shut down a Sidekiq process when its RSS has gotten too big. This change will allow us to experiment with sending SIGKILL instead of SIGTERM to Sidekiq processes on gitlab.com.
-
- 06 May, 2015 10 commits
-
-
Job van der Voort authored
-
Dmitriy Zaporozhets authored
-
Dmitriy Zaporozhets authored
Fixes for 7.10.2 See merge request !1804
-
Douwe Maan authored
Fix bug where commit data would not appear in some subdirectories Fix issue where commit data would not show up in some subdirectories due to escaped slashes. For example: https://gitlab.common-lisp.net/ecl/ecl/tree/develop/src/gc (now patched with fix) The upgrade from Rails v4.1.2 to v4.1.9 (76aad9b7) caused slashes in a tree to be escaped automatically. Using a wildcard glob in the route prevents this behavior. * Closes #1478, #1459 * Closes https://github.com/gitlabhq/gitlabhq/issues/9037 See merge request !581
-
Douwe Maan authored
Unescape branch names in compare commit The upgrade in GitLab v7.9 to Rails v4.1.9 caused all branch names in the compare commit mode to be escaped (e.g. `/` to `%2F`). The compare mode would not always work when comparing against branch names with a forward slash. Opted to unescape the branch name rather than use a wildcard segment to prevent escaping slashes because it seems like a more sensible URL. The slashes in this case aren't really represented by a tree structure (e.g. /compare/one/two/branch..another/branch/here). * Closes #1399 * Closes https://github.com/gitlabhq/gitlabhq/issues/9105 See merge request !582
-
Douwe Maan authored
Fix DB error when trying to tag a repository Steps to reproduce: Go to a project settings, add tags, click on save changes Observed behavior: Error 500 ``` PG::Error: ERROR: column "taggings_count" does not exist LINE 1: UPDATE "tags" SET "taggings_count" = COALESCE("taggings_coun... ``` Ran `rake acts_as_taggable_on_engine:install:migrations`, removed the first migration that created the `tags` and `taggings` table, and added the rest. * Closes #1512 * Closes #1550 * Closes https://github.com/gitlabhq/gitlabhq/issues/6867 * Closes https://github.com/gitlabhq/gitlabhq/issues/9194 See merge request !577
-
Dmitriy Zaporozhets authored
Fix Error 500 when searching Wiki pages If a Wiki page turns up a hit in the search results, an error will occur: ``` Completed 500 Internal Server Error in 836ms NoMethodError - undefined method `slug' for "test.markdown":String: app/helpers/wiki_helper.rb:10:in `namespace_project_wiki_path' app/views/search/results/_wiki_blob.html.haml:4:in `_app_views_search_results__wiki_blob_html_haml___2752621660395393333_70299911622700' actionview (4.1.9) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.9) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.9) lib/action_view/template.rb:339:in `instrument' actionview (4.1.9) lib/action_view/template.rb:143:in `render' ``` An unhandled String containing the name of the Wiki page would be provided to the URL path generator. This MR handles that case. Closes #1547 See merge request !592
-
Dmitriy Zaporozhets authored
Fix CI links on MR page Fixes gitlab-org/gitlab-ci#145 See merge request !609
-
Dmitriy Zaporozhets authored
Fix adding new group members from admin area Fix for #2222 Tests for this case already exists but it was green. It related to current way dealing with ajax selectbox. Improving tests might be a reason for another merge requests - everyone is welcome to participate. See merge request !1796
-
Dmitriy Zaporozhets authored
Get Gitorious importer to work again. Fixes #1504. See merge request !576
-
- 05 May, 2015 1 commit
-
-
Jakob Englisch authored
-
- 29 Apr, 2015 2 commits
-
-
Job van der Voort authored
-
Valery Sizov authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: db/schema.rb
-
- 22 Apr, 2015 4 commits
-
-
Job van der Voort authored
-
Dmitriy Zaporozhets authored
Recover from URI::Error `URI::Error` is the base class for all URI errors. Fixes #2257 and #2260 See merge request !1789
-
Dmitriy Zaporozhets authored
Fix tab behavior on MergeRequests#new Missed this one in 269aee79 Prior to this fix, clicking the Commits or Changes tab when creating a new MR would reload the page instead of display the tab contents. See merge request !556
-
Dmitriy Zaporozhets authored
Update gitlab-grack to 2.0.2. Updating to grack version 2.0.2 to fix an issue with smart http clients. See merge request !559
-
- 21 Apr, 2015 6 commits
-
-
Job van der Voort authored
-
Dmitriy Zaporozhets authored
7.10.0.rc5 cc @job See merge request !1787
-
Dmitriy Zaporozhets authored
7.10 requires gitlab-shell 2.6.2. Fixes #1467. See merge request !552
-
Dmitriy Zaporozhets authored
Update gitlab-grack to 2.0.1 to get unicorn to stop creating zombies. Addresses #1461 and private issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2253. This regression was introduced between 7.9 and the 7.10 rcs, so no changelog item for 7.10 proper. cc @JobV @jacobvosmaer See merge request !546
-
Dmitriy Zaporozhets authored
Fix some issues with Google Code importer Thanks, @mrtux, for reporting all of these. See merge request !551
-
Dmitriy Zaporozhets authored
Revert and re-fix image rendering in help pages Closes #2212 See merge request !1765
-
- 20 Apr, 2015 9 commits
-
-
Job van der Voort authored
-
Dmitriy Zaporozhets authored
Changes for 7.10.0.rc4 cc @job @douwe See merge request !1785
-
Dmitriy Zaporozhets authored
Revert disallowing usernames to end in period. cc @JobV @jacobvosmaer See merge request !545
-
Dmitriy Zaporozhets authored
Remove access control for uploaded images to fix broken images in emails Replaces !530. > This MR removes the access control for uploaded images. This is needed to display the images in emails again. > > The previous solution to base64 encode the images had to be reverted, because not all email clients supported it. > > If possible this should go into the 7.10 release. See merge request !533
-
Dmitriy Zaporozhets authored
Parse GFM references after sanitizing Parse GFM references - labels, issues, MRs, etc. - after calling the HTML Pipeline `SanitizationFilter` so that we can use non-whitelisted attributes like `style`. See #2188. See merge request !1745
-
Douwe Maan authored
-
Roshan Gautam authored
-
Dmitriy Zaporozhets authored
Fix label color input. Because `value` was set, every label color would render as purple in the form. Introduced by 83b5a9ae between 7.9 and 7.10, so no changelog item. See merge request !538
-
Job van der Voort authored
-
- 17 Apr, 2015 2 commits
-
-
Dmitriy Zaporozhets authored
Fixes for 7.10.0.rc3 content - [ ] Update gitlab_git to ignore invalid lines in .gitmodules. - [ ] Add a task that checks repository integrity with `git fsck`. - [ ] Decrease memory use and increase performance of Google Code importer. - [ ] Fix username period migration to preserve uniqueness of names and paths. See merge request !1783
-
Dmitriy Zaporozhets authored
Decrease memory use and increase performance of Google Code importer. Addresses private issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2241. See merge request !536
-