Skip to content

Commit

Permalink
Version Packages (#682)
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 Sep 28, 2023
1 parent 08e008e commit 5688349
Show file tree
Hide file tree
Showing 15 changed files with 44 additions and 45 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-meals-cheer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/funny-bikes-crash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lemon-ghosts-battle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/metal-humans-beg.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/soft-countries-invite.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/witty-zoos-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/yellow-mugs-rhyme.md

This file was deleted.

11 changes: 11 additions & 0 deletions apps/demo-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# demo-react

## 0.2.5

### Patch Changes

- 57dcdaf: ThebeServerProvider will no longer replace an existing server on rerender if that server is ready and has user server URL.
- 57dcdaf: Hooks no longer throw but return empty or uninitialised objects instead, this allows for much more flexibility in how respective providers are rendered.
- Updated dependencies [08e008e]
- Updated dependencies [57dcdaf]
- Updated dependencies [57dcdaf]
- [email protected]

## 0.2.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/demo-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo-react",
"version": "0.2.4",
"version": "0.2.5",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
Expand All @@ -17,7 +17,7 @@
"react-router-dom": "^6.8.2",
"react-scripts": "5.0.1",
"sort-by": "^1.2.0",
"thebe-react": "^0.3.0",
"thebe-react": "^0.3.3",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
Expand Down
10 changes: 10 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# thebe-core

## 0.3.3

### Patch Changes

- 87395cb: Changed how binder urls are built to use a RepoProviderSpec which can be extended by callers of ThebeServer to include custom specs.
- 08e008e: Fixed error in event trigger invocation that caused an exception on binder conneciton failures
- 57dcdaf: Add check call for user server status
- 08e008e: Emit an error event for exceptions thrown during the binder url formation, including for unknown providers.
- [email protected]

## 0.3.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thebe-core",
"version": "0.3.2",
"version": "0.3.3",
"description": "Typescript based core functionality for Thebe",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down Expand Up @@ -72,7 +72,7 @@
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"thebe-lite": "^0.3.2",
"thebe-lite": "^0.3.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
Expand All @@ -83,7 +83,7 @@
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"thebe-lite": "^0.3.2"
"thebe-lite": "^0.3.3"
},
"dependencies": {
"@jupyter-widgets/base": "^6.0.1",
Expand Down
2 changes: 2 additions & 0 deletions packages/lite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# thebe-lite

## 0.3.3

## 0.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thebe-lite",
"version": "0.3.2",
"version": "0.3.3",
"description": "Thebe extension library for WASM kernels via JupyterLite",
"main": "dist/lib/thebe-lite.min.js",
"types": "dist/types/index.d.ts",
Expand Down
13 changes: 13 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# thebe-react

## 0.3.3

### Patch Changes

- 08e008e: Move error handler for the server out of hook and up into the ThebeServerProvider allowing for consistent reactions to an error state accross page navigation.
- 57dcdaf: ThebeServerProvider will no longer replace an existing server on rerender if that server is ready and has user server URL.
- 57dcdaf: Hooks no longer throw but return empty or uninitialised objects instead, this allows for much more flexibility in how respective providers are rendered.
- Updated dependencies [87395cb]
- Updated dependencies [08e008e]
- Updated dependencies [57dcdaf]
- Updated dependencies [08e008e]
- [email protected]

## 0.3.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thebe-react",
"version": "0.3.2",
"version": "0.3.3",
"sideEffects": false,
"description": "React providers and components for thebe-core",
"main": "dist/index.js",
Expand Down Expand Up @@ -45,7 +45,7 @@
"@jupyterlab/nbformat": "^3.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"thebe-core": "^0.3.2"
"thebe-core": "^0.3.3"
},
"devDependencies": {
"@types/react": "^18.0.0",
Expand Down

0 comments on commit 5688349

Please sign in to comment.