Skip to content

Commit

Permalink
release: v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
k-genov authored and danielwiehl committed May 15, 2023
1 parent 0931b1c commit 02a5ea2
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 5 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# [1.0.0](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.0.0-rc.13...1.0.0) (2023-05-15)


### chore

* **platform:** drop deprecated API and backward compatibility ([ccae819](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/commit/ccae819726aeb3401c7dde31ac8d805d2183fdf1)), closes [#196](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/issues/196)


### BREAKING CHANGES

* **platform:** dropping deprecated API and backward compatibility introduced a breaking change for host and client applications.

To migrate:
- Update host and clients to version `1.0.0-rc.13` or higher.
- Deprecated property `ManifestService.lookupApplications$ ` has been removed; use `ManifestService.applications` instead.
- Deprecated property `Capability.requiredParams` has been removed; declare required parameters via `Capability.params` instead and mark it as required.
- Deprecated property `Capability.optionalParams` has been removed; declare optional parameters via `Capability.params` instead and mark it as non-required.



# [1.0.0-rc.13](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.0.0-rc.12...1.0.0-rc.13) (2023-03-10)


Expand Down
20 changes: 20 additions & 0 deletions docs/site/changelog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@

## Changelog

# [1.0.0](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.0.0-rc.13...1.0.0) (2023-05-15)


### chore

* **platform:** drop deprecated API and backward compatibility ([ccae819](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/commit/ccae819726aeb3401c7dde31ac8d805d2183fdf1)), closes [#196](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/issues/196)


### BREAKING CHANGES

* **platform:** dropping deprecated API and backward compatibility introduced a breaking change for host and client applications.

To migrate:
- Update host and clients to version `1.0.0-rc.13` or higher.
- Deprecated property `ManifestService.lookupApplications$ ` has been removed; use `ManifestService.applications` instead.
- Deprecated property `Capability.requiredParams` has been removed; declare required parameters via `Capability.params` instead and mark it as required.
- Deprecated property `Capability.optionalParams` has been removed; declare optional parameters via `Capability.params` instead and mark it as non-required.



# [1.0.0-rc.13](https://github.com/SchweizerischeBundesbahnen/scion-microfrontend-platform/compare/1.0.0-rc.12...1.0.0-rc.13) (2023-03-10)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scion-microfrontend-platform",
"version": "1.0.0-rc.13",
"version": "1.0.0",
"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",
Expand Down
2 changes: 1 addition & 1 deletion projects/scion/microfrontend-platform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scion/microfrontend-platform",
"version": "1.0.0-rc.13",
"version": "1.0.0",
"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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {ConsoleLogger, Logger} from './logger';
/**
* Current version of the SCION Microfrontend Platform.
*/
const version = '1.0.0-rc.13';
const version = '1.0.0';

/**
* The central class of the SCION Microfrontend Platform. This class cannot be instantiated. All functionality is provided by static methods.
Expand Down

0 comments on commit 02a5ea2

Please sign in to comment.