Skip to content

Commit 31ba7df

Browse files
committed
branch 4.1.0 and start 4.2.0
1 parent 5503c1e commit 31ba7df

10 files changed

Lines changed: 48 additions & 9 deletions

File tree

base/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const (
2020
ProductName = "Couchbase Sync Gateway"
2121

2222
ProductAPIVersionMajor = "4"
23-
ProductAPIVersionMinor = "1"
23+
ProductAPIVersionMinor = "2"
2424
ProductAPIVersion = ProductAPIVersionMajor + "." + ProductAPIVersionMinor
2525
)
2626

docs/api/admin-capella.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ openapi: 3.0.3
1010
info:
1111
title: App Services Admin API
1212
description: 'App Services manages access and synchronization between Couchbase Lite and Couchbase Capella'
13-
version: '4.1'
13+
version: '4.2'
1414
license:
1515
name: Business Source License 1.1 (BSL)
1616
url: 'https://github.com/couchbase/sync_gateway/blob/master/LICENSE'

docs/api/admin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ info:
1313
# Introduction
1414
1515
The Sync Gateway Admin REST API is used to administer user accounts and roles, and to run administrative tasks in superuser mode.
16-
version: '4.1'
16+
version: '4.2'
1717
license:
1818
name: Business Source License 1.1 (BSL)
1919
url: 'https://github.com/couchbase/sync_gateway/blob/master/LICENSE'

docs/api/diagnostic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ openapi: 3.0.3
1010
info:
1111
title: Sync Gateway
1212
description: Sync Gateway manages access and synchronization between Couchbase Lite and Couchbase Server
13-
version: '4.1'
13+
version: '4.2'
1414
license:
1515
name: Business Source License 1.1 (BSL)
1616
url: 'https://github.com/couchbase/sync_gateway/blob/master/LICENSE'

docs/api/metric-capella.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ openapi: 3.0.3
1010
info:
1111
title: App Services Metrics API
1212
description: 'App Services manages access and synchronization between Couchbase Lite and Couchbase Capella'
13-
version: '4.1'
13+
version: '4.2'
1414
license:
1515
name: Business Source License 1.1 (BSL)
1616
url: 'https://github.com/couchbase/sync_gateway/blob/master/LICENSE'

docs/api/metric.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ info:
1414
1515
Sync Gateway manages access and synchronization between Couchbase Lite and Couchbase Server.
1616
The Sync Gateway Metrics REST API returns Sync Gateway metrics, in JSON or Prometheus-compatible formats, for performance monitoring and diagnostic purposes.
17-
version: '4.1'
17+
version: '4.2'
1818
license:
1919
name: Business Source License 1.1 (BSL)
2020
url: 'https://github.com/couchbase/sync_gateway/blob/master/LICENSE'

docs/api/public.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ info:
1414
1515
Sync Gateway manages access and synchronization between Couchbase Lite and Couchbase Server.
1616
The Sync Gateway Public REST API is used for client replication.
17-
version: '4.1'
17+
version: '4.2'
1818
license:
1919
name: Business Source License 1.1 (BSL)
2020
url: 'https://github.com/couchbase/sync_gateway/blob/master/LICENSE'

manifest/4.1.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<!--
4+
Copyright 2016-Present Couchbase, Inc.
5+
6+
Use of this software is governed by the Business Source License included in
7+
the file licenses/BSL-Couchbase.txt. As of the Change Date specified in that
8+
file, in accordance with the Business Source License, use of this software will
9+
be governed by the Apache License, Version 2.0, included in the file
10+
licenses/APL2.txt.
11+
-->
12+
13+
<manifest>
14+
15+
<remote fetch="https://github.com/couchbase/" name="couchbase"/>
16+
<default remote="couchbase" revision="master"/>
17+
18+
<!-- Build Scripts (required on CI servers) -->
19+
<project name="product-texts" path="product-texts" remote="couchbase"/>
20+
<project name="build" path="cbbuild" remote="couchbase" revision="0ae8f452cece1e1f48f99e370a103b55bfea2dbe">
21+
<annotation name="VERSION" value="4.1.0" keep="true"/>
22+
<annotation name="BLD_NUM" value="@BLD_NUM@" keep="true"/>
23+
<annotation name="RELEASE" value="@RELEASE@" keep="true"/>
24+
</project>
25+
26+
27+
<!-- Sync Gateway -->
28+
<project name="sync_gateway" path="sync_gateway" remote="couchbase" revision="release/4.1.0"/>
29+
30+
</manifest>

manifest/default.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ licenses/APL2.txt.
1818
<!-- Build Scripts (required on CI servers) -->
1919
<project name="product-texts" path="product-texts" remote="couchbase"/>
2020
<project name="build" path="cbbuild" remote="couchbase" revision="0ae8f452cece1e1f48f99e370a103b55bfea2dbe">
21-
<annotation name="VERSION" value="4.1.0" keep="true"/>
21+
<annotation name="VERSION" value="4.2.0" keep="true"/>
2222
<annotation name="BLD_NUM" value="@BLD_NUM@" keep="true"/>
2323
<annotation name="RELEASE" value="@RELEASE@" keep="true"/>
2424
</project>

manifest/product-config.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,12 +936,21 @@
936936
"start_build": 10,
937937
"trigger_blackduck": true
938938
},
939+
"manifest/4.1.xml": {
940+
"go_version": "1.26.4",
941+
"interval": 120,
942+
"production": true,
943+
"release": "4.1.0",
944+
"release_name": "Couchbase Sync Gateway 4.1.0",
945+
"start_build": 326,
946+
"trigger_blackduck": true
947+
},
939948

940949
"manifest/default.xml": {
941950
"go_version": "1.26.4",
942951
"interval": 30,
943952
"production": true,
944-
"release": "4.1.0",
953+
"release": "4.2.0",
945954
"release_name": "Couchbase Sync Gateway",
946955
"start_build": 1,
947956
"trigger_blackduck": true

0 commit comments

Comments
 (0)