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
2017-06-22Merge branch 'master' into fix/gb/improve-updating-column-in-batches-helperGrzegorz Bizon
* master: (56 commits) File view buttons Don't reset the session when the example failed, because we need capybara-screenshot to have access to it Resolve "MR comment + system note highlight don't have the same width" Add feature spec for dashboard state filter tabs Wording of Mysql support. a new feature checklist and more elaborate documentation requirements Filter archived project in API v3 only if param present Revert to using links instead of buttons in Issuable Index tabs. Do not run the codeclimate job on docs-only changes Only show gray footer space if environment actions exist Migrate Gitlab::Git::Blob.find to Gitaly Backport filtered search lazy token consistent state fix Add a comment explaining how the branch clean up happens Fix Github::Representation::PullRequest#source_branch_exists? Add CHANGELOG Fix GitHub importer performance on branch existence check Rebuild the dynamic path before validating it Rename stage ref migration specs to match a class name Enable Style/DotPosition Rubocop :cop: Revert "Merge branch 'winh-merge-request-related-issues' into 'master'" ... Conflicts: db/post_migrate/20170526185921_migrate_build_stage_reference.rb
2017-06-22Disable transaction in specs for some migrationsGrzegorz Bizon
2017-06-21Merge branch 'fix/gb/improve-build-stage-reference-migration' into 'master'Kamil Trzciński
Improve build stages reference migration Closes #33866 See merge request !12337
2017-06-21Fix migration specs that can not run within transactionGrzegorz Bizon
2017-06-21Rename stage ref migration specs to match a class nameGrzegorz Bizon
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-21Update build stage reference migration specsGrzegorz Bizon
2017-06-15Deserialise existing custom notification settingsSean McGivern
Create a post-deployment migration to update all existing notification settings with at least one custom level enabled to the new format. Also handle the same conversion when updating settings, to catch any stragglers.
2017-06-15Document a new migrations testing techniqueGrzegorz Bizon
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-06-08Update rename_system_namespace_spec to new validations.Bob Van Landuyt
2017-06-08Bring in security changes from the 9.2.5 releaseDJ Mountney
Ran: - git format-patch v9.2.2..v9.2.5 --stdout > patchfile.patch - git checkout -b 9-2-5-security-patch origin/v9.2.2 - git apply patchfile.patch - git commit - [Got the sha ref for the commit] - git checkout -b upstream-9-2-security master - git cherry-pick <SHA of the patchfile commit> - [Resolved conflicts] - git cherry-pick --continue
2017-06-06Fix reverting builds stage ref migration on MySQLGrzegorz Bizon
2017-06-06Migrate stages only with correct foreign referencesGrzegorz Bizon
2017-06-05Merge branch 'master' into feature/gb/migrate-pipeline-stagesGrzegorz Bizon
* master: (524 commits) Improve user experience around slash commands in instant comments Fix LFS timeouts when trying to save large files retryable? is now available for CommitStatus Resolve "Documentation of `.gitlab-ci.yml` states incorrect example for variables" Fix test failures Add slugify project path to CI enviroment variables Fixed typo: craeted -> created 32118 Make New environment empty state btn lowercase Expose import_status in Projects API 32832 Remove overflow from comment form for confidential issues and vertically aligns confidential issue icon Fix test failures Allow manual bypass of auto_sign_in_with_provider Fix keys seed Allow users to be hard-deleted from the API fixup some classnames and media queries Enable the Style/PreferredHashMethods cop Lint our factories creation in addition to their build Don’t schedule workers from inside transactions Allow scheduling from after_commit hooks Forbid Sidekiq scheduling in transactions ... Conflicts: db/schema.rb spec/spec_helper.rb
2017-06-05Calculate previous migration version in specs supportGrzegorz Bizon
This makes it possible to test migration on the schema this migration was written for, without a need to specify a previous schema version manually.
2017-06-01Add missing specsKamil Trzcinski
2017-06-01Fix data inconsistency issue for old artifacts by moving them to a currently ↵Kamil Trzcinski
used path
2017-05-29Merge branch ↵Robert Speicher
'32677-migrations-using-update_column_in_batches-must-have-a-spec' into 'master' New Migration/UpdateColumnInBatches cop Closes #32677 See merge request !11611
2017-05-29Merge branch 'rework-authorizations-performance' into 'master'Douwe Maan
Rework project authorizations and nested groups for better performance See merge request !10885
2017-05-29Disable Migration/UpdateColumnInBatches for old migrationsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-26Reorder pipeline stages-related migrationsGrzegorz Bizon
2017-05-26Migrate build stage reference in a separate migrationGrzegorz Bizon
2017-05-26Add pipeline stages post deployment migrationGrzegorz Bizon
2017-05-26Add migrations helpers to simplify writing migration specsGrzegorz Bizon
2017-05-26Make migration specs by using migrator in around hookGrzegorz Bizon
2017-05-25Simplify migrations for specific database schemaGrzegorz Bizon
2017-05-25Add PoC of ActiveRecord migration testingGrzegorz Bizon
2017-05-23Fix migrations for older PostgreSQL versionsKamil Trzcinski
- Do not care about error when creating index on PostgreSQL - Test against PostgreSQL 9.2
2017-05-22Respect the typo as rubocop saidLin Jen-Shin
2017-05-22Add a test to ensure this works on MySQLLin Jen-Shin
2017-05-20Merge branch 'bvl-fix-already-renamed-paths' into 'master'Douwe Maan
Fix incorrect renaming migrations Closes #32526 and #32530 See merge request !11515
2017-05-19Simpler way of renaming usersBob Van Landuyt
2017-05-19Fix incorrectly renamed routesBob Van Landuyt
2017-05-19Remove readme project_view optionDouwe Maan
2017-05-19Rename users that had their namespace renamedBob Van Landuyt
2017-05-17Convert nested groups to regular ones for MySQLYorick Peterse
This migration will take all nested groups and convert them into regular groups, ensuring that members of any parent groups still have access to the child group. This migration relies on code external to it as copying all of this over involves hundreds of lines of code depending on all sorts of methods, making this practically impossible to do right.
2017-05-17Use CTEs for nested groups and authorizationsYorick Peterse
This commit introduces the usage of Common Table Expressions (CTEs) to efficiently retrieve nested group hierarchies, without having to rely on the "routes" table (which is an _incredibly_ inefficient way of getting the data). This requires a patch to ActiveRecord (found in the added initializer) to work properly as ActiveRecord doesn't support WITH statements properly out of the box. Unfortunately MySQL provides no efficient way of getting nested groups. For example, the old routes setup could easily take 5-10 seconds depending on the amount of "routes" in a database. Providing vastly different logic for both MySQL and PostgreSQL will negatively impact the development process. Because of this the various nested groups related methods return empty relations when used in combination with MySQL. For project authorizations the logic is split up into two classes: * Gitlab::ProjectAuthorizations::WithNestedGroups * Gitlab::ProjectAuthorizations::WithoutNestedGroups Both classes get the fresh project authorizations (= as they should be in the "project_authorizations" table), including nested groups if PostgreSQL is used. The logic of these two classes is quite different apart from their public interface. This complicates development a bit, but unfortunately there is no way around this. This commit also introduces Gitlab::GroupHierarchy. This class can be used to get the ancestors and descendants of a base relation, or both by using a UNION. This in turn is used by methods such as: * Namespace#ancestors * Namespace#descendants * User#all_expanded_groups Again this class relies on CTEs and thus only works on PostgreSQL. The Namespace methods will return an empty relation when MySQL is used, while User#all_expanded_groups will return only the groups a user is a direct member of. Performance wise the impact is quite large. For example, on GitLab.com Namespace#descendants used to take around 580 ms to retrieve data for a particular user. Using CTEs we are able to reduce this down to roughly 1 millisecond, returning the exact same data. == On The Fly Refreshing Refreshing of authorizations on the fly (= when users.authorized_projects_populated was not set) is removed with this commit. This simplifies the code, and ensures any queries used for authorizations are not mutated because they are executed in a Rails scope (e.g. Project.visible_to_user). This commit includes a migration to schedule refreshing authorizations for all users, ensuring all of them have their authorizations in place. Said migration schedules users in batches of 5000, with 5 minutes between every batch to smear the load around a bit. == Spec Changes This commit also introduces some changes to various specs. For example, some specs for ProjectTeam assumed that creating a personal project would _not_ lead to the owner having access, which is incorrect. Because we also no longer refresh authorizations on the fly for new users some code had to be added to the "empty_project" factory. This chunk of code ensures that the owner's permissions are refreshed after creating the project, something that is normally done in Projects::CreateService.
2017-05-16Merge branch 'bvl-rename-build-events-to-job-events' into 'master' Douwe Maan
Rename `build_events` to `job_events` Closes #31620 See merge request !11287
2017-05-15Revert "Merge branch 'bvl-rename-build-events-to-job-events' into 'master'"Douwe Maan
This reverts merge request !11287
2017-05-15Remove old migration spec.Bob Van Landuyt
From this point, the `services` table doesn't have the `build_events` flag anymore. So instead of updating the spec for this, I removed it. It should have been executed at this point.
2017-05-11Fix MySQL build failureDouwe Maan
2017-05-10No user needed to cleanup namespaceless pending delete projectsToon Claes
Since this is a cleanup, ran by a post-deploy, there is no need to lookup the admin to run the cleanup.
2017-05-10Use worker to destroy namespaceless projects in post-deployToon Claes
Destroying projects can be very time consuming. So instead of destroying them in the post-deploy, just schedule them and make Sidekiq do the hard work. They are scheduled in batches of 5000 records. This way the number of database requests is limited while also the amount data read to memory is limited.
2017-05-10Add post-deploy migrate to cleanup projects in pending delete stateToon Claes
There are many projects in `pending_delete` state, this post-deploy migration cleans them up. The script is based on https://gitlab.com/gitlab-org/gitlab-ce/snippets/1648654 and https://gitlab.com/gitlab-org/gitlab-ce/snippets/1611429. The use of these scripts were described in https://gitlab.com/gitlab-com/infrastructure/issues/888.
2017-05-09Small code improvements and add migration specFelipe Artur
2017-04-26Enable RSpec/FilePath copSean McGivern
- Ignore JS fixtures - Ignore qa directory - Rewrite concern specs to put concern name first
2017-04-14Add a post-deploy migration to migrate from former Redis activity to DBRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-10Change project view default for existing users and anonymous visitors to ↵Dmitriy Zaporozhets
files+readme Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-04-10Add spec for schema.rbblackst0ne