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
AgeCommit message (Collapse)Author
2019-06-19Migrate root_id column on Namespaces table62214-namespace-database-migrationMayra Cabrera
Includes: - Migration to add root_id column on Namespaces table - Background migration to schedule the population of this new field
2019-06-19Merge branch 'test-script-watch' into 'master'Mike Greiling
Add watch option to test script See merge request gitlab-org/gitlab-ce!29560
2019-06-19Add watch option to test scriptPaul Gascou-Vaillancourt
2019-06-19Merge branch 'pderichs-52123' into 'master'Robert Speicher
Use NotesFinder to get Noteable See merge request gitlab-org/gitlab-ce!28205
2019-06-19Merge branch 'fe-vue-test-utils-for-tooltip-on-truncate-spec' into 'master'Mike Greiling
Use @vue/test-utils for tooltip_on_truncate_spec See merge request gitlab-org/gitlab-ce!29249
2019-06-19Merge branch '52442-minimal-remove-mysql-support' into 'master'Robert Speicher
Only support postgresql (minimal version) See merge request gitlab-org/gitlab-ce!29790
2019-06-19Merge branch 'api-js-forked-projects' into 'master'Filipa Lacerda
Added forked projects API call function See merge request gitlab-org/gitlab-ce!29841
2019-06-19Merge branch 'pj/fix-emacs-style' into 'master'Lin Jen-Shin
Fix syntax coloring on emacs See merge request gitlab-org/gitlab-ce!29844
2019-06-19Merge branch 'sh-pipeline-typo-docs' into 'master'Marcia Ramos
Fix typo in doc/user/project/pipelines/settings.md See merge request gitlab-org/gitlab-ce!29851
2019-06-19Fix typo in doc/user/project/pipelines/settings.mdStan Hu
Change automaticallyl -> automatically
2019-06-19Merge branch 'docs/update-e2e-quick-start-guide' into 'master'Sanad Liaquat
Backport EE MR See merge request gitlab-org/gitlab-ce!29853
2019-06-19Merge branch 'danger-comply-with-suggestions' into 'master'Lin Jen-Shin
When using suggestions, squash must be enabled See merge request gitlab-org/gitlab-ce!29687
2019-06-19When using suggestions, squash must be enabledAchilleas Pipinellis
2019-06-19Backport EE MRWalmyr Lima
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14280
2019-06-19Merge branch '62722-include-derailed-benchmarks-data-to-ci-report' into 'master'Kamil Trzciński
Run static memory benchmarks from 'derailed_benchmarks' in CI See merge request gitlab-org/gitlab-ce!29618
2019-06-19Merge branch '62980-username-availability-checker-breaks-inline-validation' ↵Kushal Pandya
into 'master' Resolve "Username availability checker breaks inline validation" Closes #62980 See merge request gitlab-org/gitlab-ce!29678
2019-06-19Resolve "Username availability checker breaks inline validation"Jiaan
2019-06-19Merge branch 'knative-0.6' into 'master'Grzegorz Bizon
Knative version bump 0.5 -> 0.6 See merge request gitlab-org/gitlab-ce!28798
2019-06-19Knative version bump 0.5 -> 0.6Chris Baumbauer
2019-06-19Update the docs to reflect lack of MySQL supportNick Thomas
Now MySQL is no longer supported, we need to change the docs
2019-06-19Only support postgresqlNick Thomas
MySQL support has been removed
2019-06-19Merge branch '63417-add-missing-class' into 'master'Kamil Trzciński
Adds missing class in collapsible sections Closes #63417 See merge request gitlab-org/gitlab-ce!29804
2019-06-19Merge branch 'ce-12014-incremental-es-wiki-updates' into 'master'Nick Thomas
Backport of 12014-incremental-es-wiki-updates See merge request gitlab-org/gitlab-ce!29531
2019-06-19Merge branch 'docs/12-0-upgrade-correction' into 'master'Marin Jankovski
Docs: Correct upgrade guides for 12.0 See merge request gitlab-org/gitlab-ce!29846
2019-06-19Use correct arg namepjaspers
So funny story, true story. I tried to run the test locally, but didn't make it past setting up Gitaly. Here's what I tried: First attempt: `git clone gitlab-ce` `cd gitlab-ce && bundle install` `be rspec` This didn't work because I was missing the config/database.yml, I didn't see a `script/bootstrap` so I looked in the readme which redirected me to a webpage which redirected me to the gitlab-development-kit. Second attempt: `gem install gitlab-development-kit` cd gitlab-development-kit gdk init gdk isntall This broke somwhere along the way because it couldn't install Gitaly because my go version was too low. But it did clone the gitlab repo again and this time it did have a config/database.yml. So I tried to cd into it and `be rspec spec/lib/gitlab/database/migration_helpers_spec.rb` which complained about the database not being configured so I: - Changed the socket to localhost (in the config/database.yml) - `createdb <dev_db>` `createdb test_db` - `be rake db:test:prepare` Great success, it was doing things! But then failed when it came at the Gitaly step. Since I only want to change these three lines, at the point I gave up and entrusted the pipeline to do its thing. What I would have liked: - A 'It's a Rails system, I know this' readme/docs (It's in there somewhere just couldn't find it) - A way to run tests without having to use Gitaly - Not having too install all the things for a small fix (I get why'd you want this, but to me it's overkill)
2019-06-19Correct upgrade guides for 12.0Yorick Peterse
It's fine to upgrade from 11.11.x to 12.x, so we remove the requirement to first upgrade to 12.0.x.
2019-06-19Adds missing classFilipa Lacerda
Will apply identation from CSS to collapsible sections
2019-06-19Merge branch ↵Nick Thomas
'63399-intermittent-spec-failure-in-spec-models-ci-pipeline_schedule_spec-rb-131' into 'master' Resolve "Intermittent spec failure in spec/models/ci/pipeline_schedule_spec.rb:131" Closes #63399 See merge request gitlab-org/gitlab-ce!29838
2019-06-19Merge branch 'docs/file-lock-update' into 'master'Marcia Ramos
Refactor file locking docs See merge request gitlab-org/gitlab-ce!29686
2019-06-19Update file locking docsAchilleas Pipinellis
- Remove outdated 'introduced in' section - Update/remove images
2019-06-19Fix syntax coloring on emacspjaspers
The rather cryptic: "fk_#{Digest::SHA256.hexdigest("#{table}_#{column}_fk").first(10)}" Was too much for emacs too handle*, since it was coming from the Rails codebase I took their way of doing the same thing and applied it here. I think it's easier to read and it also makes emacs render the migration helpers pretty again. * not true, emacs can handle anything, leave emacs alone!
2019-06-19Added forked projects API call functionPhil Hughes
Part of https://gitlab.com/gitlab-org/gitlab-ce/issues/58583
2019-06-19Set a fixed date in pipeline shedule specHeinrich Lee Yu
Fixes flaky master
2019-06-19Run static benchmarks from 'derailed_benchmarks'Aleksei Lipniagov
Two static memory benchmarks will be included in our CI pipeline. It will load gems from the Gemfile and check the amount of RAM consumed as well as the number of objects allocated and retained. Aggregated values will be included as 'metrics' into MRs while full reports will be downloadable as job artifacts.
2019-06-19Simplify result of find_noteablePatrick Derichs
2019-06-19Remove unneeded parenthesesPatrick Derichs
2019-06-19Separate conditions to increase readabilityPatrick Derichs
2019-06-19Use NotesFinder to fetch notes on API and ControllersPatrick Derichs
Fix missing iid query on NotesFinder Changed parameters of find_noteable, so changes across a few files were needed. MergeRequest also requires iid instead of id query Make NotesFinder fail with RecordNotFound again Add specs for target_iid Using RSpec tablesyntax for target_iid specs Revert "Using RSpec tablesyntax for target_iid specs" This reverts commit ba45c7f569a. Allow find_by! here Fix variable name Add readable check Revert "Add readable check" This reverts commit 9e3a1a7aa39. Remove unnecessary assignment Add required changes for EE Fix parameter count Reduce code duplication by extracting a noteable module method The call to find_noteable was redundant so multiple files and lines have changed in that commit to use the newly introduced module method `noteable`. Replace casecmp with include check Add parent_type parameter Revert "Reduce code duplication by extracting a noteable module method" This reverts commit 8c0923babff16. Method is no longer needed Check whether noteable can be read by user
2019-06-19Merge branch 'qa-ml-unquarantine-branches-test' into 'master'Sanad Liaquat
Unquarantine the branches E2E test Closes gitlab-org/quality/nightly#62 See merge request gitlab-org/gitlab-ce!29828
2019-06-19Merge branch 'docs/12-0-upgrade' into 'master'Achilleas Pipinellis
Docs: Added source upgrade guides for 12.0.0 See merge request gitlab-org/gitlab-ce!29795
2019-06-19Merge branch 'ac-usage-quotas-docs' into 'master'Achilleas Pipinellis
Document Usage Quotas group settings page Closes #63022 See merge request gitlab-org/gitlab-ce!29599
2019-06-19Document Usage Quotas group settings pageAlessio Caiazza
2019-06-19Merge branch 'link_zoom_call_issue-docs' into 'master'Achilleas Pipinellis
Add zoom call section in issue data page See merge request gitlab-org/gitlab-ce!29815
2019-06-19Merge branch '57918-encrypt-feature-flags-tokens-changelog' into 'master'Kamil Trzciński
Add changelog entry for the new operations_feature_flags_clients.token_encrypted column See merge request gitlab-org/gitlab-ce!29820
2019-06-19Add changelog for feature flags encrypted tokensKrasimir Angelov
We missed to add this in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29320. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/57918
2019-06-19Merge branch 'qa-ml-unquarantine-merge-fork-test' into 'master'Ramya Authappan
Unquarantine merge tests Closes gitlab-org/quality/nightly#93 and gitlab-org/quality/nightly#94 See merge request gitlab-org/gitlab-ce!29833
2019-06-19Merge branch 'jl-simplify-mattermost-docs' into 'master'Achilleas Pipinellis
Crosslink Mattermost integrations, simplify components list See merge request gitlab-org/gitlab-ce!29317
2019-06-19Crosslink Mattermost integrations, simplify components listJoshua Lambert
2019-06-19Merge branch '52954-allow-developers-to-delete-tags' into 'master'James Lopez
Allow developers to delete tags Closes #52954 See merge request gitlab-org/gitlab-ce!29668
2019-06-19Add documentation and testsManoj MJ
This commit adds - feature specs - to test the ability of a user with "developer" permission to delete tags in repositories. - documentation