Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7755412

Browse files
authored
fix: update environment current urls (#460)
1 parent c84de68 commit 7755412

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

packages/browser-sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Bucket supports feature toggling, tracking feature usage, [collecting feedback](
66

77
## Install
88

9-
First find your `publishableKey` under [environment settings](https://app.bucket.co/envs/current/settings/app-environments) in Bucket.
9+
First find your `publishableKey` under [environment settings](https://app.bucket.co/env-current/settings/app-environments) in Bucket.
1010

1111
The package can be imported or used directly in a HTML script tag:
1212

packages/browser-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bucketco/browser-sdk",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"packageManager": "[email protected]",
55
"license": "MIT",
66
"repository": {

packages/browser-sdk/src/toolbar/Features.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function FeatureRow({
111111
<Feature class="feature-icon" />
112112
<a
113113
class="feature-link"
114-
href={`${appBaseUrl}/envs/current/features/by-key/${feature.key}`}
114+
href={`${appBaseUrl}/env-current/features/by-key/${feature.key}`}
115115
rel="noreferrer"
116116
tabIndex={index + 1}
117117
target="_blank"

packages/node-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ You can also [use the HTTP API directly](https://docs.bucket.co/api/http-api)
5656

5757
## Basic usage
5858

59-
To get started you need to obtain your secret key from the [environment settings](https://app.bucket.co/envs/current/settings/app-environments)
59+
To get started you need to obtain your secret key from the [environment settings](https://app.bucket.co/env-current/settings/app-environments)
6060
in Bucket.
6161

6262
> [!CAUTION]
@@ -65,7 +65,7 @@ in Bucket.
6565
6666
Bucket will load settings through the various environment variables automatically (see [Configuring](#configuring) below).
6767

68-
1. Find the Bucket secret key for your development environment under [environment settings](https://app.bucket.co/envs/current/settings/app-environments) in Bucket.
68+
1. Find the Bucket secret key for your development environment under [environment settings](https://app.bucket.co/env-current/settings/app-environments) in Bucket.
6969
2. Set `BUCKET_SECRET_KEY` in your `.env` file
7070
3. Create a `bucket.ts` file containing the following:
7171

packages/openfeature-browser-provider/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bucketco/openfeature-browser-provider",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"packageManager": "[email protected]",
55
"license": "MIT",
66
"repository": {
@@ -35,7 +35,7 @@
3535
}
3636
},
3737
"dependencies": {
38-
"@bucketco/browser-sdk": "3.3.3"
38+
"@bucketco/browser-sdk": "3.3.4"
3939
},
4040
"devDependencies": {
4141
"@bucketco/eslint-config": "0.0.2",

packages/react-sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ generates a `check` event.
171171

172172
The `<BucketProvider>` initializes the Bucket SDK, fetches features and starts listening for automated feedback survey events. The component can be configured using a number of props:
173173

174-
- `publishableKey` is used to connect the provider to an _environment_ on Bucket. Find your `publishableKey` under [environment settings](https://app.bucket.co/envs/current/settings/app-environments) in Bucket,
174+
- `publishableKey` is used to connect the provider to an _environment_ on Bucket. Find your `publishableKey` under [environment settings](https://app.bucket.co/env-current/settings/app-environments) in Bucket,
175175
- `company`, `user` and `otherContext` make up the _context_ that is used to determine if a feature is enabled or not. `company` and `user` contexts are automatically transmitted to Bucket servers so the Bucket app can show you which companies have access to which features etc.
176176
> [!Note]
177177
> If you specify `company` and/or `user` they must have at least the `id` property, otherwise they will be ignored in their entirety. You should also supply anything additional you want to be able to evaluate feature targeting against,

packages/react-sdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bucketco/react-sdk",
3-
"version": "3.3.2",
3+
"version": "3.3.3",
44
"license": "MIT",
55
"repository": {
66
"type": "git",
@@ -34,7 +34,7 @@
3434
}
3535
},
3636
"dependencies": {
37-
"@bucketco/browser-sdk": "3.3.3",
37+
"@bucketco/browser-sdk": "3.3.4",
3838
"canonical-json": "^0.0.4",
3939
"rollup": "^4.2.0"
4040
},

packages/vue-sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ generates a `check` event.
112112

113113
The `<BucketProvider>` initializes the Bucket SDK, fetches features and starts listening for automated feedback survey events. The component can be configured using a number of props:
114114

115-
- `publishableKey` is used to connect the provider to an _environment_ on Bucket. Find your `publishableKey` under [environment settings](https://app.bucket.co/envs/current/settings/app-environments) in Bucket,
115+
- `publishableKey` is used to connect the provider to an _environment_ on Bucket. Find your `publishableKey` under [environment settings](https://app.bucket.co/env-current/settings/app-environments) in Bucket,
116116
- `company`, `user` and `otherContext` make up the _context_ that is used to determine if a feature is enabled or not. `company` and `user` contexts are automatically transmitted to Bucket servers so the Bucket app can show you which companies have access to which features etc.
117117

118118
> [!Note]

packages/vue-sdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bucketco/vue-sdk",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"license": "MIT",
55
"repository": {
66
"type": "git",
@@ -34,7 +34,7 @@
3434
}
3535
},
3636
"dependencies": {
37-
"@bucketco/browser-sdk": "3.3.3",
37+
"@bucketco/browser-sdk": "3.3.4",
3838
"canonical-json": "^0.2.0"
3939
},
4040
"peerDependencies": {

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ __metadata:
671671
languageName: node
672672
linkType: hard
673673

674-
"@bucketco/browser-sdk@npm:3.3.3, @bucketco/browser-sdk@workspace:packages/browser-sdk":
674+
"@bucketco/browser-sdk@npm:3.3.4, @bucketco/browser-sdk@workspace:packages/browser-sdk":
675675
version: 0.0.0-use.local
676676
resolution: "@bucketco/browser-sdk@workspace:packages/browser-sdk"
677677
dependencies:
@@ -800,7 +800,7 @@ __metadata:
800800
version: 0.0.0-use.local
801801
resolution: "@bucketco/openfeature-browser-provider@workspace:packages/openfeature-browser-provider"
802802
dependencies:
803-
"@bucketco/browser-sdk": "npm:3.3.3"
803+
"@bucketco/browser-sdk": "npm:3.3.4"
804804
"@bucketco/eslint-config": "npm:0.0.2"
805805
"@bucketco/tsconfig": "npm:0.0.2"
806806
"@openfeature/core": "npm:1.5.0"
@@ -846,7 +846,7 @@ __metadata:
846846
version: 0.0.0-use.local
847847
resolution: "@bucketco/react-sdk@workspace:packages/react-sdk"
848848
dependencies:
849-
"@bucketco/browser-sdk": "npm:3.3.3"
849+
"@bucketco/browser-sdk": "npm:3.3.4"
850850
"@bucketco/eslint-config": "workspace:^"
851851
"@bucketco/tsconfig": "workspace:^"
852852
"@testing-library/react": "npm:^15.0.7"
@@ -887,7 +887,7 @@ __metadata:
887887
version: 0.0.0-use.local
888888
resolution: "@bucketco/vue-sdk@workspace:packages/vue-sdk"
889889
dependencies:
890-
"@bucketco/browser-sdk": "npm:3.3.3"
890+
"@bucketco/browser-sdk": "npm:3.3.4"
891891
"@bucketco/eslint-config": "workspace:^"
892892
"@bucketco/tsconfig": "workspace:^"
893893
"@types/jsdom": "npm:^21.1.6"

0 commit comments

Comments
 (0)