Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
AgeCommit message (Collapse)Author
2018-07-21Merge branch 'sh-bring-json-logger-to-ce' into 'master'Robert Speicher
Bring JsonLogger to CE See merge request gitlab-org/gitlab-ce!20755
2018-07-21Merge branch '_acet-fix-spec' into 'master'Tim Zallmann
Fix one disabled spec of comment posting. See merge request gitlab-org/gitlab-ce!20747
2018-07-20Bring JsonLogger to CEStan Hu
This backports a module that was in EE for Geo so that other modules can have structured logging support.
2018-07-20Merge branch '47530-replace-label-light-with-label-bold' into 'master'Clement Ho
Resolve "Replace all usages of `label-light` with `label-bold`" Closes #47530 and #41725 See merge request gitlab-org/gitlab-ce!20727
2018-07-20Resolve ""Jump to first/next unresolved discussion" jumps to resolved ↵André Luís
discussions"
2018-07-20Fix one disabled spec of comment posting.Fatih Acet
2018-07-20Fixing bug with wiki ref in ProjectSearchResultsFrancisco Javier López
2018-07-20Merge branch 'fix/gb/fix-deserializing-ci-yaml-variables' into 'master'Kamil Trzciński
Fix deserializing YAML variables when a build has been imported Closes #49406 See merge request gitlab-org/gitlab-ce!20713
2018-07-20Fix Rubocop offense in build_spec.rb :cop:Grzegorz Bizon
2018-07-20Merge branch 'zj-gitaly-migrate-old-migrations' into 'master'Sean McGivern
Gitaly migrate old DB migrations Closes gitaly#1106 See merge request gitlab-org/gitlab-ce!20708
2018-07-20Merge branch 'gitaly-remote-mandatory' into 'master'Sean McGivern
Migrate add_remote, remove_remote, fetch_internal_remote to gitaly See merge request gitlab-org/gitlab-ce!20724
2018-07-20Merge branch '48036-fix-web-ide-blob-crash' into 'master'Phil Hughes
Resolve "Web IDE crashes for directories named "blob"" Closes #48036 See merge request gitlab-org/gitlab-ce!20712
2018-07-20Replace label-light with label-bold. Because it's bold, not lightAnnabel Dunstone Gray
2018-07-19Migrate add_remote, remove_remote, fetch_internal_remote to gitalyAlejandro Rodríguez
2018-07-19Fix Web IDE router breaking on files matching "targetmode"Paul Slaughter
2018-07-19Add missing Gitaly branch_update nil checksJacob Vosmaer (GitLab)
2018-07-19allow for testAction to wait until all promises are resolvedLukas Eipert
2018-07-19Remove direct disk access in RemoveDotGitFromUsernamesZeger-Jan van de Weg
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.
2018-07-19Fix passing a hash with string keys when fabricating a variableGrzegorz Bizon
2018-07-19Merge branch 'sh-normalize-urls' into 'master'Grzegorz Bizon
Escape username and password in UrlSanitizer#full_url See merge request gitlab-org/gitlab-ce!20684
2018-07-19Fix deserializing yaml variables in imported projectsGrzegorz Bizon
2018-07-19MigrateProcessCommitWorkerJobs to use GitalyZeger-Jan van de Weg
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
2018-07-19Merge branch 'rails5-fix-revert-modal-spec' into 'master'Rémy Coutable
Rails5 fix user sees revert modal spec See merge request gitlab-org/gitlab-ce!20706
2018-07-19Merge branch '43312-remove_user_activity_workers' into 'master'Rémy Coutable
Delete UserActivities and related workers Closes #43312 See merge request gitlab-org/gitlab-ce!20597
2018-07-19Escape username and password in UrlSanitizer#full_urlStan Hu
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.
2018-07-19Merge branch 'accept-rf3-2822-compliant-addresses' into 'master'Sean McGivern
Improve email address parsing Closes #44676 See merge request gitlab-org/gitlab-ce!18192
2018-07-19Merge branch 'gitaly-remote-branches' into 'master'Douwe Maan
Incorporate Gitaly's RefService.FindAllRemoteBranches RPC See merge request gitlab-org/gitlab-ce!20701
2018-07-19Rails5 fix user sees revert modal specJasper Maes
2018-07-19Improve email address parsingGeorge Thomas
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`
2018-07-19Merge branch 'sh-limit-unauthenticated-session-times' into 'master'Robert Speicher
Limit the TTL for anonymous sessions to 1 hour Closes #48101 See merge request gitlab-org/gitlab-ce!20700
2018-07-18Incorporate Gitaly's RefService.FindAllRemoteBranches RPCAlejandro Rodríguez
2018-07-18Limit the TTL for anonymous sessions to 1 hourStan Hu
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
2018-07-18Proper icon validatorLukas Eipert
2018-07-18Toggle Show / Hide Button for Kubernetes Passwordgfyoung
Closes #49193.
2018-07-18Merge branch '_acet-fix-mr-autosave' into 'master'Tim Zallmann
Fix autosave issues for MR discussions Closes #48876 and #48877 See merge request gitlab-org/gitlab-ce!20569
2018-07-18Fix serialization of LegacyDiffNoteJan Provaznik
2018-07-18Fix filename for accelerated uploadsJan Provaznik
2018-07-18Delete UserActivities and related workersImre Farkas
2018-07-18Client implementation for Repository#new_commitsZeger-Jan van de Weg
After trying to remove the whole method in 8f69014af2902d8d53fe931268bec60f6858f160, this is a more gentle approach to the method. :) Prior to this change, new commit detection wasn't implemented in Gitaly, this was done through: https://gitlab.com/gitlab-org/gitaly/merge_requests/779 As the new implemented got moved around a bit, the whole RevList class got removed. Part of https://gitlab.com/gitlab-org/gitaly/issues/1233
2018-07-18Merge branch '_acet-fix-outdated-discussions' into 'master'Tim Zallmann
Fix showing outdated discussions on Changes tab. Closes #48167 See merge request gitlab-org/gitlab-ce!20445
2018-07-18Merge branch '27456-improve-feedback-when-dev-cannot-push-to-empty-repo' ↵Douwe Maan
into 'master' Improve feedback when a developer cannot push in an empty repository Closes #27456 See merge request gitlab-org/gitlab-ce!20519
2018-07-18Merge branch 'rd-48920-backend-support-for-clarifying-search-bar' into 'master'Douwe Maan
Add avatar_url attr to the response of the autocomplete endpoint Closes #48920 See merge request gitlab-org/gitlab-ce!20661
2018-07-18Remove unreachable Git codeJacob Vosmaer (GitLab)
2018-07-18Revert debounce.Fatih Acet
2018-07-18Debounce Autosave callback.Fatih Acet
2018-07-18Fix failing specs :fingers-crossed:Fatih Acet
2018-07-18Merge branch 'osw-fallback-to-collection-when-no-diff-refs' into 'master'Sean McGivern
Render MR page when no persisted diff_refs or diffs size Closes #49342 See merge request gitlab-org/gitlab-ce!20680
2018-07-18Render MR page when no persisted diff_refs or diffs sizeOswaldo Ferreira
2018-07-18Merge branch '45318-FE-junit-tests' into 'master'Phil Hughes
Backports security reusable components into CE to use in JUnit report See merge request gitlab-org/gitlab-ce!20613
2018-07-18Improves remote message when a developer is unable to push in an empty ↵Tiago Botelho
repository