From cbf318920101ac9e0cecd61a68780e5a002b5fd3 Mon Sep 17 00:00:00 2001 From: danielwiehl Date: Fri, 10 Nov 2023 11:38:21 +0100 Subject: [PATCH] release: v1.2.2 --- CHANGELOG.md | 9 +++++++++ CHANGELOG_LATEST.md | 4 ++-- docs/site/changelog/changelog.md | 9 +++++++++ package-lock.json | 4 ++-- package.json | 2 +- projects/scion/microfrontend-platform/package.json | 2 +- .../src/lib/microfrontend-platform.ts | 2 +- 7 files changed, 25 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b140d009..2ad1f143 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.2.2](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.2.1...1.2.2) (2023-11-10) + + +### Bug Fixes + +* **platform:** support navigating to blob URL ([5bbb1e0](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/commit/5bbb1e08bb420b38f476bfad08e4ea856c48d0a3)) + + + ## [1.2.1](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.2.0...1.2.1) (2023-11-02) diff --git a/CHANGELOG_LATEST.md b/CHANGELOG_LATEST.md index 93037d7e..6a7a73fb 100644 --- a/CHANGELOG_LATEST.md +++ b/CHANGELOG_LATEST.md @@ -1,9 +1,9 @@ -## [1.2.1](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.2.0...1.2.1) (2023-11-02) +## [1.2.2](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.2.1...1.2.2) (2023-11-10) ### Bug Fixes -* **platform/client:** show splash if instructed by the navigator, but only if not navigating to the same capability, if any ([a91286d](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/commit/a91286d8c2eff27a87831b1bd7183ae4103c3510)) +* **platform:** support navigating to blob URL ([5bbb1e0](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/commit/5bbb1e08bb420b38f476bfad08e4ea856c48d0a3)) diff --git a/docs/site/changelog/changelog.md b/docs/site/changelog/changelog.md index 18098074..0d813aec 100644 --- a/docs/site/changelog/changelog.md +++ b/docs/site/changelog/changelog.md @@ -5,6 +5,15 @@ ## Changelog +## [1.2.2](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.2.1...1.2.2) (2023-11-10) + + +### Bug Fixes + +* **platform:** support navigating to blob URL ([5bbb1e0](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/commit/5bbb1e08bb420b38f476bfad08e4ea856c48d0a3)) + + + ## [1.2.1](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.2.0...1.2.1) (2023-11-02) diff --git a/package-lock.json b/package-lock.json index 15996459..34429192 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "scion-microfrontend-platform", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "scion-microfrontend-platform", - "version": "1.2.1", + "version": "1.2.2", "hasInstallScript": true, "license": "EPL-2.0", "dependencies": { diff --git a/package.json b/package.json index b7760f72..e3dcf468 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scion-microfrontend-platform", - "version": "1.2.1", + "version": "1.2.2", "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 origins and facilitates embedding microfrontends using a web component and a router. 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 07052687..e9d8ff46 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.2.1", + "version": "1.2.2", "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 origins and facilitates embedding microfrontends using a web component and a router. 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, diff --git a/projects/scion/microfrontend-platform/src/lib/microfrontend-platform.ts b/projects/scion/microfrontend-platform/src/lib/microfrontend-platform.ts index be4acb54..e3b6f107 100644 --- a/projects/scion/microfrontend-platform/src/lib/microfrontend-platform.ts +++ b/projects/scion/microfrontend-platform/src/lib/microfrontend-platform.ts @@ -19,7 +19,7 @@ import {ConsoleLogger, Logger} from './logger'; /** * Current version of the SCION Microfrontend Platform. */ -const version = '1.2.1'; +const version = '1.2.2'; /** * The central class of the SCION Microfrontend Platform. This class cannot be instantiated. All functionality is provided by static methods.