From a7dff9c6dc55f6b200550b3b1ec803bf8edd7c8d Mon Sep 17 00:00:00 2001 From: chimurai <655241+chimurai@users.noreply.github.com> Date: Sun, 21 Apr 2024 13:09:14 +0000 Subject: [PATCH] chore(package): release v3.0.1 --- .editorconfig | 4 ++-- CHANGELOG.md | 18 +++++++++--------- README.md | 2 +- jest.config.js | 2 +- package.json | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.editorconfig b/.editorconfig index 9d5a4919..d554dfef 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,6 +13,6 @@ trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false -# Matches the exact files either package.json or .travis.yml -[{package.json,.travis.yml}] +# Matches the exact files +[{package.json}] indent_size = 2 diff --git a/CHANGELOG.md b/CHANGELOG.md index f9a29824..aa751597 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,14 @@ # Changelog -## [next](https://github.com/chimurai/http-proxy-middleware/releases) - -- fix(type): fix RequestHandler return type -- refactor(errors): improve pathFilter error message -- fix(logger-plugin): fix missing target port -- ci(package): npm package provenance -- fix(logger-plugin): log target port when router option is used -- refactor: fix circular dependencies -- fix(fix-request-body): support '+json' content-type suffix +## [v3.0.1](https://github.com/chimurai/http-proxy-middleware/releases/tag/v3.0.1) + +- fix(type): fix RequestHandler return type ([#980](https://github.com/chimurai/http-proxy-middleware/pull/980)) +- refactor(errors): improve pathFilter error message ([#987](https://github.com/chimurai/http-proxy-middleware/pull/987)) +- fix(logger-plugin): fix missing target port ([#989](https://github.com/chimurai/http-proxy-middleware/pull/989)) +- ci(package): npm package provenance ([#991](https://github.com/chimurai/http-proxy-middleware/pull/1015)) +- fix(logger-plugin): log target port when router option is used ([#1001](https://github.com/chimurai/http-proxy-middleware/pull/1001)) +- refactor: fix circular dependencies ([#1010](https://github.com/chimurai/http-proxy-middleware/pull/1010)) +- fix(fix-request-body): support '+json' content-type suffix ([#1015](https://github.com/chimurai/http-proxy-middleware/pull/1015)) ## [v3.0.0](https://github.com/chimurai/http-proxy-middleware/releases/tag/v3.0.0) diff --git a/README.md b/README.md index a66df5f2..4051dbd3 100644 --- a/README.md +++ b/README.md @@ -645,4 +645,4 @@ $ yarn spellcheck The MIT License (MIT) -Copyright (c) 2015-2022 Steven Chim +Copyright (c) 2015-2024 Steven Chim diff --git a/jest.config.js b/jest.config.js index 1e6c7266..8975052b 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,4 +1,4 @@ -/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +/** @type {import('jest').Config} */ module.exports = { preset: 'ts-jest', testEnvironment: 'node', diff --git a/package.json b/package.json index a8530c0b..ec58b8c1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "http-proxy-middleware", "type": "commonjs", - "version": "3.0.1-beta.1", + "version": "3.0.1", "description": "The one-liner node.js proxy middleware for connect, express, next.js and more", "main": "dist/index.js", "types": "dist/index.d.ts",