From 69200c0045ea8042600734f72d6428438fa99d5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Jun 2023 10:59:50 +0200 Subject: [PATCH] Version Packages (#903) --- .changeset/afraid-jokes-trade.md | 11 --- .changeset/clean-bats-heal.md | 5 -- .changeset/curvy-students-serve.md | 8 -- .changeset/funny-garlics-complain.md | 27 ------ .changeset/happy-eyes-arrive.md | 7 -- .changeset/ninety-lizards-sin.md | 6 -- .changeset/old-planets-hear.md | 15 ---- .changeset/quick-spiders-type.md | 5 -- .changeset/rotten-walls-reflect.md | 5 -- .changeset/smooth-chicken-promise.md | 20 ----- .changeset/spicy-dolphins-call.md | 8 -- .changeset/stale-pigs-leave.md | 33 ------- .changeset/stale-pigs-leave_2.md | 9 -- .changeset/violet-needles-join.md | 11 --- .../app-react-bookmark-advanced/CHANGELOG.md | 10 +++ .../app-react-bookmark-advanced/package.json | 6 +- cookbooks/app-react-bookmark/CHANGELOG.md | 10 +++ cookbooks/app-react-bookmark/package.json | 6 +- cookbooks/app-react-router/package.json | 6 +- cookbooks/app-react/CHANGELOG.md | 10 +++ cookbooks/app-react/package.json | 6 +- packages/app/CHANGELOG.md | 17 ++++ packages/app/package.json | 12 +-- packages/cli/CHANGELOG.md | 16 ++++ packages/cli/package.json | 14 +-- packages/framework/CHANGELOG.md | 17 ++++ packages/framework/package.json | 12 +-- packages/modules/ag-grid/CHANGELOG.md | 10 +++ packages/modules/ag-grid/package.json | 4 +- packages/modules/app/CHANGELOG.md | 10 +++ packages/modules/app/package.json | 8 +- packages/modules/context/CHANGELOG.md | 10 +++ packages/modules/context/package.json | 6 +- packages/modules/http/CHANGELOG.md | 14 +++ packages/modules/http/package.json | 6 +- packages/modules/module/CHANGELOG.md | 85 +++++++++++++++++++ packages/modules/module/package.json | 2 +- packages/modules/msal/CHANGELOG.md | 13 +++ packages/modules/msal/package.json | 4 +- packages/modules/navigation/CHANGELOG.md | 31 +++++++ packages/modules/navigation/package.json | 4 +- .../modules/service-discovery/CHANGELOG.md | 14 +++ .../modules/service-discovery/package.json | 6 +- packages/modules/telemetry/CHANGELOG.md | 14 +++ packages/modules/telemetry/package.json | 6 +- packages/modules/widget/CHANGELOG.md | 10 +++ packages/modules/widget/package.json | 6 +- packages/react/app/CHANGELOG.md | 15 ++++ packages/react/app/package.json | 12 +-- .../react/components/bookmark/CHANGELOG.md | 13 +++ .../react/components/bookmark/package.json | 4 +- packages/react/framework/CHANGELOG.md | 15 ++++ packages/react/framework/package.json | 10 +-- packages/react/legacy-interopt/CHANGELOG.md | 16 ++++ packages/react/legacy-interopt/package.json | 12 +-- packages/react/modules/bookmark/CHANGELOG.md | 15 ++++ packages/react/modules/bookmark/package.json | 10 +-- packages/react/modules/context/CHANGELOG.md | 14 +++ packages/react/modules/context/package.json | 6 +- packages/react/modules/event/CHANGELOG.md | 13 +++ packages/react/modules/event/package.json | 4 +- packages/react/modules/http/CHANGELOG.md | 10 +++ packages/react/modules/http/package.json | 6 +- packages/react/modules/module/CHANGELOG.md | 13 +++ packages/react/modules/module/package.json | 4 +- 65 files changed, 506 insertions(+), 261 deletions(-) delete mode 100644 .changeset/afraid-jokes-trade.md delete mode 100644 .changeset/clean-bats-heal.md delete mode 100644 .changeset/curvy-students-serve.md delete mode 100644 .changeset/funny-garlics-complain.md delete mode 100644 .changeset/happy-eyes-arrive.md delete mode 100644 .changeset/ninety-lizards-sin.md delete mode 100644 .changeset/old-planets-hear.md delete mode 100644 .changeset/quick-spiders-type.md delete mode 100644 .changeset/rotten-walls-reflect.md delete mode 100644 .changeset/smooth-chicken-promise.md delete mode 100644 .changeset/spicy-dolphins-call.md delete mode 100644 .changeset/stale-pigs-leave.md delete mode 100644 .changeset/stale-pigs-leave_2.md delete mode 100644 .changeset/violet-needles-join.md diff --git a/.changeset/afraid-jokes-trade.md b/.changeset/afraid-jokes-trade.md deleted file mode 100644 index 175b4f407..000000000 --- a/.changeset/afraid-jokes-trade.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@equinor/fusion-framework-module": minor ---- - -__Feat(module)__ add base module class - -As a module developer there should be a base provider class to extend, which handles basic wireing. - -Some aspects of providers should be the same for all, like `version` handling. - -These new features does not change any existing code, only tooling for future development diff --git a/.changeset/clean-bats-heal.md b/.changeset/clean-bats-heal.md deleted file mode 100644 index f72e91eea..000000000 --- a/.changeset/clean-bats-heal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- - ---- - -chore: update auto labeling diff --git a/.changeset/curvy-students-serve.md b/.changeset/curvy-students-serve.md deleted file mode 100644 index 431fb00ce..000000000 --- a/.changeset/curvy-students-serve.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@equinor/fusion-framework-module': patch ---- - -export `lib` assets: - -- SemanticVersion -- ModuleProvider diff --git a/.changeset/funny-garlics-complain.md b/.changeset/funny-garlics-complain.md deleted file mode 100644 index a771bc22d..000000000 --- a/.changeset/funny-garlics-complain.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -'@equinor/fusion-framework-module': minor ---- - -Add possibility to add multilevel config for module - -```ts -type MyModuleConfig = { - foo: string; - bar?: number, - nested?: { up: boolean } -}; - -class MyModuleConfigurator extends BaseConfigBuilder { - public setFoo(cb: ModuleConfigCallback) { - this._set('foo', cb); - } - - public setBar(cb: ModuleConfigCallback) { - this._set('bar', cb); - } - - public setUp(cb: ModuleConfigCallback) { - this._set('nested.up', cb); - } -} -``` diff --git a/.changeset/happy-eyes-arrive.md b/.changeset/happy-eyes-arrive.md deleted file mode 100644 index b679a23b7..000000000 --- a/.changeset/happy-eyes-arrive.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@equinor/fusion-framework-module-navigation': patch ---- - -__Change init of NavigationProvider__ - -moved the init to constructor \ No newline at end of file diff --git a/.changeset/ninety-lizards-sin.md b/.changeset/ninety-lizards-sin.md deleted file mode 100644 index 49268dc7a..000000000 --- a/.changeset/ninety-lizards-sin.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@equinor/fusion-framework-cli': patch ---- - -Removes requirement of leading slash in `main` attr in `package.json`, meaning -both `"main": "src/index.ts"` and `"main": "/src/index.ts"` will resolve. diff --git a/.changeset/old-planets-hear.md b/.changeset/old-planets-hear.md deleted file mode 100644 index d5c35ca5c..000000000 --- a/.changeset/old-planets-hear.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'@equinor/fusion-framework-module': patch ---- - -__Change base behavior of BaseModuleProvider__ - -because of weird limitations of JavaScript, private fields are not accessible until all constructors are initialized (from ancestor to current child). -This causes the `abstract` init function could not access private members when overridden. - -* __removed__ `init` from `BaseModuleProvider` - - _this is a breaking change, but not yet published, yet the `patch` version_ - - https://github.com/equinor/fusion-framework/blob/43854d9538ade189483c43e04b52eff7e1aa3b0c/packages/modules/module/src/lib/provider/BaseModuleProvider.ts#L31 -* __added__ `provider` sub-scope for package - -> The usage when extending `BaseModuleProvider` is not as 😘, but now works diff --git a/.changeset/quick-spiders-type.md b/.changeset/quick-spiders-type.md deleted file mode 100644 index 7c99eaf78..000000000 --- a/.changeset/quick-spiders-type.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@equinor/fusion-framework-module': patch ---- - -allow `SemanticVersion` as `version` in ctor args for `BaseModuleProvider` diff --git a/.changeset/rotten-walls-reflect.md b/.changeset/rotten-walls-reflect.md deleted file mode 100644 index 127c097b6..000000000 --- a/.changeset/rotten-walls-reflect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@equinor/fusion-framework-module": patch ---- - -fix(module): add config builder callback args to process config method so that diff --git a/.changeset/smooth-chicken-promise.md b/.changeset/smooth-chicken-promise.md deleted file mode 100644 index 49b349c28..000000000 --- a/.changeset/smooth-chicken-promise.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -"@equinor/fusion-framework-module": minor ---- - -__Feat(module): add semver__ - -In some cases other modules might require features in sibling modules -```ts -if (modules.context.version.satisfies('>=7.2')) { - // do some code -} else { - throw Error('this feature requires ContextModule of 7.2 or higher, please update depencies') -} -``` - -Usage: -- log telemetry about module usage and outdated application -- debug code runtime by knowing version of implementation -- write inter-opt when breaking changes accour - diff --git a/.changeset/spicy-dolphins-call.md b/.changeset/spicy-dolphins-call.md deleted file mode 100644 index 44e383037..000000000 --- a/.changeset/spicy-dolphins-call.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@equinor/fusion-framework-module-navigation': minor ---- - -add version to module - -- add `prebuild` step to generate version -- update `.gitignore` to skip `version.ts` since this file is generated during building diff --git a/.changeset/stale-pigs-leave.md b/.changeset/stale-pigs-leave.md deleted file mode 100644 index 3f8d31924..000000000 --- a/.changeset/stale-pigs-leave.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -"@equinor/fusion-framework-app": patch -"@equinor/fusion-framework-cli": patch -"@equinor/fusion-framework": patch -"@equinor/fusion-framework-module-ag-grid": patch -"@equinor/fusion-framework-module-app": patch -"@equinor/fusion-framework-module-context": patch -"@equinor/fusion-framework-module-http": patch -"@equinor/fusion-framework-module": patch -"@equinor/fusion-framework-module-msal": patch -"@equinor/fusion-framework-module-navigation": patch -"@equinor/fusion-framework-module-service-discovery": patch -"@equinor/fusion-framework-module-telemetry": patch -"@equinor/fusion-framework-module-widget": patch -"@equinor/fusion-framework-react-app": patch -"@equinor/fusion-framework-react-components-bookmark": patch -"@equinor/fusion-framework-react": patch -"@equinor/fusion-framework-legacy-interopt": patch -"@equinor/fusion-framework-react-module-bookmark": patch -"@equinor/fusion-framework-react-module-context": patch -"@equinor/fusion-framework-react-module-event": patch -"@equinor/fusion-framework-react-module-http": patch -"@equinor/fusion-framework-react-module": patch -"@equinor/fusion-framework-cookbook-app-react-bookmark-advanced": patch -"@equinor/fusion-framework-cookbook-app-react-bookmark": patch -"@equinor/fusion-framework-cookbook-app-react": patch ---- - -__🚧 Chore: dedupe packages__ - -- align all versions of typescript -- update types to build - - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future diff --git a/.changeset/stale-pigs-leave_2.md b/.changeset/stale-pigs-leave_2.md deleted file mode 100644 index 65f3bb033..000000000 --- a/.changeset/stale-pigs-leave_2.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@equinor/fusion-framework-legacy-interopt": patch ---- - -added missing [exhausted-deps](https://legacy.reactjs.org/docs/hooks-rules.html), this might cause rerender, since `ReactRouterDom.createBrowserHistory` might create history dynamicly. - -this should be tested in portal when updating the `@equinor/fusion-framework-legacy-interopt` - -https://github.com/equinor/fusion-framework/blob/7c0a475174f61ba02570614c237d5cfb3b009cb1/packages/react/legacy-interopt/src/create-legacy-render.tsx#L59 diff --git a/.changeset/violet-needles-join.md b/.changeset/violet-needles-join.md deleted file mode 100644 index 074469bd3..000000000 --- a/.changeset/violet-needles-join.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@equinor/fusion-framework-module-navigation': major ---- - -extend base module provider - -* make `NavigationProvider` extend `BaseModuleProvider` -* internal function `_localizeLocation` is renamed to `_localizePath`. _should not cause breaking changes_ -* expose localized state from `Navigator` _(history)_ - -BREAKING CHANGE: `NavigationProvider` no longer extends `Observable<{ action: Action; path: Path }>`, use `INavigationProvider.state$` _(this is now a localized path)_ \ No newline at end of file diff --git a/cookbooks/app-react-bookmark-advanced/CHANGELOG.md b/cookbooks/app-react-bookmark-advanced/CHANGELOG.md index 7ff53a68b..54be7eb5c 100644 --- a/cookbooks/app-react-bookmark-advanced/CHANGELOG.md +++ b/cookbooks/app-react-bookmark-advanced/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 4.0.18 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/cookbooks/app-react-bookmark-advanced/package.json b/cookbooks/app-react-bookmark-advanced/package.json index 9d2cfab7d..f5680ae21 100644 --- a/cookbooks/app-react-bookmark-advanced/package.json +++ b/cookbooks/app-react-bookmark-advanced/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-cookbook-app-react-bookmark-advanced", - "version": "4.0.17", + "version": "4.0.18", "description": "", "private": true, "type": "module", @@ -12,8 +12,8 @@ "author": "", "license": "ISC", "devDependencies": { - "@equinor/fusion-framework-cli": "^7.0.10", - "@equinor/fusion-framework-react-app": "^4.0.16", + "@equinor/fusion-framework-cli": "^7.0.11", + "@equinor/fusion-framework-react-app": "^4.0.17", "@types/react": "^18.0.24", "@types/react-dom": "^18.0.8", "react": "^18.2.0", diff --git a/cookbooks/app-react-bookmark/CHANGELOG.md b/cookbooks/app-react-bookmark/CHANGELOG.md index 01e2a5983..6dbdb21ed 100644 --- a/cookbooks/app-react-bookmark/CHANGELOG.md +++ b/cookbooks/app-react-bookmark/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 4.0.18 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/cookbooks/app-react-bookmark/package.json b/cookbooks/app-react-bookmark/package.json index fe9712090..9c2656267 100644 --- a/cookbooks/app-react-bookmark/package.json +++ b/cookbooks/app-react-bookmark/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-cookbook-app-react-bookmark", - "version": "4.0.17", + "version": "4.0.18", "description": "", "private": true, "type": "module", @@ -12,9 +12,9 @@ "author": "", "license": "ISC", "devDependencies": { - "@equinor/fusion-framework-cli": "^7.0.10", + "@equinor/fusion-framework-cli": "^7.0.11", "@equinor/fusion-framework-module-bookmark": "^1.0.6", - "@equinor/fusion-framework-react-app": "^4.0.16", + "@equinor/fusion-framework-react-app": "^4.0.17", "@types/react": "^18.0.24", "@types/react-dom": "^18.0.8", "react": "^18.2.0", diff --git a/cookbooks/app-react-router/package.json b/cookbooks/app-react-router/package.json index 487211840..4be904834 100644 --- a/cookbooks/app-react-router/package.json +++ b/cookbooks/app-react-router/package.json @@ -12,9 +12,9 @@ "author": "", "license": "ISC", "devDependencies": { - "@equinor/fusion-framework-cli": "^7.0.10", - "@equinor/fusion-framework-module-navigation": "^2.1.2", - "@equinor/fusion-framework-react-app": "^4.0.16", + "@equinor/fusion-framework-cli": "^7.0.11", + "@equinor/fusion-framework-module-navigation": "^3.0.0", + "@equinor/fusion-framework-react-app": "^4.0.17", "@remix-run/router": "^1.0.4", "@types/react": "^18.0.24", "@types/react-dom": "^18.0.8", diff --git a/cookbooks/app-react/CHANGELOG.md b/cookbooks/app-react/CHANGELOG.md index cb21e3a43..2bea19c1b 100644 --- a/cookbooks/app-react/CHANGELOG.md +++ b/cookbooks/app-react/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 4.0.18 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/cookbooks/app-react/package.json b/cookbooks/app-react/package.json index 373c1bbaa..ab05ad2e7 100644 --- a/cookbooks/app-react/package.json +++ b/cookbooks/app-react/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-cookbook-app-react", - "version": "4.0.17", + "version": "4.0.18", "description": "", "private": true, "type": "module", @@ -12,8 +12,8 @@ "author": "", "license": "ISC", "devDependencies": { - "@equinor/fusion-framework-cli": "^7.0.10", - "@equinor/fusion-framework-react-app": "^4.0.16", + "@equinor/fusion-framework-cli": "^7.0.11", + "@equinor/fusion-framework-react-app": "^4.0.17", "@types/react": "^18.0.24", "@types/react-dom": "^18.0.8", "react": "^18.2.0", diff --git a/packages/app/CHANGELOG.md b/packages/app/CHANGELOG.md index 305c73c8c..4f2109661 100644 --- a/packages/app/CHANGELOG.md +++ b/packages/app/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## 7.0.15 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module@4.2.0 + - @equinor/fusion-framework@7.0.14 + - @equinor/fusion-framework-module-app@5.1.3 + - @equinor/fusion-framework-module-http@5.0.3 + - @equinor/fusion-framework-module-msal@3.0.3 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/app/package.json b/packages/app/package.json index 17e848185..087f1d0af 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-app", - "version": "7.0.14", + "version": "7.0.15", "description": "", "main": "dist/esm/index.js", "exports": { @@ -32,12 +32,12 @@ "directory": "packages/app" }, "dependencies": { - "@equinor/fusion-framework": "^7.0.13", - "@equinor/fusion-framework-module": "^4.1.0", - "@equinor/fusion-framework-module-app": "^5.1.2", + "@equinor/fusion-framework": "^7.0.14", + "@equinor/fusion-framework-module": "^4.2.0", + "@equinor/fusion-framework-module-app": "^5.1.3", "@equinor/fusion-framework-module-event": "^4.0.1", - "@equinor/fusion-framework-module-http": "^5.0.2", - "@equinor/fusion-framework-module-msal": "^3.0.2" + "@equinor/fusion-framework-module-http": "^5.0.3", + "@equinor/fusion-framework-module-msal": "^3.0.3" }, "devDependencies": { "typescript": "^5.0.4" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 7baa4855f..d7a6cbdd0 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## 7.0.11 + +### Patch Changes + +- [#910](https://github.com/equinor/fusion-framework/pull/910) [`d40951a3`](https://github.com/equinor/fusion-framework/commit/d40951a3f5044083e7aec416c065342d0207e5d5) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Removes requirement of leading slash in `main` attr in `package.json`, meaning + both `"main": "src/index.ts"` and `"main": "/src/index.ts"` will resolve. + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-app@7.0.15 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/cli/package.json b/packages/cli/package.json index 99a7af6b7..22ec6e6c3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-cli", - "version": "7.0.10", + "version": "7.0.11", "keywords": [ "Fusion", "Fusion Framework", @@ -27,7 +27,7 @@ "@equinor/eds-core-react": "^0.30.0", "@equinor/eds-icons": "^0.19.1", "@equinor/eds-tokens": "^0.9.0", - "@equinor/fusion-framework-app": "^7.0.14", + "@equinor/fusion-framework-app": "^7.0.15", "@equinor/fusion-observable": "^8.0.1", "@vitejs/plugin-react": "^3.1.0", "commander": "^10.0.0", @@ -46,12 +46,12 @@ "@equinor/eds-core-react": "^0.30.0", "@equinor/eds-icons": "^0.19.1", "@equinor/eds-tokens": "^0.9.0", - "@equinor/fusion-framework-app": "^7.0.4", + "@equinor/fusion-framework-app": "^7.0.15", "@equinor/fusion-framework-module-bookmark": "^1.0.6", - "@equinor/fusion-framework-module-context": "^4.0.7", - "@equinor/fusion-framework-react": "^5.1.3", - "@equinor/fusion-framework-react-components-bookmark": "^0.1.11", - "@equinor/fusion-framework-react-module-bookmark": "^2.0.10", + "@equinor/fusion-framework-module-context": "^4.0.9", + "@equinor/fusion-framework-react": "^5.1.4", + "@equinor/fusion-framework-react-components-bookmark": "^0.1.13", + "@equinor/fusion-framework-react-module-bookmark": "^2.0.12", "@equinor/fusion-query": "^3.0.2", "@equinor/fusion-react-button": "^0.8.1", "@equinor/fusion-react-context-selector": "^0.4.3", diff --git a/packages/framework/CHANGELOG.md b/packages/framework/CHANGELOG.md index c454f8656..15ec42dbe 100644 --- a/packages/framework/CHANGELOG.md +++ b/packages/framework/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## 7.0.14 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module@4.2.0 + - @equinor/fusion-framework-module-context@4.0.9 + - @equinor/fusion-framework-module-http@5.0.3 + - @equinor/fusion-framework-module-msal@3.0.3 + - @equinor/fusion-framework-module-service-discovery@7.0.4 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/framework/package.json b/packages/framework/package.json index 1a18ae02e..a6d7ffee3 100644 --- a/packages/framework/package.json +++ b/packages/framework/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework", - "version": "7.0.13", + "version": "7.0.14", "description": "", "main": "dist/esm/index.js", "exports": { @@ -32,12 +32,12 @@ "directory": "packages/framework" }, "dependencies": { - "@equinor/fusion-framework-module": "^4.1.0", - "@equinor/fusion-framework-module-context": "^4.0.7", + "@equinor/fusion-framework-module": "^4.2.0", + "@equinor/fusion-framework-module-context": "^4.0.9", "@equinor/fusion-framework-module-event": "^4.0.1", - "@equinor/fusion-framework-module-http": "^5.0.2", - "@equinor/fusion-framework-module-msal": "^3.0.2", - "@equinor/fusion-framework-module-service-discovery": "^7.0.3", + "@equinor/fusion-framework-module-http": "^5.0.3", + "@equinor/fusion-framework-module-msal": "^3.0.3", + "@equinor/fusion-framework-module-service-discovery": "^7.0.4", "@equinor/fusion-framework-module-services": "^3.1.2", "rxjs": "^7.5.7" }, diff --git a/packages/modules/ag-grid/CHANGELOG.md b/packages/modules/ag-grid/CHANGELOG.md index 561cba0af..9ff31846d 100644 --- a/packages/modules/ag-grid/CHANGELOG.md +++ b/packages/modules/ag-grid/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 29.3.2 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/ag-grid/package.json b/packages/modules/ag-grid/package.json index 567052529..e69a750fd 100644 --- a/packages/modules/ag-grid/package.json +++ b/packages/modules/ag-grid/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-ag-grid", - "version": "29.3.1", + "version": "29.3.2", "description": "Fusion module for using AG Grid", "main": "dist/esm/index.js", "exports": { @@ -29,7 +29,7 @@ "@ag-grid-enterprise/core": "~29.3.4" }, "devDependencies": { - "@equinor/fusion-framework-module": "^4.1.0", + "@equinor/fusion-framework-module": "^4.2.0", "typescript": "^5.0.4" }, "peerDependencies": { diff --git a/packages/modules/app/CHANGELOG.md b/packages/modules/app/CHANGELOG.md index b45708697..28099221d 100644 --- a/packages/modules/app/CHANGELOG.md +++ b/packages/modules/app/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 5.1.3 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/app/package.json b/packages/modules/app/package.json index ad81d8a7a..106ee39d7 100644 --- a/packages/modules/app/package.json +++ b/packages/modules/app/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-app", - "version": "5.1.2", + "version": "5.1.3", "description": "", "main": "dist/esm/index.js", "exports": { @@ -39,10 +39,10 @@ "rxjs": "^7.5.7" }, "devDependencies": { - "@equinor/fusion-framework-module": "^4.1.0", + "@equinor/fusion-framework-module": "^4.2.0", "@equinor/fusion-framework-module-event": "^4.0.1", - "@equinor/fusion-framework-module-http": "^5.0.2", - "@equinor/fusion-framework-module-service-discovery": "^7.0.3", + "@equinor/fusion-framework-module-http": "^5.0.3", + "@equinor/fusion-framework-module-service-discovery": "^7.0.4", "typescript": "^5.0.4" } } diff --git a/packages/modules/context/CHANGELOG.md b/packages/modules/context/CHANGELOG.md index 90759a7c2..634487da2 100644 --- a/packages/modules/context/CHANGELOG.md +++ b/packages/modules/context/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 4.0.9 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + ## 4.0.8 ### Patch Changes diff --git a/packages/modules/context/package.json b/packages/modules/context/package.json index 96a7e6052..53fc269c4 100644 --- a/packages/modules/context/package.json +++ b/packages/modules/context/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-context", - "version": "4.0.8", + "version": "4.0.9", "description": "", "main": "./dist/esm/index.js", "exports": { @@ -39,9 +39,9 @@ "fast-deep-equal": "^3.1.3" }, "devDependencies": { - "@equinor/fusion-framework-module": "^4.1.0", + "@equinor/fusion-framework-module": "^4.2.0", "@equinor/fusion-framework-module-event": "^4.0.1", - "@equinor/fusion-framework-module-navigation": "^2.1.2", + "@equinor/fusion-framework-module-navigation": "^3.0.0", "@equinor/fusion-framework-module-services": "^3.1.2", "rxjs": "^7.5.7" }, diff --git a/packages/modules/http/CHANGELOG.md b/packages/modules/http/CHANGELOG.md index c9132b914..4ee6c80bf 100644 --- a/packages/modules/http/CHANGELOG.md +++ b/packages/modules/http/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 5.0.3 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module@4.2.0 + - @equinor/fusion-framework-module-msal@3.0.3 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/http/package.json b/packages/modules/http/package.json index 4bdf1df11..1a76634e9 100644 --- a/packages/modules/http/package.json +++ b/packages/modules/http/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-http", - "version": "5.0.2", + "version": "5.0.3", "description": "", "main": "dist/esm/index.js", "types": "index.d.ts", @@ -42,8 +42,8 @@ "directory": "packages/modules/http" }, "dependencies": { - "@equinor/fusion-framework-module": "^4.1.0", - "@equinor/fusion-framework-module-msal": "^3.0.2", + "@equinor/fusion-framework-module": "^4.2.0", + "@equinor/fusion-framework-module-msal": "^3.0.3", "rxjs": "^7.5.7" }, "devDependencies": { diff --git a/packages/modules/module/CHANGELOG.md b/packages/modules/module/CHANGELOG.md index 2916ee484..78213d328 100644 --- a/packages/modules/module/CHANGELOG.md +++ b/packages/modules/module/CHANGELOG.md @@ -1,5 +1,90 @@ # Change Log +## 4.2.0 + +### Minor Changes + +- [#902](https://github.com/equinor/fusion-framework/pull/902) [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5) Thanks [@odinr](https://github.com/odinr)! - **Feat(module)** add base module class + + As a module developer there should be a base provider class to extend, which handles basic wireing. + + Some aspects of providers should be the same for all, like `version` handling. + + These new features does not change any existing code, only tooling for future development + +- [#882](https://github.com/equinor/fusion-framework/pull/882) [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898) Thanks [@odinr](https://github.com/odinr)! - Add possibility to add multilevel config for module + + ```ts + type MyModuleConfig = { + foo: string; + bar?: number; + nested?: { up: boolean }; + }; + + class MyModuleConfigurator extends BaseConfigBuilder { + public setFoo(cb: ModuleConfigCallback) { + this._set('foo', cb); + } + + public setBar(cb: ModuleConfigCallback) { + this._set('bar', cb); + } + + public setUp(cb: ModuleConfigCallback) { + this._set('nested.up', cb); + } + } + ``` + +- [#902](https://github.com/equinor/fusion-framework/pull/902) [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5) Thanks [@odinr](https://github.com/odinr)! - **Feat(module): add semver** + + In some cases other modules might require features in sibling modules + + ```ts + if (modules.context.version.satisfies('>=7.2')) { + // do some code + } else { + throw Error( + 'this feature requires ContextModule of 7.2 or higher, please update depencies' + ); + } + ``` + + Usage: + + - log telemetry about module usage and outdated application + - debug code runtime by knowing version of implementation + - write inter-opt when breaking changes accour + +### Patch Changes + +- [#907](https://github.com/equinor/fusion-framework/pull/907) [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9) Thanks [@odinr](https://github.com/odinr)! - export `lib` assets: + + - SemanticVersion + - ModuleProvider + +- [#913](https://github.com/equinor/fusion-framework/pull/913) [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d) Thanks [@odinr](https://github.com/odinr)! - **Change base behavior of BaseModuleProvider** + + because of weird limitations of JavaScript, private fields are not accessible until all constructors are initialized (from ancestor to current child). + This causes the `abstract` init function could not access private members when overridden. + + - **removed** `init` from `BaseModuleProvider` + - _this is a breaking change, but not yet published, yet the `patch` version_ + - https://github.com/equinor/fusion-framework/blob/43854d9538ade189483c43e04b52eff7e1aa3b0c/packages/modules/module/src/lib/provider/BaseModuleProvider.ts#L31 + - **added** `provider` sub-scope for package + + > The usage when extending `BaseModuleProvider` is not as 😘, but now works + +- [#907](https://github.com/equinor/fusion-framework/pull/907) [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9) Thanks [@odinr](https://github.com/odinr)! - allow `SemanticVersion` as `version` in ctor args for `BaseModuleProvider` + +- [#924](https://github.com/equinor/fusion-framework/pull/924) [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - fix(module): add config builder callback args to process config method so that + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/module/package.json b/packages/modules/module/package.json index 3c130c376..c0e48b6ef 100644 --- a/packages/modules/module/package.json +++ b/packages/modules/module/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module", - "version": "4.1.0", + "version": "4.2.0", "description": "", "main": "dist/esm/index.js", "exports": { diff --git a/packages/modules/msal/CHANGELOG.md b/packages/modules/msal/CHANGELOG.md index ef978b949..255ee48d2 100644 --- a/packages/modules/msal/CHANGELOG.md +++ b/packages/modules/msal/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## 3.0.3 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module@4.2.0 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/msal/package.json b/packages/modules/msal/package.json index 22c6d913d..a9ae18609 100644 --- a/packages/modules/msal/package.json +++ b/packages/modules/msal/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-msal", - "version": "3.0.2", + "version": "3.0.3", "description": "", "main": "dist/esm/index.js", "exports": { @@ -32,7 +32,7 @@ }, "dependencies": { "@azure/msal-browser": "^2.21.0", - "@equinor/fusion-framework-module": "^4.1.0" + "@equinor/fusion-framework-module": "^4.2.0" }, "devDependencies": { "typescript": "^5.0.4" diff --git a/packages/modules/navigation/CHANGELOG.md b/packages/modules/navigation/CHANGELOG.md index 1771fc2ec..7382a0132 100644 --- a/packages/modules/navigation/CHANGELOG.md +++ b/packages/modules/navigation/CHANGELOG.md @@ -1,5 +1,36 @@ # Change Log +## 3.0.0 + +### Major Changes + +- [#907](https://github.com/equinor/fusion-framework/pull/907) [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9) Thanks [@odinr](https://github.com/odinr)! - extend base module provider + + - make `NavigationProvider` extend `BaseModuleProvider` + - internal function `_localizeLocation` is renamed to `_localizePath`. _should not cause breaking changes_ + - expose localized state from `Navigator` _(history)_ + + BREAKING CHANGE: `NavigationProvider` no longer extends `Observable<{ action: Action; path: Path }>`, use `INavigationProvider.state# Change Log _(this is now a localized path)_ + +### Minor Changes + +- [#907](https://github.com/equinor/fusion-framework/pull/907) [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9) Thanks [@odinr](https://github.com/odinr)! - add version to module + + - add `prebuild` step to generate version + - update `.gitignore` to skip `version.ts` since this file is generated during building + +### Patch Changes + +- [#913](https://github.com/equinor/fusion-framework/pull/913) [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d) Thanks [@odinr](https://github.com/odinr)! - **Change init of NavigationProvider** + + moved the init to constructor + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/navigation/package.json b/packages/modules/navigation/package.json index 37cbf9a6d..57cfd7715 100644 --- a/packages/modules/navigation/package.json +++ b/packages/modules/navigation/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-navigation", - "version": "2.1.2", + "version": "3.0.0", "description": "", "sideEffects": false, "main": "dist/esm/index.js", @@ -35,7 +35,7 @@ "@remix-run/router": "^1.6.1" }, "devDependencies": { - "@equinor/fusion-framework-module": "^4.1.0", + "@equinor/fusion-framework-module": "^4.2.0", "rxjs": "^7.5.7", "typescript": "^5.0.4" }, diff --git a/packages/modules/service-discovery/CHANGELOG.md b/packages/modules/service-discovery/CHANGELOG.md index 844c1bff5..389214f43 100644 --- a/packages/modules/service-discovery/CHANGELOG.md +++ b/packages/modules/service-discovery/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 7.0.4 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module@4.2.0 + - @equinor/fusion-framework-module-http@5.0.3 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/service-discovery/package.json b/packages/modules/service-discovery/package.json index f4a216ba7..e5b947151 100644 --- a/packages/modules/service-discovery/package.json +++ b/packages/modules/service-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-service-discovery", - "version": "7.0.3", + "version": "7.0.4", "description": "", "main": "dist/esm/index.js", "exports": { @@ -23,8 +23,8 @@ "directory": "packages/modules/service-discovery" }, "dependencies": { - "@equinor/fusion-framework-module": "^4.1.0", - "@equinor/fusion-framework-module-http": "^5.0.2", + "@equinor/fusion-framework-module": "^4.2.0", + "@equinor/fusion-framework-module-http": "^5.0.3", "@equinor/fusion-query": "^3.0.2", "rxjs": "^7.5.7" }, diff --git a/packages/modules/telemetry/CHANGELOG.md b/packages/modules/telemetry/CHANGELOG.md index b90821a55..b3ae3869c 100644 --- a/packages/modules/telemetry/CHANGELOG.md +++ b/packages/modules/telemetry/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 3.0.7 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module@4.2.0 + - @equinor/fusion-framework-module-msal@3.0.3 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/telemetry/package.json b/packages/modules/telemetry/package.json index c9f686efd..88f6f4ca9 100644 --- a/packages/modules/telemetry/package.json +++ b/packages/modules/telemetry/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-telemetry", - "version": "3.0.6", + "version": "3.0.7", "description": "Fusion module for using Microsoft Telemetry", "main": "dist/esm/index.js", "exports": { @@ -29,8 +29,8 @@ "directory": "packages/modules/telemetry" }, "dependencies": { - "@equinor/fusion-framework-module": "^4.1.0", - "@equinor/fusion-framework-module-msal": "^3.0.2", + "@equinor/fusion-framework-module": "^4.2.0", + "@equinor/fusion-framework-module-msal": "^3.0.3", "@microsoft/applicationinsights-web": "^2.7.2" }, "devDependencies": { diff --git a/packages/modules/widget/CHANGELOG.md b/packages/modules/widget/CHANGELOG.md index d9d11bbdd..2c34ea1b6 100644 --- a/packages/modules/widget/CHANGELOG.md +++ b/packages/modules/widget/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 1.0.4 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/modules/widget/package.json b/packages/modules/widget/package.json index 0cfc5681e..363136c3d 100644 --- a/packages/modules/widget/package.json +++ b/packages/modules/widget/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-module-widget", - "version": "1.0.3", + "version": "1.0.4", "description": "", "main": "dist/esm/index.js", "exports": { @@ -35,9 +35,9 @@ "rxjs": "^7.5.7" }, "devDependencies": { - "@equinor/fusion-framework-module": "^4.1.0", + "@equinor/fusion-framework-module": "^4.2.0", "@equinor/fusion-framework-module-event": "^4.0.1", - "@equinor/fusion-framework-module-service-discovery": "^7.0.3", + "@equinor/fusion-framework-module-service-discovery": "^7.0.4", "typescript": "^5.0.4" } } diff --git a/packages/react/app/CHANGELOG.md b/packages/react/app/CHANGELOG.md index 8b5d71e53..bbdfa9313 100644 --- a/packages/react/app/CHANGELOG.md +++ b/packages/react/app/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## 4.0.17 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-app@7.0.15 + - @equinor/fusion-framework-react@5.1.4 + - @equinor/fusion-framework-react-module-http@3.0.3 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/react/app/package.json b/packages/react/app/package.json index e36995441..e897ec1d7 100644 --- a/packages/react/app/package.json +++ b/packages/react/app/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-react-app", - "version": "4.0.16", + "version": "4.0.17", "description": "", "main": "dist/esm/index.js", "exports": { @@ -43,13 +43,13 @@ "directory": "packages/react" }, "dependencies": { - "@equinor/fusion-framework-app": "^7.0.14", - "@equinor/fusion-framework-react": "^5.1.3", - "@equinor/fusion-framework-react-module-http": "^3.0.2" + "@equinor/fusion-framework-app": "^7.0.15", + "@equinor/fusion-framework-react": "^5.1.4", + "@equinor/fusion-framework-react-module-http": "^3.0.3" }, "devDependencies": { - "@equinor/fusion-framework-react-module-bookmark": "^2.0.10", - "@equinor/fusion-framework-react-module-context": "^6.0.7", + "@equinor/fusion-framework-react-module-bookmark": "^2.0.12", + "@equinor/fusion-framework-react-module-context": "^6.0.9", "@types/react": "^17.0.11", "@types/react-dom": "^17.0.7", "react": "^17.0.2", diff --git a/packages/react/components/bookmark/CHANGELOG.md b/packages/react/components/bookmark/CHANGELOG.md index 15932bc13..895ada819 100644 --- a/packages/react/components/bookmark/CHANGELOG.md +++ b/packages/react/components/bookmark/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## 0.1.13 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-react-module-bookmark@2.0.12 + ## 0.1.12 ### Patch Changes diff --git a/packages/react/components/bookmark/package.json b/packages/react/components/bookmark/package.json index 537b11972..0926e8783 100644 --- a/packages/react/components/bookmark/package.json +++ b/packages/react/components/bookmark/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-react-components-bookmark", - "version": "0.1.12", + "version": "0.1.13", "description": "", "main": "dist/esm/index.js", "exports": { @@ -24,7 +24,7 @@ }, "dependencies": { "@equinor/eds-utils": "^0.7.0", - "@equinor/fusion-framework-react-module-bookmark": "^2.0.11" + "@equinor/fusion-framework-react-module-bookmark": "^2.0.12" }, "devDependencies": { "@emotion/css": "^11.10.6", diff --git a/packages/react/framework/CHANGELOG.md b/packages/react/framework/CHANGELOG.md index cae403a1c..c67a33151 100644 --- a/packages/react/framework/CHANGELOG.md +++ b/packages/react/framework/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## 5.1.4 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework@7.0.14 + - @equinor/fusion-framework-react-module-context@6.0.9 + - @equinor/fusion-framework-react-module-http@3.0.3 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/react/framework/package.json b/packages/react/framework/package.json index e754abcd7..f90e831b9 100644 --- a/packages/react/framework/package.json +++ b/packages/react/framework/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-react", - "version": "5.1.3", + "version": "5.1.4", "description": "", "main": "dist/esm/index.js", "exports": { @@ -47,13 +47,13 @@ "directory": "packages/react/framework" }, "dependencies": { - "@equinor/fusion-framework": "^7.0.13", - "@equinor/fusion-framework-react-module-context": "^6.0.7", - "@equinor/fusion-framework-react-module-http": "^3.0.2", + "@equinor/fusion-framework": "^7.0.14", + "@equinor/fusion-framework-react-module-context": "^6.0.9", + "@equinor/fusion-framework-react-module-http": "^3.0.3", "rxjs": "^7.5.7" }, "devDependencies": { - "@equinor/fusion-framework-module-app": "^5.1.2", + "@equinor/fusion-framework-module-app": "^5.1.3", "@types/react": "^17.0.11", "@types/react-dom": "^17.0.7", "react": "^17.0.2", diff --git a/packages/react/legacy-interopt/CHANGELOG.md b/packages/react/legacy-interopt/CHANGELOG.md index 9f6f56e52..c374741dd 100644 --- a/packages/react/legacy-interopt/CHANGELOG.md +++ b/packages/react/legacy-interopt/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## 4.0.12 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- [`d6671bc5`](https://github.com/equinor/fusion-framework/commit/d6671bc526179f18a5290049728c9c5ac72da671) Thanks [@odinr](https://github.com/odinr)! - added missing [exhausted-deps](https://legacy.reactjs.org/docs/hooks-rules.html), this might cause rerender, since `ReactRouterDom.createBrowserHistory` might create history dynamicly. + + this should be tested in portal when updating the `@equinor/fusion-framework-legacy-interopt` + + https://github.com/equinor/fusion-framework/blob/7c0a475174f61ba02570614c237d5cfb3b009cb1/packages/react/legacy-interopt/src/create-legacy-render.tsx#L59 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/react/legacy-interopt/package.json b/packages/react/legacy-interopt/package.json index c62bf8759..aada216f2 100644 --- a/packages/react/legacy-interopt/package.json +++ b/packages/react/legacy-interopt/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-legacy-interopt", - "version": "4.0.11", + "version": "4.0.12", "description": "Library for interopt legacy fusion applications", "main": "dist/esm/index.js", "exports": { @@ -33,11 +33,11 @@ "devDependencies": { "@equinor/fusion": "^3.4.9", "@equinor/fusion-components": "^2.10.5", - "@equinor/fusion-framework": "^7.0.13", - "@equinor/fusion-framework-module-app": "^5.1.2", - "@equinor/fusion-framework-module-navigation": "^2.1.2", - "@equinor/fusion-framework-react": "^5.1.3", - "@equinor/fusion-framework-react-app": "^4.0.16", + "@equinor/fusion-framework": "^7.0.14", + "@equinor/fusion-framework-module-app": "^5.1.3", + "@equinor/fusion-framework-module-navigation": "^3.0.0", + "@equinor/fusion-framework-react": "^5.1.4", + "@equinor/fusion-framework-react-app": "^4.0.17", "@types/history": "^4.7.2", "@types/react": "^17", "@types/react-router-dom": "^5.3.3", diff --git a/packages/react/modules/bookmark/CHANGELOG.md b/packages/react/modules/bookmark/CHANGELOG.md index f3bd0f30b..03aa11ad2 100644 --- a/packages/react/modules/bookmark/CHANGELOG.md +++ b/packages/react/modules/bookmark/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## 2.0.12 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module-context@4.0.9 + - @equinor/fusion-framework-react@5.1.4 + - @equinor/fusion-framework-react-module@3.0.3 + ## 2.0.11 ### Patch Changes diff --git a/packages/react/modules/bookmark/package.json b/packages/react/modules/bookmark/package.json index 8d9a18163..4f37ff129 100644 --- a/packages/react/modules/bookmark/package.json +++ b/packages/react/modules/bookmark/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-react-module-bookmark", - "version": "2.0.11", + "version": "2.0.12", "description": "", "main": "dist/esm/index.js", "exports": { @@ -32,13 +32,13 @@ }, "dependencies": { "@equinor/fusion-framework-module-bookmark": "^1.0.6", - "@equinor/fusion-framework-module-context": "^4.0.7", - "@equinor/fusion-framework-react": "^5.1.3", - "@equinor/fusion-framework-react-module": "^3.0.2", + "@equinor/fusion-framework-module-context": "^4.0.9", + "@equinor/fusion-framework-react": "^5.1.4", + "@equinor/fusion-framework-react-module": "^3.0.3", "@equinor/fusion-query": "^3.0.2" }, "devDependencies": { - "@equinor/fusion-framework-module-navigation": "^2.1.2", + "@equinor/fusion-framework-module-navigation": "^3.0.0", "@types/react": "^17.0.11", "react": "^17.0.2", "react-dom": "^17.0.2", diff --git a/packages/react/modules/context/CHANGELOG.md b/packages/react/modules/context/CHANGELOG.md index 54a268791..be4467e6a 100644 --- a/packages/react/modules/context/CHANGELOG.md +++ b/packages/react/modules/context/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 6.0.9 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module-context@4.0.9 + - @equinor/fusion-framework-react-module@3.0.3 + ## 6.0.8 ### Patch Changes diff --git a/packages/react/modules/context/package.json b/packages/react/modules/context/package.json index 7baf2f3f5..db31f2ffe 100644 --- a/packages/react/modules/context/package.json +++ b/packages/react/modules/context/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-react-module-context", - "version": "6.0.8", + "version": "6.0.9", "description": "", "main": "dist/esm/index.js", "exports": { @@ -23,8 +23,8 @@ "directory": "packages/react/modules/context" }, "dependencies": { - "@equinor/fusion-framework-module-context": "^4.0.8", - "@equinor/fusion-framework-react-module": "^3.0.2", + "@equinor/fusion-framework-module-context": "^4.0.9", + "@equinor/fusion-framework-react-module": "^3.0.3", "@equinor/fusion-query": "^3.0.2" }, "devDependencies": { diff --git a/packages/react/modules/event/CHANGELOG.md b/packages/react/modules/event/CHANGELOG.md index f817a158e..626a5a1ba 100644 --- a/packages/react/modules/event/CHANGELOG.md +++ b/packages/react/modules/event/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## 3.0.3 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-react-module@3.0.3 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/react/modules/event/package.json b/packages/react/modules/event/package.json index 8144c721b..c0d5a3a07 100644 --- a/packages/react/modules/event/package.json +++ b/packages/react/modules/event/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-react-module-event", - "version": "3.0.2", + "version": "3.0.3", "description": "", "main": "dist/esm/index.js", "exports": { @@ -24,7 +24,7 @@ }, "dependencies": { "@equinor/fusion-framework-module-event": "^4.0.1", - "@equinor/fusion-framework-react-module": "^3.0.2" + "@equinor/fusion-framework-react-module": "^3.0.3" }, "devDependencies": { "@types/react": "^17.0.11", diff --git a/packages/react/modules/http/CHANGELOG.md b/packages/react/modules/http/CHANGELOG.md index 3d3d4bf65..58ad45859 100644 --- a/packages/react/modules/http/CHANGELOG.md +++ b/packages/react/modules/http/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 3.0.3 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/react/modules/http/package.json b/packages/react/modules/http/package.json index 8644aa4e4..9102034f5 100644 --- a/packages/react/modules/http/package.json +++ b/packages/react/modules/http/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-react-module-http", - "version": "3.0.2", + "version": "3.0.3", "description": "", "main": "dist/esm/index.js", "exports": { @@ -23,8 +23,8 @@ "directory": "packages/react/modules/http" }, "devDependencies": { - "@equinor/fusion-framework-module-http": "^5.0.2", - "@equinor/fusion-framework-react-module": "^3.0.2", + "@equinor/fusion-framework-module-http": "^5.0.3", + "@equinor/fusion-framework-react-module": "^3.0.3", "@types/react": "^17.0.11", "@types/react-dom": "^17.0.7", "react": "^17.0.2", diff --git a/packages/react/modules/module/CHANGELOG.md b/packages/react/modules/module/CHANGELOG.md index 4f0dc50c1..22ed24cc2 100644 --- a/packages/react/modules/module/CHANGELOG.md +++ b/packages/react/modules/module/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## 3.0.3 + +### Patch Changes + +- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages** + + - align all versions of typescript + - update types to build + - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future + +- Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]: + - @equinor/fusion-framework-module@4.2.0 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/react/modules/module/package.json b/packages/react/modules/module/package.json index 05cf262fb..3b2d6856e 100644 --- a/packages/react/modules/module/package.json +++ b/packages/react/modules/module/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/fusion-framework-react-module", - "version": "3.0.2", + "version": "3.0.3", "main": "dist/esm/index.js", "exports": { ".": "./dist/esm/index.js" @@ -26,7 +26,7 @@ "directory": "packages/react/modules/module" }, "dependencies": { - "@equinor/fusion-framework-module": "^4.1.0" + "@equinor/fusion-framework-module": "^4.2.0" }, "devDependencies": { "@types/react": "^17.0.11",