Skip to content

Commit 701ffd8

Browse files
committed
v13.0.0
1 parent 8c76513 commit 701ffd8

File tree

35 files changed

+407
-62
lines changed

35 files changed

+407
-62
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [13.0.0](https://github.com/serialport/node-serialport/compare/v12.0.0...v13.0.0) (2024-12-24)
7+
8+
9+
### Bug Fixes
10+
11+
* bad node modules? ([1b412d5](https://github.com/serialport/node-serialport/commit/1b412d5a2de4b8bdf29d83dd657072a64d6337d9))
12+
* cleanup some administrative stuff for parser-start-end ([929ebf8](https://github.com/serialport/node-serialport/commit/929ebf8a451c95632ab14281072c8d36e6187f9f))
13+
* linting ([#2966](https://github.com/serialport/node-serialport/issues/2966)) ([867d8d2](https://github.com/serialport/node-serialport/commit/867d8d2eeb2ec76573991813d66cc99a0575db1b))
14+
* merge conflicts and package-lock.json ([f07d27d](https://github.com/serialport/node-serialport/commit/f07d27dd12b924604eef86e76fb13c58e646c6ae))
15+
* old actions ([0521cc7](https://github.com/serialport/node-serialport/commit/0521cc70035170ac490f299e4720932498c8d26e))
16+
17+
18+
### chore
19+
20+
* Upgrade to @serialport/bindings-cpp 13 ([#2963](https://github.com/serialport/node-serialport/issues/2963)) ([a4ea1fe](https://github.com/serialport/node-serialport/commit/a4ea1fe7ad73d45eae642634aa1e17fc640b1368))
21+
22+
23+
### Features
24+
25+
* add abilitiy for multiple delimitiers and multibyte delimiters to packet length parser ([a875f5b](https://github.com/serialport/node-serialport/commit/a875f5b3ba7e916adba95e007696eb6b01615a11))
26+
27+
28+
### BREAKING CHANGES
29+
30+
* This upgrade brings node 20 as the lowest supported version - no other changes
31+
32+
33+
34+
35+
636
# [12.0.0](https://github.com/serialport/node-serialport/compare/v11.0.1...v12.0.0) (2023-08-29)
737

838
### Bug Fixes

lerna.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2-
"packages": ["packages/*"],
2+
"packages": [
3+
"packages/*"
4+
],
35
"command": {
46
"publish": {
57
"conventionalCommits": true
68
}
79
},
8-
"version": "12.0.0",
10+
"version": "13.0.0",
911
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
1012
}

package-lock.json

Lines changed: 57 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/list/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [13.0.0](https://github.com/serialport/node-serialport/compare/v12.0.0...v13.0.0) (2024-12-24)
7+
8+
9+
### Bug Fixes
10+
11+
* linting ([#2966](https://github.com/serialport/node-serialport/issues/2966)) ([867d8d2](https://github.com/serialport/node-serialport/commit/867d8d2eeb2ec76573991813d66cc99a0575db1b))
12+
13+
14+
### chore
15+
16+
* Upgrade to @serialport/bindings-cpp 13 ([#2963](https://github.com/serialport/node-serialport/issues/2963)) ([a4ea1fe](https://github.com/serialport/node-serialport/commit/a4ea1fe7ad73d45eae642634aa1e17fc640b1368))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* This upgrade brings node 20 as the lowest supported version - no other changes
22+
23+
24+
25+
26+
627
# [12.0.0](https://github.com/serialport/node-serialport/compare/v11.0.1...v12.0.0) (2023-08-29)
728

829
### Bug Fixes

packages/list/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@serialport/list",
3-
"version": "12.0.0",
3+
"version": "13.0.0",
44
"main": "./dist/index.js",
55
"types": "./dist/index.d.ts",
66
"bin": {

packages/parser-byte-length/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [13.0.0](https://github.com/serialport/node-serialport/compare/v12.0.0...v13.0.0) (2024-12-24)
7+
8+
9+
### chore
10+
11+
* Upgrade to @serialport/bindings-cpp 13 ([#2963](https://github.com/serialport/node-serialport/issues/2963)) ([a4ea1fe](https://github.com/serialport/node-serialport/commit/a4ea1fe7ad73d45eae642634aa1e17fc640b1368))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* This upgrade brings node 20 as the lowest supported version - no other changes
17+
18+
19+
20+
21+
622
# [12.0.0](https://github.com/serialport/node-serialport/compare/v11.0.1...v12.0.0) (2023-08-29)
723

824
**Note:** Version bump only for package @serialport/parser-byte-length

packages/parser-byte-length/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@serialport/parser-byte-length",
3-
"version": "12.0.0",
3+
"version": "13.0.0",
44
"main": "./dist/index.js",
55
"types": "./dist/index.d.ts",
66
"engines": {

packages/parser-cctalk/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [13.0.0](https://github.com/serialport/node-serialport/compare/v12.0.0...v13.0.0) (2024-12-24)
7+
8+
9+
### chore
10+
11+
* Upgrade to @serialport/bindings-cpp 13 ([#2963](https://github.com/serialport/node-serialport/issues/2963)) ([a4ea1fe](https://github.com/serialport/node-serialport/commit/a4ea1fe7ad73d45eae642634aa1e17fc640b1368))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* This upgrade brings node 20 as the lowest supported version - no other changes
17+
18+
19+
20+
21+
622
# [12.0.0](https://github.com/serialport/node-serialport/compare/v11.0.1...v12.0.0) (2023-08-29)
723

824
**Note:** Version bump only for package @serialport/parser-cctalk

packages/parser-cctalk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@serialport/parser-cctalk",
3-
"version": "12.0.0",
3+
"version": "13.0.0",
44
"main": "./dist/index.js",
55
"types": "./dist/index.d.ts",
66
"scripts": {

packages/parser-delimiter/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [13.0.0](https://github.com/serialport/node-serialport/compare/v12.0.0...v13.0.0) (2024-12-24)
7+
8+
9+
### chore
10+
11+
* Upgrade to @serialport/bindings-cpp 13 ([#2963](https://github.com/serialport/node-serialport/issues/2963)) ([a4ea1fe](https://github.com/serialport/node-serialport/commit/a4ea1fe7ad73d45eae642634aa1e17fc640b1368))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* This upgrade brings node 20 as the lowest supported version - no other changes
17+
18+
19+
20+
21+
622
# [12.0.0](https://github.com/serialport/node-serialport/compare/v11.0.1...v12.0.0) (2023-08-29)
723

824
**Note:** Version bump only for package @serialport/parser-delimiter

packages/parser-delimiter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@serialport/parser-delimiter",
33
"main": "./dist/index.js",
44
"types": "./dist/index.d.ts",
5-
"version": "12.0.0",
5+
"version": "13.0.0",
66
"engines": {
77
"node": ">=20.0.0"
88
},

0 commit comments

Comments
 (0)