Skip to content

Commit d3f776c

Browse files
chore: release main (#300)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ryan Lamb <[email protected]>
1 parent c66aa6e commit d3f776c

File tree

23 files changed

+224
-34
lines changed

23 files changed

+224
-34
lines changed

.release-please-manifest.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"packages/shared/common": "1.1.0",
3-
"packages/shared/sdk-server": "1.2.3",
4-
"packages/sdk/server-node": "8.2.4",
5-
"packages/sdk/cloudflare": "2.2.0",
6-
"packages/shared/sdk-server-edge": "1.0.13",
7-
"packages/sdk/vercel": "1.1.4",
8-
"packages/sdk/akamai-base": "1.0.7",
9-
"packages/sdk/akamai-edgekv": "1.0.7",
10-
"packages/shared/akamai-edgeworker-sdk": "0.3.4",
11-
"packages/store/node-server-sdk-dynamodb": "5.0.11",
12-
"packages/store/node-server-sdk-redis": "3.0.11"
2+
"packages/shared/common": "2.0.0",
3+
"packages/shared/sdk-server": "2.0.0",
4+
"packages/sdk/server-node": "9.0.0",
5+
"packages/sdk/cloudflare": "2.2.1",
6+
"packages/shared/sdk-server-edge": "2.0.0",
7+
"packages/sdk/vercel": "1.1.5",
8+
"packages/sdk/akamai-base": "2.0.0",
9+
"packages/sdk/akamai-edgekv": "1.0.8",
10+
"packages/shared/akamai-edgeworker-sdk": "1.0.0",
11+
"packages/store/node-server-sdk-dynamodb": "6.0.0",
12+
"packages/store/node-server-sdk-redis": "4.0.0"
1313
}

packages/sdk/akamai-base/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
All notable changes to the LaunchDarkly SDK for Akamai Workers will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org).
44

5+
## [2.0.0](https://github.com/launchdarkly/js-core/compare/akamai-server-base-sdk-v1.0.7...akamai-server-base-sdk-v2.0.0) (2023-10-16)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* Implement Migrations. Refactor for client SDKs. ([#293](https://github.com/launchdarkly/js-core/issues/293))
11+
12+
### Features
13+
14+
* Implement Migrations. Refactor for client SDKs. ([#293](https://github.com/launchdarkly/js-core/issues/293)) ([c66aa6e](https://github.com/launchdarkly/js-core/commit/c66aa6ea0d12e1e4e565cb8378d367c31fab9c1b))
15+
* A new `Migration` type which provides an out-of-the-box configurable migration framework.
16+
* For more advanced use cases, added new `migrationVariation` and `trackMigration` methods on LdClient.
17+
* Added typed variation method `boolVariation`, `stringVariation`, `boolVariation`, `numVariation`, and `jsonVariation` for type-safe usage in TypeScript.
18+
19+
20+
21+
### Dependencies
22+
23+
* The following workspace dependencies were updated
24+
* dependencies
25+
* @launchdarkly/akamai-edgeworker-sdk-common bumped from ^0.3.4 to ^1.0.0
26+
* @launchdarkly/js-server-sdk-common bumped from ^1.2.3 to ^2.0.0
27+
528
## [1.0.7](https://github.com/launchdarkly/js-core/compare/akamai-server-base-sdk-v1.0.6...akamai-server-base-sdk-v1.0.7) (2023-09-06)
629

730
### Bug Fixes

packages/sdk/akamai-base/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/akamai-server-base-sdk",
3-
"version": "1.0.7",
3+
"version": "2.0.0",
44
"description": "Akamai LaunchDarkly EdgeWorker SDK",
55
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/akamai-base",
66
"repository": {
@@ -72,7 +72,7 @@
7272
"typescript": "5.1.6"
7373
},
7474
"dependencies": {
75-
"@launchdarkly/akamai-edgeworker-sdk-common": "^0.3.4",
76-
"@launchdarkly/js-server-sdk-common": "^1.2.3"
75+
"@launchdarkly/akamai-edgeworker-sdk-common": "^1.0.0",
76+
"@launchdarkly/js-server-sdk-common": "^2.0.0"
7777
}
7878
}

packages/sdk/akamai-edgekv/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to the LaunchDarkly SDK for Akamai Workers will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org).
44

5+
## [1.0.8](https://github.com/launchdarkly/js-core/compare/akamai-server-edgekv-sdk-v1.0.7...akamai-server-edgekv-sdk-v1.0.8) (2023-10-16)
6+
7+
### Features:
8+
- A new `Migration` type which provides an out-of-the-box configurable migration framework.
9+
- For more advanced use cases, added new `migrationVariation` and `trackMigration` methods on LdClient.
10+
- Added typed variation method `boolVariation`, `stringVariation`, `boolVariation`, `numVariation`, and `jsonVariation` for type-safe usage in TypeScript.
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* @launchdarkly/akamai-edgeworker-sdk-common bumped from ^0.3.4 to ^1.0.0
17+
* @launchdarkly/js-server-sdk-common bumped from ^1.2.3 to ^2.0.0
18+
519
## [1.0.7](https://github.com/launchdarkly/js-core/compare/akamai-server-edgekv-sdk-v1.0.6...akamai-server-edgekv-sdk-v1.0.7) (2023-08-14)
620

721
### Bug Fixes

packages/sdk/akamai-edgekv/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/akamai-server-edgekv-sdk",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "Akamai LaunchDarkly EdgeWorker SDK for EdgeKV feature store",
55
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/akamai-edgekv",
66
"repository": {
@@ -72,7 +72,7 @@
7272
"typescript": "5.1.6"
7373
},
7474
"dependencies": {
75-
"@launchdarkly/akamai-edgeworker-sdk-common": "^0.3.4",
76-
"@launchdarkly/js-server-sdk-common": "^1.2.3"
75+
"@launchdarkly/akamai-edgeworker-sdk-common": "^1.0.0",
76+
"@launchdarkly/js-server-sdk-common": "^2.0.0"
7777
}
7878
}

packages/sdk/cloudflare/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to the LaunchDarkly SDK for Cloudflare Workers will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org).
44

5+
## [2.2.1](https://github.com/launchdarkly/js-core/compare/cloudflare-server-sdk-v2.2.0...cloudflare-server-sdk-v2.2.1) (2023-10-16)
6+
7+
### Features:
8+
- A new `Migration` type which provides an out-of-the-box configurable migration framework.
9+
- For more advanced use cases, added new `migrationVariation` and `trackMigration` methods on LdClient.
10+
- Added typed variation method `boolVariation`, `stringVariation`, `boolVariation`, `numVariation`, and `jsonVariation` for type-safe usage in TypeScript.
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* devDependencies
16+
* @launchdarkly/js-server-sdk-common-edge bumped from 1.0.13 to 2.0.0
17+
518
## [2.2.0](https://github.com/launchdarkly/js-core/compare/cloudflare-server-sdk-v2.1.4...cloudflare-server-sdk-v2.2.0) (2023-09-21)
619

720

packages/sdk/cloudflare/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/cloudflare-server-sdk",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "Cloudflare LaunchDarkly SDK",
55
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/cloudflare",
66
"repository": {
@@ -44,7 +44,7 @@
4444
"crypto-js": "^4.1.1"
4545
},
4646
"devDependencies": {
47-
"@launchdarkly/js-server-sdk-common-edge": "1.0.13",
47+
"@launchdarkly/js-server-sdk-common-edge": "2.0.0",
4848
"@rollup/plugin-commonjs": "^25.0.4",
4949
"@rollup/plugin-json": "^6.0.0",
5050
"@rollup/plugin-node-resolve": "^15.2.1",

packages/sdk/server-node/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
All notable changes to `@launchdarkly/node-server-sdk` will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [9.0.0](https://github.com/launchdarkly/js-core/compare/node-server-sdk-v8.2.4...node-server-sdk-v9.0.0) (2023-10-16)
6+
7+
The latest version of this SDK supports the ability to manage migrations or modernizations, using migration flags. You might use this functionality if you are optimizing queries, upgrading to new tech stacks, migrating from one database to another, or other similar technology changes. Migration flags are part of LaunchDarkly's Early Access Program. This feature is available to all LaunchDarkly customers but may undergo additional changes before it is finalized.
8+
9+
For detailed information about this version, refer to the list below. For information on how to upgrade from the previous version, read the [migration guide](https://docs.launchdarkly.com/sdk/server-side/node/migration-8-to-9).
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* Implement Migrations. Refactor for client SDKs. ([#293](https://github.com/launchdarkly/js-core/issues/293))
14+
* A new `Migration` type which provides an out-of-the-box configurable migration framework.
15+
* For more advanced use cases, added new `migrationVariation` and `trackMigration` methods on LdClient.
16+
* Added typed variation method `boolVariation`, `stringVariation`, `boolVariation`, `numVariation`, and `jsonVariation` for type-safe usage in TypeScript.
17+
18+
### Features
19+
20+
* Implement Migrations. Refactor for client SDKs. ([#293](https://github.com/launchdarkly/js-core/issues/293)) ([c66aa6e](https://github.com/launchdarkly/js-core/commit/c66aa6ea0d12e1e4e565cb8378d367c31fab9c1b))
21+
22+
### Changed:
23+
- Changes to common code to support upcoming client-side SDKs written in TypeScript.
24+
25+
### Dependencies
26+
27+
* The following workspace dependencies were updated
28+
* dependencies
29+
* @launchdarkly/js-server-sdk-common bumped from 1.2.3 to 2.0.0
30+
531
## [8.2.4](https://github.com/launchdarkly/js-core/compare/node-server-sdk-v8.2.3...node-server-sdk-v8.2.4) (2023-09-06)
632

733
### Bug Fixes

packages/sdk/server-node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/node-server-sdk",
3-
"version": "8.2.4",
3+
"version": "9.0.0",
44
"description": "LaunchDarkly Server-Side SDK for Node.js",
55
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/server-node",
66
"repository": {
@@ -45,7 +45,7 @@
4545
},
4646
"license": "Apache-2.0",
4747
"dependencies": {
48-
"@launchdarkly/js-server-sdk-common": "1.2.3",
48+
"@launchdarkly/js-server-sdk-common": "2.0.0",
4949
"https-proxy-agent": "^5.0.1",
5050
"launchdarkly-eventsource": "2.0.1"
5151
},

packages/sdk/vercel/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to the LaunchDarkly SDK for Vercel Edge Config will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org).
44

5+
## [1.1.5](https://github.com/launchdarkly/js-core/compare/vercel-server-sdk-v1.1.4...vercel-server-sdk-v1.1.5) (2023-10-16)
6+
7+
### Features:
8+
- A new `Migration` type which provides an out-of-the-box configurable migration framework.
9+
- For more advanced use cases, added new `migrationVariation` and `trackMigration` methods on LdClient.
10+
- Added typed variation method `boolVariation`, `stringVariation`, `boolVariation`, `numVariation`, and `jsonVariation` for type-safe usage in TypeScript.
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* @launchdarkly/js-server-sdk-common-edge bumped from 1.0.13 to 2.0.0
17+
518
## [1.1.4](https://github.com/launchdarkly/js-core/compare/vercel-server-sdk-v1.1.3...vercel-server-sdk-v1.1.4) (2023-09-06)
619

720
### Bug Fixes

0 commit comments

Comments
 (0)