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
2017-12-14Merge branch '38869-datetime' into 'master'Tim Zallmann
Export date utility functions as ES6 modules See merge request gitlab-org/gitlab-ce!15782
2017-12-13Merge branch '13695-order-contributors-in-api' into 'master'Rémy Coutable
Adds ordering to projects contributors in API Closes #13695 See merge request gitlab-org/gitlab-ce!15469
2017-12-13Merge branch 'winh-unify-modals' into 'master'Filipa Lacerda
Unify dialog modal/popup dialog/confirmation dialog/modal to modal See merge request gitlab-org/gitlab-ce!15865
2017-12-13Merge branch '33926-update-issuable-icons' into 'master'Annabel Dunstone Gray
Update issuable status icons Closes #33926 See merge request gitlab-org/gitlab-ce!15898
2017-12-13Merge branch 'pawel/cache_feature_check_for_5_minutes_for_method_call' into ↵Robert Speicher
'master' Cache feature check for 1 minute for MethodCall instrumentation toggle See merge request gitlab-org/gitlab-ce!15800
2017-12-13fix test case descriptionPawel Chojnacki
2017-12-13Merge branch 'add-tcp-check-rake-task' into 'master'Rémy Coutable
Add a gitlab:tcp_check rake task See merge request gitlab-org/gitlab-ce!15759
2017-12-13Adds ordering to projects contributors in APIJacopo
Allows ordering in GET api/v4/projects/:project_id/repository/contributors through `order_by` and `sort` params. The available `order_by` options are: name|email|commits. The available `sort` options are: asc|desc.
2017-12-13Merge branch 'issue_41021' into 'master'Sean McGivern
Prevent worker that updates merge requests head pipeline from failing jobs Closes #41021 See merge request gitlab-org/gitlab-ce!15870
2017-12-13Add a gitlab:tcp_check rake taskNick Thomas
This allows us to avoid relying on telnet / netcat being installed
2017-12-13Prevent worker that updates merge requests head pipeline from failing jobsFelipe Artur
2017-12-13Merge branch 'bvl-backport-migration-spec-changes-to-ce' into 'master'Douwe Maan
Create models directly in migration specs See merge request gitlab-org/gitlab-ce!15874
2017-12-13Merge branch 'fix-create-mr-from-issue-with-template' into 'master'Rémy Coutable
Execute quick actions when creating MR from issue Closes gitlab-ee#4277 See merge request gitlab-org/gitlab-ce!15810
2017-12-13Execute quick actions when creating MR from issueSean McGivern
In CE, this does nothing - the `MergeRequests::BuildService` will, at the time of writing, never return a description for this case. In EE, a project can have a default MR template, which will be returned by the service. Previously we were only using the description passed in the params, ignoring any already set on the object. Now we fall back to the one set on the object if there was none in the params, allowing quick actions to be executed from default MR templates when creating an MR from an issue.
2017-12-13Merge branch 'new-nav-tech-debt' into 'master'Phil Hughes
Remove page-with-new-nav class See merge request gitlab-org/gitlab-ce!15819
2017-12-13Merge branch 'master' into 38869-datetimeFilipa Lacerda
* master: (85 commits) Export old code into es6 modules Use relative URL for projects to avoid storing domains Fix spec by avoiding monkeypatching Return the noteable in Note#touch_noteable add CHANGELOG.md entry for !15889 fix broken empty state assets for environment monitoring page removed tab indexes from tag form Refactor entrypoint override docs Present member collection at the controller level Adds i18n check the import_status field before doing SQL operations to check the import url Fix rubocop offence Fix entrypoint overriding documentation Remove unnecessary js-issuable-edit Use memoization for commits on diffs Move Repository#write_ref to Git::Repository#write_ref Treat empty markdown and html strings as valid cached text, not missing cache that needs to be updated Center cluster title Remove noisy notification from QA base page Remove unused page from hashed storage QA scenario ...
2017-12-13Export old code into es6 modulesFilipa Lacerda
2017-12-13Merge branch '40468-empty-states' into 'master'Tim Zallmann
Resolve "Update styling of empty states" Closes #40468 See merge request gitlab-org/gitlab-ce!15791
2017-12-13Update issuable status iconsEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/33926 Changed file icons already addressed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/15367
2017-12-13Fix spec by avoiding monkeypatchingMichael Kozono
2017-12-12Merge branch ↵Robert Speicher
'tmlee/gitlab-ce-28004-consider-refactoring-member-view-by-using-presenter' into 'master' Refactor member view by using presenter Closes #28004 See merge request gitlab-org/gitlab-ce!15715
2017-12-12Merge branch 'zj-memoization-mr-commits' into 'master'Sean McGivern
Use memoization for commits on diffs See merge request gitlab-org/gitlab-ce!15857
2017-12-12Expire feature flag cache after 1minutePawel Chojnacki
2017-12-12use class variables instead of CONSTANTsPawel Chojnacki
2017-12-12Use AtomicFixNum to implement CAS isolated cache update.Pawel Chojnacki
i.e. Using compare and swap we update the expires_at value. The thread that actually is able to update this value will also set the cache holding method_call enabled state
2017-12-12Implemente measurement enabled cache using AtomicReferencePawel Chojnacki
2017-12-12Implement simple in memory cache that expires after 5 minutesPawel Chojnacki
2017-12-12Cache feature check for 5 minutes for MethodCall instrumentation togglePawel Chojnacki
2017-12-12Present member collection at the controller levelRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-12Merge branch 'sophie-h/gitlab-ce-patch-15' into 'master'Sean McGivern
Hide issues and MRs in labels list if disabled See merge request gitlab-org/gitlab-ce!15863
2017-12-12Fix rubocop offenceZeger-Jan van de Weg
2017-12-12Merge branch 'repo-write-ref-client-prep' into 'master'Robert Speicher
Move Repository#write_ref to Git::Repository#write_ref Closes gitaly#793 See merge request gitlab-org/gitlab-ce!15712
2017-12-12Merge branch 'optimize-issues-avoid-noop-empty-cache-updates2' into 'master'Sean McGivern
Treat empty markdown and html strings as valid cached text, not missing cache… See merge request gitlab-org/gitlab-ce!15856
2017-12-12Use memoization for commits on diffsZeger-Jan van de Weg
The Gitaly CommitService is being hammered by n + 1 calls, mostly when finding commits. This leads to this gRPC being turned of on production: https://gitlab.com/gitlab-org/gitaly/issues/514#note_48991378 Hunting down where it came from, most of them were due to MergeRequest#show. To prove this, I set a script to request the MergeRequest#show page 50 times. The GDK was being scraped by Prometheus, where we have metrics on controller#action and their Gitaly calls performed. On both occations I've restarted the full GDK so all caches had to be rebuild. Current master, 806a68a81f1baee, needed 435 requests After this commit, 154 requests
2017-12-12Move Repository#write_ref to Git::Repository#write_refKim "BKC" Carlbäcker
2017-12-12Merge branch 'single-list-multiple-clusters' into 'master'Kamil Trzciński
Use Single list for multiple clusters See merge request gitlab-org/gitlab-ce!15848
2017-12-12Merge branch 'rc/backport-ee-fix' into 'master'Kamil Trzciński
Backport a spec fix done in EE (5dbecb8e) to CE See merge request gitlab-org/gitlab-ce!15842
2017-12-12Treat empty markdown and html strings as valid cached text, not missing ↵Greg Stark
cache that needs to be updated
2017-12-12Merge branch 'jprovazn-description' into 'master'Sean McGivern
Use message body for merge request description Closes #40968 See merge request gitlab-org/gitlab-ce!15839
2017-12-12Rename recaptcha-dialog to recaptcha-modalWinnie Hellmann
2017-12-12Rename popup-dialog to modalWinnie Hellmann
2017-12-12Merge branch 'master' into 40468-empty-statesFilipa Lacerda
* master: (54 commits) Updated image for diff navigation docs Milestone sidebar docs Use app host instead of asset host when rendering image blob or diff ActiveRecord::StaleObjectError: Attempted to update a stale object: Ci::Build Use shared interceptor in note specs Ignore temporary table in schema Check for null in job tooltip title Clarify casing of I18N placeholder names fixes some markup issues in the js style guide docs Fix migration that removes issues.branch_name small change to make less conflict with EE version Add cop for use of remove_column Resolve merge conflicts with dev.gitlab.org/master after security release add index for doc/administration/operations/ Remove RubySampler#sample_objects for performance as well Bugfix: User can't change the access level of an access requester Add spec for removing issues.assignee_id updated imports Keep track of storage check timings Remove a header level in the new 'Automatic CE->EE merge' doc ...
2017-12-12Merge branch 'add-js-prefix-issuable-edit' into 'master'Filipa Lacerda
Add js prefix for issuable-edit Closes #40965 See merge request gitlab-org/gitlab-ce!15813
2017-12-12Merge branch '37619-fix-vue-typeerror-not-failing-the-build' into 'master'Filipa Lacerda
Stop "ERROR: TypeError{}" from being logged to the console and fail tests Closes #37619 See merge request gitlab-org/gitlab-ce!15830
2017-12-12Merge branch ↵Kamil Trzciński
'41023-activerecord-staleobjecterror--attempted-to-update-a-stale-object--ci-build' into 'master' Job dropping by MissingDependenciesError should consider StaleObjectError Closes #41023 See merge request gitlab-org/gitlab-ce!15873
2017-12-12Merge branch '40997-pipeline-null' into 'master'Phil Hughes
Checks for null in job tooltip title Closes #40997 See merge request gitlab-org/gitlab-ce!15869
2017-12-12Create models directly in migration specsBob Van Landuyt
Instead of using the factories. Since the factories might be using columns that aren't available in the schema at version the particular spec is running in.
2017-12-12ActiveRecord::StaleObjectError: Attempted to update a stale object: Ci::BuildShinya Maeda
2017-12-12Merge branch '39608-comment-on-image-discussions-tab-alignment' into 'master'Tim Zallmann
Fix comment on image discussion icon alignment (update icons) Closes #39608 See merge request gitlab-org/gitlab-ce!15760
2017-12-12Use shared interceptor in note specsEric Eastwood