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

Version 3.1.0 #460

Closed
wants to merge 1 commit into from
Closed
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
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased][unreleased]

## [3.1.0][] - 2023-10-06

- Decompose bind to init and listen to handle EADDRINUSE and escalate error
- Fix buffer length calculation for unicode strings
- Drop node.js 16 and 19 and update dependencies

## [3.0.6][] - 2023-09-13

- Log requests to static
Expand Down Expand Up @@ -239,7 +245,8 @@ Module stub v0.0.0 and all before 1.0.0 are experiments with syntactic and
binary structures and multiple different ideas originated from JSTP and old
protocols like USP and CLEAR.

[unreleased]: https://github.com/metarhia/metacom/compare/v3.0.6...HEAD
[unreleased]: https://github.com/metarhia/metacom/compare/v3.1.0...HEAD
[3.1.0]: https://github.com/metarhia/metacom/compare/v3.0.6...v3.1.0
[3.0.6]: https://github.com/metarhia/metacom/compare/v3.0.5...v3.0.6
[3.0.5]: https://github.com/metarhia/metacom/compare/v3.0.4...v3.0.5
[3.0.4]: https://github.com/metarhia/metacom/compare/v3.0.3...v3.0.4
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metacom",
"version": "3.0.6",
"version": "3.1.0",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Communication protocol for Metarhia stack with rpc, events, binary streams, memory and db access",
"license": "MIT",
Expand Down Expand Up @@ -53,7 +53,7 @@
"node": "18 || 20"
},
"dependencies": {
"metautil": "^3.12.0",
"metautil": "^3.13.0",
"ws": "^8.14.0"
},
"devDependencies": {
Expand Down
Loading