Release 8.6.3
-
Picked into respective
stable
branches.Picked into Stable
8.6 merged merge requests:- gitlab-org/gitlab-ee!280 (to be picked into CE)
- gitlab-org/gitlab-ee!310
- gitlab-org/gitlab-ee!311
- gitlab-org/gitlab-ee!313
- gitlab-org/gitlab-ce!3374
- gitlab-org/gitlab-ce!3376
- gitlab-org/gitlab-ce!3382
- gitlab-org/gitlab-ce!3432 (missing changelog)
- gitlab-org/gitlab-ce!3450
- gitlab-org/gitlab-ce!3466
- gitlab-org/gitlab-ce!3468
- gitlab-org/gitlab-ce!3477
- gitlab-org/gitlab-ce!3478
-
Check
ce/8-6-stable
CHANGELOG -
Merge
ce/8-6-stable
intoee/8-6-stable-ee
-
Check for any migrations in CE (and paste the diff below):
git diff v8.6.2..8-6-stable -- db/
diff --git a/db/migrate/20160324020319_remove_todos_for_deleted_issues.rb b/db/migrate/20160324020319_remove_todos_for_deleted_issues.rb new file mode 100644 index 0000000..1fff975 --- /dev/null +++ b/db/migrate/20160324020319_remove_todos_for_deleted_issues.rb @@ -0,0 +1,17 @@ +class RemoveTodosForDeletedIssues < ActiveRecord::Migration
- def up
- execute <<-SQL
-
DELETE FROM todos
-
WHERE todos.target_type = 'Issue'
-
AND NOT EXISTS (
-
SELECT *
-
FROM issues
-
WHERE issues.id = todos.target_id
-
AND issues.deleted_at IS NULL
-
)
- SQL
- end
- def down
- end +end diff --git a/db/migrate/20160331133914_remove_todos_for_deleted_merge_requests.rb b/db/migrate/20160331133914_remove_todos_for_deleted_merge_requests.rb new file mode 100644 index 0000000..54cea96 --- /dev/null +++ b/db/migrate/20160331133914_remove_todos_for_deleted_merge_requests.rb @@ -0,0 +1,17 @@ +class RemoveTodosForDeletedMergeRequests < ActiveRecord::Migration
- def up
- execute <<-SQL
-
DELETE FROM todos
-
WHERE todos.target_type = 'MergeRequest'
-
AND NOT EXISTS (
-
SELECT *
-
FROM merge_requests
-
WHERE merge_requests.id = todos.target_id
-
AND merge_requests.deleted_at IS NULL
-
)
- SQL
- end
- def down
- end +end diff --git a/db/schema.rb b/db/schema.rb index dce2bfe..90eaff1 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@
It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20160320204112) do +ActiveRecord::Schema.define(version: 20160331133914) do ```
-
Check for any migrations in EE (and paste the diff below):
git diff v8.6.2-ee..8-6-stable-ee -- db/
-
Tag and build (this is CI-automatized) the
8.6.3
version using therelease
task:bundle exec rake "release[8.6.3]"
-
Check that packages are built and appear under
gitlab/gitlab-ee
andgitlab/gitlab-ce
on https://packages.gitlab.com -
Add patch notice to 8.6 Regressions:
`8.6.3` has been tagged, further fixes will go into `8.6.4` as necessary.
-
Deploy
8.6.3
to GitLab.com -
Create the
8.6.3
version on https://version.gitlab.com -
Blog Post:
-
Tweet (prepare the Tweet text below or paste the tweet URL instead):
GitLab 8.6.3 is released! https://about.gitlab.com/2016/04/01/gitlab-8-dot-6-dot-3-released/ Once again, with many fixes and improvements!
-
Upgrade the
#gitlab
channel's topic on IRC Freenode with the latest version number -
Add
ce/v8.6.3
CHANGELOG items toce/master
CHANGELOG -
Add
ee/v8.6.3-ee
CHANGELOG-EE items toee/master
CHANGELOG-EE -
Add
omnibus-gitlab/v8.6.3+ee.0
CHANGELOG items toomnibus-gitlab/master
CHANGELOG -
Create the next patch issue (if needed) using the
patch_issue
task (and put a reference to it below):bundle exec rake "patch_issue[8.6.4]"
For references: