Skip to content

Commit 1ad0bea

Browse files
committed
merge in main and resolve conflict
Signed-off-by: jarebudev <[email protected]>
2 parents 21c7f11 + d08f41d commit 1ad0bea

23 files changed

+307
-222
lines changed

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fetch-depth: 0
2525
submodules: recursive
2626

27-
- uses: bufbuild/buf-setup-action@v1.35.0
27+
- uses: bufbuild/buf-setup-action@v1.45.0
2828
with:
2929
github_token: ${{ github.token }}
3030
- name: Setup Node

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
"libs/providers/flagd": "0.13.1",
55
"libs/providers/flagd-web": "0.7.2",
66
"libs/providers/env-var": "0.3.1",
7-
"libs/providers/config-cat": "0.7.1",
7+
"libs/providers/config-cat": "0.7.2",
88
"libs/providers/launchdarkly-client": "0.3.0",
99
"libs/providers/go-feature-flag-web": "0.2.1",
1010
"libs/shared/flagd-core": "0.2.5",
1111
"libs/shared/ofrep-core": "0.2.0",
1212
"libs/providers/ofrep": "0.2.0",
1313
"libs/providers/ofrep-web": "0.3.1",
14-
"libs/providers/flipt": "0.1.1",
14+
"libs/providers/flipt": "0.1.2",
1515
"libs/providers/flagsmith-client": "0.1.2",
1616
"libs/providers/flipt-web": "0.1.0",
1717
"libs/providers/multi-provider": "0.1.1",
1818
"libs/providers/multi-provider-web": "0.0.2",
19-
"libs/providers/growthbook-client": "0.1.1",
20-
"libs/providers/config-cat-web": "0.1.2",
19+
"libs/providers/growthbook-client": "0.1.2",
20+
"libs/providers/config-cat-web": "0.1.3",
2121
"libs/shared/config-cat-core": "0.1.0",
2222
"libs/providers/unleash-web": "0.1.0"
2323
}

libs/providers/config-cat-web/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.1.3](https://github.com/open-feature/js-sdk-contrib/compare/config-cat-web-provider-v0.1.2...config-cat-web-provider-v0.1.3) (2024-09-20)
4+
5+
6+
### 🐛 Bug Fixes
7+
8+
* **config-cat-web:** Fix code examples in README.md ([#1050](https://github.com/open-feature/js-sdk-contrib/issues/1050)) ([0b6179b](https://github.com/open-feature/js-sdk-contrib/commit/0b6179b9cb16cce592be6c2fbe86dbacce5adc1f))
9+
* **config-cat:** Revise readme ([#1054](https://github.com/open-feature/js-sdk-contrib/issues/1054)) ([7e1dd72](https://github.com/open-feature/js-sdk-contrib/commit/7e1dd72a1450a9982b340afda62d34379d1b3f16))
10+
311
## [0.1.2](https://github.com/open-feature/js-sdk-contrib/compare/config-cat-web-provider-v0.1.1...config-cat-web-provider-v0.1.2) (2024-08-22)
412

513

libs/providers/config-cat-web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/providers/config-cat-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openfeature/config-cat-web-provider",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"scripts": {
55
"publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi",
66
"current-version": "echo $npm_package_version"

libs/providers/config-cat/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.7.2](https://github.com/open-feature/js-sdk-contrib/compare/config-cat-provider-v0.7.1...config-cat-provider-v0.7.2) (2024-09-20)
4+
5+
6+
### 🐛 Bug Fixes
7+
8+
* **config-cat:** Revise readme ([#1054](https://github.com/open-feature/js-sdk-contrib/issues/1054)) ([7e1dd72](https://github.com/open-feature/js-sdk-contrib/commit/7e1dd72a1450a9982b340afda62d34379d1b3f16))
9+
310
## [0.7.1](https://github.com/open-feature/js-sdk-contrib/compare/config-cat-provider-v0.7.0...config-cat-provider-v0.7.1) (2024-07-23)
411

512

libs/providers/config-cat/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/providers/config-cat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openfeature/config-cat-provider",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"scripts": {
55
"publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi",
66
"current-version": "echo $npm_package_version"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
services:
22
flagd:
3-
image: ghcr.io/open-feature/flagd-testbed:v0.5.6
3+
image: ghcr.io/open-feature/flagd-testbed:v0.5.13
44
ports:
55
- 8013:8013
66
flagd-unstable:
7-
image: ghcr.io/open-feature/flagd-testbed-unstable:v0.5.6
7+
image: ghcr.io/open-feature/flagd-testbed-unstable:v0.5.13
88
ports:
99
- 8014:8013
1010
flagd-sync:
11-
image: ghcr.io/open-feature/sync-testbed:v0.5.6
11+
image: ghcr.io/open-feature/sync-testbed:v0.5.13
1212
ports:
1313
- 9090:9090
1414
flagd-sync-unstable:
15-
image: ghcr.io/open-feature/sync-testbed-unstable:v0.5.6
15+
image: ghcr.io/open-feature/sync-testbed-unstable:v0.5.13
1616
ports:
1717
- 9091:9090

libs/providers/flagd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"current-version": "echo $npm_package_version"
77
},
88
"peerDependencies": {
9-
"@grpc/grpc-js": "~1.8.0 || ~1.9.0 || ~1.10.0 || ~1.11.0",
9+
"@grpc/grpc-js": "~1.8.0 || ~1.9.0 || ~1.10.0 || ~1.11.0 || ~1.12.0",
1010
"@openfeature/server-sdk": "^1.13.0"
1111
}
1212
}

0 commit comments

Comments
 (0)