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
2018-06-29Add pipeline stages position clean-up migrationGrzegorz Bizon
2018-05-04Resolve "Reconcile project templates with Auto DevOps"Fabio Busatto
2018-04-25Cleanup after adding MR diff's commit_count (try 2)Jan Provaznik
* processes any pending records which are not migrated yet * bumps import_export version because of new commits_count attribute * removes commits_count fallback method
2018-03-08Revert "Cleanup after adding MR diff's commit_count"Jan Provaznik
This reverts commit 0b7d10851456018328da137beeca931767b4fd0a.
2018-03-05Cleanup after adding MR diff's commit_countJan Provaznik
* processes any pending records which are not migrated yet * bumps import_export version because of new commits_count attribute * removes commits_count fallback method
2018-01-06Bump import/export version in project templatesGrzegorz Bizon
2017-11-28Remove serialised diff and commit columnsSean McGivern
The st_commits and st_diffs columns on merge_request_diffs historically held the YAML-serialised data for a merge request diff, in a variety of formats. Since 9.5, these have been migrated in the background to two new tables: merge_request_diff_commits and merge_request_diff_files. That has the advantage that we can actually query the data (for instance, to find out how many commits we've stored), and that it can't be in a variety of formats, but must match the new schema. This is the final step of that journey, where we drop those columns and remove all references to them. This is a breaking change to the importer, because we can no longer import diffs created in the old format, and we cannot guarantee the export will be in the new format unless it was generated after this commit.
2017-09-07Update project templates to new import versionZeger-Jan van de Weg
If the import version changes, we need to update a few project templates to match this new version. In a seperate commit I'll update the docs to reflect this.
2017-08-23Update templates to include header in the READMEZeger-Jan van de Weg
2017-08-15Add two more project templatesZ.J. van de Weg
Related to !13108. Mostly this is just running the rake task and changing the task a bit to catch cases like the project already existing or so. The rake task moves archives to the vendor/project_template directory, which are checked in too.