Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RELEASE] Update package versions #67

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .changeset/dry-apes-sparkle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/moody-panthers-count.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/old-mayflies-sing.md

This file was deleted.

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

## 2.2.0

### Patch Changes

- 41f0c6f: Use error state to communicate keycloak exceptions
- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.
- Updated dependencies [41f0c6f]
- Updated dependencies [39dad46]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]

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

## 2.2.0

### Minor Changes

- 41f0c6f: Introduce new authentication state `AuthStateAuthenticationError`

Error state is supposed to be used for errors that occur during the authentication process (e.g. lost connection to authentication backend) rather than for failed login attempts (e.g. invalid credentials)

`ForceAuth` component provides two mechanisms to render a fallback component if an authentication error occurs.

`errorFallback` option takes an abitrary react component that is rendered in case of an error. The error object can be accessed via the ErrorFallbackPros.

```jsx
<ForceAuth errorFallback={ErrorFallback}>
App Content
</ForceAuth>

function ErrorFallback(props: ErrorFallbackProps) {
return (
<>
<Box margin={2} color={"red"}>{props.error.message}</Box>
</>
);
}
```

If additional inputs or state must be accessed from within the error fallback component the `renderErrorFallback` option should be used.

```jsx
const userName = "user1";
<ForceAuth renderErrorFallback={(e: Error) => (
<>
<Box>Could not login {userName}</Box>
<Box color={"red"}>{e.message}</Box>
</>
)}>
App Content
</ForceAuth>
```

The `renderErrorFallback` property takes precedence over the `errorFallback` property.

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.
- Updated dependencies [39dad46]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]

## 0.3.6

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

## 2.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.
- Updated dependencies [39dad46]
- @open-pioneer/[email protected]

## 0.3.3

### Patch 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": "0.3.3",
"version": "2.2.0",
"main": "index.ts",
"license": "Apache-2.0",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions src/packages/chakra-integration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @open-pioneer/chakra-integration

## 2.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.

## 1.1.4

### Patch 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": "1.1.4",
"version": "2.2.0",
"description": "Integrates Chakra UI into Open Pioneer Trails application.",
"main": "index.ts",
"license": "Apache-2.0",
Expand Down
7 changes: 7 additions & 0 deletions src/packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @open-pioneer/core

## 2.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.

## 1.3.0

### Minor Changes
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": "1.3.0",
"version": "2.2.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.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.
- Updated dependencies [39dad46]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]

## 2.1.9

### 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.9",
"version": "2.2.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.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.
- Updated dependencies [39dad46]
- @open-pioneer/[email protected]

## 2.0.10

### 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.10",
"version": "2.2.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.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.
- Updated dependencies [39dad46]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]

## 0.3.6

### 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.6",
"version": "2.2.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.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.
- Updated dependencies [39dad46]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]

## 0.3.6

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

## 2.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.
- Updated dependencies [39dad46]
- @open-pioneer/[email protected]
- @open-pioneer/[email protected]

## 1.0.1

### Patch 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": "1.0.1",
"version": "2.2.0",
"license": "Apache-2.0",
"main": "index.ts",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions src/packages/reactivity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @open-pioneer/reactivity

## 2.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/reactivity/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@open-pioneer/reactivity",
"description": "Provides integration for the reactivity API.",
"version": "0.1.0",
"version": "2.2.0",
"license": "Apache-2.0",
"main": "index.ts",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions src/packages/runtime-react-support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @open-pioneer/runtime-react-support

## 2.2.0

### Patch Changes

- 39dad46: Switch to a new versioning strategy.
From now on, packages released by this repository share a common version number.

## 1.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime-react-support/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-pioneer/runtime-react-support",
"version": "1.0.2",
"version": "2.2.0",
"description": "An internal module providing support for react integration.",
"license": "Apache-2.0",
"main": "index.ts",
Expand Down
Loading
Loading