Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2021-02-15 17:30:11 +0300
committerMayra Cabrera <mcabrera@gitlab.com>2021-02-15 17:30:11 +0300
commit29dec5fdae0846da19f803058441581b43fda91d (patch)
tree140c922707149b33ca99de1531396a571c767414
parentc886f7f37533e8ed19e245a83f363086daf590e9 (diff)
parent9c2d989a2abfaa86bd3f20e621617304cff4c65b (diff)
Merge branch 'revert-changelog-changes' into 'master'
Revert changelog compilation See merge request gitlab-org/gitaly!3130
-rw-r--r--CHANGELOG.md39
-rw-r--r--changelogs/unreleased/avar-go-user-create-branch-and-tag-by-default.yml5
-rw-r--r--changelogs/unreleased/avar-nuke-ruby-user-create-tag-and-branch.yml5
-rw-r--r--changelogs/unreleased/avar-user-update-branch-in-go.yml5
-rw-r--r--changelogs/unreleased/fix-premature-cgroup-cleanup.yml5
-rw-r--r--changelogs/unreleased/go_user_ff_branch_by_default.yml5
-rw-r--r--changelogs/unreleased/pks-cleanup-housekeeping-merge.yml5
-rw-r--r--changelogs/unreleased/pks-deterministic-rpcs.yml5
-rw-r--r--changelogs/unreleased/pks-fetch-remote-fix-pruning.yml5
-rw-r--r--changelogs/unreleased/pks-git-inject-global-config.yml5
-rw-r--r--changelogs/unreleased/pks-go-fetch-source-branch-remove-ff.yml5
-rw-r--r--changelogs/unreleased/pks-go-user-merge-branch-remove-ff.yml5
-rw-r--r--changelogs/unreleased/pks-go-user-merge-to-ref-allow-conflicts.yml5
-rw-r--r--changelogs/unreleased/pks-hook-reftx-error-code.yml5
-rw-r--r--changelogs/unreleased/pks-hooks-stop-transactions.yml5
-rw-r--r--changelogs/unreleased/pks-tx-apply-gitattributes.yml5
-rw-r--r--changelogs/unreleased/pks-tx-coordinator-replication-targets.yml5
-rw-r--r--changelogs/unreleased/pks-user-create-tag-hooks-on-secondaries.yml5
-rw-r--r--changelogs/unreleased/po-optimize-repack-single-threaded.yml5
-rw-r--r--changelogs/unreleased/ps-track-feature-flags.yml5
-rw-r--r--changelogs/unreleased/sh-clean-lfs-url-build.yml5
-rw-r--r--changelogs/unreleased/sh-restore-gitaly-json-logs.yml5
-rw-r--r--changelogs/unreleased/sh-rugged-v1-0.yml5
-rw-r--r--changelogs/unreleased/smh-default-replication-factor.yml5
-rw-r--r--changelogs/unreleased/smh-intercept-create-repository.yml5
25 files changed, 120 insertions, 39 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c69711522..f58985193 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,44 +1,5 @@
# Gitaly changelog
-## 42.1.1 (2021-02-12)
-
-### Fixed (7 changes)
-
-- operations: Fix hooks running on secondaries when creating annotated tags. !3022
-- transactions: Optionally use timestamps for deterministic results. !3036
-- repository: Fix regressions in FetchRemote. !3043
-- Make gitaly_ruby_json.log work again. !3052
-- coordinator: Fix outdated repos not getting repljobs with transactions. !3055
-- hook: Stop transactions when post-receive and update hooks fail. !3094
-- Fix premature cgroups cleanup. !3098
-
-### Changed (7 changes)
-
-- Port UserUpdateBranch to Go. !3013
-- Remove Ruby code for on-by-default go_user_delete_{branch,tag} feature flags. !3033
-- Enable feature flag go_user_create_{branch,tag} by default. !3035
-- Enable go implementation of UserFFBranch by default. !3057
-- gitaly-lfs-smudge: Clean up URL building. !3058
-- Intercept RepositoryExists calls in Praefect. !3075
-- ruby: Upgrade to Rugged 1.0. !3076
-
-### Performance (3 changes)
-
-- featureflags: Remove GoUserMergeBranch feature flag. !3049
-- featureflag: Remove GoFetchSourceBranch feature flag. !3050
-- Restrict number of threads for a full repack. !3108
-
-### Added (7 changes)
-
-- Track feature flags used for RPC call. !2971
-- operations: Wire up AllowConflicts handling for Go. !2997
-- git: Add support for options which always get injected. !3028
-- repository: Cleanup stale lockfiles when running housekeeping. !3051
-- repository: Use transactions when writing gitattributes. !3064
-- Configurable default replication factor for virtual storages. !3091
-- hook: Use proper error codes when transactions fail. !3097
-
-
## 13.8.4 (2021-02-11)
- No changes.
diff --git a/changelogs/unreleased/avar-go-user-create-branch-and-tag-by-default.yml b/changelogs/unreleased/avar-go-user-create-branch-and-tag-by-default.yml
new file mode 100644
index 000000000..254ef79e7
--- /dev/null
+++ b/changelogs/unreleased/avar-go-user-create-branch-and-tag-by-default.yml
@@ -0,0 +1,5 @@
+---
+title: Enable feature flag go_user_create_{branch,tag} by default
+merge_request: 3035
+author:
+type: changed
diff --git a/changelogs/unreleased/avar-nuke-ruby-user-create-tag-and-branch.yml b/changelogs/unreleased/avar-nuke-ruby-user-create-tag-and-branch.yml
new file mode 100644
index 000000000..5f73b80c1
--- /dev/null
+++ b/changelogs/unreleased/avar-nuke-ruby-user-create-tag-and-branch.yml
@@ -0,0 +1,5 @@
+---
+title: Remove Ruby code for on-by-default go_user_delete_{branch,tag} feature flags
+merge_request: 3033
+author:
+type: changed
diff --git a/changelogs/unreleased/avar-user-update-branch-in-go.yml b/changelogs/unreleased/avar-user-update-branch-in-go.yml
new file mode 100644
index 000000000..c8314970e
--- /dev/null
+++ b/changelogs/unreleased/avar-user-update-branch-in-go.yml
@@ -0,0 +1,5 @@
+---
+title: 'Port UserUpdateBranch to Go'
+merge_request: 3013
+author:
+type: changed
diff --git a/changelogs/unreleased/fix-premature-cgroup-cleanup.yml b/changelogs/unreleased/fix-premature-cgroup-cleanup.yml
new file mode 100644
index 000000000..e81ecf8b6
--- /dev/null
+++ b/changelogs/unreleased/fix-premature-cgroup-cleanup.yml
@@ -0,0 +1,5 @@
+---
+title: Fix premature cgroups cleanup
+merge_request: 3098
+author:
+type: fixed
diff --git a/changelogs/unreleased/go_user_ff_branch_by_default.yml b/changelogs/unreleased/go_user_ff_branch_by_default.yml
new file mode 100644
index 000000000..551304639
--- /dev/null
+++ b/changelogs/unreleased/go_user_ff_branch_by_default.yml
@@ -0,0 +1,5 @@
+---
+title: Enable go implementation of UserFFBranch by default
+merge_request: 3057
+author:
+type: changed
diff --git a/changelogs/unreleased/pks-cleanup-housekeeping-merge.yml b/changelogs/unreleased/pks-cleanup-housekeeping-merge.yml
new file mode 100644
index 000000000..745599f0f
--- /dev/null
+++ b/changelogs/unreleased/pks-cleanup-housekeeping-merge.yml
@@ -0,0 +1,5 @@
+---
+title: 'repository: Cleanup stale lockfiles when running housekeeping'
+merge_request: 3051
+author:
+type: added
diff --git a/changelogs/unreleased/pks-deterministic-rpcs.yml b/changelogs/unreleased/pks-deterministic-rpcs.yml
new file mode 100644
index 000000000..7a1a6a527
--- /dev/null
+++ b/changelogs/unreleased/pks-deterministic-rpcs.yml
@@ -0,0 +1,5 @@
+---
+title: 'transactions: Optionally use timestamps for deterministic results'
+merge_request: 3036
+author:
+type: fixed
diff --git a/changelogs/unreleased/pks-fetch-remote-fix-pruning.yml b/changelogs/unreleased/pks-fetch-remote-fix-pruning.yml
new file mode 100644
index 000000000..19d1411ee
--- /dev/null
+++ b/changelogs/unreleased/pks-fetch-remote-fix-pruning.yml
@@ -0,0 +1,5 @@
+---
+title: 'repository: Fix regressions in FetchRemote'
+merge_request: 3043
+author:
+type: fixed
diff --git a/changelogs/unreleased/pks-git-inject-global-config.yml b/changelogs/unreleased/pks-git-inject-global-config.yml
new file mode 100644
index 000000000..3d9d30228
--- /dev/null
+++ b/changelogs/unreleased/pks-git-inject-global-config.yml
@@ -0,0 +1,5 @@
+---
+title: 'git: Add support for options which always get injected'
+merge_request: 3028
+author:
+type: added
diff --git a/changelogs/unreleased/pks-go-fetch-source-branch-remove-ff.yml b/changelogs/unreleased/pks-go-fetch-source-branch-remove-ff.yml
new file mode 100644
index 000000000..bf4d64441
--- /dev/null
+++ b/changelogs/unreleased/pks-go-fetch-source-branch-remove-ff.yml
@@ -0,0 +1,5 @@
+---
+title: 'featureflag: Remove GoFetchSourceBranch feature flag'
+merge_request: 3050
+author:
+type: performance
diff --git a/changelogs/unreleased/pks-go-user-merge-branch-remove-ff.yml b/changelogs/unreleased/pks-go-user-merge-branch-remove-ff.yml
new file mode 100644
index 000000000..a09f069d5
--- /dev/null
+++ b/changelogs/unreleased/pks-go-user-merge-branch-remove-ff.yml
@@ -0,0 +1,5 @@
+---
+title: 'featureflags: Remove GoUserMergeBranch feature flag'
+merge_request: 3049
+author:
+type: performance
diff --git a/changelogs/unreleased/pks-go-user-merge-to-ref-allow-conflicts.yml b/changelogs/unreleased/pks-go-user-merge-to-ref-allow-conflicts.yml
new file mode 100644
index 000000000..08033751f
--- /dev/null
+++ b/changelogs/unreleased/pks-go-user-merge-to-ref-allow-conflicts.yml
@@ -0,0 +1,5 @@
+---
+title: 'operations: Wire up AllowConflicts handling for Go'
+merge_request: 2997
+author:
+type: added
diff --git a/changelogs/unreleased/pks-hook-reftx-error-code.yml b/changelogs/unreleased/pks-hook-reftx-error-code.yml
new file mode 100644
index 000000000..d20df52c3
--- /dev/null
+++ b/changelogs/unreleased/pks-hook-reftx-error-code.yml
@@ -0,0 +1,5 @@
+---
+title: 'hook: Use proper error codes when transactions fail'
+merge_request: 3097
+author:
+type: added
diff --git a/changelogs/unreleased/pks-hooks-stop-transactions.yml b/changelogs/unreleased/pks-hooks-stop-transactions.yml
new file mode 100644
index 000000000..6cbf5acd6
--- /dev/null
+++ b/changelogs/unreleased/pks-hooks-stop-transactions.yml
@@ -0,0 +1,5 @@
+---
+title: 'hook: Stop transactions when post-receive and update hooks fail'
+merge_request: 3094
+author:
+type: fixed
diff --git a/changelogs/unreleased/pks-tx-apply-gitattributes.yml b/changelogs/unreleased/pks-tx-apply-gitattributes.yml
new file mode 100644
index 000000000..22b4dfe34
--- /dev/null
+++ b/changelogs/unreleased/pks-tx-apply-gitattributes.yml
@@ -0,0 +1,5 @@
+---
+title: 'repository: Use transactions when writing gitattributes'
+merge_request: 3064
+author:
+type: added
diff --git a/changelogs/unreleased/pks-tx-coordinator-replication-targets.yml b/changelogs/unreleased/pks-tx-coordinator-replication-targets.yml
new file mode 100644
index 000000000..b8cf8fce6
--- /dev/null
+++ b/changelogs/unreleased/pks-tx-coordinator-replication-targets.yml
@@ -0,0 +1,5 @@
+---
+title: 'coordinator: Fix outdated repos not getting repljobs with transactions'
+merge_request: 3055
+author:
+type: fixed
diff --git a/changelogs/unreleased/pks-user-create-tag-hooks-on-secondaries.yml b/changelogs/unreleased/pks-user-create-tag-hooks-on-secondaries.yml
new file mode 100644
index 000000000..162d37a82
--- /dev/null
+++ b/changelogs/unreleased/pks-user-create-tag-hooks-on-secondaries.yml
@@ -0,0 +1,5 @@
+---
+title: 'operations: Fix hooks running on secondaries when creating annotated tags'
+merge_request: 3022
+author:
+type: fixed
diff --git a/changelogs/unreleased/po-optimize-repack-single-threaded.yml b/changelogs/unreleased/po-optimize-repack-single-threaded.yml
new file mode 100644
index 000000000..020534daf
--- /dev/null
+++ b/changelogs/unreleased/po-optimize-repack-single-threaded.yml
@@ -0,0 +1,5 @@
+---
+title: Restrict number of threads for a full repack
+merge_request: 3108
+author:
+type: performance
diff --git a/changelogs/unreleased/ps-track-feature-flags.yml b/changelogs/unreleased/ps-track-feature-flags.yml
new file mode 100644
index 000000000..3366d6f16
--- /dev/null
+++ b/changelogs/unreleased/ps-track-feature-flags.yml
@@ -0,0 +1,5 @@
+---
+title: Track feature flags used for RPC call
+merge_request: 2971
+author:
+type: added
diff --git a/changelogs/unreleased/sh-clean-lfs-url-build.yml b/changelogs/unreleased/sh-clean-lfs-url-build.yml
new file mode 100644
index 000000000..8f4ac1854
--- /dev/null
+++ b/changelogs/unreleased/sh-clean-lfs-url-build.yml
@@ -0,0 +1,5 @@
+---
+title: 'gitaly-lfs-smudge: Clean up URL building'
+merge_request: 3058
+author:
+type: changed
diff --git a/changelogs/unreleased/sh-restore-gitaly-json-logs.yml b/changelogs/unreleased/sh-restore-gitaly-json-logs.yml
new file mode 100644
index 000000000..2e8e958cc
--- /dev/null
+++ b/changelogs/unreleased/sh-restore-gitaly-json-logs.yml
@@ -0,0 +1,5 @@
+---
+title: Make gitaly_ruby_json.log work again
+merge_request: 3052
+author:
+type: fixed
diff --git a/changelogs/unreleased/sh-rugged-v1-0.yml b/changelogs/unreleased/sh-rugged-v1-0.yml
new file mode 100644
index 000000000..335daf1cc
--- /dev/null
+++ b/changelogs/unreleased/sh-rugged-v1-0.yml
@@ -0,0 +1,5 @@
+---
+title: 'ruby: Upgrade to Rugged 1.0'
+merge_request: 3076
+author:
+type: changed
diff --git a/changelogs/unreleased/smh-default-replication-factor.yml b/changelogs/unreleased/smh-default-replication-factor.yml
new file mode 100644
index 000000000..c45447e6c
--- /dev/null
+++ b/changelogs/unreleased/smh-default-replication-factor.yml
@@ -0,0 +1,5 @@
+---
+title: Configurable default replication factor for virtual storages
+merge_request: 3091
+author:
+type: added
diff --git a/changelogs/unreleased/smh-intercept-create-repository.yml b/changelogs/unreleased/smh-intercept-create-repository.yml
new file mode 100644
index 000000000..81db72ac7
--- /dev/null
+++ b/changelogs/unreleased/smh-intercept-create-repository.yml
@@ -0,0 +1,5 @@
+---
+title: Intercept RepositoryExists calls in Praefect
+merge_request: 3075
+author:
+type: changed