Skip to content

Commit

Permalink
Bump 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed May 21, 2024
1 parent d0e85d1 commit 560d7c7
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

## master

## 0.9.0 (2024-05-21)

- Types improvements. ([@cmdoptesc][])

- Node 18+ is required.

## 0.8.1 (2024-03-27)

- Added `channel.whisper(...)`. ([@palkan][])
Expand Down Expand Up @@ -107,3 +113,4 @@ Each component takes care of subscribing and unsubsribing; the actual subscripti
[@charlie-wasp]: https://github.com/charlie-wasp
[@TheSeally]: https://github.com/TheSeally
[@ardecvz]: https://github.com/ardecvz
[@cmdoptesc]: https://github.com/cmdoptesc
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## master

## 0.9.0 (2024-05-21)

- Types improvements. ([@cmdoptesc][])

- Node 18+ is required.

## 0.8.3 (2024-04-09)

- Fix closing WebSocket right after opening. ([@palkan][])
Expand Down Expand Up @@ -214,3 +220,4 @@ Each component takes care of subscribing and unsubsribing; the actual subscripti
[@TheSeally]: https://github.com/TheSeally
[@lokkirill]: https://github.com/lokkirill
[@ardecvz]: https://github.com/ardecvz
[@cmdoptesc]: https://github.com/cmdoptesc
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@anycable/core",
"version": "0.8.3",
"version": "0.9.0",
"description": "AnyCable JavaScript client library core functionality",
"keywords": [
"anycable",
"client",
"websocket"
],
"engines": {
"node": "^14.0.0 || >=16.0.0"
"node": ">=18.0.0"
},
"homepage": "https://anycable.io/",
"repository": "https://github.com/anycable/anycable-client",
Expand Down
4 changes: 4 additions & 0 deletions packages/long-polling/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master

## 0.3.0 (2024-05-21)

- Require `@anycable/core` ^0.9.0.

## 0.2.0 (2024-03-14)

- Require `@anycable/core` ^0.8.0.
Expand Down
6 changes: 3 additions & 3 deletions packages/long-polling/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@anycable/long-polling",
"version": "0.2.0",
"version": "0.3.0",
"description": "Long-polling transport for AnyCable client",
"engines": {
"node": "^14.0.0 || >=16.0.0"
"node": ">=18.0.0"
},
"keywords": [
"anycable",
Expand All @@ -22,7 +22,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@anycable/core": "^0.8.0"
"@anycable/core": "^0.9.0"
},
"devDependencies": {
"@types/node-fetch": "^2.6.4",
Expand Down
4 changes: 4 additions & 0 deletions packages/msgpack-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master

## 0.6.0 (2024-05-21)

- Require `@anycable/core` ^0.9.0.

## 0.5.0 (2024-03-14)

- Require `@anycable/core` ^0.8.0.
Expand Down
4 changes: 2 additions & 2 deletions packages/msgpack-encoder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anycable/msgpack-encoder",
"version": "0.4.0",
"version": "0.5.0",
"description": "Msgpack encoder for AnyCable client",
"keywords": [
"anycable",
Expand All @@ -19,7 +19,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@anycable/core": "^0.8.0",
"@anycable/core": "^0.9.0",
"@ygoe/msgpack": "^1.0.0"
}
}
4 changes: 4 additions & 0 deletions packages/protobuf-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master

## 0.6.0 (2024-05-21)

- Require `@anycable/core` ^0.9.0.

## 0.5.0 (2024-03-14)

- Require `@anycable/core` ^0.8.0.
Expand Down
4 changes: 2 additions & 2 deletions packages/protobuf-encoder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anycable/protobuf-encoder",
"version": "0.5.0",
"version": "0.6.0",
"description": "Protobuf encoder for AnyCable client",
"keywords": [
"anycable",
Expand All @@ -19,7 +19,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@anycable/core": "^0.8.0",
"@anycable/core": "^0.9.0",
"@ygoe/msgpack": "^1.0.0",
"protobufjs": "^7.2.1"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/turbo-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master

## 0.6.0

- Require `@anycable/core` ^0.9.0.

## 0.5.0

- Require `@anycable/core` ^0.8.0.
Expand Down
4 changes: 2 additions & 2 deletions packages/turbo-stream/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anycable/turbo-stream",
"version": "0.5.0",
"version": "0.6.0",
"description": "AnyCable Client plugin to support Turbo Streams",
"engines": {
"node": ">=8.3.0"
Expand All @@ -24,7 +24,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@anycable/core": "^0.8.0"
"@anycable/core": "^0.9.0"
},
"peerDependencies": {
"@hotwired/turbo": ">= 7.0"
Expand Down
4 changes: 4 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master

## 0.9.0

- Require `@anycable/core` ^0.9.0.

## 0.8.0

- Require `@anycable/core` ^0.8.0.
Expand Down
4 changes: 2 additions & 2 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anycable/web",
"version": "0.8.0",
"version": "0.9.0",
"description": "AnyCable JavaScript client for web",
"keywords": [
"anycable",
Expand All @@ -21,6 +21,6 @@
"./package.json": "./package.json"
},
"dependencies": {
"@anycable/core": "^0.8.0"
"@anycable/core": "^0.9.0"
}
}

0 comments on commit 560d7c7

Please sign in to comment.