Skip to content

Commit

Permalink
v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aholstenson committed Dec 18, 2021
1 parent a0bee4f commit aaab2f5
Show file tree
Hide file tree
Showing 24 changed files with 169 additions and 29 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/compare/v0.11.0...v0.12.0) (2021-12-18)


### Bug Fixes

* **core:** Do not duplicate peers in TestNetwork ([36d6e66](https://github.com/aholstenson/ataraxia/commit/36d6e667ba7f3b6fcc0cf831fc40b68c9af8dd99))
* **core:** Fix SynchronizedValues when setLocal called multiple times ([31a0848](https://github.com/aholstenson/ataraxia/commit/31a084888c31a67690cedf58db9e08dcdf1a9719))
* **core:** Own instance should not be visible as node ([accc64c](https://github.com/aholstenson/ataraxia/commit/accc64c052dd9cc1af187ee3c52b27e50fe7d157))


### Features

* **core:** Add gossip for group membership ([46420ae](https://github.com/aholstenson/ataraxia/commit/46420aeee0ee458433c768bfd291ff91b6e1df4f))
* **core:** Add Gossiper helper ([d5cc740](https://github.com/aholstenson/ataraxia/commit/d5cc7400afd571afe96ee711daee6a38a70324d8))
* **core:** Apper peer names to debug namespace of TestNetwork ([4022d7f](https://github.com/aholstenson/ataraxia/commit/4022d7f94074eaa522ce7a53ae2c211000739768))
* **core:** Group interface to represent entire network or sub-sets of it ([061bd6b](https://github.com/aholstenson/ataraxia/commit/061bd6b7d7bdd37be75fdb5a28b522e30e7948a9))
* **core:** Introduce groups joinable via NamedGroup ([b65b5a8](https://github.com/aholstenson/ataraxia/commit/b65b5a80ef376a4fb2b71119f26b11f1bf0dad63))
* **core:** Shared Debugger abstraction ([689e63e](https://github.com/aholstenson/ataraxia/commit/689e63e0a52dc65371039d7aecd7d56a8114f4b1))
* **core:** SynchronizedValues for easy sharing of values between nodes ([8996117](https://github.com/aholstenson/ataraxia/commit/89961178914c75e1fa4a2155ae676a23c636b030))
* **transport-streams:** Make local and remote public key available for encrypted streams ([a35bbed](https://github.com/aholstenson/ataraxia/commit/a35bbedc57d51a4caa9b438d661352c7567f3c7e))





# [0.11.0](https://github.com/aholstenson/ataraxia/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"conventionalCommits": true
}
},
"version": "0.11.0"
"version": "0.12.0"
}
12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/cli/compare/v0.11.0...v0.12.0) (2021-12-18)


### Features

* **core:** Group interface to represent entire network or sub-sets of it ([061bd6b](https://github.com/aholstenson/ataraxia/tree/master/packages/cli/commit/061bd6b7d7bdd37be75fdb5a28b522e30e7948a9))
* **core:** Introduce groups joinable via NamedGroup ([b65b5a8](https://github.com/aholstenson/ataraxia/tree/master/packages/cli/commit/b65b5a80ef376a4fb2b71119f26b11f1bf0dad63))





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/cli/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-cli",
"version": "0.11.0",
"version": "0.12.0",
"description": "Command-line client for inspecting Ataraxia networks",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/cli",
Expand All @@ -20,10 +20,10 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"ataraxia": "^0.11.0",
"ataraxia-hyperswarm": "^0.11.0",
"ataraxia-local": "^0.11.0",
"ataraxia-tcp": "^0.11.0",
"ataraxia": "^0.12.0",
"ataraxia-hyperswarm": "^0.12.0",
"ataraxia-local": "^0.12.0",
"ataraxia-tcp": "^0.12.0",
"chalk": "^5.0.0",
"minimatch": "^3.0.4",
"prettyjson": "^1.2.1",
Expand Down
24 changes: 24 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/core/compare/v0.11.0...v0.12.0) (2021-12-18)


### Bug Fixes

* **core:** Do not duplicate peers in TestNetwork ([36d6e66](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/36d6e667ba7f3b6fcc0cf831fc40b68c9af8dd99))
* **core:** Fix SynchronizedValues when setLocal called multiple times ([31a0848](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/31a084888c31a67690cedf58db9e08dcdf1a9719))
* **core:** Own instance should not be visible as node ([accc64c](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/accc64c052dd9cc1af187ee3c52b27e50fe7d157))


### Features

* **core:** Add gossip for group membership ([46420ae](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/46420aeee0ee458433c768bfd291ff91b6e1df4f))
* **core:** Add Gossiper helper ([d5cc740](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/d5cc7400afd571afe96ee711daee6a38a70324d8))
* **core:** Apper peer names to debug namespace of TestNetwork ([4022d7f](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/4022d7f94074eaa522ce7a53ae2c211000739768))
* **core:** Group interface to represent entire network or sub-sets of it ([061bd6b](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/061bd6b7d7bdd37be75fdb5a28b522e30e7948a9))
* **core:** Introduce groups joinable via NamedGroup ([b65b5a8](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/b65b5a80ef376a4fb2b71119f26b11f1bf0dad63))
* **core:** Shared Debugger abstraction ([689e63e](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/689e63e0a52dc65371039d7aecd7d56a8114f4b1))
* **core:** SynchronizedValues for easy sharing of values between nodes ([8996117](https://github.com/aholstenson/ataraxia/tree/master/packages/core/commit/89961178914c75e1fa4a2155ae676a23c636b030))





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/core/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia",
"version": "0.11.0",
"version": "0.12.0",
"description": "P2P messaging over mesh networks",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/core",
Expand All @@ -27,7 +27,7 @@
"dependencies": {
"@stablelib/cbor": "^1.0.1",
"@tyriar/fibonacci-heap": "^2.0.9",
"ataraxia-transport": "^0.11.0",
"ataraxia-transport": "^0.12.0",
"atvik": "^3.2.0",
"debug": "^4.3.3"
}
Expand Down
8 changes: 8 additions & 0 deletions packages/hyperswarm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/hyperswarm/compare/v0.11.0...v0.12.0) (2021-12-18)

**Note:** Version bump only for package ataraxia-hyperswarm





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/hyperswarm/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
6 changes: 3 additions & 3 deletions packages/hyperswarm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-hyperswarm",
"version": "0.11.0",
"version": "0.12.0",
"description": "Hyperswarm transport for Ataraxia P2P messaging",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/hyperswarm",
Expand All @@ -14,8 +14,8 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"ataraxia-transport": "^0.11.0",
"ataraxia-transport-streams": "^0.11.0",
"ataraxia-transport": "^0.12.0",
"ataraxia-transport-streams": "^0.12.0",
"debug": "^4.3.3",
"hyperswarm": "^2.15.3"
}
Expand Down
8 changes: 8 additions & 0 deletions packages/local/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/local/compare/v0.11.0...v0.12.0) (2021-12-18)

**Note:** Version bump only for package ataraxia-local





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/local/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
6 changes: 3 additions & 3 deletions packages/local/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-local",
"version": "0.11.0",
"version": "0.12.0",
"description": "Machine-local transport for Ataraxia P2P messaging",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/local",
Expand All @@ -14,8 +14,8 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"ataraxia-transport": "^0.11.0",
"ataraxia-transport-streams": "^0.11.0",
"ataraxia-transport": "^0.12.0",
"ataraxia-transport-streams": "^0.12.0",
"atvik": "^3.2.0",
"debug": "^4.3.3",
"local-machine-network": "^1.0.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/service-contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/service-contracts/compare/v0.11.0...v0.12.0) (2021-12-18)

**Note:** Version bump only for package ataraxia-service-contracts





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/service-contracts/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
2 changes: 1 addition & 1 deletion packages/service-contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-service-contracts",
"version": "0.11.0",
"version": "0.12.0",
"description": "Utils for defining contracts for use with ataraxia-services",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/service-contracts",
Expand Down
12 changes: 12 additions & 0 deletions packages/services/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/services/compare/v0.11.0...v0.12.0) (2021-12-18)


### Features

* **core:** Group interface to represent entire network or sub-sets of it ([061bd6b](https://github.com/aholstenson/ataraxia/tree/master/packages/services/commit/061bd6b7d7bdd37be75fdb5a28b522e30e7948a9))
* **core:** Introduce groups joinable via NamedGroup ([b65b5a8](https://github.com/aholstenson/ataraxia/tree/master/packages/services/commit/b65b5a80ef376a4fb2b71119f26b11f1bf0dad63))





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/services/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
6 changes: 3 additions & 3 deletions packages/services/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-services",
"version": "0.11.0",
"version": "0.12.0",
"description": "Services with RPC and events over Ataraxia mesh network",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/services",
Expand All @@ -19,8 +19,8 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"ataraxia": "^0.11.0",
"ataraxia-service-contracts": "^0.11.0",
"ataraxia": "^0.12.0",
"ataraxia-service-contracts": "^0.12.0",
"atvik": "^3.2.0",
"debug": "^4.3.3"
}
Expand Down
8 changes: 8 additions & 0 deletions packages/tcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/tcp/compare/v0.11.0...v0.12.0) (2021-12-18)

**Note:** Version bump only for package ataraxia-tcp





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/tcp/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
6 changes: 3 additions & 3 deletions packages/tcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-tcp",
"version": "0.11.0",
"version": "0.12.0",
"description": "TCP transport for Ataraxia P2P messaging",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/tcp",
Expand All @@ -14,8 +14,8 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"ataraxia-transport": "^0.11.0",
"ataraxia-transport-streams": "^0.11.0",
"ataraxia-transport": "^0.12.0",
"ataraxia-transport-streams": "^0.12.0",
"debug": "^4.3.3",
"tinkerhub-discovery": "^0.6.0",
"tinkerhub-mdns": "^0.5.1"
Expand Down
11 changes: 11 additions & 0 deletions packages/transport-streams/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/transport-streams/compare/v0.11.0...v0.12.0) (2021-12-18)


### Features

* **transport-streams:** Make local and remote public key available for encrypted streams ([a35bbed](https://github.com/aholstenson/ataraxia/tree/master/packages/transport-streams/commit/a35bbedc57d51a4caa9b438d661352c7567f3c7e))





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/transport-streams/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
4 changes: 2 additions & 2 deletions packages/transport-streams/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-transport-streams",
"version": "0.11.0",
"version": "0.12.0",
"description": "Utilities for Ataraxia transports that use Node streams.",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/transport-streams",
Expand All @@ -20,7 +20,7 @@
"dependencies": {
"@hyperswarm/secret-stream": "^5.1.4",
"@stablelib/cbor": "^1.0.1",
"ataraxia-transport": "^0.11.0",
"ataraxia-transport": "^0.12.0",
"debug": "^4.3.3"
}
}
8 changes: 8 additions & 0 deletions packages/transport/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/transport/compare/v0.11.0...v0.12.0) (2021-12-18)

**Note:** Version bump only for package ataraxia-transport





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/transport/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
2 changes: 1 addition & 1 deletion packages/transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-transport",
"version": "0.11.0",
"version": "0.12.0",
"description": "Base for for connecting to and communicating with peers in an Ataraxia network",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/transport",
Expand Down
8 changes: 8 additions & 0 deletions packages/ws-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/ws-client/compare/v0.11.0...v0.12.0) (2021-12-18)

**Note:** Version bump only for package ataraxia-ws-client





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/ws-client/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
4 changes: 2 additions & 2 deletions packages/ws-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ataraxia-ws-client",
"version": "0.11.0",
"version": "0.12.0",
"description": "WebSocket client for Ataraxia P2P messaging",
"license": "MIT",
"repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/ws-client",
Expand All @@ -17,7 +17,7 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"ataraxia-transport": "^0.11.0",
"ataraxia-transport": "^0.12.0",
"debug": "^4.3.3"
}
}
8 changes: 8 additions & 0 deletions packages/ws-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/ws-server/compare/v0.11.0...v0.12.0) (2021-12-18)

**Note:** Version bump only for package ataraxia-ws-server





# [0.11.0](https://github.com/aholstenson/ataraxia/tree/master/packages/ws-server/compare/v0.10.0...v0.11.0) (2021-06-17)


Expand Down
Loading

0 comments on commit aaab2f5

Please sign in to comment.