Skip to content

Commit

Permalink
[RELEASE] Update package versions (#54)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jun 10, 2024
1 parent 90d0cce commit bfc51aa
Show file tree
Hide file tree
Showing 40 changed files with 193 additions and 40 deletions.
5 changes: 0 additions & 5 deletions .changeset/polite-apricots-learn.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/violet-carrots-turn.md

This file was deleted.

10 changes: 10 additions & 0 deletions src/packages/authentication-keycloak/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @open-pioneer/authentication-keycloak

## 0.1.1

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5
- @open-pioneer/authentication@0.3.4
- @open-pioneer/notifier@0.3.4

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/authentication-keycloak/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-pioneer/authentication-keycloak",
"version": "0.1.0",
"version": "0.1.1",
"description": "Implements authentication against Keycloak servers.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
8 changes: 8 additions & 0 deletions src/packages/authentication/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @open-pioneer/authentication

## 0.3.4

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 0.3.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/authentication/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@open-pioneer/authentication",
"description": "Authentication API for Open Pioneer Trails applications.",
"license": "Apache-2.0",
"version": "0.3.3",
"version": "0.3.4",
"main": "index.ts",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions src/packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @open-pioneer/http

## 2.1.7

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 2.1.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-pioneer/http",
"version": "2.1.6",
"version": "2.1.7",
"description": "Provides the HttpService, which can be used to request resources over HTTP.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
8 changes: 8 additions & 0 deletions src/packages/integration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @open-pioneer/integration

## 2.0.8

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 2.0.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/integration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-pioneer/integration",
"version": "2.0.7",
"version": "2.0.8",
"description": "Provides techniques for the communication between an application (web component) and its embedding site.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
8 changes: 8 additions & 0 deletions src/packages/local-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @open-pioneer/local-storage

## 0.3.4

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 0.3.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/local-storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-pioneer/local-storage",
"version": "0.3.3",
"version": "0.3.4",
"description": "Provides access to the browser's local storage.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
8 changes: 8 additions & 0 deletions src/packages/notifier/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @open-pioneer/notifier

## 0.3.4

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 0.3.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/notifier/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@open-pioneer/notifier",
"description": "Provides support for application-wide notifications.",
"version": "0.3.3",
"version": "0.3.4",
"license": "Apache-2.0",
"main": "index.ts",
"repository": {
Expand Down
20 changes: 20 additions & 0 deletions src/packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @open-pioneer/runtime

## 2.1.5

### Patch Changes

- 90d0cce: The `resolveConfig` callback of an app's configuration can now inspect the application's `hostElement`.
- 90d0cce: Add a builtin method on the `ApplicationContext` to change the application's locale.
Note that with the current implementation, the application will simply restart with the new locale.
The application's state will be lost.

Example:

```ts
import { ApplicationContext } from "@open-pioneer/runtime";

const appCtx: ApplicationContext = ...; // injected
appCtx.setLocale("en-US");
```

- @open-pioneer/runtime-react-support@1.0.2

## 2.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-pioneer/runtime",
"version": "2.1.4",
"version": "2.1.5",
"description": "Implements the runtime environment for Open Pioneer Trails apps.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
9 changes: 9 additions & 0 deletions src/samples/api-sample/api-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# api-app

## 0.0.18

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5
- @open-pioneer/integration@2.0.8

## 0.0.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/api-sample/api-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api-app",
"version": "0.0.17",
"version": "0.0.18",
"private": true,
"dependencies": {
"@open-pioneer/runtime": "workspace:^",
Expand Down
9 changes: 9 additions & 0 deletions src/samples/auth-sample/auth-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# auth-app

## 0.0.8

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5
- @open-pioneer/authentication@0.3.4

## 0.0.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/auth-sample/auth-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-app",
"version": "0.0.7",
"version": "0.0.8",
"private": true,
"dependencies": {
"@open-pioneer/authentication": "workspace:^",
Expand Down
8 changes: 8 additions & 0 deletions src/samples/chakra-sample/chakra-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# chakra-app

## 0.0.18

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 0.0.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/chakra-sample/chakra-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chakra-app",
"version": "0.0.17",
"version": "0.0.18",
"private": true,
"dependencies": {
"@open-pioneer/base-theme": "workspace:^",
Expand Down
8 changes: 8 additions & 0 deletions src/samples/extension-sample/extension-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# extension-app

## 0.0.18

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 0.0.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/extension-sample/extension-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "extension-app",
"version": "0.0.17",
"version": "0.0.18",
"private": true,
"main": "index",
"dependencies": {
Expand Down
9 changes: 9 additions & 0 deletions src/samples/http-sample/http-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# http-app

## 0.0.18

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5
- @open-pioneer/http@2.1.7

## 0.0.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/http-sample/http-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "http-app",
"version": "0.0.17",
"version": "0.0.18",
"private": true,
"dependencies": {
"@open-pioneer/chakra-integration": "workspace:^",
Expand Down
8 changes: 8 additions & 0 deletions src/samples/i18n-howto/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# i18n-howto-app

## 0.0.18

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 0.0.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/i18n-howto/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "i18n-howto-app",
"version": "0.0.17",
"version": "0.0.18",
"private": true,
"dependencies": {
"@open-pioneer/runtime": "workspace:^",
Expand Down
8 changes: 8 additions & 0 deletions src/samples/i18n-sample/i18n-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# i18n-app

## 0.0.18

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5

## 0.0.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/i18n-sample/i18n-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "i18n-app",
"version": "0.0.17",
"version": "0.0.18",
"private": true,
"dependencies": {
"@open-pioneer/runtime": "workspace:^",
Expand Down
12 changes: 12 additions & 0 deletions src/samples/keycloak-sample/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# keycloak-sample

## 0.0.3

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5
- @open-pioneer/authentication@0.3.4
- @open-pioneer/authentication-keycloak@0.1.1
- @open-pioneer/http@2.1.7
- @open-pioneer/notifier@0.3.4

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/keycloak-sample/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "keycloak-sample",
"version": "0.0.2",
"version": "0.0.3",
"private": true,
"dependencies": {
"@open-pioneer/authentication": "workspace:^",
Expand Down
9 changes: 9 additions & 0 deletions src/samples/notify-sample/notify-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# notify-app

## 0.0.8

### Patch Changes

- Updated dependencies [90d0cce]
- Updated dependencies [90d0cce]
- @open-pioneer/runtime@2.1.5
- @open-pioneer/notifier@0.3.4

## 0.0.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/samples/notify-sample/notify-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "notify-app",
"version": "0.0.7",
"version": "0.0.8",
"private": true,
"dependencies": {
"@open-pioneer/chakra-integration": "workspace:^",
Expand Down
Loading

0 comments on commit bfc51aa

Please sign in to comment.