changelog 📝; minor tweak; 6.0.4

This commit is contained in:
Jannis R 2023-04-04 11:37:03 +02:00
parent ab3f3636ff
commit d6307aa24b
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5
3 changed files with 13 additions and 5 deletions

View file

@ -1,11 +1,18 @@
# Changelog # Changelog
## `6.0.4`
- 14c9805a `journeys()`: let `earlierRef`/`laterRef` fall back to `null` 🐛
- 8faf8ba5 [*DB* profile](../p/db): use ver `1.16` for `stop()` requests 🐛, update integration test fixture ✅
[🏷 `6.0.4`](https://github.com/public-transport/hafas-client/releases/tag/6.0.4), 2023-04-04
## `6.0.3` ## `6.0.3`
- e7602e6c `createClient()`: throw if userAgent is one of the documented ones 💥📝 - e7602e6c `createClient()`: throw if userAgent is one of the documented ones 💥📝
- 5910d625 docs: make user agent instructions more specific & actionable 📝 (related: [#286](https://github.com/public-transport/hafas-client/issues/286)) - 5910d625 docs: make user agent instructions more specific & actionable 📝 (related: [#286](https://github.com/public-transport/hafas-client/issues/286))
[🏷 `6.0.3`](https://github.com/public-transport/hafas-client/releases/tag/6.0.3), todo [🏷 `6.0.3`](https://github.com/public-transport/hafas-client/releases/tag/6.0.3), 2023-03-14
## `6.0.2` ## `6.0.2`
@ -64,7 +71,7 @@ Note that this version is not backwords-compatible with `5.*`. Check out [the mi
- b1c2eb9b `parseWarning()`: handle missing `common.himMsgEventL[].{f,t}Time` - b1c2eb9b `parseWarning()`: handle missing `common.himMsgEventL[].{f,t}Time`
- cef6dcaf `lib/request.js`: pass whole request body into `profile.transformReqBody()` - cef6dcaf `lib/request.js`: pass whole request body into `profile.transformReqBody()`
[🏷 `6.0.0`](https://github.com/public-transport/hafas-client/releases/tag/6.0.0), 2020-01-05 [🏷 `6.0.0`](https://github.com/public-transport/hafas-client/releases/tag/6.0.0), 2022-11-19
## `5.26.2` ## `5.26.2`

View file

@ -1,4 +1,4 @@
Copyright (c) 2022, Jannis R Copyright (c) 2023, Jannis R
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

View file

@ -1,7 +1,7 @@
{ {
"name": "hafas-client", "name": "hafas-client",
"description": "Client for HAFAS public transport APIs.", "description": "Client for HAFAS public transport APIs.",
"version": "6.0.3", "version": "6.0.4",
"type": "module", "type": "module",
"main": "index.js", "main": "index.js",
"files": [ "files": [
@ -26,7 +26,7 @@
"Benoit Deldicque (https://github.com/bddq)", "Benoit Deldicque (https://github.com/bddq)",
"roehrt" "roehrt"
], ],
"homepage": "https://github.com/public-transport/hafas-client/tree/6.0.3", "homepage": "https://github.com/public-transport/hafas-client/tree/6.0.4",
"repository": "public-transport/hafas-client", "repository": "public-transport/hafas-client",
"bugs": "https://github.com/public-transport/hafas-client/issues", "bugs": "https://github.com/public-transport/hafas-client/issues",
"funding": { "funding": {
@ -41,6 +41,7 @@
"api", "api",
"http" "http"
], ],
"packageManager": "npm@9.2.0",
"engines": { "engines": {
"node": ">=16" "node": ">=16"
}, },