diff --git a/CHANGELOG.md b/CHANGELOG.md index 83a6d292..3248c933 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# [1.0.0-beta.5](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.0.0-beta.4...1.0.0-beta.5) (2020-07-17) + + +### chore + +* update project workspace to Angular 10 ([20a3266](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/commit/20a3266823ce1a3f82063e87e18235988a6ed478)), closes [#19](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/issues/19) + + +### BREAKING CHANGES + +* esm5 and fesm5 format is no longer distributed in `@scion/microfrontend-platform`’s NPM package + +We no longer include the distributions for `esm5` and `fesm5` in the `@scion/microfrontend-platform`’s NPM package. Only the formats for `esm2015`, `fesm2015`, and UMD are distributed. Consequently, the module field in package.json now points to the `fesm2015` distribution. + +To migrate: +- If requiring `esm5` or `fesm5`, you will need to downlevel to ES5 yourself. If using Angular, the Angular CLI will automatically downlevel the code to ES5 if differential loading is enabled in the Angular project, so no action is required from Angular CLI users. + + + # [1.0.0-beta.4](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.0.0-beta.3...1.0.0-beta.4) (2020-07-14) diff --git a/docs/site/changelog/changelog.md b/docs/site/changelog/changelog.md index cf185e16..27d6d8e7 100644 --- a/docs/site/changelog/changelog.md +++ b/docs/site/changelog/changelog.md @@ -5,6 +5,25 @@ ## Changelog +# [1.0.0-beta.5](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.0.0-beta.4...1.0.0-beta.5) (2020-07-17) + + +### chore + +* update project workspace to Angular 10 ([20a3266](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/commit/20a3266823ce1a3f82063e87e18235988a6ed478)), closes [#19](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/issues/19) + + +### BREAKING CHANGES + +* esm5 and fesm5 format is no longer distributed in `@scion/microfrontend-platform`’s NPM package + +We no longer include the distributions for `esm5` and `fesm5` in the `@scion/microfrontend-platform`’s NPM package. Only the formats for `esm2015`, `fesm2015`, and UMD are distributed. Consequently, the module field in package.json now points to the `fesm2015` distribution. + +To migrate: +- If requiring `esm5` or `fesm5`, you will need to downlevel to ES5 yourself. If using Angular, the Angular CLI will automatically downlevel the code to ES5 if differential loading is enabled in the Angular project, so no action is required from Angular CLI users. + + + # [1.0.0-beta.4](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.0.0-beta.3...1.0.0-beta.4) (2020-07-14) diff --git a/package-lock.json b/package-lock.json index e9c71cd2..010dbfd7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "scion-microfrontend-platform", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 9c5bd30c..3d02e303 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scion-microfrontend-platform", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.5", "description": "SCION Microfrontend Platform enables you to successfully implement a framework-agnostic microfrontend architecture using iframes. It provides you fundamental APIs for microfrontends to communicate with each other across origin, allows embedding microfrontends using a web component and enables routing between microfrontends. SCION Microfrontend Platform is a lightweight, web stack agnostic library that has no user-facing components and does not dictate any form of application structure.", "license": "EPL-2.0", "homepage": "https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform", diff --git a/projects/scion/microfrontend-platform/package.json b/projects/scion/microfrontend-platform/package.json index 9a36a788..bbb7469c 100644 --- a/projects/scion/microfrontend-platform/package.json +++ b/projects/scion/microfrontend-platform/package.json @@ -1,6 +1,6 @@ { "name": "@scion/microfrontend-platform", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.5", "description": "SCION Microfrontend Platform enables you to successfully implement a framework-agnostic microfrontend architecture using iframes. It provides you fundamental APIs for microfrontends to communicate with each other across origin, allows embedding microfrontends using a web component and enables routing between microfrontends. SCION Microfrontend Platform is a lightweight, web stack agnostic library that has no user-facing components and does not dictate any form of application structure.", "license": "EPL-2.0", "private": false,