Skip to content

Commit

Permalink
[RELEASE] Update package versions (#28)
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 Dec 22, 2023
1 parent a18d227 commit d7da0a1
Show file tree
Hide file tree
Showing 26 changed files with 108 additions and 28 deletions.
5 changes: 0 additions & 5 deletions .changeset/kind-pans-jump.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/young-wolves-clap.md

This file was deleted.

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

## 1.2.0

### Minor Changes

- a18d227: New helper function `rethrowAbortError`.

## 1.1.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
Expand Up @@ -2,7 +2,7 @@
"name": "@open-pioneer/core",
"license": "Apache-2.0",
"main": "index.ts",
"version": "1.1.0",
"version": "1.2.0",
"scripts": {
"build": "build-pioneer-package"
},
Expand Down
18 changes: 18 additions & 0 deletions src/packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @open-pioneer/http

## 2.1.0

### Minor Changes

- a18d227: New **experimental** feature: request interceptors.
Request interceptors can be registered with the `HttpService` to modify requests before they are sent to a server.
Request interceptors are called automatically by the `HttpService` when they are present as part of the normal request processing.

Example use case: adding an access token (query parameter or header) to requests for a certain resource.

Note that the request interceptor API is experimental: it may change with a new minor release as a response to feedback.

### Patch Changes

- Updated dependencies [a18d227]
- @open-pioneer/core@1.2.0
- @open-pioneer/runtime@2.0.1

## 2.0.0

### Major 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.0.0",
"version": "2.1.0",
"license": "Apache-2.0",
"main": "index.ts",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions src/packages/integration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @open-pioneer/integration

## 2.0.1

### Patch Changes

- @open-pioneer/runtime@2.0.1

## 2.0.0

### Major 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.0",
"version": "2.0.1",
"license": "Apache-2.0",
"main": "index.ts",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions src/packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @open-pioneer/runtime

## 2.0.1

### Patch Changes

- Updated dependencies [a18d227]
- @open-pioneer/core@1.2.0
- @open-pioneer/runtime-react-support@1.0.0

## 2.0.0

### Major 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.0.0",
"version": "2.0.1",
"license": "Apache-2.0",
"main": "index.ts",
"scripts": {
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.11

### Patch Changes

- Updated dependencies [a18d227]
- @open-pioneer/core@1.2.0
- @open-pioneer/runtime@2.0.1
- @open-pioneer/integration@2.0.1

## 0.0.10

### 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.10",
"version": "0.0.11",
"private": true,
"dependencies": {
"@open-pioneer/runtime": "workspace:^",
Expand Down
6 changes: 6 additions & 0 deletions src/samples/chakra-sample/chakra-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# chakra-app

## 0.0.11

### Patch Changes

- @open-pioneer/runtime@2.0.1

## 0.0.10

### 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.10",
"version": "0.0.11",
"private": true,
"dependencies": {
"@open-pioneer/base-theme": "workspace:^",
Expand Down
6 changes: 6 additions & 0 deletions src/samples/extension-sample/extension-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# extension-app

## 0.0.11

### Patch Changes

- @open-pioneer/runtime@2.0.1

## 0.0.10

### 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.10",
"version": "0.0.11",
"private": true,
"main": "index",
"dependencies": {
Expand Down
10 changes: 10 additions & 0 deletions src/samples/http-sample/http-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# http-app

## 0.0.11

### Patch Changes

- Updated dependencies [a18d227]
- Updated dependencies [a18d227]
- @open-pioneer/core@1.2.0
- @open-pioneer/http@2.1.0
- @open-pioneer/runtime@2.0.1

## 0.0.10

### 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.10",
"version": "0.0.11",
"private": true,
"dependencies": {
"@open-pioneer/chakra-integration": "workspace:^",
Expand Down
6 changes: 6 additions & 0 deletions src/samples/i18n-howto/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# i18n-howto-app

## 0.0.11

### Patch Changes

- @open-pioneer/runtime@2.0.1

## 0.0.10

### 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.10",
"version": "0.0.11",
"private": true,
"dependencies": {
"@open-pioneer/runtime": "workspace:^",
Expand Down
7 changes: 7 additions & 0 deletions src/samples/i18n-sample/i18n-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# i18n-app

## 0.0.11

### Patch Changes

- @open-pioneer/runtime@2.0.1
- @open-pioneer/integration@2.0.1

## 0.0.10

### 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.10",
"version": "0.0.11",
"private": true,
"dependencies": {
"@open-pioneer/runtime": "workspace:^",
Expand Down
8 changes: 8 additions & 0 deletions src/samples/properties-sample/properties-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# properties-app

## 0.0.11

### Patch Changes

- Updated dependencies [a18d227]
- @open-pioneer/core@1.2.0
- @open-pioneer/runtime@2.0.1

## 0.0.10

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

## 0.0.11

### Patch Changes

- @open-pioneer/runtime@2.0.1

## 0.0.10

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

0 comments on commit d7da0a1

Please sign in to comment.