Skip to content

Commit 656ad73

Browse files
chore: release main (#80)
* chore: release main * chore: release main --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Yusinto Ngadiman <[email protected]>
1 parent 0b36b52 commit 656ad73

File tree

10 files changed

+61
-7
lines changed

10 files changed

+61
-7
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"packages/shared/common":"0.2.0","packages/shared/sdk-server":"0.2.0","packages/sdk/server-node":"0.3.0"}
1+
{"packages/shared/common":"0.3.0","packages/shared/sdk-server":"0.3.0","packages/sdk/server-node":"0.3.1","packages/sdk/cloudflare":"0.0.1","packages/shared/sdk-server-edge":"0.0.1"}

packages/sdk/cloudflare/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
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+
## 0.0.1 (2023-04-19)
6+
7+
8+
### Features
9+
10+
* cloudflare sdk base ([#74](https://github.com/launchdarkly/js-core/issues/74)) ([add0c63](https://github.com/launchdarkly/js-core/commit/add0c6312c253752d2766cfd499b5134e87a17fb))
11+
* create sdk-server-edge package ([#83](https://github.com/launchdarkly/js-core/issues/83)) ([0578190](https://github.com/launchdarkly/js-core/commit/0578190123e2712b50774ca3087c7577ef2b9eb2))
12+
* fix typedoc and export common types ([#81](https://github.com/launchdarkly/js-core/issues/81)) ([daefb60](https://github.com/launchdarkly/js-core/commit/daefb60fb63ac9d2ebd4fea0fadaa0263b0b84ae))
13+
* support cjs and esm for cloudflare and edge common ([#87](https://github.com/launchdarkly/js-core/issues/87)) ([bab593c](https://github.com/launchdarkly/js-core/commit/bab593cdd9ff8e8881259a21f24c35088e7092bc))
14+
515
## [1.0.0] - 2022-10-13
616

717
Bump `launchdarkly-node-server-sdk` and move SDK out of beta.

packages/sdk/server-node/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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+
### Dependencies
6+
7+
* The following workspace dependencies were updated
8+
* dependencies
9+
* @launchdarkly/js-server-sdk-common bumped from 0.2.0 to 0.3.0
10+
511
## [0.3.0](https://github.com/launchdarkly/js-core/compare/node-server-sdk-v0.2.0...node-server-sdk-v0.3.0) (2023-03-16)
612

713

packages/sdk/server-node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/node-server-sdk",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "LaunchDarkly Server-Side SDK for Node.js",
55
"type": "commonjs",
66
"main": "./dist/src/index.js",
@@ -22,7 +22,7 @@
2222
},
2323
"license": "Apache-2.0",
2424
"dependencies": {
25-
"@launchdarkly/js-server-sdk-common": "0.2.0",
25+
"@launchdarkly/js-server-sdk-common": "0.3.0",
2626
"https-proxy-agent": "^5.0.1",
2727
"launchdarkly-eventsource": "^1.4.4"
2828
},

packages/shared/common/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

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

5+
## [0.3.0](https://github.com/launchdarkly/js-core/compare/js-sdk-common-v0.2.0...js-sdk-common-v0.3.0) (2023-04-19)
6+
7+
8+
### Features
9+
10+
* create sdk-server-edge package ([#83](https://github.com/launchdarkly/js-core/issues/83)) ([0578190](https://github.com/launchdarkly/js-core/commit/0578190123e2712b50774ca3087c7577ef2b9eb2))
11+
512
## [0.2.0](https://github.com/launchdarkly/js-core/compare/js-sdk-common-v0.1.0...js-sdk-common-v0.2.0) (2023-03-16)
613

714

packages/shared/common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/js-sdk-common",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"type": "commonjs",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
11
# Changelog
22

3+
## 0.0.1 (2023-04-19)
4+
5+
6+
### Features
7+
8+
* create sdk-server-edge package ([#83](https://github.com/launchdarkly/js-core/issues/83)) ([0578190](https://github.com/launchdarkly/js-core/commit/0578190123e2712b50774ca3087c7577ef2b9eb2))
9+
* support cjs and esm for cloudflare and edge common ([#87](https://github.com/launchdarkly/js-core/issues/87)) ([bab593c](https://github.com/launchdarkly/js-core/commit/bab593cdd9ff8e8881259a21f24c35088e7092bc))
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* @launchdarkly/js-server-sdk-common bumped from 0.2.0 to 0.3.0
17+
18+
## Changelog
19+
320
All notable changes to `@launchdarkly/js-server-sdk-common-edge` will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

packages/shared/sdk-server-edge/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"check": "yarn prettier && yarn lint && yarn build && yarn test && yarn doc"
3131
},
3232
"dependencies": {
33-
"@launchdarkly/js-server-sdk-common": "0.2.0",
33+
"@launchdarkly/js-server-sdk-common": "0.3.0",
3434
"crypto-js": "^4.1.1"
3535
},
3636
"devDependencies": {

packages/shared/sdk-server/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

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

5+
## [0.3.0](https://github.com/launchdarkly/js-core/compare/js-server-sdk-common-v0.2.0...js-server-sdk-common-v0.3.0) (2023-04-19)
6+
7+
8+
### Features
9+
10+
* cloudflare sdk base ([#74](https://github.com/launchdarkly/js-core/issues/74)) ([add0c63](https://github.com/launchdarkly/js-core/commit/add0c6312c253752d2766cfd499b5134e87a17fb))
11+
12+
13+
### Dependencies
14+
15+
* The following workspace dependencies were updated
16+
* dependencies
17+
* @launchdarkly/js-sdk-common bumped from 0.2.0 to 0.3.0
18+
519
## [0.2.0](https://github.com/launchdarkly/js-core/compare/js-server-sdk-common-v0.1.0...js-server-sdk-common-v0.2.0) (2023-03-16)
620

721

packages/shared/sdk-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/js-server-sdk-common",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"type": "commonjs",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -21,7 +21,7 @@
2121
},
2222
"license": "Apache-2.0",
2323
"dependencies": {
24-
"@launchdarkly/js-sdk-common": "0.2.0",
24+
"@launchdarkly/js-sdk-common": "0.3.0",
2525
"semver": "^7.3.8"
2626
},
2727
"devDependencies": {

0 commit comments

Comments
 (0)