chore!: drop really, really old node support
This commit is contained in:
parent
c57a08f0cd
commit
604b42c7ef
|
@ -301,7 +301,10 @@ For backwards compatibility with v1, the non-stringified `message` is the same a
|
||||||
|
|
||||||
Minor Breaking changes (with a major version bump):
|
Minor Breaking changes (with a major version bump):
|
||||||
|
|
||||||
- v3.0.0 - reworked error messages (also available in v2.1.0 as `client_message`)
|
- v3.0.0
|
||||||
- v2.0.0 - changes from the default `issuers = ["*"]` to requiring that an issuer (or public jwk for verification) is specified
|
- reworked error messages (also available in v2.1.0 as `client_message`)
|
||||||
|
- started using `let` and template strings (drops _really_ old node compat)
|
||||||
|
- v2.0.0
|
||||||
|
- changes from the default `issuers = ["*"]` to requiring that an issuer (or public jwk for verification) is specified
|
||||||
|
|
||||||
See other changes in [CHANGELOG.md](./CHANGELOG.md).
|
See other changes in [CHANGELOG.md](./CHANGELOG.md).
|
||||||
|
|
|
@ -22,8 +22,9 @@
|
||||||
function create(old, msg, code, status, details) {
|
function create(old, msg, code, status, details) {
|
||||||
/** @type AuthError */
|
/** @type AuthError */
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
var err = new Error(old);
|
let err = new Error(msg);
|
||||||
err.client_message = msg;
|
err.message = msg;
|
||||||
|
err._old_message = old;
|
||||||
err.code = code;
|
err.code = code;
|
||||||
err.status = status;
|
err.status = status;
|
||||||
if (details) {
|
if (details) {
|
||||||
|
|
Loading…
Reference in New Issue