Skip to content

Commit

Permalink
chore: prepare the release of version 0.26.0 (#307)
Browse files Browse the repository at this point in the history
* docs: add changelog for version 0.26.0

* style: remove whitespace from changelog

* Bump version to 0.26.0

* fixup! docs: add changelog for version 0.26.0
  • Loading branch information
JKRhb authored Nov 5, 2021
1 parent f75c366 commit bcba880
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
25 changes: 22 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 0.26.0
*This version supports all current LTS versions of Node.js (12.x, 14.x, 16.x). Older versions might still work but are untested from now on!*

* (JKRhb) Fix coding style with regard to StandardJS
* (JKRhb) chore: update dependencies
* (JKRhb) chore: remove Node version 10.x from CI testing
* (JKRhb) docs: Let content-format registry link point to IANA
* (JKRhb) fix: fix bugs in two examples
* (JKRhb) fix(agent): reset _lastMessageId to 0
* (JKRhb) fix(server): allow limiting to only one server instance per port number
* (JKRhb) feat: add typescript declarations
* (JKRhb) feat: add more Content-Formats
* (JKRhb) test: add more tests for helper functions
* (JKRhb) feat: add support for FETCH, PATCH, and iPATCH
* (JKRhb) chore: add macos-latest to CI pipeline
* (JKRhb) Various refactorings and cleanup
* (JKRhb) Add strict null and type checking
* (JKRhb) Improve README/documentation

## 0.25.0
*This version supports all current LTS versions of Node.js (10.x, 12.x, 14.x, 16.x). Older versions might still work but are untested from now on!*

Expand All @@ -20,11 +39,11 @@
* (blankm) Fix: Retrysend broken when passing socket to agent
* (mateusz-) Fix: fix missing responses to non-confirmable multicast request
* (JcBernack) Fix: update Buffer usage (prevent deprecation wanrings)
* (JsonMa) Fix: fix agent config bug
* (JsonMa) Fix: fix agent config bug
* (Apollon77) Fix: Add missing checks for Buffer length before reading from it
* (Apollon77) Update all dependencies
* (JsonMa) Fix: remove useless variables
* (JsonMa) Fix: remove useless variables
* (JcBernack) Fix: Fix more flag during block-wise transfer

## 0.23.1 (and below)
... can be found in the [Releases list on GitHub](https://github.com/mcollina/node-coap/releases)
... can be found in the [Releases list on GitHub](https://github.com/mcollina/node-coap/releases)
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coap",
"version": "0.25.0",
"version": "0.26.0",
"description": "A CoAP library for node modelled after 'http'",
"main": "index.js",
"types": "./index.d.ts",
Expand Down Expand Up @@ -65,7 +65,9 @@
"node": ">=10"
},
"standardx": {
"env": ["jest"]
"env": [
"jest"
]
},
"eslintConfig": {
"env": {
Expand All @@ -74,7 +76,10 @@
"node": true
},
"rules": {
"indent": ["error", 4]
"indent": [
"error",
4
]
}
}
}

0 comments on commit bcba880

Please sign in to comment.