summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Vatamaniuc <vatamane@gmail.com>2023-05-10 13:36:00 -0400
committerNick Vatamaniuc <nickva@users.noreply.github.com>2023-05-10 14:42:12 -0400
commita9d8cda2b78e8bd6bfdce0638bab2fc1c3d6d933 (patch)
treef963a833bc0762c36ba37a82271d42dd43f6ccac
parentf5935c65d1b961aef7351367b59d0fcd961fe497 (diff)
downloadcouchdb-a9d8cda2b78e8bd6bfdce0638bab2fc1c3d6d933.tar.gz
Merge changes from 3.3.x into main
We've been cherry picking from main into 3.3.x and 3.2.x but there were some changes we've been making on those branches only so we're bringing them into main.
-rw-r--r--.asf.yaml6
-rwxr-xr-xdev/run1
-rw-r--r--rel/reltool.config2
-rw-r--r--src/docs/src/whatsnew/3.3.rst1
-rw-r--r--version.mk2
5 files changed, 9 insertions, 3 deletions
diff --git a/.asf.yaml b/.asf.yaml
index 2e7f1c7ff..5ecb8c5fe 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -32,6 +32,12 @@ github:
strict: true
contexts:
- continuous-integration/jenkins/pr-merge
+ 3.3.x:
+ required_status_checks:
+ strict: true
+ 3.2.x:
+ required_status_checks:
+ strict: true
3.1.x:
required_status_checks:
strict: true
diff --git a/dev/run b/dev/run
index fc1022ccc..8ac76b7b2 100755
--- a/dev/run
+++ b/dev/run
@@ -475,7 +475,6 @@ def boot_nouveau(ctx):
"server",
"nouveau.yaml",
]
-
logfname = os.path.join(ctx["devdir"], "logs", "nouveau.log")
log = open(logfname, "w")
return sp.Popen(
diff --git a/rel/reltool.config b/rel/reltool.config
index 4ff4c2c14..41d45ef41 100644
--- a/rel/reltool.config
+++ b/rel/reltool.config
@@ -12,7 +12,7 @@
{sys, [
{lib_dirs, ["../src"]},
- {rel, "couchdb", "3.3.1", [
+ {rel, "couchdb", "3.3.2", [
%% stdlib
asn1,
compiler,
diff --git a/src/docs/src/whatsnew/3.3.rst b/src/docs/src/whatsnew/3.3.rst
index d67a2e29c..c84c49daa 100644
--- a/src/docs/src/whatsnew/3.3.rst
+++ b/src/docs/src/whatsnew/3.3.rst
@@ -83,6 +83,7 @@ Features and Enhancements
* :ghissue:`4347`: Remove failed ``couch_plugins`` experiment, fixes more
``undef`` errors.
* :ghissue:`4348`: Fix ``undef`` error in ``weatherreport``.
+* :ghissue:`4353`: Allow starting of more than one replication job. (D’OH!)
.. _release/3.3.0:
diff --git a/version.mk b/version.mk
index 86d2de608..c1c1f218d 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
vsn_major=3
vsn_minor=3
-vsn_patch=1
+vsn_patch=2