Skip to content

Commit

Permalink
[RELEASE] Update package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 6, 2024
1 parent 668a9a5 commit 9e6e4e2
Show file tree
Hide file tree
Showing 31 changed files with 221 additions and 77 deletions.
40 changes: 0 additions & 40 deletions .changeset/chilled-suits-tease.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/early-wasps-serve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-papayas-report.md

This file was deleted.

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

## 2.4.0

### Minor Changes

- 1ce5f11: Replace change events for auth state wiht signals from Reactivity API

watch for updates of the auth state

```typescript
const myAuthService = ...
watch(
() => [myAuthService.getAuthState()],
([state]) => {
console.log(state);
},
{
immediate: true
}
);
```

The Auth Service forwards the auth state from the underlying AuthPlugin.
Therefore, the plugin implementation must use reactive signals when its auth state changes in order to signal changes to the service.

```typescript
class DummyPlugin implements AuthPlugin {
#state = reactive<AuthState>({
kind: "not-authenticated"
});
getAuthState(): AuthState {
return this.#state.value;
}
$setAuthState(newState: AuthState) {
this.#state.value = newState;
}
}
```

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1ce5f11]
- Updated dependencies [1b63ebe]
- Updated dependencies [ac39468]
- @open-pioneer/authentication@2.4.0
- @open-pioneer/core@2.4.0
- @open-pioneer/notifier@2.4.0
- @open-pioneer/runtime@2.4.0

## 2.3.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": "2.3.0",
"version": "2.4.0",
"description": "Implements authentication against Keycloak servers.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
50 changes: 50 additions & 0 deletions src/packages/authentication/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,55 @@
# @open-pioneer/authentication

## 2.4.0

### Minor Changes

- 1ce5f11: Replace change events for auth state wiht signals from Reactivity API

watch for updates of the auth state

```typescript
const myAuthService = ...
watch(
() => [myAuthService.getAuthState()],
([state]) => {
console.log(state);
},
{
immediate: true
}
);
```

The Auth Service forwards the auth state from the underlying AuthPlugin.
Therefore, the plugin implementation must use reactive signals when its auth state changes in order to signal changes to the service.

```typescript
class DummyPlugin implements AuthPlugin {
#state = reactive<AuthState>({
kind: "not-authenticated"
});
getAuthState(): AuthState {
return this.#state.value;
}
$setAuthState(newState: AuthState) {
this.#state.value = newState;
}
}
```

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- Updated dependencies [ac39468]
- @open-pioneer/chakra-integration@2.4.0
- @open-pioneer/core@2.4.0
- @open-pioneer/reactivity@2.4.0
- @open-pioneer/runtime@2.4.0

## 2.3.0

### Minor 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": "2.3.0",
"version": "2.4.0",
"main": "index.ts",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions src/packages/base-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @open-pioneer/base-theme

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- @open-pioneer/chakra-integration@2.4.0

## 2.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/base-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@open-pioneer/base-theme",
"description": "This package provides the default theme for all Open Pioneer Trails applications.",
"version": "2.3.0",
"version": "2.4.0",
"main": "index.ts",
"license": "Apache-2.0",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions src/packages/chakra-integration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @open-pioneer/chakra-integration

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies

## 2.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/chakra-integration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-pioneer/chakra-integration",
"version": "2.3.0",
"version": "2.4.0",
"description": "Integrates Chakra UI into Open Pioneer Trails application.",
"main": "index.ts",
"license": "Apache-2.0",
Expand Down
6 changes: 6 additions & 0 deletions src/packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @open-pioneer/core

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies

## 2.3.0

## 2.2.0
Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-pioneer/core",
"version": "2.3.0",
"version": "2.4.0",
"description": "Contains basic utility functions and classes used by the @open-pioneer project.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
10 changes: 10 additions & 0 deletions src/packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @open-pioneer/http

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- Updated dependencies [ac39468]
- @open-pioneer/core@2.4.0
- @open-pioneer/runtime@2.4.0

## 2.3.0

### Minor 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.3.0",
"version": "2.4.0",
"description": "Provides the HttpService, which can be used to request resources over HTTP.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
9 changes: 9 additions & 0 deletions src/packages/integration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @open-pioneer/integration

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- Updated dependencies [ac39468]
- @open-pioneer/runtime@2.4.0

## 2.3.0

### Minor 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.3.0",
"version": "2.4.0",
"description": "Provides techniques for the communication between an application (web component) and its embedding site.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
10 changes: 10 additions & 0 deletions src/packages/local-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @open-pioneer/local-storage

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- Updated dependencies [ac39468]
- @open-pioneer/core@2.4.0
- @open-pioneer/runtime@2.4.0

## 2.3.0

### Minor 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": "2.3.0",
"version": "2.4.0",
"description": "Provides access to the browser's local storage.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
12 changes: 12 additions & 0 deletions src/packages/notifier/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @open-pioneer/notifier

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- Updated dependencies [ac39468]
- @open-pioneer/chakra-integration@2.4.0
- @open-pioneer/react-utils@2.4.0
- @open-pioneer/core@2.4.0
- @open-pioneer/runtime@2.4.0

## 2.3.0

### Minor 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": "2.3.0",
"version": "2.4.0",
"license": "Apache-2.0",
"main": "index.ts",
"repository": {
Expand Down
9 changes: 9 additions & 0 deletions src/packages/react-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @open-pioneer/react-utils

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- @open-pioneer/chakra-integration@2.4.0
- @open-pioneer/core@2.4.0

## 2.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/react-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@open-pioneer/react-utils",
"description": "Contains common react utilities used by the open pioneer trails project",
"version": "2.3.0",
"version": "2.4.0",
"license": "Apache-2.0",
"main": "index.ts",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions src/packages/reactivity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @open-pioneer/reactivity

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies

## 2.3.0

### Minor Changes
Expand Down
Loading

0 comments on commit 9e6e4e2

Please sign in to comment.