chore(main): release core 1.2.0 (#927)
🤖 I have created a release *beep* *boop* --- ## [1.2.0](https://github.com/open-feature/js-sdk/compare/core-v1.1.0...core-v1.2.0) (2024-05-13) ### ✨ New Features * set context during provider init on web ([#919](https://github.com/open-feature/js-sdk/issues/919)) ([7e6c1c6](7e6c1c6e70)) ### 🐛 Bug Fixes * removes exports of OpenFeatureClient class and makes event props readonly ([#918](https://github.com/open-feature/js-sdk/issues/918)) ([e9a25c2](e9a25c21cb)) * run error hook when provider returns reason error or error code ([#926](https://github.com/open-feature/js-sdk/issues/926)) ([c6d0b5d](c6d0b5da9c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com> Signed-off-by: openfeature-peer-update-bot <openfeature-peer-update-bot@openfeature.dev> Co-authored-by: openfeature-peer-update-bot <openfeature-peer-update-bot@openfeature.dev> Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
This commit is contained in:
parent
6bcef8977d
commit
692ad5b27a
|
|
@ -3,5 +3,5 @@
|
||||||
"packages/react": "0.3.4",
|
"packages/react": "0.3.4",
|
||||||
"packages/client": "1.0.3",
|
"packages/client": "1.0.3",
|
||||||
"packages/server": "1.13.5",
|
"packages/server": "1.13.5",
|
||||||
"packages/shared": "1.1.0"
|
"packages/shared": "1.2.0"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13854,10 +13854,10 @@
|
||||||
"version": "1.0.3",
|
"version": "1.0.3",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@openfeature/core": "1.1.0"
|
"@openfeature/core": "1.2.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@openfeature/core": "1.1.0"
|
"@openfeature/core": "1.2.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"packages/nest": {
|
"packages/nest": {
|
||||||
|
|
@ -13899,18 +13899,18 @@
|
||||||
"version": "1.13.5",
|
"version": "1.13.5",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@openfeature/core": "1.1.0"
|
"@openfeature/core": "1.2.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16"
|
"node": ">=16"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@openfeature/core": "1.1.0"
|
"@openfeature/core": "1.2.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"packages/shared": {
|
"packages/shared": {
|
||||||
"name": "@openfeature/core",
|
"name": "@openfeature/core",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -46,9 +46,9 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/open-feature/js-sdk#readme",
|
"homepage": "https://github.com/open-feature/js-sdk#readme",
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@openfeature/core": "1.1.0"
|
"@openfeature/core": "1.2.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@openfeature/core": "1.1.0"
|
"@openfeature/core": "1.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -48,9 +48,9 @@
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@openfeature/core": "1.1.0"
|
"@openfeature/core": "1.2.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@openfeature/core": "1.1.0"
|
"@openfeature/core": "1.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,18 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.2.0](https://github.com/open-feature/js-sdk/compare/core-v1.1.0...core-v1.2.0) (2024-05-13)
|
||||||
|
|
||||||
|
|
||||||
|
### ✨ New Features
|
||||||
|
|
||||||
|
* set context during provider init on web ([#919](https://github.com/open-feature/js-sdk/issues/919)) ([7e6c1c6](https://github.com/open-feature/js-sdk/commit/7e6c1c6e7082e75535bf81b4e70c8c57ef870b77))
|
||||||
|
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
* removes exports of OpenFeatureClient class and makes event props readonly ([#918](https://github.com/open-feature/js-sdk/issues/918)) ([e9a25c2](https://github.com/open-feature/js-sdk/commit/e9a25c21cb17c3b5700bca652e3c0ed15e8f49b4))
|
||||||
|
* run error hook when provider returns reason error or error code ([#926](https://github.com/open-feature/js-sdk/issues/926)) ([c6d0b5d](https://github.com/open-feature/js-sdk/commit/c6d0b5da9c7f4c11319422fbe8c668a7613b044d))
|
||||||
|
|
||||||
## [1.1.0](https://github.com/open-feature/js-sdk/compare/core-v1.0.0...core-v1.1.0) (2024-04-02)
|
## [1.1.0](https://github.com/open-feature/js-sdk/compare/core-v1.0.0...core-v1.1.0) (2024-04-02)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@openfeature/core",
|
"name": "@openfeature/core",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"description": "Shared OpenFeature JS components (server and web)",
|
"description": "Shared OpenFeature JS components (server and web)",
|
||||||
"main": "./dist/cjs/index.js",
|
"main": "./dist/cjs/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue