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 20, 2024
1 parent 3607222 commit 0bdb694
Show file tree
Hide file tree
Showing 34 changed files with 259 additions and 107 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/friendly-insects-breathe.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/many-snails-hang.md

This file was deleted.

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

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/tricky-dingos-hide.md

This file was deleted.

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

## 2.4.0

### Minor Changes

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

Example: 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 [e3802fb]
- Updated dependencies [e4ba048]
- Updated dependencies [ac39468]
- Updated dependencies [e3802fb]
- @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
52 changes: 52 additions & 0 deletions src/packages/authentication/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,57 @@
# @open-pioneer/authentication

## 2.4.0

### Minor Changes

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

Example: 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 [e3802fb]
- Updated dependencies [ac39468]
- Updated dependencies [e3802fb]
- @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
17 changes: 17 additions & 0 deletions src/packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @open-pioneer/core

## 2.4.0

### Minor Changes

- e3802fb: Introduce the `NumberParser` class for parsing strings in a specified locale.

```js
import { NumberParser } from "@open-pioneer/core";

const parser = new NumberParser("de-DE");
const number = parser.parse("1.234,56");
```

### 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
12 changes: 12 additions & 0 deletions src/packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @open-pioneer/http

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- Updated dependencies [e3802fb]
- Updated dependencies [ac39468]
- Updated dependencies [e3802fb]
- @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
10 changes: 10 additions & 0 deletions src/packages/integration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @open-pioneer/integration

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- Updated dependencies [e3802fb]
- 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
12 changes: 12 additions & 0 deletions src/packages/local-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @open-pioneer/local-storage

## 2.4.0

### Patch Changes

- 1b63ebe: Update dependencies
- Updated dependencies [1b63ebe]
- Updated dependencies [e3802fb]
- Updated dependencies [ac39468]
- Updated dependencies [e3802fb]
- @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
Loading

0 comments on commit 0bdb694

Please sign in to comment.