diff --git a/.changeset/dull-garlics-cheat.md b/.changeset/dull-garlics-cheat.md deleted file mode 100644 index 57a7efc6b..000000000 --- a/.changeset/dull-garlics-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@squide/msw": patch ---- - -- Request handlers registeration are now printed to the debug logs. diff --git a/.changeset/nasty-tables-compare.md b/.changeset/nasty-tables-compare.md deleted file mode 100644 index 8c6fccb7e..000000000 --- a/.changeset/nasty-tables-compare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@squide/core": minor ---- - -- A plugin can now optionally implement a "_setRuntime" method to received the current runtime at bootstrapping. diff --git a/.changeset/thin-apes-work.md b/.changeset/thin-apes-work.md deleted file mode 100644 index 4dd2448f1..000000000 --- a/.changeset/thin-apes-work.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@squide/webpack-configs": minor -"@squide/firefly": minor ---- - -- A new `features` option is now available with the `defineConfig` functions to add the `@squide/i18next` package to the shared dependencies. diff --git a/.changeset/yellow-pants-sin.md b/.changeset/yellow-pants-sin.md deleted file mode 100644 index 86bc16a5a..000000000 --- a/.changeset/yellow-pants-sin.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@squide/i18next": major ---- - -This a new package to support [i18next](https://www.i18next.com/) for a federated application. - -It includes: - -- `i18nextPlugin` -- `useChangeLanguage` -- `useCurrentLanguage` -- `useI18nextInstance` -- `I18nextNavigationLabel` diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 416011dda..01001d744 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @squide/core +## 3.1.0 + +### Minor Changes + +- [#115](https://github.com/gsoft-inc/wl-squide/pull/115) [`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4) Thanks [@patricklafrance](https://github.com/patricklafrance)! - - A plugin can now optionally implement a "\_setRuntime" method to received the current runtime at bootstrapping. + ## 3.0.0 ### Major Changes diff --git a/packages/core/package.json b/packages/core/package.json index 199e13dd4..3cc7ac185 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@squide/core", "author": "Workleap", - "version": "3.0.0", + "version": "3.1.0", "description": "The core package of @squide federated application shell.", "license": "Apache-2.0", "repository": { diff --git a/packages/fakes/CHANGELOG.md b/packages/fakes/CHANGELOG.md index 6e129ff05..0c246cb93 100644 --- a/packages/fakes/CHANGELOG.md +++ b/packages/fakes/CHANGELOG.md @@ -1,5 +1,12 @@ # @squide/fakes +## 1.0.9 + +### Patch Changes + +- Updated dependencies [[`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4)]: + - @squide/core@3.1.0 + ## 1.0.8 ### Patch Changes diff --git a/packages/fakes/package.json b/packages/fakes/package.json index 4189f6d4f..1dd664cdf 100644 --- a/packages/fakes/package.json +++ b/packages/fakes/package.json @@ -1,7 +1,7 @@ { "name": "@squide/fakes", "author": "Workleap", - "version": "1.0.8", + "version": "1.0.9", "description": "Fake implementations to facilitate the development of federated modules in isolation with @squide.", "license": "Apache-2.0", "repository": { diff --git a/packages/firefly/CHANGELOG.md b/packages/firefly/CHANGELOG.md index 98d382744..d3539560c 100644 --- a/packages/firefly/CHANGELOG.md +++ b/packages/firefly/CHANGELOG.md @@ -1,5 +1,20 @@ # @squide/firefly +## 3.0.0 + +### Minor Changes + +- [#115](https://github.com/gsoft-inc/wl-squide/pull/115) [`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4) Thanks [@patricklafrance](https://github.com/patricklafrance)! - - A new `features` option is now available with the `defineConfig` functions to add the `@squide/i18next` package to the shared dependencies. + +### Patch Changes + +- Updated dependencies [[`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4), [`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4), [`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4)]: + - @squide/msw@2.0.5 + - @squide/core@3.1.0 + - @squide/webpack-configs@1.1.0 + - @squide/react-router@3.0.1 + - @squide/webpack-module-federation@3.0.1 + ## 2.0.0 ### Minor Changes diff --git a/packages/firefly/package.json b/packages/firefly/package.json index 856e9519f..3b36cb762 100644 --- a/packages/firefly/package.json +++ b/packages/firefly/package.json @@ -1,7 +1,7 @@ { "name": "@squide/firefly", "author": "Workleap", - "version": "2.0.0", + "version": "3.0.0", "description": "Helpers to facilitate the creation of a shell package with Squide firefly technology stack.", "license": "Apache-2.0", "repository": { diff --git a/packages/i18next/CHANGELOG.md b/packages/i18next/CHANGELOG.md new file mode 100644 index 000000000..516debe8b --- /dev/null +++ b/packages/i18next/CHANGELOG.md @@ -0,0 +1,20 @@ +# @squide/i18next + +## 1.0.0 + +### Major Changes + +- [#115](https://github.com/gsoft-inc/wl-squide/pull/115) [`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4) Thanks [@patricklafrance](https://github.com/patricklafrance)! - This a new package to support [i18next](https://www.i18next.com/) for a federated application. + + It includes: + + - `i18nextPlugin` + - `useChangeLanguage` + - `useCurrentLanguage` + - `useI18nextInstance` + - `I18nextNavigationLabel` + +### Patch Changes + +- Updated dependencies [[`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4)]: + - @squide/core@3.1.0 diff --git a/packages/i18next/package.json b/packages/i18next/package.json index 061921a33..760782496 100644 --- a/packages/i18next/package.json +++ b/packages/i18next/package.json @@ -1,7 +1,7 @@ { "name": "@squide/i18next", "author": "Workleap", - "version": "0.0.1", + "version": "1.0.0", "description": "Add support for i18next to @squide federated application shell.", "license": "Apache-2.0", "repository": { diff --git a/packages/msw/CHANGELOG.md b/packages/msw/CHANGELOG.md index 7e84a8033..720b740bd 100644 --- a/packages/msw/CHANGELOG.md +++ b/packages/msw/CHANGELOG.md @@ -1,5 +1,14 @@ # @squide/msw +## 2.0.5 + +### Patch Changes + +- [#115](https://github.com/gsoft-inc/wl-squide/pull/115) [`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4) Thanks [@patricklafrance](https://github.com/patricklafrance)! - - Request handlers registeration are now printed to the debug logs. + +- Updated dependencies [[`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4)]: + - @squide/core@3.1.0 + ## 2.0.4 ### Patch Changes diff --git a/packages/msw/package.json b/packages/msw/package.json index 6bfb4a400..82fab2f2b 100644 --- a/packages/msw/package.json +++ b/packages/msw/package.json @@ -1,7 +1,7 @@ { "name": "@squide/msw", "author": "Workleap", - "version": "2.0.4", + "version": "2.0.5", "description": "Add support for MSW to @squide federated application shell.", "license": "Apache-2.0", "repository": { diff --git a/packages/react-router/CHANGELOG.md b/packages/react-router/CHANGELOG.md index 4daec9a5d..23e449fe7 100644 --- a/packages/react-router/CHANGELOG.md +++ b/packages/react-router/CHANGELOG.md @@ -1,5 +1,12 @@ # @squide/react-router +## 3.0.1 + +### Patch Changes + +- Updated dependencies [[`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4)]: + - @squide/core@3.1.0 + ## 3.0.0 ### Major Changes diff --git a/packages/react-router/package.json b/packages/react-router/package.json index 487d76e54..6a5ac0fdf 100644 --- a/packages/react-router/package.json +++ b/packages/react-router/package.json @@ -1,7 +1,7 @@ { "name": "@squide/react-router", "author": "Workleap", - "version": "3.0.0", + "version": "3.0.1", "description": "Add support for React Router to @squide federated application shell.", "license": "Apache-2.0", "repository": { diff --git a/packages/webpack-configs/CHANGELOG.md b/packages/webpack-configs/CHANGELOG.md index 96f5d71a8..450764059 100644 --- a/packages/webpack-configs/CHANGELOG.md +++ b/packages/webpack-configs/CHANGELOG.md @@ -1,5 +1,16 @@ # @squide/webpack-configs +## 1.1.0 + +### Minor Changes + +- [#115](https://github.com/gsoft-inc/wl-squide/pull/115) [`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4) Thanks [@patricklafrance](https://github.com/patricklafrance)! - - A new `features` option is now available with the `defineConfig` functions to add the `@squide/i18next` package to the shared dependencies. + +### Patch Changes + +- Updated dependencies []: + - @squide/webpack-module-federation@3.0.1 + ## 1.0.0 ### Major Changes diff --git a/packages/webpack-configs/package.json b/packages/webpack-configs/package.json index a72b255a3..74cc3244f 100644 --- a/packages/webpack-configs/package.json +++ b/packages/webpack-configs/package.json @@ -1,7 +1,7 @@ { "name": "@squide/webpack-configs", "author": "Workleap", - "version": "1.0.0", + "version": "1.1.0", "description": "Utilities to configure webpack with a @squide federated application shell.", "license": "Apache-2.0", "repository": { diff --git a/packages/webpack-module-federation/CHANGELOG.md b/packages/webpack-module-federation/CHANGELOG.md index c96953f65..11518a435 100644 --- a/packages/webpack-module-federation/CHANGELOG.md +++ b/packages/webpack-module-federation/CHANGELOG.md @@ -1,5 +1,12 @@ # @squide/webpack-module-federation +## 3.0.1 + +### Patch Changes + +- Updated dependencies [[`568255a`](https://github.com/gsoft-inc/wl-squide/commit/568255a50a519e7d19c8c2b03909559686cd24c4)]: + - @squide/core@3.1.0 + ## 3.0.0 ### Major Changes diff --git a/packages/webpack-module-federation/package.json b/packages/webpack-module-federation/package.json index fa9724c22..620bbbca9 100644 --- a/packages/webpack-module-federation/package.json +++ b/packages/webpack-module-federation/package.json @@ -1,7 +1,7 @@ { "name": "@squide/webpack-module-federation", "author": "Workleap", - "version": "3.0.0", + "version": "3.0.1", "description": "Add support for Module Federation to @squide federated application shell.", "license": "Apache-2.0", "repository": {