| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Disallow blank (non-null) values for a Note's `line_code` attributers-disallow-blank-line-code | Robert Speicher | 2016-03-11 | 1 | -0/+9 |
| | | | | | | | | | | | | | | It's unclear how these blank values got added, but GitLab.com had a few: ``` irb(main):002:0> Note.where("line_code IS NOT NULL AND line_code = ''").count => 439 ``` We've added a migration to convert any existing records to use a NULL value when blank, and updated Note to set blank values to nil before validation. | ||||
| * | More detailed trigram migration error messagetrigram-index-searching | Yorick Peterse | 2016-03-11 | 1 | -1/+4 |
| | | | | | | This explains the user what they need to run and where to go in case they want to learn more about "CREATE EXTENSION". | ||||
| * | Added trigram indexes for various searched columns | Yorick Peterse | 2016-03-11 | 1 | -0/+50 |
| | | | | | | | This allows the LIKE condition to use an index. Without a GIN + trigram index LIKE queries using a wildcard at the start _won't_ use an index and instead perform a sequence scan. | ||||
| * | Remove invalid todos from database | Douglas Barbosa Alexandre | 2016-03-09 | 1 | -0/+16 |
| | | |||||
| * | Merge branch 'rs-snippets-dont-expire' into 'master' | Dmitriy Zaporozhets | 2016-03-09 | 1 | -0/+5 |
| |\ | | | | | | | | | | | | | | | | | Remove `Snippet#expires_at` This was removed from the interface in https://github.com/gitlabhq/gitlabhq/pull/6027 but its implementation lingered around for two years. See merge request !3103 | ||||
| | * | Remove `Snippet#expires_at`rs-snippets-dont-expire | Robert Speicher | 2016-03-05 | 1 | -0/+5 |
| | | | | | | | | | | | | | This was removed from the interface in https://github.com/gitlabhq/gitlabhq/pull/6027 but its implementation lingered around for two years. | ||||
| * | | adds swp and swo to gitignore and improves migration for project main_language | tiagonbotelho | 2016-03-07 | 1 | -18/+2 |
| | | | |||||
| * | | implements project languages saving them onto the database | tiagonbotelho | 2016-03-07 | 1 | -0/+21 |
| |/ | |||||
| * | Use Gitlab::Git::DiffCollections | Jacob Vosmaer | 2016-03-03 | 1 | -0/+5 |
| | | |||||
| * | Fix broken migration | Dmitriy Zaporozhets | 2016-02-29 | 1 | -1/+1 |
| | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | Branded login page also in CE11489-branded-appearance-to-ce | Zeger-Jan van de Weg | 2016-02-26 | 1 | -0/+14 |
| | | | | | | The only major difference with the EE version is the change from a light and dark logo to only a header logo The dark logo wasn't used anyway, so it seemed to make sense to me to rename the field to the actual function of it | ||||
| * | Rename Tasks to Todos | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -0/+5 |
| | | |||||
| * | Create a pending task when a user is mentioned on a note | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -0/+5 |
| | | |||||
| * | Add task model | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -0/+14 |
| | | |||||
| * | Merge branch 'visibletrap/gitlab-ce-label' | Douwe Maan | 2016-02-19 | 1 | -0/+5 |
| |\ | |||||
| | * | Label description and Label row | Tap | 2016-02-17 | 1 | -0/+5 |
| | | | | | | | | | | | - Add label description - Show label row when filtering issues or merge requests by label | ||||
| * | | Save merge commit id when MR is merged | Rubén Dávila | 2016-02-19 | 1 | -0/+5 |
| | | | |||||
| * | | Fix name of build erasable, remove superfluous method from it | Grzegorz Bizon | 2016-02-19 | 1 | -1/+1 |
| | | | |||||
| * | | Remove boolean erase column from ci build and foreign key | Grzegorz Bizon | 2016-02-19 | 1 | -2/+0 |
| | | | |||||
| * | | Add build eraseable columns to ci builds table | Grzegorz Bizon | 2016-02-19 | 1 | -0/+8 |
| |/ | |||||
| * | Merge remote-tracking branch 'dev/master' into 'master' | Robert Speicher | 2016-02-09 | 1 | -0/+5 |
| |\ | |||||
| | * | Merge branch 'master' into ci-permissions | Kamil Trzcinski | 2016-02-05 | 1 | -0/+80 |
| | |\ | | | | | | | | | | | | | # Conflicts: # db/schema.rb | ||||
| | * \ | Merge remote-tracking branch 'origin/master' into ci-permissions | Kamil Trzcinski | 2016-02-04 | 2 | -0/+24 |
| | |\ \ | | | | | | | | | | | | | | | | | # Conflicts: # app/views/projects/builds/index.html.haml | ||||
| | * | | | Rename allow_guest_to_access_builds to public_builds | Kamil Trzcinski | 2016-02-04 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | Add CI setting: allow_guest_to_access_builds | Kamil Trzcinski | 2016-02-02 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | Add the `read_build` ability if user is anonymous or guest and allow_guest_to_access_builds is enabled. | ||||
| * | | | | Merge branch 'index_snippet' into 'master' | Douwe Maan | 2016-02-09 | 1 | -0/+5 |
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add index for snippet's updated_at @DouweM We are ordering by `updated_at` but there is no index. cc @yorickpeterse See merge request !2768 | ||||
| | * | | | | Add index for snippet's updated_atindex_snippet | Valery Sizov | 2016-02-09 | 1 | -0/+5 |
| | | | | | | |||||
| * | | | | | Add option to include the sender name in body of Notify email. fix #7824huacnlee/gitlab-ce-feature/option-to-include-author-info-in-mail | Jason Lee | 2016-02-09 | 1 | -0/+5 |
| |/ / / / | |||||
| * | | | | Merge branch 'fix/atom-url-issue' into 'master' | Douwe Maan | 2016-02-09 | 1 | -1/+1 |
| |\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | do not rename .aToM but only .atom projects in migration Sorry @DouweM forgot to add this. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2651/diffs#bc35672f73f4ee025132aee428f383acdf0f755e_0_51 Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/3699 See merge request !2712 | ||||
| | * | | | remove unnecessary lower function on SQL | James Lopez | 2016-02-04 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Merge branch 'fix/atom-url-issue' into 'master' | Douwe Maan | 2016-02-04 | 1 | -0/+80 |
| |\ \ \ \ | |/ / / | | | / | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Fix atom url issue on projects This MR adds prevents a project to have a path ending in .atom that conflicts with the feed and Adds a migration to migrate old .atom projects to a different path Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/3699 See merge request !2651 | ||||
| | * | | refactored migration based on feedback | James Lopez | 2016-02-04 | 1 | -1/+5 |
| | | | | |||||
| | * | | refactored migration and spec based on feedback | James Lopez | 2016-02-04 | 1 | -6/+12 |
| | | | | |||||
| | * | | fixed move project method in migration | James Lopez | 2016-02-02 | 1 | -33/+13 |
| | | | | |||||
| | * | | added TODO to not working method | James Lopez | 2016-02-01 | 1 | -0/+1 |
| | | | | |||||
| | * | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into fix/atom-url-issue | James Lopez | 2016-02-01 | 3 | -0/+16 |
| | |\ \ | | |/ | |||||
| | * | | WIP - refactored migration | James Lopez | 2016-02-01 | 1 | -7/+42 |
| | | | | |||||
| | * | | WIP - add migration | James Lopez | 2016-01-29 | 1 | -0/+54 |
| | | | | |||||
| * | | | Support Akismet spam checking for creation of issues via API | Stan Hu | 2016-02-02 | 2 | -0/+24 |
| | |/ |/| | | | | | | | | | | | Currently any spam detected by Akismet by non-members via API will be logged in a separate table in the admin page. Closes #5612 | ||||
| * | | Merge remote-tracking branch 'origin/background-delete-process' | Dmitriy Zaporozhets | 2016-01-30 | 1 | -0/+5 |
| |\ \ | |||||
| | * | | Update CHANGELOGbackground-delete-process | Josh Frye | 2016-01-29 | 1 | -1/+1 |
| | | | | |||||
| | * | | First pass at deleting projects in the background. | Josh Frye | 2016-01-29 | 1 | -0/+5 |
| | | | | |||||
| * | | | Increase LFS objects size column | Drew Blessing | 2016-01-29 | 1 | -0/+5 |
| |/ / | |||||
| * | | Partially revert "Add IP check against DNSBLs at account sign-up"rs-remove-ip-blocking | Robert Speicher | 2016-01-28 | 1 | -0/+6 |
| |/ | | | | | This partially reverts 6a5cd3ca - we keep the migration and add a new migration that reverts it in order to keep migration history intact. | ||||
| * | Merge branch 'master' into issue_3945issue_3945 | Rubén Dávila | 2016-01-20 | 1 | -0/+6 |
| |\ | |||||
| | * | Merge branch 'feature/check-against-rbl-only' into 'master' | Robert Speicher | 2016-01-20 | 1 | -0/+6 |
| | |\ | | | | | | | | | | | | | | | | | | | | | | Split from !2455 References #9092 See merge request !2515 | ||||
| | | * | Add IP blocking against DNSBL at sign-upfeature/check-against-rbl-only | Tomasz Maczukin | 2016-01-20 | 1 | -0/+6 |
| | | | | |||||
| * | | | Merge branch 'master' into issue_3945 | Douwe Maan | 2016-01-20 | 1 | -0/+8 |
| |\ \ \ | |/ / | |||||
| | * | | Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce into ↵ | Jeroen Nijhof | 2016-01-20 | 4 | -0/+90 |
| | |\ \ | | |/ | | | | | | | | | | | | | | | | sentry-integration Conflicts: db/schema.rb | ||||
| | * | | Add sentry integration | Jeroen Nijhof | 2016-01-18 | 1 | -0/+8 |
| | | | | |||||
