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.2.0 #484

Closed
wants to merge 3 commits 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
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## [Unreleased][unreleased]

## [3.2.0][] - 2023-12-10

- Remove `EventEmitter` polyfill, use polyfill from metautil 5.0.0
- Stop using deprecated `fetch` polyfill from metautil
- Do not add `online` event if we have no `window`
- Implement simple websocket server
- Fixed MetaReadable stream
- Fixed timeouts in unittests
- Package maintenance: update dependencies and eslint and CI configs

## [3.1.2][] - 2023-10-22

- Fix: proc timeout reached error detection
Expand Down Expand Up @@ -253,7 +263,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.1.2...HEAD
[unreleased]: https://github.com/metarhia/metacom/compare/v3.2.0...HEAD
[3.2.0]: https://github.com/metarhia/metacom/compare/v3.1.2...v3.2.0
[3.1.2]: https://github.com/metarhia/metacom/compare/v3.1.1...v3.1.2
[3.1.1]: https://github.com/metarhia/metacom/compare/v3.1.0...v3.1.1
[3.1.0]: https://github.com/metarhia/metacom/compare/v3.0.6...v3.1.0
Expand Down
118 changes: 59 additions & 59 deletions package-lock.json

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

22 changes: 12 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metacom",
"version": "3.1.2",
"version": "3.2.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 @@ -40,7 +40,9 @@
"files": [
"dist/",
"lib/",
"metacom.d.ts"
"metacom.d.ts",
"CHANGELOG.md",
"SECURITY.md"
],
"readmeFilename": "README.md",
"scripts": {
Expand All @@ -54,18 +56,18 @@
},
"dependencies": {
"metautil": "5.0.0",
"ws": "^8.14.0"
"ws": "^8.15.0"
},
"devDependencies": {
"@types/node": "^20.5.9",
"@types/ws": "^8.5.5",
"eslint": "^8.48.0",
"eslint-config-metarhia": "^8.2.1",
"eslint-config-prettier": "^9.0.0",
"@types/node": "^20.10.4",
"@types/ws": "^8.5.10",
"eslint": "^8.55.0",
"eslint-config-metarhia": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"metatests": "^0.8.2",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}