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/lib
AgeCommit message (Collapse)Author
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-27Merge branch '33601-add-csrf-token-verification-to-api' into 'master'Sean McGivern
Resolve "Add CSRF token verification to API" Closes #33601 See merge request !12154
2017-07-27Merge branch 'rc/fix-tests-factories' into 'master'Sean McGivern
Fix the :project factory by not copying the test repo twice See merge request !13123
2017-07-27Merge branch ↵Rémy Coutable
'35539-can-t-create-a-merge-request-containing-a-binary-file-with-non-utf-8-characters' into 'master' Resolve "Can't create a merge request containing a binary file with non-UTF-8 characters" Closes #35539 See merge request !13086
2017-07-27Add specsDouwe Maan
2017-07-27Fix the :project factory by not copying the test repo twiceRémy Coutable
Also, fixing some calls to the :project factory with the :test_repo trait since this trait is already included in the :project factory. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-26Use LDAP-attributes configured in gitlab.yml in lookup instead of just ↵Casper
hard-coded attributes.
2017-07-26Fix saving diffs that are not valid UTF-8Sean McGivern
Previously, we used Psych, which would: 1. Check if a string was encoded as binary, and not ASCII-compatible. 2. Add the !binary tag in that case. 3. Convert to base64. We need to do the same thing, using a new column in place of the tag.
2017-07-26Merge branch '29289-project-destroy-clean-up-after-failure' into 'master'Sean McGivern
Handle errors while a project is being deleted asynchronously. Closes #29289 See merge request !11088
2017-07-26Merge remote-tracking branch 'dev/master'Douwe Maan
# Conflicts: # Gemfile # Gemfile.lock
2017-07-26Merge branch 'post-upload-pack-opt-out' into 'master'Sean McGivern
Enable gitaly_post_upload_pack by default See merge request !13078
2017-07-26Fix plain LDAP (no encryption)Michael Kozono
2017-07-26Move backwards compatibility logic out of the codeMichael Kozono
And closer to the configuration setup. The code doesn’t need to know about this.
2017-07-26Pass configured `ssl_version` to `omniauth-ldap`Michael Kozono
2017-07-26Pass configured `ca_file` to `omniauth-ldap`Michael Kozono
2017-07-26Verify certificates in `omniauth-ldap`Michael Kozono
2017-07-26Set `Net::LDAP` `ssl_version` optionMichael Kozono
2017-07-26Set `Net::LDAP` `ca_file` optionMichael Kozono
2017-07-26Set `Net::LDAP` encryption properlyMichael Kozono
2017-07-26Use encryption instead of methodMichael Kozono
The method key is deprecated in the `gitlab_omniauth-ldap` gem.
2017-07-26Remove spec/lib/api/helpers/csrf_tokens_spec.rbblackst0ne
2017-07-26Add CSRF token verification to APIblackst0ne
2017-07-26Merge branch 'zj-repo-exists-gitaly' into 'master'Sean McGivern
Implement GRPC call to RepositoryService See merge request !13019
2017-07-26Implement GRPC call to RepositoryServiceZ.J. van de Weg
2017-07-25Merge branch '30634-protected-pipeline' into 'master'Kamil Trzciński
Implement "Block pipelines on protected branches" Closes #30634, #34616, and #33130 See merge request !11910
2017-07-25Enable gitaly_post_upload_pack by defaultJacob Vosmaer
2017-07-25Add `api` prefix as a top level route in the spec.Bob Van Landuyt
Now that it has been removed from the rails routes. But it still needs to be a reserved top-level word, so the tests should know about this.
2017-07-25Take ee words into accountBob Van Landuyt
We need to reserve these words in EE to support the upgrade path from CE to EE.
2017-07-25Adjust `PathRegex` to validate files in the `public` directoryBob Van Landuyt
And reports when too many words are rejected.
2017-07-24Resolve "Lazy load images on the Frontend"Tim Zallmann
2017-07-24Merge branch 'fix/use-another-gitaly-feature-name-for-workhorse-send-blob' ↵Robert Speicher
into 'master' Use a unique feature name for Workhorse send blob migration See merge request !13031
2017-07-24Merge branch '31533-usage-data-projects-stats' into 'master'Sean McGivern
Add Slack and JIRA services counts to Usage Data Closes #31533 See merge request !12974
2017-07-24Merge branch '33097-issue-tracker' into 'master'Sean McGivern
Associate Issues tab only with internal issues tracker Closes #33097 See merge request !12130
2017-07-24Add Slack and JIRA services counts to Usage DataJarka Kadlecova
2017-07-24Upgrade the re2 gem to 1.1.0Nick Thomas
2017-07-24Support both internal and external issue trackersJarka Kadlecova
2017-07-24Use a unique feature name for Workhorse send blob migrationAhmad Sherif
2017-07-22Short-circuit build coverage extraction for empty regexesNick Thomas
2017-07-22Merge branch 'zj-pipeline-badge-improvements' into 'master'Grzegorz Bizon
Pipeline badge improvements Closes #15582 and #20961 See merge request !12966
2017-07-22Fix the gcovr coverage regex by removing line separators before scanningNick Thomas
RE2 differs from Ruby in handling multiple-line strings. The string "foo\n" will not match the regular expression "foo$" unless multi-line mode is enabled (and it's off by default). Since we're already scanning the build trace line by line (and so multi-line coverage regular expressions won't work), we can fix this by removing the line separator before scanning the string.
2017-07-21Merge branch 'gitaly-tree-entries' into 'master'Rémy Coutable
Incorporate CommitService.GetTreeEntries Gitaly call Closes gitaly#372 See merge request !12941
2017-07-21Merge branch 'feature/migrate-commit-find-all-to-gitaly' into 'master'Robert Speicher
Migrate Gitlab::Git::Commit.find_all to Gitaly Closes gitaly#396 See merge request !12934
2017-07-21Merge branch 'fix-re2-infinite-loop-nick' into 'security-9-3'Sean McGivern
Fix an infinite loop in Gitlab:UntrustedRegexp See merge request !2146
2017-07-21Reword success to passing for pipeline badgesZ.J. van de Weg
2017-07-21Rename build to pipeline for status badgesZ.J. van de Weg
First commit in probably 2, for resolve gitlab-org/gitlab-ce#15582. This commit is renaming files and classes from build to pipeline. Also wording is editted to pipeline. Given `pipeline` had more characters than `build`, I've made the field a bit wider. The width now matchers the one for the coverage badge, so they look nice when in a table format, or in a list. As soon as this commit is merged to master, and released, the build.svg is deprecated, meaning that all users which already placed a badge should update it. However, to make sure it keeps working tests are added for this case.
2017-07-20Migrate Gitlab::Git::Commit.find_all to GitalyAhmad Sherif
Closes gitaly#396
2017-07-20Incorporate CommitService.GetTreeEntries Gitaly callAlejandro Rodríguez
2017-07-20Wrong data type when testing webhooksAlexander Randa
2017-07-20Merge branch 'feature/send-diff-limits-to-gitaly' into 'master'Robert Speicher
Migrate DiffCollection limiting logic to Gitaly See merge request !12867
2017-07-20Merge remote-tracking branch 'upstream/master' into 30634-protected-pipelineLin Jen-Shin
* upstream/master: (130 commits) Change auto-retry count to a correct value in docs Fix background migration cleanup specs Fix CI/CD job auto-retry specs Fix JS; make buttons sr accessibile; fix overlay remove redundant changelog entries Merge branch '24570-use-re2-for-user-supplied-regexp-9-3' into 'security-9-3' Merge branch '33303-404-for-unauthorized-project' into 'security-9-3' Merge branch '33359-pers-snippet-files-location' into 'security-9-3' Merge branch 'bvl-remove-appearance-symlink' into 'security-9-3' Hide description about protected branches to non-member Update CHANGELOG.md for 9.0.11 Update CHANGELOG.md for 9.1.8 Update CHANGELOG.md for 8.17.7 Update CHANGELOG.md for 9.2.8 Update CHANGELOG.md for 9.3.8 Respect blockquote line breaks in markdown 35209 Add wip message to new navigation preference section Add github imported projects count to usage data Add versions to Prometheus metrics doc Add Bulgarian translations of Pipeline Schedules ...