diff --git a/CHANGELOG.md b/CHANGELOG.md index ccd2ea62..d1f6d1b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,19 @@ All notable changes to this project will be documented in this auto-generated file. The format is based on [Conventional Commits][1]; this project adheres to [Semantic Versioning][2]. -## [4.0.0][3] (2024-01-15) +### [4.0.1][3] (2024-01-16) + +#### 🪄 Fixes + +- **src:** pass Next.js more accurate app route metadata ([09389fe][4]) + +# Changelog + +All notable changes to this project will be documented in this auto-generated +file. The format is based on [Conventional Commits][1]; +this project adheres to [Semantic Versioning][2]. + +## [4.0.0][5] (2024-1-15) ### 💥 Breaking Changes 💥 @@ -14,9 +26,6 @@ this project adheres to [Semantic Versioning][2]. This is instead of the old localhost string with the random port number, which is an implementation detail that should not have been exposed to end developers. -- `NtarhParameters` has been superseded by `NtarhInit`, - `NtarhInitAppRouter`, and `NtarhInitPagesRouter`. - - **The `handler` option of `testApiHandler` (i.e.** `testApiHandler({ handler })`) has been renamed to `pagesHandler`. It is otherwise functionally equivalent. @@ -24,21 +33,33 @@ this project adheres to [Semantic Versioning][2]. Those migrating from NTARH@<4, the process should be as simple as renaming `handler` to `pagesHandler` in your tests and getting on with your life. +- `NtarhParameters` has been superseded by `NtarhInit`, + `NtarhInitAppRouter`, and `NtarhInitPagesRouter`. + - `requestPatcher`, `reponsePatcher`, and `paramsPatcher` options of `testApiHandler({ ... })` can now be asynchronous and return Promises. `paramsPatcher` can additionally return a brand new `params` object that will overwrite the old one rather than merely augmenting it. +- `requestPatcher`, `reponsePatcher`, and `paramsPatcher` options + of `testApiHandler({ ... })` no longer support parenthetical shorthand notation. + For example, the following will cause a type error: + `testApiHandler({ paramsPatcher: (params) => (params.id = "some-id") })`. + - `testApiHandler({ ... })` now accepts the `appHandler` option. When this option is provided, the function signatures of the following options shift to support standard `Request`/`Response` parameters and return types where appropriate: `requestPatcher`, `responsePatcher`, and `paramsPatcher`. See the docs, or intellisense, for more details. -- `requestPatcher`, `reponsePatcher`, and `paramsPatcher` options - of `testApiHandler({ ... })` no longer support parenthetical shorthand notation. - For example, the following will cause a type error: - `testApiHandler({ paramsPatcher: (params) => (params.id = "some-id") })`. +- Minimum supported Node.js version is now 18.18.2 + +- Node-fetch has been replaced by Node's native fetch + function. There may be subtle API changes between the two. + +- The `pagesHandler` option of `testApiHandler` (i.e. + `testApiHandler({ pagesHandler })`) will **not** accept edge runtime routes. To + test your edge runtime routes, use the `appHandler` option instead. - This version of NTARH is now actively tracking a second Next.js internal export, one that is not guaranteed to be available before @@ -47,153 +68,138 @@ this project adheres to [Semantic Versioning][2]. `pagesHandler` will always work regardless of Next.js version until Vercel eventually removes the Pages Router functionality entirely. -- The `pagesHandler` option of `testApiHandler` (i.e. - `testApiHandler({ pagesHandler })`) will **not** accept edge runtime routes. To - test your edge runtime routes, use the `appHandler` option instead. - -- Minimum supported Node.js version is now 18.18.2 - -- Node-fetch has been replaced by Node's native fetch - function. There may be subtle API changes between the two. - #### ✨ Features -- Land initial App Router support ([e2d8865][4]) closes [#938][5], [#773][6] -- Retire use of node-fetch ([5574831][7]) closes [#946][8] -- **src:** warn when invoking testApiHandler with invalid property combos ([db599ac][9]) +- Land initial App Router support ([e2d8865][6]) closes [#938][7], [#773][8] +- Retire use of node-fetch ([5574831][9]) closes [#946][10] +- **src:** warn when invoking testApiHandler with invalid property combos ([db599ac][11]) #### 🪄 Fixes -- Loosen type checking for `NextApiHandler`s ([fdfec8c][10]) -- **src:** deeply summon res.json() return value into our realm ([59f54a5][11]) -- **src:** ensure all results of calling ::json on Requests and Responses are summoned into our realm ([5c5f9a4][12]) -- **src:** ensure AsyncLocalStorage is available globally (might fix [#875][13]) ([43680d9][14]) -- **src:** ensure global fetch is restored after testApiHandler terminates ([75d4e1f][15]) -- **src:** forcefully coerce request.body into a ReadableStream ([f715331][16]) -- **src:** hoist globalThis.AsyncLocalStorage initialization to be as soon as possible ([85bb8fa][17]) -- **src:** normalize pagesHandler into NextApiHandler (esm<->cjs interop) ([0133e11][18]) -- Use more accurate return type for app router patchers ([62f1d0b][19]) +- Loosen type checking for `NextApiHandler`s ([fdfec8c][12]) +- **src:** deeply summon res.json() return value into our realm ([59f54a5][13]) +- **src:** ensure all results of calling ::json on Requests and Responses are summoned into our realm ([5c5f9a4][14]) +- **src:** ensure AsyncLocalStorage is available globally (might fix [#875][15]) ([43680d9][16]) +- **src:** ensure global fetch is restored after testApiHandler terminates ([75d4e1f][17]) +- **src:** forcefully coerce request.body into a ReadableStream ([f715331][18]) +- **src:** hoist globalThis.AsyncLocalStorage initialization to be as soon as possible ([85bb8fa][19]) +- **src:** normalize pagesHandler into NextApiHandler (esm<->cjs interop) ([0133e11][20]) +- Use more accurate return type for app router patchers ([62f1d0b][21]) #### ⚙️ Build System -- **husky:** ensure hooks do not run on rebase ([913cbd0][20]) -- **package:** bump minimum supported node versions to maintained ([702cb44][21]) -- **package:** remove outdated properties ([dc23723][22]) +- **husky:** ensure hooks do not run on rebase ([913cbd0][22]) +- **package:** bump minimum supported node versions to maintained ([702cb44][23]) +- **package:** remove outdated properties ([dc23723][24]) #### 🧙🏿 Refactored -- **src:** ensure request url is consistent across router types ([d72ae87][23]) - -# Changelog - -All notable changes to this project will be documented in this auto-generated -file. The format is based on [Conventional Commits][1]; -this project adheres to [Semantic Versioning][2]. +- **src:** ensure request url is consistent across router types ([d72ae87][25]) -## [3.2.0][24] (2024-1-4) +## [3.2.0][26] (2024-1-4) #### ✨ Features -- Update headers for msw\@2 compatibility ([93b8a3c][25]) closes [#916][26] +- Update headers for msw\@2 compatibility ([93b8a3c][27]) closes [#916][28] -### [3.1.10][27] (2023-11-4) +### [3.1.10][29] (2023-11-4) #### 🪄 Fixes -- Ensure compat with next\@12.1.0 ([ca1da40][28]) closes [#887][29] +- Ensure compat with next\@12.1.0 ([ca1da40][30]) closes [#887][31] #### ⚙️ Build System -- Add core-js polyfills and have mercy on aging node versions ([a9d136b][30]) -- Modernize tooling ([db0223e][31]) -- Upgrade typescript-babel toolchain to nodenext ([e457064][32]) closes [#908][33] +- Add core-js polyfills and have mercy on aging node versions ([a9d136b][32]) +- Modernize tooling ([db0223e][33]) +- Upgrade typescript-babel toolchain to nodenext ([e457064][34]) closes [#908][35] #### 🔥 Reverted -- _"docs(readme): update badge links"_ ([be90d57][34]) +- _"docs(readme): update badge links"_ ([be90d57][36]) -### [3.1.8][35] (2023-1-3) +### [3.1.8][37] (2023-1-3) #### ⚙️ Build System -- **readme:** update maintainence badge and audit dependencies ([2a4ae05][36]) +- **readme:** update maintainence badge and audit dependencies ([2a4ae05][38]) -### [3.1.7][37] (2022-7-27) +### [3.1.7][39] (2022-7-27) #### ⚙️ Build System -- **package:** update dependencies ([4af52f4][38]) +- **package:** update dependencies ([4af52f4][40]) -### [3.1.6][39] (2022-6-30) +### [3.1.6][41] (2022-6-30) #### 🪄 Fixes -- Ensure non-object "headers" fetch argument is not mangled when mixing in default headers ([6e94142][40]) +- Ensure non-object "headers" fetch argument is not mangled when mixing in default headers ([6e94142][42]) -### [3.1.5][41] (2022-6-26) +### [3.1.5][43] (2022-6-26) #### 🪄 Fixes -- Fix MSW bypass override instructions and unit test ([405f84d][42]) +- Fix MSW bypass override instructions and unit test ([405f84d][44]) -### [3.1.4][43] (2022-6-26) +### [3.1.4][45] (2022-6-26) #### ⚙️ Build System -- **readme:** update MSW bypass override instructions under "test" entry in README ([b05e112][44]) +- **readme:** update MSW bypass override instructions under "test" entry in README ([b05e112][46]) -### [3.1.3][45] (2022-5-21) +### [3.1.3][47] (2022-5-21) #### ⚙️ Build System -- **package:** update dev-dependencies ([36a2c44][46]) +- **package:** update dev-dependencies ([36a2c44][48]) -### [3.1.2][47] (2022-3-23) +### [3.1.2][49] (2022-3-23) #### ⚙️ Build System -- **package:** update dependencies ([065b445][48]) +- **package:** update dependencies ([065b445][50]) -### [3.1.1][49] (2022-2-18) +### [3.1.1][51] (2022-2-18) #### 🪄 Fixes -- Ensure compat with next\@12.1.0 ([484d702][50]) closes [#487][51] +- Ensure compat with next\@12.1.0 ([484d702][52]) closes [#487][53] #### 🔥 Reverted -- _"refactor: update npm scripts, linting"_ ([77ad96d][52]) +- _"refactor: update npm scripts, linting"_ ([77ad96d][54]) -## [3.1.0][53] (2022-2-11) +## [3.1.0][55] (2022-2-11) #### ✨ Features -- Automatically add the x-msw-bypass ([21b4b92][54]) +- Automatically add the x-msw-bypass ([21b4b92][56]) #### ⚙️ Build System -- **deps:** bump next from 12.0.8 to 12.0.10 ([2a2f0b2][55]) -- **readme:** explain MSW compat default behavior ([0ee4ce5][56]) +- **deps:** bump next from 12.0.8 to 12.0.10 ([2a2f0b2][57]) +- **readme:** explain MSW compat default behavior ([0ee4ce5][58]) -### [3.0.3][57] (2022-2-5) +### [3.0.3][59] (2022-2-5) #### ⚙️ Build System -- **package:** bump node-fetch to 2.6.7 ([1e8cd85][58]) +- **package:** bump node-fetch to 2.6.7 ([1e8cd85][60]) -### [3.0.2][59] (2022-1-3) +### [3.0.2][61] (2022-1-3) #### ⚙️ Build System -- **readme:** update shields.io maintenance badge to 2022 ([84f74f5][60]) +- **readme:** update shields.io maintenance badge to 2022 ([84f74f5][62]) -### [3.0.1][61] (2021-12-27) +### [3.0.1][63] (2021-12-27) #### ⚙️ Build System -- **package:** retire use of sort-package-json fork ([a925da2][62]) +- **package:** retire use of sort-package-json fork ([a925da2][64]) -## [3.0.0][63] (2021-12-17) +## [3.0.0][65] (2021-12-17) ### 💥 Breaking Changes 💥 @@ -203,134 +209,134 @@ this project adheres to [Semantic Versioning][2]. #### ✨ Features -- **package:** remove debug dependency (moved into dev-deps) ([d3c60cb][64]) -- **src:** improved error handling; add support for new `rejectOnHandlerError` option ([68d30da][65]) -- **src:** move test-listen functionality into NTARH; remove dependency ([15c899a][66]) -- **src:** replace isomorphic-unfetch with node-fetch ([5a1a2ee][67]) +- **package:** remove debug dependency (moved into dev-deps) ([d3c60cb][66]) +- **src:** improved error handling; add support for new `rejectOnHandlerError` option ([68d30da][67]) +- **src:** move test-listen functionality into NTARH; remove dependency ([15c899a][68]) +- **src:** replace isomorphic-unfetch with node-fetch ([5a1a2ee][69]) #### 🧙🏿 Refactored -- **src:** update types ([73f44b7][68]) +- **src:** update types ([73f44b7][70]) -### [2.3.4][69] (2021-11-16) +### [2.3.4][71] (2021-11-16) #### 🪄 Fixes -- **src:** lazy-load contents of the "cookies" field ([854704b][70]) +- **src:** lazy-load contents of the "cookies" field ([854704b][72]) #### ⚙️ Build System -- Re-enable treeshaking in webpack ([9302bcc][71]) +- Re-enable treeshaking in webpack ([9302bcc][73]) -### [2.3.3][72] (2021-11-10) +### [2.3.3][74] (2021-11-10) #### ⚙️ Build System -- Differentiate between esm and bundler distributables ([597c249][73]) +- Differentiate between esm and bundler distributables ([597c249][75]) -### [2.3.2][74] (2021-11-7) +### [2.3.2][76] (2021-11-7) #### 🪄 Fixes -- **src:** es module compatibility; no longer attempts to require() in mjs files ([32eafab][75]) -- **src:** report parsed es module import failures properly ([cd98aab][76]) +- **src:** es module compatibility; no longer attempts to require() in mjs files ([32eafab][77]) +- **src:** report parsed es module import failures properly ([cd98aab][78]) -### [2.3.1][77] (2021-11-6) +### [2.3.1][79] (2021-11-6) #### ⚙️ Build System -- Re-enable ESM (for bundlers) integration tests ([91f08d4][78]) +- Re-enable ESM (for bundlers) integration tests ([91f08d4][80]) -## [2.3.0][79] (2021-11-5) +## [2.3.0][81] (2021-11-5) #### ✨ Features -- Automatically parse "set-cookie" headers; available in response.cookies ([cd3cd95][80]) closes [#373][81] +- Automatically parse "set-cookie" headers; available in response.cookies ([cd3cd95][82]) closes [#373][83] #### 🪄 Fixes -- **src:** ensure exceptions do not prevent Jest from exiting ([8746e5f][82]) -- **src:** ensure webpack does not break dynamic require on compile ([ae778d1][83]) closes [#378][84] -- Vastly improved error handling for those using node@<15 and/or npm@<7 ([c216caa][85]) +- **src:** ensure exceptions do not prevent Jest from exiting ([8746e5f][84]) +- **src:** ensure webpack does not break dynamic require on compile ([ae778d1][85]) closes [#378][86] +- Vastly improved error handling for those using node@<15 and/or npm@<7 ([c216caa][87]) #### ⚙️ Build System -- Add back nullish coalescing operator babel transform for older node versions ([5fbb6d2][86]) -- **package:** backport npm script fixes ([346e8de][87]) -- **src:** fix TS bundle errors on node\@12 and node\@14 ([812e6f2][88]) +- Add back nullish coalescing operator babel transform for older node versions ([5fbb6d2][88]) +- **package:** backport npm script fixes ([346e8de][89]) +- **src:** fix TS bundle errors on node\@12 and node\@14 ([812e6f2][90]) #### 🔥 Reverted -- _"chore(github): enable debug mode"_ ([5034aba][89]) +- _"chore(github): enable debug mode"_ ([5034aba][91]) -### [2.2.1][90] (2021-8-29) +### [2.2.1][92] (2021-8-29) #### ⚙️ Build System -- **license:** switch to MIT license ([de9ee17][91]) +- **license:** switch to MIT license ([de9ee17][93]) -## [2.2.0][92] (2021-8-22) +## [2.2.0][94] (2021-8-22) #### ✨ Features -- **types:** expanded typescript support; `testApiHandler` weakly typed by default ([419d5fe][93]) +- **types:** expanded typescript support; `testApiHandler` weakly typed by default ([419d5fe][95]) -### [2.1.3][94] (2021-8-22) +### [2.1.3][96] (2021-8-22) #### 🪄 Fixes -- **src:** ensure dependency resolution failure does not cause test runner to hang ([7916f00][95]) +- **src:** ensure dependency resolution failure does not cause test runner to hang ([7916f00][97]) -### [2.1.2][96] (2021-8-14) +### [2.1.2][98] (2021-8-14) #### 🪄 Fixes -- **src:** memoize resolver import ([74241ee][97]) +- **src:** memoize resolver import ([74241ee][99]) #### ⚙️ Build System -- **package:** improve build-docs npm script ([33b6a34][98]) -- **src:** add descriptions to TypeScript types ([1c3425c][99]) +- **package:** improve build-docs npm script ([33b6a34][100]) +- **src:** add descriptions to TypeScript types ([1c3425c][101]) -### [2.1.1][100] (2021-8-13) +### [2.1.1][102] (2021-8-13) #### 🪄 Fixes -- **readme:** update install instructions; fix apollo example ([fd787ca][101]) +- **readme:** update install instructions; fix apollo example ([fd787ca][103]) #### ⚙️ Build System -- **webpack.config:** second fix for faulty env management ([87ed12b][102]) +- **webpack.config:** second fix for faulty env management ([87ed12b][104]) -## [2.1.0][103] (2021-8-13) +## [2.1.0][105] (2021-8-13) #### ✨ Features -- **src:** enable backwards compatibility all the way back to next\@9 ([c51cf02][104]) closes [#295][105] +- **src:** enable backwards compatibility all the way back to next\@9 ([c51cf02][106]) closes [#295][107] #### ⚙️ Build System -- **webpack.config:** do not ignore warnings ([2b14d84][106]) -- **webpack.config:** fix faulty env management ([f477260][107]) +- **webpack.config:** do not ignore warnings ([2b14d84][108]) +- **webpack.config:** fix faulty env management ([f477260][109]) #### 🔥 Reverted -- _"chore: update dependencies"_ ([f61fd8c][108]) closes [#296][109] +- _"chore: update dependencies"_ ([f61fd8c][110]) closes [#296][111] -### [2.0.2][110] (2021-7-29) +### [2.0.2][112] (2021-7-29) #### ⚙️ Build System -- **external-scripts:** use latest mongodb native driver ([fd53fef][111]) -- **webpack.config.js:** more robust build process ([e5c6a99][112]) +- **external-scripts:** use latest mongodb native driver ([fd53fef][113]) +- **webpack.config.js:** more robust build process ([e5c6a99][114]) -### [2.0.1][113] (2021-6-27) +### [2.0.1][115] (2021-6-27) #### ⚙️ Build System -- Update dependencies and publish fixed apollo example ([ef32668][114]) +- Update dependencies and publish fixed apollo example ([ef32668][116]) -## [2.0.0][115] (2021-6-27) +## [2.0.0][117] (2021-6-27) ### 💥 Breaking Changes 💥 @@ -338,523 +344,525 @@ this project adheres to [Semantic Versioning][2]. #### ✨ Features -- Add `url` and `paramsPatcher` ([ee31fa8][116]) +- Add `url` and `paramsPatcher` ([ee31fa8][118]) #### ⚙️ Build System -- **package.json:** update dependencies ([2f1125c][117]) -- **package.json:** update dependencies ([7583209][118]) -- **package.json:** update next peer dependency to >=10.0.x ([bc5e72d][119]) -- Switch to @xunnamius/conventional-changelog-projector shared config ([bc7eb3d][120]) -- Update dependencies ([20ca255][121]) +- **package.json:** update dependencies ([2f1125c][119]) +- **package.json:** update dependencies ([7583209][120]) +- **package.json:** update next peer dependency to >=10.0.x ([bc5e72d][121]) +- Switch to @xunnamius/conventional-changelog-projector shared config ([bc7eb3d][122]) +- Update dependencies ([20ca255][123]) -### [1.2.24][122] (2021-5-8) +### [1.2.24][124] (2021-5-8) #### 🪄 Fixes -- **index.ts:** next 10.2.0 compat ([af177c5][123]) +- **index.ts:** next 10.2.0 compat ([af177c5][125]) #### ⚙️ Build System -- **.github/workflows:** disable old pipeline; begin transition to new pipeline ([364549e][124]) -- **.github/workflows:** overhaul pipeline workflows ([4db5d04][125]) -- **.github:** split BTD workflow into two separate workflows (security) ([99ad127][126]) -- **contributing.md:** split pipeline architecture information off into workflow README.md ([6d52302][127]) -- **package.json:** ensure hidden dirs' markdown files are seen by remark (linted and formatted) ([1f7fad4][128]) -- **package.json:** update dependencies ([d328a86][129]) -- **readme.md:** fix broken links ([6e7173f][130]) -- **readme.md:** improvements ([23cb780][131]) -- **readme.md:** include architecture description as workflow README.md ([1f25e5f][132]) +- **.github/workflows:** disable old pipeline; begin transition to new pipeline ([364549e][126]) +- **.github/workflows:** overhaul pipeline workflows ([4db5d04][127]) +- **.github:** split BTD workflow into two separate workflows (security) ([99ad127][128]) +- **contributing.md:** split pipeline architecture information off into workflow README.md ([6d52302][129]) +- **package.json:** ensure hidden dirs' markdown files are seen by remark (linted and formatted) ([1f7fad4][130]) +- **package.json:** update dependencies ([d328a86][131]) +- **readme.md:** fix broken links ([6e7173f][132]) +- **readme.md:** improvements ([23cb780][133]) +- **readme.md:** include architecture description as workflow README.md ([1f25e5f][134]) -### [1.2.23][133] (2021-3-14) +### [1.2.23][135] (2021-3-14) #### ⚙️ Build System -- Better documentation ([0040582][134]) +- Better documentation ([0040582][136]) -### [1.2.22][135] (2021-3-12) +### [1.2.22][137] (2021-3-12) #### ⚙️ Build System -- Update dependencies and fix find-package-json usage ([df9ede3][136]) +- Update dependencies and fix find-package-json usage ([df9ede3][138]) -### [1.2.21][137] (2021-3-12) +### [1.2.21][139] (2021-3-12) #### ⚙️ Build System -- **build-test-deploy.yml:** actions version updates ([29aa25a][138]) -- **build-test-deploy.yml:** rollback some pipeline version updates ([8065757][139]) -- **package.json:** fix typedoc-markdown-plugin patch ([dd3e7fa][140]) closes [#126][141] +- **build-test-deploy.yml:** actions version updates ([29aa25a][140]) +- **build-test-deploy.yml:** rollback some pipeline version updates ([8065757][141]) +- **package.json:** fix typedoc-markdown-plugin patch ([dd3e7fa][142]) closes [#126][143] -### [1.2.20][142] (2021-2-22) +### [1.2.20][144] (2021-2-22) #### ⚙️ Build System -- **package-lock.json:** update deps ([5a2d98f][143]) +- **package-lock.json:** update deps ([5a2d98f][145]) -### [1.2.19][144] (2021-2-22) +### [1.2.19][146] (2021-2-22) #### 🪄 Fixes -- **.changelogrc.js:** fix dark magic ([b4157eb][145]) -- **is-next-compat.ts:** never use console.log ([81533c8][146]) -- **is-next-compat.ts:** use template string instead of literal ([3a4f0f1][147]) -- **unit-index.test.ts:** 100% test coverage ([72189e8][148]) +- **.changelogrc.js:** fix dark magic ([b4157eb][147]) +- **is-next-compat.ts:** never use console.log ([81533c8][148]) +- **is-next-compat.ts:** use template string instead of literal ([3a4f0f1][149]) +- **unit-index.test.ts:** 100% test coverage ([72189e8][150]) #### ⚙️ Build System -- **.eslintrc.js:** account for node 12 ([cad0fb2][149]) -- **.github:** update workflows and templates ([54e51eb][150]) -- Backport new webpack config ([b268534][151]) -- **integration-external.test.ts:** ensure proper cwd is used for executing externals ([31c1d5b][152]) -- **is-next-compat.ts:** use execa instead of shelljs under the hood ([9d12004][153]) -- **package.json:** remove shelljs, update other deps ([11e192a][154]) -- **package.json:** update dependencies ([9e1705b][155]) -- Rename env-expect to expect-env ([035e98b][156]) -- **setup.ts:** fix several lib-pkg tools ([44d1967][157]) -- Spellcheck-commit and .changelogrc no longer use shelljs ([dd72fd1][158]) -- **test:** update with new lib-pkg tools ([004a657][159]) -- **unit-external.test.ts:** update with new lib-pkg tools ([6df7e73][160]) +- **.eslintrc.js:** account for node 12 ([cad0fb2][151]) +- **.github:** update workflows and templates ([54e51eb][152]) +- Backport new webpack config ([b268534][153]) +- **integration-external.test.ts:** ensure proper cwd is used for executing externals ([31c1d5b][154]) +- **is-next-compat.ts:** use execa instead of shelljs under the hood ([9d12004][155]) +- **package.json:** remove shelljs, update other deps ([11e192a][156]) +- **package.json:** update dependencies ([9e1705b][157]) +- Rename env-expect to expect-env ([035e98b][158]) +- **setup.ts:** fix several lib-pkg tools ([44d1967][159]) +- Spellcheck-commit and .changelogrc no longer use shelljs ([dd72fd1][160]) +- **test:** update with new lib-pkg tools ([004a657][161]) +- **unit-external.test.ts:** update with new lib-pkg tools ([6df7e73][162]) #### 🔥 Reverted -- _"debug(build-test-deploy.yml): disable debug mode"_ ([6cefa7a][161]) +- _"debug(build-test-deploy.yml): disable debug mode"_ ([6cefa7a][163]) -### [1.2.18][162] (2021-2-11) +### [1.2.18][164] (2021-2-11) #### ⚙️ Build System -- **package.json:** update to proper forked dependencies ([042291d][163]) +- **package.json:** update to proper forked dependencies ([042291d][165]) -### [1.2.17][164] (2021-2-10) +### [1.2.17][166] (2021-2-10) #### ⚙️ Build System -- **webpack.config.js:** normalize webpack configuration across repos ([65f48a3][165]) -- **webpack.config.js:** remove ES6 syntax from JS file ([5ed6dbd][166]) +- **webpack.config.js:** normalize webpack configuration across repos ([65f48a3][167]) +- **webpack.config.js:** remove ES6 syntax from JS file ([5ed6dbd][168]) -### [1.2.16][167] (2021-2-10) +### [1.2.16][169] (2021-2-10) #### ⚙️ Build System -- **package.json:** update dependencies ([aeef7a9][168]) +- **package.json:** update dependencies ([aeef7a9][170]) -### [1.2.15][169] (2021-2-8) +### [1.2.15][171] (2021-2-8) #### 🪄 Fixes -- **readme.md:** simplify all examples with more modern syntax; remove @ergodark/types ([964bc47][170]) +- **readme.md:** simplify all examples with more modern syntax; remove @ergodark/types ([964bc47][172]) -### [1.2.14][171] (2021-2-8) +### [1.2.14][173] (2021-2-8) #### 🪄 Fixes -- **readme.md:** add Apollo example and additional guidance ([ed357f5][172]) +- **readme.md:** add Apollo example and additional guidance ([ed357f5][174]) -### [1.2.13][173] (2021-2-5) +### [1.2.13][175] (2021-2-5) #### 🪄 Fixes -- **config:** use transform-rename-import when building externals ([d224f5e][174]) -- **index.ts:** use NextApiHandler type (thanks [@janhesters][175]) ([473ff50][176]) -- **integration-webpack.test.ts:** actually call bundle in test ([f7a12de][177]) -- **is-next-compat.ts:** better handling of generics ([d7bc091][178]) -- Next no longer misclassified as CJS ([9ebac01][179]) +- **config:** use transform-rename-import when building externals ([d224f5e][176]) +- **index.ts:** use NextApiHandler type (thanks [@janhesters][177]) ([473ff50][178]) +- **integration-webpack.test.ts:** actually call bundle in test ([f7a12de][179]) +- **is-next-compat.ts:** better handling of generics ([d7bc091][180]) +- Next no longer misclassified as CJS ([9ebac01][181]) #### ⚙️ Build System -- **build-test-deploy.yml:** drop support for node 10 ([6adde15][180]) -- **build-test-deploy.yml:** drop support for webpack 4 ([e508c06][181]) -- **build-test-deploy.yml:** remove externals exception ([5e3893a][182]) -- **cleanup.yml:** fix bugs in workflow ([cbf22fd][183]) -- Drop support for node 10 ([71e9103][184]) -- Only silence sjx if not DEBUG ([f01ce40][185]) -- **package.json:** improved build-dist ([a3526f2][186]) -- **package.json:** nicer destructured vals in docs ([661e62d][187]) -- **package.json:** remove extraneous module ([1f2ad6a][188]) -- **package.json:** update dependencies ([c64f761][189]) -- **post-release-check.yml:** add five-minute-sleep ([4a0552d][190]) -- **post-release-check.yml:** more resilient post-release check ([856435f][191]) -- Properly mocked unit tests for externals ([b3273df][192]) -- **test:** improved testing infrastructure ([fffe02e][193]) -- **types:** more precise unique-filename type ([a60793c][194]) +- **build-test-deploy.yml:** drop support for node 10 ([6adde15][182]) +- **build-test-deploy.yml:** drop support for webpack 4 ([e508c06][183]) +- **build-test-deploy.yml:** remove externals exception ([5e3893a][184]) +- **cleanup.yml:** fix bugs in workflow ([cbf22fd][185]) +- Drop support for node 10 ([71e9103][186]) +- Only silence sjx if not DEBUG ([f01ce40][187]) +- **package.json:** improved build-dist ([a3526f2][188]) +- **package.json:** nicer destructured vals in docs ([661e62d][189]) +- **package.json:** remove extraneous module ([1f2ad6a][190]) +- **package.json:** update dependencies ([c64f761][191]) +- **post-release-check.yml:** add five-minute-sleep ([4a0552d][192]) +- **post-release-check.yml:** more resilient post-release check ([856435f][193]) +- Properly mocked unit tests for externals ([b3273df][194]) +- **test:** improved testing infrastructure ([fffe02e][195]) +- **types:** more precise unique-filename type ([a60793c][196]) -### [1.2.12][195] (2021-1-23) +### [1.2.12][197] (2021-1-23) #### ⚙️ Build System -- Remove erroneous module import ([6eb2a34][196]) +- Remove erroneous module import ([6eb2a34][198]) -### [1.2.11][197] (2021-1-23) +### [1.2.11][199] (2021-1-23) #### ⚙️ Build System -- Backport/normalize across packages ([e589c1d][198]) +- Backport/normalize across packages ([e589c1d][200]) -### [1.2.10][199] (2021-1-22) +### [1.2.10][201] (2021-1-22) #### ⚙️ Build System -- Update debug statement syntax ([52a2276][200]) +- Update debug statement syntax ([52a2276][202]) -### [1.2.9][201] (2021-1-21) +### [1.2.9][203] (2021-1-21) #### ⚙️ Build System -- **.github/workflows/build-test-deploy.yml:** fix peer dependency installation ([12e5bbe][202]) +- **.github/workflows/build-test-deploy.yml:** fix peer dependency installation ([12e5bbe][204]) -### [1.2.8][203] (2021-1-13) +### [1.2.8][205] (2021-1-13) #### 🪄 Fixes -- **readme.md:** ensure quick start example is functional ([87dc31f][204]) +- **readme.md:** ensure quick start example is functional ([87dc31f][206]) -### [1.2.7][205] (2021-1-12) +### [1.2.7][207] (2021-1-12) #### ⚙️ Build System -- Rebuild lockfile ([94cfa38][206]) -- Update babel-plugin-transform-mjs-imports ([62089c7][207]) +- Rebuild lockfile ([94cfa38][208]) +- Update babel-plugin-transform-mjs-imports ([62089c7][209]) -### [1.2.6][208] (2021-1-6) +### [1.2.6][210] (2021-1-6) #### ⚙️ Build System -- **package.json:** prune old deps ([2cf1d29][209]) +- **package.json:** prune old deps ([2cf1d29][211]) -### [1.2.5][210] (2021-1-6) +### [1.2.5][212] (2021-1-6) #### ⚙️ Build System -- **.github/workflows/post-release-check.yml:** add new post-release-check ([a307efc][211]) -- **.github:** add is-next-compat workflow ([1823c05][212]) +- **.github/workflows/post-release-check.yml:** add new post-release-check ([a307efc][213]) +- **.github:** add is-next-compat workflow ([1823c05][214]) -### [1.2.4][213] (2021-1-6) +### [1.2.4][215] (2021-1-6) #### ⚙️ Build System -- **readme.md:** add quick start example ([4e5e12c][214]) +- **readme.md:** add quick start example ([4e5e12c][216]) -### [1.2.3][215] (2021-1-5) +### [1.2.3][217] (2021-1-5) #### ⚙️ Build System -- **package.json:** favor "prepare" over "postinstall" and use npx for dev tools ([a111c87][216]) +- **package.json:** favor "prepare" over "postinstall" and use npx for dev tools ([a111c87][218]) -### [1.2.2][217] (2021-1-5) +### [1.2.2][219] (2021-1-5) #### ⚙️ Build System -- **readme.md:** cosmetic ([98b65c6][218]) +- **readme.md:** cosmetic ([98b65c6][220]) -### [1.2.1][219] (2021-1-5) +### [1.2.1][221] (2021-1-5) #### ⚙️ Build System -- **package.json:** update dependencies, prune unused dependencies ([6ef6cbe][220]) +- **package.json:** update dependencies, prune unused dependencies ([6ef6cbe][222]) -## [1.2.0][221] (2021-1-5) +## [1.2.0][223] (2021-1-5) #### ✨ Features -- **.changelogrc.js:** transfer repository over to semantic-release CI/CD ([b9d2bf0][222]) +- **.changelogrc.js:** transfer repository over to semantic-release CI/CD ([b9d2bf0][224]) #### ⚙️ Build System -- **deps:** bump node-notifier from 8.0.0 to 8.0.1 ([45a79d4][223]) -- **test/unit-externals.test.ts:** add mongo uri env var to test explicitly ([e0e1fd9][224]) +- **deps:** bump node-notifier from 8.0.0 to 8.0.1 ([45a79d4][225]) +- **test/unit-externals.test.ts:** add mongo uri env var to test explicitly ([e0e1fd9][226]) -### [1.1.3][225] (2020-12-6) +### [1.1.3][227] (2020-12-6) #### ⚙️ Build System -- **package.json:** audit and update deps ([c82695a][226]) -- **package.json:** manually bump version ([813b21a][227]) +- **package.json:** audit and update deps ([c82695a][228]) +- **package.json:** manually bump version ([813b21a][229]) -### [1.1.2][228] (2020-11-26) +### [1.1.2][230] (2020-11-26) #### 🪄 Fixes -- **readme:** update install language ([b68c721][229]) +- **readme:** update install language ([b68c721][231]) -### [1.1.1][230] (2020-11-26) +### [1.1.1][232] (2020-11-26) #### 🪄 Fixes -- **externals:** revert sort-package-json to maintainer version ([750055b][231]) -- **externals:** rewrite test workflow ([d604dfc][232]) +- **externals:** revert sort-package-json to maintainer version ([750055b][233]) +- **externals:** rewrite test workflow ([d604dfc][234]) -## [1.1.0][233] (2020-11-25) +## [1.1.0][235] (2020-11-25) #### 🪄 Fixes -- **build:** move Next.js dependency to peer/dev dependencies ([0e7541f][234]) -- **externals:** updated remaining dependency references to peerDependency references ([ccf54fb][235]) +- **build:** move Next.js dependency to peer/dev dependencies ([0e7541f][236]) +- **externals:** updated remaining dependency references to peerDependency references ([ccf54fb][237]) -### [1.0.10][236] (2020-10-24) +### [1.0.10][238] (2020-10-24) -### [1.0.9][237] (2020-10-23) +### [1.0.9][239] (2020-10-23) -### [1.0.8][238] (2020-10-20) +### [1.0.8][240] (2020-10-20) -### [1.0.7][239] (2020-10-19) +### [1.0.7][241] (2020-10-19) -### [1.0.6][240] (2020-10-17) +### [1.0.6][242] (2020-10-17) -### [1.0.5][241] (2020-10-13) +### [1.0.5][243] (2020-10-13) -### [1.0.4][242] (2020-10-12) +### [1.0.4][244] (2020-10-12) -### [1.0.3][243] (2020-10-12) +### [1.0.3][245] (2020-10-12) -### [1.0.2][244] (2020-10-7) +### [1.0.2][246] (2020-10-7) -### [1.0.1][245] (2020-10-7) +### [1.0.1][247] (2020-10-7) ## 1.0.0 (2020-10-7) [1]: https://conventionalcommits.org [2]: https://semver.org -[3]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.2.0...v4.0.0 -[4]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e2d8865b3b91f735e98d6c0a0c1e1c88d41e8802 -[5]: https://github.com/Xunnamius/next-test-api-route-handler/issues/938 -[6]: https://github.com/Xunnamius/next-test-api-route-handler/issues/773 -[7]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5574831366a1678c12cb315bf4928dac99408b28 -[8]: https://github.com/Xunnamius/next-test-api-route-handler/issues/946 -[9]: https://github.com/Xunnamius/next-test-api-route-handler/commit/db599aceb97e9b9d36a9461c34084346287b097d -[10]: https://github.com/Xunnamius/next-test-api-route-handler/commit/fdfec8cbdc465df160a169bfdee972054d514eeb -[11]: https://github.com/Xunnamius/next-test-api-route-handler/commit/59f54a5aabc4356767e3ba2b4c0b551cd61e9891 -[12]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5c5f9a48118896c43c03d19e3b12539c7a250714 -[13]: https://github.com/Xunnamius/next-test-api-route-handler/issues/875 -[14]: https://github.com/Xunnamius/next-test-api-route-handler/commit/43680d926fe803817507b4b9394fa5810752cf1f -[15]: https://github.com/Xunnamius/next-test-api-route-handler/commit/75d4e1f4d1bcc92d9680bb0d74cf26667012265a -[16]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f715331be1b66cb5807785d74aeb47b692492302 -[17]: https://github.com/Xunnamius/next-test-api-route-handler/commit/85bb8fa5e60e2019e072367063a25b745d675ed9 -[18]: https://github.com/Xunnamius/next-test-api-route-handler/commit/0133e113145dc0c3836be3a73336ab2c024b66e7 -[19]: https://github.com/Xunnamius/next-test-api-route-handler/commit/62f1d0b2c5ca0146b903d233b73b659a54b7f16e -[20]: https://github.com/Xunnamius/next-test-api-route-handler/commit/913cbd0f0487c9c98146855413fb91e16bb4a7b0 -[21]: https://github.com/Xunnamius/next-test-api-route-handler/commit/702cb444cc5e5c15b2d2b1000f27fca8368678e7 -[22]: https://github.com/Xunnamius/next-test-api-route-handler/commit/dc237233338af416993b0ec683a844abb6fab02b -[23]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d72ae876557d5f2e71da99a2d285c12bbe77319b -[24]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.10...v3.2.0 -[25]: https://github.com/Xunnamius/next-test-api-route-handler/commit/93b8a3c92eb14a5b2d1006c315e26a3c3547a1c3 -[26]: https://github.com/Xunnamius/next-test-api-route-handler/issues/916 -[27]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.9...v3.1.10 -[28]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ca1da40c8f14b9c4a39f198787f526759cd7fa8f -[29]: https://github.com/Xunnamius/next-test-api-route-handler/issues/887 -[30]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a9d136b2ada5dcac26a8509fd4590a2dec805a56 -[31]: https://github.com/Xunnamius/next-test-api-route-handler/commit/db0223ea0c74edab17489595c1c858eb035dd418 -[32]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e457064ddbc7e3f7b1d96c7f27b5b74479303f2f -[33]: https://github.com/Xunnamius/next-test-api-route-handler/issues/908 -[34]: https://github.com/Xunnamius/next-test-api-route-handler/commit/be90d573a3a6db09aa35e62bf228a70439f39e73 -[35]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.7...v3.1.8 -[36]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2a4ae05a6d163902daff9021b375db5f362149d7 -[37]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.6...v3.1.7 -[38]: https://github.com/Xunnamius/next-test-api-route-handler/commit/4af52f43dcba1f6f57887fb977b1430f8009d872 -[39]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.5...v3.1.6 -[40]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6e94142b83d4d6bed7812bca2bd4226a6b67c49a -[41]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.4...v3.1.5 -[42]: https://github.com/Xunnamius/next-test-api-route-handler/commit/405f84dabe68b72e11919066cc53dbc69ad4807d -[43]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.3...v3.1.4 -[44]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b05e112c11ead6b03c33a1a0bf1dc4fca4d29db5 -[45]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.2...v3.1.3 -[46]: https://github.com/Xunnamius/next-test-api-route-handler/commit/36a2c44e4b3f6f4f6d4ae9f8a566a42609ee362c -[47]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.1...v3.1.2 -[48]: https://github.com/Xunnamius/next-test-api-route-handler/commit/065b4455016812575e1714cc680e57184b49cf5d -[49]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.0...v3.1.1 -[50]: https://github.com/Xunnamius/next-test-api-route-handler/commit/484d7023539d95b8930d1665b4b613042b21fe9f -[51]: https://github.com/Xunnamius/next-test-api-route-handler/issues/487 -[52]: https://github.com/Xunnamius/next-test-api-route-handler/commit/77ad96dc4a1e3c79f9f75b6827f74f501cce8f5d -[53]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.0.3...v3.1.0 -[54]: https://github.com/Xunnamius/next-test-api-route-handler/commit/21b4b928a40b685a99df34ad20845c97615ee1c8 -[55]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2a2f0b28b07f8a176a5333551b5788033f90274a -[56]: https://github.com/Xunnamius/next-test-api-route-handler/commit/0ee4ce58b1c7a8b4ea2096c01142097f427b2a00 -[57]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.0.2...v3.0.3 -[58]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1e8cd8573cdcfa3489526244c40f373a71d92b40 -[59]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.0.1...v3.0.2 -[60]: https://github.com/Xunnamius/next-test-api-route-handler/commit/84f74f55027cd4e67b7e7929f668d4de387dc3c3 -[61]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.0.0...v3.0.1 -[62]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a925da287a02b6c36b588b6804e7b0b628364b25 -[63]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.4...v3.0.0 -[64]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d3c60cbd506eb22a4bb23554b06668076e687ad9 -[65]: https://github.com/Xunnamius/next-test-api-route-handler/commit/68d30dac2210e4f976afbf5c59378d6b314d4ec3 -[66]: https://github.com/Xunnamius/next-test-api-route-handler/commit/15c899a98423c612571886115308e68e20633a1b -[67]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5a1a2ee806f4cfd5d199d54dbd82f9f945da1694 -[68]: https://github.com/Xunnamius/next-test-api-route-handler/commit/73f44b78c2ee92b443adf99e248c03b985b80891 -[69]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.3...v2.3.4 -[70]: https://github.com/Xunnamius/next-test-api-route-handler/commit/854704ba9a7f374753e1a51f4fe00db761d7718f -[71]: https://github.com/Xunnamius/next-test-api-route-handler/commit/9302bcc882e9cd4080526f5192186b5259e08726 -[72]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.2...v2.3.3 -[73]: https://github.com/Xunnamius/next-test-api-route-handler/commit/597c2497a137c86696aba9b750b60f43d728495f -[74]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.1...v2.3.2 -[75]: https://github.com/Xunnamius/next-test-api-route-handler/commit/32eafabd592856a7ef286d7d0157e38a8275695d -[76]: https://github.com/Xunnamius/next-test-api-route-handler/commit/cd98aab7eea7bdd4b988402b57ce5e93572a7850 -[77]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.0...v2.3.1 -[78]: https://github.com/Xunnamius/next-test-api-route-handler/commit/91f08d426081afc1009e50d7b9ee6a0a2259268b -[79]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.2.1...v2.3.0 -[80]: https://github.com/Xunnamius/next-test-api-route-handler/commit/cd3cd95adb536b05a3cfe8bd0b12329c9acad166 -[81]: https://github.com/Xunnamius/next-test-api-route-handler/issues/373 -[82]: https://github.com/Xunnamius/next-test-api-route-handler/commit/8746e5fb6b337131303ad0c011c864d5152a864d -[83]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ae778d18f1c01e36070f0612067ec9f00f14a665 -[84]: https://github.com/Xunnamius/next-test-api-route-handler/issues/378 -[85]: https://github.com/Xunnamius/next-test-api-route-handler/commit/c216caa659a0fcf807ff6b1a0c11c2b331e27d3c -[86]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5fbb6d20cab097250cb8c62d0c5edb6fe80f0bfc -[87]: https://github.com/Xunnamius/next-test-api-route-handler/commit/346e8de1390ba46e9dc8faccc0977c5f50a9dc32 -[88]: https://github.com/Xunnamius/next-test-api-route-handler/commit/812e6f262726e328a57cdb0833fb8bfbbcce6708 -[89]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5034aba01f30bfb7787247054d12d7dbb90469e6 -[90]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.2.0...v2.2.1 -[91]: https://github.com/Xunnamius/next-test-api-route-handler/commit/de9ee177491855eb0ac095f9a1a3e5cfad820420 -[92]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.1.3...v2.2.0 -[93]: https://github.com/Xunnamius/next-test-api-route-handler/commit/419d5fe805928605b85fe0e5c64c80eb5a1d798d -[94]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.1.2...v2.1.3 -[95]: https://github.com/Xunnamius/next-test-api-route-handler/commit/7916f0026b59e6325b59395f61b142056c6c8220 -[96]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.1.1...v2.1.2 -[97]: https://github.com/Xunnamius/next-test-api-route-handler/commit/74241eeee173a6cf8f987608946c3d8691a67c27 -[98]: https://github.com/Xunnamius/next-test-api-route-handler/commit/33b6a34a126909a354a7c3f5d523b0fa47acb960 -[99]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1c3425caf7d80793a2c1e88ff8fbd29ada8adf2d -[100]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.1.0...v2.1.1 -[101]: https://github.com/Xunnamius/next-test-api-route-handler/commit/fd787ca116c3a84f9393f22bf7e898db0a22f5e1 -[102]: https://github.com/Xunnamius/next-test-api-route-handler/commit/87ed12b68e930342649c65a76455396879658d48 -[103]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.0.2...v2.1.0 -[104]: https://github.com/Xunnamius/next-test-api-route-handler/commit/c51cf0222e17066c03cd80e1c76c5e9f49cacc2e -[105]: https://github.com/Xunnamius/next-test-api-route-handler/issues/295 -[106]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2b14d8499f4845d0e2d20fd2098f509f5edc16f9 -[107]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f4772607ebb8641ea4e0d6ac2fd152f76dff3f7c -[108]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f61fd8c5ea52265a7ff15252d720d135890880f2 -[109]: https://github.com/Xunnamius/next-test-api-route-handler/issues/296 -[110]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.0.1...v2.0.2 -[111]: https://github.com/Xunnamius/next-test-api-route-handler/commit/fd53fefc6d5c2ff67ed2669b18e28b7ef7005c12 -[112]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e5c6a994d4b553369ae42b6be0ae1932346ebbd6 -[113]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.0.0...v2.0.1 -[114]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ef32668428df303c4e536aae5793ed14eee0ade5 -[115]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.24...v2.0.0 -[116]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ee31fa8cefdc2b8b8197d3889fb8aac27467b374 -[117]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2f1125cfb481e94af4248cf5b5dfce729cc4d662 -[118]: https://github.com/Xunnamius/next-test-api-route-handler/commit/75832099f4c4d0e329aca469ac16c8a25100c26d -[119]: https://github.com/Xunnamius/next-test-api-route-handler/commit/bc5e72d9d40f1991315ac0657a4b212331dc065f -[120]: https://github.com/Xunnamius/next-test-api-route-handler/commit/bc7eb3db18aa70345a1c11d96436b374a15c3b7f -[121]: https://github.com/Xunnamius/next-test-api-route-handler/commit/20ca255e01d0c2e7824707e19f41ca5a8de0140e -[122]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.23...v1.2.24 -[123]: https://github.com/Xunnamius/next-test-api-route-handler/commit/af177c5035c22ab923dd62f6dc82702373f740d4 -[124]: https://github.com/Xunnamius/next-test-api-route-handler/commit/364549e2845965954af62fdfa6c1dfa0d6f91f2f -[125]: https://github.com/Xunnamius/next-test-api-route-handler/commit/4db5d04d6a7117fe8e2113d2fafc6150a81f611c -[126]: https://github.com/Xunnamius/next-test-api-route-handler/commit/99ad1276e7e69218719ee2b27173e4ffcb7337f6 -[127]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6d523027b8d650ae0a2d121c349e6a4c48af6792 -[128]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1f7fad4d512f1839d96c6264f2d4abb1c5ed11e7 -[129]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d328a86317c60206bda565ba2e315113dadd0c9b -[130]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6e7173fca4cbe778419eeff92ddbf7c03c2b00d5 -[131]: https://github.com/Xunnamius/next-test-api-route-handler/commit/23cb7804d5f0e775b75eaefb4588beb179dcdcdf -[132]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1f25e5fb8b2797621d316e18b01ee503fb4d1263 -[133]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.22...v1.2.23 -[134]: https://github.com/Xunnamius/next-test-api-route-handler/commit/0040582d2f89e9a14c2335dc85cd5f9201bff644 -[135]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.21...v1.2.22 -[136]: https://github.com/Xunnamius/next-test-api-route-handler/commit/df9ede3ddde3a2df6a42224ab3302e599bd61516 -[137]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.20...v1.2.21 -[138]: https://github.com/Xunnamius/next-test-api-route-handler/commit/29aa25a9e2572be5b418fbee9d2d8aba2056583e -[139]: https://github.com/Xunnamius/next-test-api-route-handler/commit/806575792fe9e1522bd6bce0eb10f1bd3407da64 -[140]: https://github.com/Xunnamius/next-test-api-route-handler/commit/dd3e7faadf148b23994f443a2247cc1316639e7d -[141]: https://github.com/Xunnamius/next-test-api-route-handler/issues/126 -[142]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.19...v1.2.20 -[143]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5a2d98f3ddb34e9d934f16510a73cacd43ee42ee -[144]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.18...v1.2.19 -[145]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b4157eba128f6a787531fdabf2bebf78851a0d9a -[146]: https://github.com/Xunnamius/next-test-api-route-handler/commit/81533c8953adde75499cd11b552bca5f970addca -[147]: https://github.com/Xunnamius/next-test-api-route-handler/commit/3a4f0f150779a226ee3c9f45fde201391fa1bec0 -[148]: https://github.com/Xunnamius/next-test-api-route-handler/commit/72189e80136b0567de8fc65eed9b2a4be365ca1a -[149]: https://github.com/Xunnamius/next-test-api-route-handler/commit/cad0fb2b6153434d3be41f394f1fa636cc930435 -[150]: https://github.com/Xunnamius/next-test-api-route-handler/commit/54e51ebd0e133fb469306b76bc756c283a71a2c1 -[151]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b2685345493165cc63136b051cc5fafbf02f5c48 -[152]: https://github.com/Xunnamius/next-test-api-route-handler/commit/31c1d5b358df78e0f27e881c0329355d91370995 -[153]: https://github.com/Xunnamius/next-test-api-route-handler/commit/9d12004ad5adfc5d4d6992bdb67c52168829967e -[154]: https://github.com/Xunnamius/next-test-api-route-handler/commit/11e192a670c5cf40faff32abeecb610534cd382b -[155]: https://github.com/Xunnamius/next-test-api-route-handler/commit/9e1705b88fbcb5c4794abfb56691bdea7500db0d -[156]: https://github.com/Xunnamius/next-test-api-route-handler/commit/035e98bbe4b6bcf1ec6de40ee38b36ec107e8186 -[157]: https://github.com/Xunnamius/next-test-api-route-handler/commit/44d1967a412ca67829deeb29c7603ddf7e42f435 -[158]: https://github.com/Xunnamius/next-test-api-route-handler/commit/dd72fd1859fd74df3af0d47a1747d8c404abc3a7 -[159]: https://github.com/Xunnamius/next-test-api-route-handler/commit/004a657bafaab0419e645b6388c7536e38a1ef22 -[160]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6df7e73fff51036c63efc7ba898c3d76bc47deb7 -[161]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6cefa7ae41832e61ef6df75409be61141f7d1687 -[162]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.17...v1.2.18 -[163]: https://github.com/Xunnamius/next-test-api-route-handler/commit/042291d26742dfdda3742e6171efa25e9d3953ce -[164]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.16...v1.2.17 -[165]: https://github.com/Xunnamius/next-test-api-route-handler/commit/65f48a3d97184bb8a1be4fd27e86be0d7cd6bb00 -[166]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5ed6dbd1cdcb15745f4979f1a716d9bce9a93afb -[167]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.15...v1.2.16 -[168]: https://github.com/Xunnamius/next-test-api-route-handler/commit/aeef7a9726934852e1a51c9da98c4a96a9c70044 -[169]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.14...v1.2.15 -[170]: https://github.com/Xunnamius/next-test-api-route-handler/commit/964bc47f80691e83d92082fcaa0679219b8543f5 -[171]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.13...v1.2.14 -[172]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ed357f5211a49bfffbb28f03d60f157fa23d14b4 -[173]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.12...v1.2.13 -[174]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d224f5eff5a786b96614b2c3f826eba610027da0 -[175]: https://github.com/janhesters -[176]: https://github.com/Xunnamius/next-test-api-route-handler/commit/473ff500fb2c954ce32be911bde943259ae1bbef -[177]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f7a12ded8f43359fd3079ea8294a2199c34b2d26 -[178]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d7bc091fe8f8e85b70987cfa4c663c7c8fd018c8 -[179]: https://github.com/Xunnamius/next-test-api-route-handler/commit/9ebac018798ac82b97b8163bc5713b43001f592c -[180]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6adde1576f4aeb8b9a72cdcefc2ea6bd4b71a5cd -[181]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e508c06b77d225f150ebfce6409c2506a88efe4c -[182]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5e3893a425b95ac2b12edc2195171de85afcfd0a -[183]: https://github.com/Xunnamius/next-test-api-route-handler/commit/cbf22fdd78e28e02ec4213156c6c72ba16c8bfa3 -[184]: https://github.com/Xunnamius/next-test-api-route-handler/commit/71e9103df5660fea2af3211b1d6c1fa72b1dd3c7 -[185]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f01ce4041b2fb1fd24052ce17008df9746652730 -[186]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a3526f28057201fcce19c752e554e705b8e3a922 -[187]: https://github.com/Xunnamius/next-test-api-route-handler/commit/661e62d53be74211d3d158ad90c196f43c8fe6db -[188]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1f2ad6a2cdc863b183ac7f7bef756dd90c057ebe -[189]: https://github.com/Xunnamius/next-test-api-route-handler/commit/c64f761c3b2cc69cf07cd7dd88e9671deb66fc4f -[190]: https://github.com/Xunnamius/next-test-api-route-handler/commit/4a0552d2c730842371325111276c58651dabc558 -[191]: https://github.com/Xunnamius/next-test-api-route-handler/commit/856435f02ebe2f44b13c92cc6c794eeab2b345d0 -[192]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b3273dfbe43cb4c9ececdb4863ff4259f38807ec -[193]: https://github.com/Xunnamius/next-test-api-route-handler/commit/fffe02e14615daba1f9f8ec1bb2a4024ceb93e84 -[194]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a60793c620fe926308f8c99c61076da81aebe2fa -[195]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.11...v1.2.12 -[196]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6eb2a348b1352e9f30d7ecacbaba01fa11cf1cfe -[197]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.10...v1.2.11 -[198]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e589c1d48aa1dae40643385c6acfcbacf9b40e16 -[199]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.9...v1.2.10 -[200]: https://github.com/Xunnamius/next-test-api-route-handler/commit/52a22765e17759271e7ba6c83ce9f3609500b5f3 -[201]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.8...v1.2.9 -[202]: https://github.com/Xunnamius/next-test-api-route-handler/commit/12e5bbe1bf36fda3ef938c7ed7cd445fec3901c9 -[203]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.7...v1.2.8 -[204]: https://github.com/Xunnamius/next-test-api-route-handler/commit/87dc31f264682d8048ee8d4cba4dbf866666bf07 -[205]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.6...v1.2.7 -[206]: https://github.com/Xunnamius/next-test-api-route-handler/commit/94cfa3806bfa0250e9b2dd5b3abfb2ff65c77c6a -[207]: https://github.com/Xunnamius/next-test-api-route-handler/commit/62089c79f6c9b585d2bb8ca0a8b87bd355b8695f -[208]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.5...v1.2.6 -[209]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2cf1d29159fb746dc4a7c09a8193e46c6bec3823 -[210]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.4...v1.2.5 -[211]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a307efcf2cdf60679d68fab385bdc8951a476ace -[212]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1823c055f034e528337c68d710164097e423f6e2 -[213]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.3...v1.2.4 -[214]: https://github.com/Xunnamius/next-test-api-route-handler/commit/4e5e12c0df4fc80abb696d32718440ff294902e7 -[215]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.2...v1.2.3 -[216]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a111c87ccd863ce4dac85a5bd0281d87affe3b63 -[217]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.1...v1.2.2 -[218]: https://github.com/Xunnamius/next-test-api-route-handler/commit/98b65c6da330040e4bcbc22fe28db87c3965fd0e -[219]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.0...v1.2.1 -[220]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6ef6cbeb143648eb1fed5eff39071a06e7354275 -[221]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.1.3...v1.2.0 -[222]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b9d2bf010fba4b163e1eea0801271292a0e74308 -[223]: https://github.com/Xunnamius/next-test-api-route-handler/commit/45a79d41835b5146912511f8b583c9128d154cf9 -[224]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e0e1fd951fbe63c04c264ad11ab1fa7a39e1679a -[225]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.1.2...v1.1.3 -[226]: https://github.com/Xunnamius/next-test-api-route-handler/commit/c82695a8816b6cd5f0e11d09cc2f948a30a416e9 -[227]: https://github.com/Xunnamius/next-test-api-route-handler/commit/813b21ad1e2c78594903b3a8f504f4460d8e506e -[228]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.1.1...v1.1.2 -[229]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b68c721e5100baa883c7096e5cc4e81c1c60ed00 -[230]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.1.0...v1.1.1 -[231]: https://github.com/Xunnamius/next-test-api-route-handler/commit/750055b92699fc7f1c06349ccdb0ddc0179f891a -[232]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d604dfc39d2e77cbe1234b8349a2ecef81a9e54a -[233]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.10...v1.1.0 -[234]: https://github.com/Xunnamius/next-test-api-route-handler/commit/0e7541fbecd2e3bacc124f624bfca2b56ceeb89f -[235]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ccf54fb480e35961647900d345149d3cd1cf60d8 -[236]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.9...v1.0.10 -[237]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.8...v1.0.9 -[238]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.7...v1.0.8 -[239]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.6...v1.0.7 -[240]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.5...v1.0.6 -[241]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.4...v1.0.5 -[242]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.3...v1.0.4 -[243]: https://github.com/Xunnamius/next-test-api-route-handler/compare/1.0.2...v1.0.3 -[244]: https://github.com/Xunnamius/next-test-api-route-handler/compare/1.0.1...1.0.2 -[245]: https://github.com/Xunnamius/next-test-api-route-handler/compare/1.0.0...1.0.1 +[3]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v4.0.0...v4.0.1 +[4]: https://github.com/Xunnamius/next-test-api-route-handler/commit/09389fe314bfe1048493b979bf79c65a6cdc27e5 +[5]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.2.0...v4.0.0 +[6]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e2d8865b3b91f735e98d6c0a0c1e1c88d41e8802 +[7]: https://github.com/Xunnamius/next-test-api-route-handler/issues/938 +[8]: https://github.com/Xunnamius/next-test-api-route-handler/issues/773 +[9]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5574831366a1678c12cb315bf4928dac99408b28 +[10]: https://github.com/Xunnamius/next-test-api-route-handler/issues/946 +[11]: https://github.com/Xunnamius/next-test-api-route-handler/commit/db599aceb97e9b9d36a9461c34084346287b097d +[12]: https://github.com/Xunnamius/next-test-api-route-handler/commit/fdfec8cbdc465df160a169bfdee972054d514eeb +[13]: https://github.com/Xunnamius/next-test-api-route-handler/commit/59f54a5aabc4356767e3ba2b4c0b551cd61e9891 +[14]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5c5f9a48118896c43c03d19e3b12539c7a250714 +[15]: https://github.com/Xunnamius/next-test-api-route-handler/issues/875 +[16]: https://github.com/Xunnamius/next-test-api-route-handler/commit/43680d926fe803817507b4b9394fa5810752cf1f +[17]: https://github.com/Xunnamius/next-test-api-route-handler/commit/75d4e1f4d1bcc92d9680bb0d74cf26667012265a +[18]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f715331be1b66cb5807785d74aeb47b692492302 +[19]: https://github.com/Xunnamius/next-test-api-route-handler/commit/85bb8fa5e60e2019e072367063a25b745d675ed9 +[20]: https://github.com/Xunnamius/next-test-api-route-handler/commit/0133e113145dc0c3836be3a73336ab2c024b66e7 +[21]: https://github.com/Xunnamius/next-test-api-route-handler/commit/62f1d0b2c5ca0146b903d233b73b659a54b7f16e +[22]: https://github.com/Xunnamius/next-test-api-route-handler/commit/913cbd0f0487c9c98146855413fb91e16bb4a7b0 +[23]: https://github.com/Xunnamius/next-test-api-route-handler/commit/702cb444cc5e5c15b2d2b1000f27fca8368678e7 +[24]: https://github.com/Xunnamius/next-test-api-route-handler/commit/dc237233338af416993b0ec683a844abb6fab02b +[25]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d72ae876557d5f2e71da99a2d285c12bbe77319b +[26]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.10...v3.2.0 +[27]: https://github.com/Xunnamius/next-test-api-route-handler/commit/93b8a3c92eb14a5b2d1006c315e26a3c3547a1c3 +[28]: https://github.com/Xunnamius/next-test-api-route-handler/issues/916 +[29]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.9...v3.1.10 +[30]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ca1da40c8f14b9c4a39f198787f526759cd7fa8f +[31]: https://github.com/Xunnamius/next-test-api-route-handler/issues/887 +[32]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a9d136b2ada5dcac26a8509fd4590a2dec805a56 +[33]: https://github.com/Xunnamius/next-test-api-route-handler/commit/db0223ea0c74edab17489595c1c858eb035dd418 +[34]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e457064ddbc7e3f7b1d96c7f27b5b74479303f2f +[35]: https://github.com/Xunnamius/next-test-api-route-handler/issues/908 +[36]: https://github.com/Xunnamius/next-test-api-route-handler/commit/be90d573a3a6db09aa35e62bf228a70439f39e73 +[37]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.7...v3.1.8 +[38]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2a4ae05a6d163902daff9021b375db5f362149d7 +[39]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.6...v3.1.7 +[40]: https://github.com/Xunnamius/next-test-api-route-handler/commit/4af52f43dcba1f6f57887fb977b1430f8009d872 +[41]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.5...v3.1.6 +[42]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6e94142b83d4d6bed7812bca2bd4226a6b67c49a +[43]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.4...v3.1.5 +[44]: https://github.com/Xunnamius/next-test-api-route-handler/commit/405f84dabe68b72e11919066cc53dbc69ad4807d +[45]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.3...v3.1.4 +[46]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b05e112c11ead6b03c33a1a0bf1dc4fca4d29db5 +[47]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.2...v3.1.3 +[48]: https://github.com/Xunnamius/next-test-api-route-handler/commit/36a2c44e4b3f6f4f6d4ae9f8a566a42609ee362c +[49]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.1...v3.1.2 +[50]: https://github.com/Xunnamius/next-test-api-route-handler/commit/065b4455016812575e1714cc680e57184b49cf5d +[51]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.1.0...v3.1.1 +[52]: https://github.com/Xunnamius/next-test-api-route-handler/commit/484d7023539d95b8930d1665b4b613042b21fe9f +[53]: https://github.com/Xunnamius/next-test-api-route-handler/issues/487 +[54]: https://github.com/Xunnamius/next-test-api-route-handler/commit/77ad96dc4a1e3c79f9f75b6827f74f501cce8f5d +[55]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.0.3...v3.1.0 +[56]: https://github.com/Xunnamius/next-test-api-route-handler/commit/21b4b928a40b685a99df34ad20845c97615ee1c8 +[57]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2a2f0b28b07f8a176a5333551b5788033f90274a +[58]: https://github.com/Xunnamius/next-test-api-route-handler/commit/0ee4ce58b1c7a8b4ea2096c01142097f427b2a00 +[59]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.0.2...v3.0.3 +[60]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1e8cd8573cdcfa3489526244c40f373a71d92b40 +[61]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.0.1...v3.0.2 +[62]: https://github.com/Xunnamius/next-test-api-route-handler/commit/84f74f55027cd4e67b7e7929f668d4de387dc3c3 +[63]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v3.0.0...v3.0.1 +[64]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a925da287a02b6c36b588b6804e7b0b628364b25 +[65]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.4...v3.0.0 +[66]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d3c60cbd506eb22a4bb23554b06668076e687ad9 +[67]: https://github.com/Xunnamius/next-test-api-route-handler/commit/68d30dac2210e4f976afbf5c59378d6b314d4ec3 +[68]: https://github.com/Xunnamius/next-test-api-route-handler/commit/15c899a98423c612571886115308e68e20633a1b +[69]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5a1a2ee806f4cfd5d199d54dbd82f9f945da1694 +[70]: https://github.com/Xunnamius/next-test-api-route-handler/commit/73f44b78c2ee92b443adf99e248c03b985b80891 +[71]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.3...v2.3.4 +[72]: https://github.com/Xunnamius/next-test-api-route-handler/commit/854704ba9a7f374753e1a51f4fe00db761d7718f +[73]: https://github.com/Xunnamius/next-test-api-route-handler/commit/9302bcc882e9cd4080526f5192186b5259e08726 +[74]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.2...v2.3.3 +[75]: https://github.com/Xunnamius/next-test-api-route-handler/commit/597c2497a137c86696aba9b750b60f43d728495f +[76]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.1...v2.3.2 +[77]: https://github.com/Xunnamius/next-test-api-route-handler/commit/32eafabd592856a7ef286d7d0157e38a8275695d +[78]: https://github.com/Xunnamius/next-test-api-route-handler/commit/cd98aab7eea7bdd4b988402b57ce5e93572a7850 +[79]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.3.0...v2.3.1 +[80]: https://github.com/Xunnamius/next-test-api-route-handler/commit/91f08d426081afc1009e50d7b9ee6a0a2259268b +[81]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.2.1...v2.3.0 +[82]: https://github.com/Xunnamius/next-test-api-route-handler/commit/cd3cd95adb536b05a3cfe8bd0b12329c9acad166 +[83]: https://github.com/Xunnamius/next-test-api-route-handler/issues/373 +[84]: https://github.com/Xunnamius/next-test-api-route-handler/commit/8746e5fb6b337131303ad0c011c864d5152a864d +[85]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ae778d18f1c01e36070f0612067ec9f00f14a665 +[86]: https://github.com/Xunnamius/next-test-api-route-handler/issues/378 +[87]: https://github.com/Xunnamius/next-test-api-route-handler/commit/c216caa659a0fcf807ff6b1a0c11c2b331e27d3c +[88]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5fbb6d20cab097250cb8c62d0c5edb6fe80f0bfc +[89]: https://github.com/Xunnamius/next-test-api-route-handler/commit/346e8de1390ba46e9dc8faccc0977c5f50a9dc32 +[90]: https://github.com/Xunnamius/next-test-api-route-handler/commit/812e6f262726e328a57cdb0833fb8bfbbcce6708 +[91]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5034aba01f30bfb7787247054d12d7dbb90469e6 +[92]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.2.0...v2.2.1 +[93]: https://github.com/Xunnamius/next-test-api-route-handler/commit/de9ee177491855eb0ac095f9a1a3e5cfad820420 +[94]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.1.3...v2.2.0 +[95]: https://github.com/Xunnamius/next-test-api-route-handler/commit/419d5fe805928605b85fe0e5c64c80eb5a1d798d +[96]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.1.2...v2.1.3 +[97]: https://github.com/Xunnamius/next-test-api-route-handler/commit/7916f0026b59e6325b59395f61b142056c6c8220 +[98]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.1.1...v2.1.2 +[99]: https://github.com/Xunnamius/next-test-api-route-handler/commit/74241eeee173a6cf8f987608946c3d8691a67c27 +[100]: https://github.com/Xunnamius/next-test-api-route-handler/commit/33b6a34a126909a354a7c3f5d523b0fa47acb960 +[101]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1c3425caf7d80793a2c1e88ff8fbd29ada8adf2d +[102]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.1.0...v2.1.1 +[103]: https://github.com/Xunnamius/next-test-api-route-handler/commit/fd787ca116c3a84f9393f22bf7e898db0a22f5e1 +[104]: https://github.com/Xunnamius/next-test-api-route-handler/commit/87ed12b68e930342649c65a76455396879658d48 +[105]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.0.2...v2.1.0 +[106]: https://github.com/Xunnamius/next-test-api-route-handler/commit/c51cf0222e17066c03cd80e1c76c5e9f49cacc2e +[107]: https://github.com/Xunnamius/next-test-api-route-handler/issues/295 +[108]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2b14d8499f4845d0e2d20fd2098f509f5edc16f9 +[109]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f4772607ebb8641ea4e0d6ac2fd152f76dff3f7c +[110]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f61fd8c5ea52265a7ff15252d720d135890880f2 +[111]: https://github.com/Xunnamius/next-test-api-route-handler/issues/296 +[112]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.0.1...v2.0.2 +[113]: https://github.com/Xunnamius/next-test-api-route-handler/commit/fd53fefc6d5c2ff67ed2669b18e28b7ef7005c12 +[114]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e5c6a994d4b553369ae42b6be0ae1932346ebbd6 +[115]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v2.0.0...v2.0.1 +[116]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ef32668428df303c4e536aae5793ed14eee0ade5 +[117]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.24...v2.0.0 +[118]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ee31fa8cefdc2b8b8197d3889fb8aac27467b374 +[119]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2f1125cfb481e94af4248cf5b5dfce729cc4d662 +[120]: https://github.com/Xunnamius/next-test-api-route-handler/commit/75832099f4c4d0e329aca469ac16c8a25100c26d +[121]: https://github.com/Xunnamius/next-test-api-route-handler/commit/bc5e72d9d40f1991315ac0657a4b212331dc065f +[122]: https://github.com/Xunnamius/next-test-api-route-handler/commit/bc7eb3db18aa70345a1c11d96436b374a15c3b7f +[123]: https://github.com/Xunnamius/next-test-api-route-handler/commit/20ca255e01d0c2e7824707e19f41ca5a8de0140e +[124]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.23...v1.2.24 +[125]: https://github.com/Xunnamius/next-test-api-route-handler/commit/af177c5035c22ab923dd62f6dc82702373f740d4 +[126]: https://github.com/Xunnamius/next-test-api-route-handler/commit/364549e2845965954af62fdfa6c1dfa0d6f91f2f +[127]: https://github.com/Xunnamius/next-test-api-route-handler/commit/4db5d04d6a7117fe8e2113d2fafc6150a81f611c +[128]: https://github.com/Xunnamius/next-test-api-route-handler/commit/99ad1276e7e69218719ee2b27173e4ffcb7337f6 +[129]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6d523027b8d650ae0a2d121c349e6a4c48af6792 +[130]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1f7fad4d512f1839d96c6264f2d4abb1c5ed11e7 +[131]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d328a86317c60206bda565ba2e315113dadd0c9b +[132]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6e7173fca4cbe778419eeff92ddbf7c03c2b00d5 +[133]: https://github.com/Xunnamius/next-test-api-route-handler/commit/23cb7804d5f0e775b75eaefb4588beb179dcdcdf +[134]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1f25e5fb8b2797621d316e18b01ee503fb4d1263 +[135]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.22...v1.2.23 +[136]: https://github.com/Xunnamius/next-test-api-route-handler/commit/0040582d2f89e9a14c2335dc85cd5f9201bff644 +[137]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.21...v1.2.22 +[138]: https://github.com/Xunnamius/next-test-api-route-handler/commit/df9ede3ddde3a2df6a42224ab3302e599bd61516 +[139]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.20...v1.2.21 +[140]: https://github.com/Xunnamius/next-test-api-route-handler/commit/29aa25a9e2572be5b418fbee9d2d8aba2056583e +[141]: https://github.com/Xunnamius/next-test-api-route-handler/commit/806575792fe9e1522bd6bce0eb10f1bd3407da64 +[142]: https://github.com/Xunnamius/next-test-api-route-handler/commit/dd3e7faadf148b23994f443a2247cc1316639e7d +[143]: https://github.com/Xunnamius/next-test-api-route-handler/issues/126 +[144]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.19...v1.2.20 +[145]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5a2d98f3ddb34e9d934f16510a73cacd43ee42ee +[146]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.18...v1.2.19 +[147]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b4157eba128f6a787531fdabf2bebf78851a0d9a +[148]: https://github.com/Xunnamius/next-test-api-route-handler/commit/81533c8953adde75499cd11b552bca5f970addca +[149]: https://github.com/Xunnamius/next-test-api-route-handler/commit/3a4f0f150779a226ee3c9f45fde201391fa1bec0 +[150]: https://github.com/Xunnamius/next-test-api-route-handler/commit/72189e80136b0567de8fc65eed9b2a4be365ca1a +[151]: https://github.com/Xunnamius/next-test-api-route-handler/commit/cad0fb2b6153434d3be41f394f1fa636cc930435 +[152]: https://github.com/Xunnamius/next-test-api-route-handler/commit/54e51ebd0e133fb469306b76bc756c283a71a2c1 +[153]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b2685345493165cc63136b051cc5fafbf02f5c48 +[154]: https://github.com/Xunnamius/next-test-api-route-handler/commit/31c1d5b358df78e0f27e881c0329355d91370995 +[155]: https://github.com/Xunnamius/next-test-api-route-handler/commit/9d12004ad5adfc5d4d6992bdb67c52168829967e +[156]: https://github.com/Xunnamius/next-test-api-route-handler/commit/11e192a670c5cf40faff32abeecb610534cd382b +[157]: https://github.com/Xunnamius/next-test-api-route-handler/commit/9e1705b88fbcb5c4794abfb56691bdea7500db0d +[158]: https://github.com/Xunnamius/next-test-api-route-handler/commit/035e98bbe4b6bcf1ec6de40ee38b36ec107e8186 +[159]: https://github.com/Xunnamius/next-test-api-route-handler/commit/44d1967a412ca67829deeb29c7603ddf7e42f435 +[160]: https://github.com/Xunnamius/next-test-api-route-handler/commit/dd72fd1859fd74df3af0d47a1747d8c404abc3a7 +[161]: https://github.com/Xunnamius/next-test-api-route-handler/commit/004a657bafaab0419e645b6388c7536e38a1ef22 +[162]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6df7e73fff51036c63efc7ba898c3d76bc47deb7 +[163]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6cefa7ae41832e61ef6df75409be61141f7d1687 +[164]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.17...v1.2.18 +[165]: https://github.com/Xunnamius/next-test-api-route-handler/commit/042291d26742dfdda3742e6171efa25e9d3953ce +[166]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.16...v1.2.17 +[167]: https://github.com/Xunnamius/next-test-api-route-handler/commit/65f48a3d97184bb8a1be4fd27e86be0d7cd6bb00 +[168]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5ed6dbd1cdcb15745f4979f1a716d9bce9a93afb +[169]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.15...v1.2.16 +[170]: https://github.com/Xunnamius/next-test-api-route-handler/commit/aeef7a9726934852e1a51c9da98c4a96a9c70044 +[171]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.14...v1.2.15 +[172]: https://github.com/Xunnamius/next-test-api-route-handler/commit/964bc47f80691e83d92082fcaa0679219b8543f5 +[173]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.13...v1.2.14 +[174]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ed357f5211a49bfffbb28f03d60f157fa23d14b4 +[175]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.12...v1.2.13 +[176]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d224f5eff5a786b96614b2c3f826eba610027da0 +[177]: https://github.com/janhesters +[178]: https://github.com/Xunnamius/next-test-api-route-handler/commit/473ff500fb2c954ce32be911bde943259ae1bbef +[179]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f7a12ded8f43359fd3079ea8294a2199c34b2d26 +[180]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d7bc091fe8f8e85b70987cfa4c663c7c8fd018c8 +[181]: https://github.com/Xunnamius/next-test-api-route-handler/commit/9ebac018798ac82b97b8163bc5713b43001f592c +[182]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6adde1576f4aeb8b9a72cdcefc2ea6bd4b71a5cd +[183]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e508c06b77d225f150ebfce6409c2506a88efe4c +[184]: https://github.com/Xunnamius/next-test-api-route-handler/commit/5e3893a425b95ac2b12edc2195171de85afcfd0a +[185]: https://github.com/Xunnamius/next-test-api-route-handler/commit/cbf22fdd78e28e02ec4213156c6c72ba16c8bfa3 +[186]: https://github.com/Xunnamius/next-test-api-route-handler/commit/71e9103df5660fea2af3211b1d6c1fa72b1dd3c7 +[187]: https://github.com/Xunnamius/next-test-api-route-handler/commit/f01ce4041b2fb1fd24052ce17008df9746652730 +[188]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a3526f28057201fcce19c752e554e705b8e3a922 +[189]: https://github.com/Xunnamius/next-test-api-route-handler/commit/661e62d53be74211d3d158ad90c196f43c8fe6db +[190]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1f2ad6a2cdc863b183ac7f7bef756dd90c057ebe +[191]: https://github.com/Xunnamius/next-test-api-route-handler/commit/c64f761c3b2cc69cf07cd7dd88e9671deb66fc4f +[192]: https://github.com/Xunnamius/next-test-api-route-handler/commit/4a0552d2c730842371325111276c58651dabc558 +[193]: https://github.com/Xunnamius/next-test-api-route-handler/commit/856435f02ebe2f44b13c92cc6c794eeab2b345d0 +[194]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b3273dfbe43cb4c9ececdb4863ff4259f38807ec +[195]: https://github.com/Xunnamius/next-test-api-route-handler/commit/fffe02e14615daba1f9f8ec1bb2a4024ceb93e84 +[196]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a60793c620fe926308f8c99c61076da81aebe2fa +[197]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.11...v1.2.12 +[198]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6eb2a348b1352e9f30d7ecacbaba01fa11cf1cfe +[199]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.10...v1.2.11 +[200]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e589c1d48aa1dae40643385c6acfcbacf9b40e16 +[201]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.9...v1.2.10 +[202]: https://github.com/Xunnamius/next-test-api-route-handler/commit/52a22765e17759271e7ba6c83ce9f3609500b5f3 +[203]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.8...v1.2.9 +[204]: https://github.com/Xunnamius/next-test-api-route-handler/commit/12e5bbe1bf36fda3ef938c7ed7cd445fec3901c9 +[205]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.7...v1.2.8 +[206]: https://github.com/Xunnamius/next-test-api-route-handler/commit/87dc31f264682d8048ee8d4cba4dbf866666bf07 +[207]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.6...v1.2.7 +[208]: https://github.com/Xunnamius/next-test-api-route-handler/commit/94cfa3806bfa0250e9b2dd5b3abfb2ff65c77c6a +[209]: https://github.com/Xunnamius/next-test-api-route-handler/commit/62089c79f6c9b585d2bb8ca0a8b87bd355b8695f +[210]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.5...v1.2.6 +[211]: https://github.com/Xunnamius/next-test-api-route-handler/commit/2cf1d29159fb746dc4a7c09a8193e46c6bec3823 +[212]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.4...v1.2.5 +[213]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a307efcf2cdf60679d68fab385bdc8951a476ace +[214]: https://github.com/Xunnamius/next-test-api-route-handler/commit/1823c055f034e528337c68d710164097e423f6e2 +[215]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.3...v1.2.4 +[216]: https://github.com/Xunnamius/next-test-api-route-handler/commit/4e5e12c0df4fc80abb696d32718440ff294902e7 +[217]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.2...v1.2.3 +[218]: https://github.com/Xunnamius/next-test-api-route-handler/commit/a111c87ccd863ce4dac85a5bd0281d87affe3b63 +[219]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.1...v1.2.2 +[220]: https://github.com/Xunnamius/next-test-api-route-handler/commit/98b65c6da330040e4bcbc22fe28db87c3965fd0e +[221]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.2.0...v1.2.1 +[222]: https://github.com/Xunnamius/next-test-api-route-handler/commit/6ef6cbeb143648eb1fed5eff39071a06e7354275 +[223]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.1.3...v1.2.0 +[224]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b9d2bf010fba4b163e1eea0801271292a0e74308 +[225]: https://github.com/Xunnamius/next-test-api-route-handler/commit/45a79d41835b5146912511f8b583c9128d154cf9 +[226]: https://github.com/Xunnamius/next-test-api-route-handler/commit/e0e1fd951fbe63c04c264ad11ab1fa7a39e1679a +[227]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.1.2...v1.1.3 +[228]: https://github.com/Xunnamius/next-test-api-route-handler/commit/c82695a8816b6cd5f0e11d09cc2f948a30a416e9 +[229]: https://github.com/Xunnamius/next-test-api-route-handler/commit/813b21ad1e2c78594903b3a8f504f4460d8e506e +[230]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.1.1...v1.1.2 +[231]: https://github.com/Xunnamius/next-test-api-route-handler/commit/b68c721e5100baa883c7096e5cc4e81c1c60ed00 +[232]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.1.0...v1.1.1 +[233]: https://github.com/Xunnamius/next-test-api-route-handler/commit/750055b92699fc7f1c06349ccdb0ddc0179f891a +[234]: https://github.com/Xunnamius/next-test-api-route-handler/commit/d604dfc39d2e77cbe1234b8349a2ecef81a9e54a +[235]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.10...v1.1.0 +[236]: https://github.com/Xunnamius/next-test-api-route-handler/commit/0e7541fbecd2e3bacc124f624bfca2b56ceeb89f +[237]: https://github.com/Xunnamius/next-test-api-route-handler/commit/ccf54fb480e35961647900d345149d3cd1cf60d8 +[238]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.9...v1.0.10 +[239]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.8...v1.0.9 +[240]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.7...v1.0.8 +[241]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.6...v1.0.7 +[242]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.5...v1.0.6 +[243]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.4...v1.0.5 +[244]: https://github.com/Xunnamius/next-test-api-route-handler/compare/v1.0.3...v1.0.4 +[245]: https://github.com/Xunnamius/next-test-api-route-handler/compare/1.0.2...v1.0.3 +[246]: https://github.com/Xunnamius/next-test-api-route-handler/compare/1.0.1...1.0.2 +[247]: https://github.com/Xunnamius/next-test-api-route-handler/compare/1.0.0...1.0.1 diff --git a/docs/README.md b/docs/README.md index 19cbfa81..41fd512e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -33,7 +33,7 @@ next-test-api-route-handler #### Defined in -[index.ts:107](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L107) +[index.ts:94](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L94) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[index.ts:102](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L102) +[index.ts:89](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L89) ## Functions @@ -79,4 +79,4 @@ in a Next-like testing environment. #### Defined in -[index.ts:272](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L272) +[index.ts:259](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L259) diff --git a/docs/interfaces/NtarhInit.md b/docs/interfaces/NtarhInit.md index 1ef2a785..75b9c864 100644 --- a/docs/interfaces/NtarhInit.md +++ b/docs/interfaces/NtarhInit.md @@ -46,7 +46,7 @@ false #### Defined in -[index.ts:130](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L130) +[index.ts:117](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L117) ___ @@ -79,4 +79,4 @@ one destructured parameter: `fetch`, which is equivalent to #### Defined in -[index.ts:136](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L136) +[index.ts:123](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L123) diff --git a/docs/interfaces/NtarhInitAppRouter.md b/docs/interfaces/NtarhInitAppRouter.md index 5cb4849c..3ce4457a 100644 --- a/docs/interfaces/NtarhInitAppRouter.md +++ b/docs/interfaces/NtarhInitAppRouter.md @@ -44,7 +44,7 @@ for details. #### Defined in -[index.ts:153](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L153) +[index.ts:140](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L140) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[index.ts:154](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L154) +[index.ts:141](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L141) ___ @@ -72,7 +72,7 @@ once. #### Defined in -[index.ts:164](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L164) +[index.ts:151](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L151) ___ @@ -112,7 +112,7 @@ is handled by `Request` automatically. #### Defined in -[index.ts:174](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L174) +[index.ts:161](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L161) ___ @@ -141,7 +141,7 @@ false #### Defined in -[index.ts:130](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L130) +[index.ts:117](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L117) ___ @@ -181,7 +181,7 @@ NextRequest(returnedRequest, { ... })`. #### Defined in -[index.ts:187](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L187) +[index.ts:174](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L174) ___ @@ -223,7 +223,7 @@ unhandled exception occurs _and_ `rejectOnHandlerError` is `true`. #### Defined in -[index.ts:200](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L200) +[index.ts:187](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L187) ___ @@ -260,7 +260,7 @@ one destructured parameter: `fetch`, which is equivalent to #### Defined in -[index.ts:136](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L136) +[index.ts:123](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L123) ___ @@ -273,4 +273,4 @@ NextRequest('your-url', request)` #### Defined in -[index.ts:205](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L205) +[index.ts:192](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L192) diff --git a/docs/interfaces/NtarhInitPagesRouter.md b/docs/interfaces/NtarhInitPagesRouter.md index 13fc8291..22aea593 100644 --- a/docs/interfaces/NtarhInitPagesRouter.md +++ b/docs/interfaces/NtarhInitPagesRouter.md @@ -38,7 +38,7 @@ The parameters expected by `testApiHandler` when using `pagesHandler`. #### Defined in -[index.ts:223](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L223) +[index.ts:210](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L210) ___ @@ -56,7 +56,7 @@ will have a typed result. #### Defined in -[index.ts:222](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L222) +[index.ts:209](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L209) ___ @@ -74,7 +74,7 @@ once. #### Defined in -[index.ts:233](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L233) +[index.ts:220](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L220) ___ @@ -114,7 +114,7 @@ is handled automatically. #### Defined in -[index.ts:243](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L243) +[index.ts:230](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L230) ___ @@ -143,7 +143,7 @@ false #### Defined in -[index.ts:130](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L130) +[index.ts:117](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L117) ___ @@ -179,7 +179,7 @@ lowercase.** #### Defined in -[index.ts:254](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L254) +[index.ts:241](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L241) ___ @@ -209,7 +209,7 @@ to edit the response _before_ it's injected into the handler. #### Defined in -[index.ts:259](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L259) +[index.ts:246](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L246) ___ @@ -246,7 +246,7 @@ one destructured parameter: `fetch`, which is equivalent to #### Defined in -[index.ts:136](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L136) +[index.ts:123](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L123) ___ @@ -259,4 +259,4 @@ ___ #### Defined in -[index.ts:264](https://github.com/Xunnamius/next-test-api-route-handler/blob/6538d02/src/index.ts#L264) +[index.ts:251](https://github.com/Xunnamius/next-test-api-route-handler/blob/a170b43/src/index.ts#L251) diff --git a/package-lock.json b/package-lock.json index 542daad7..f643777e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "next-test-api-route-handler", - "version": "4.0.0", + "version": "4.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "next-test-api-route-handler", - "version": "4.0.0", + "version": "4.0.1", "license": "MIT", "dependencies": { "@whatwg-node/server": "^0.9.23", diff --git a/package.json b/package.json index 8e845a9e..e8594202 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "next-test-api-route-handler", - "version": "4.0.0", + "version": "4.0.1", "description": "Confidently unit and integration test your Next.js API routes/handlers in an isolated Next.js-like environment", "keywords": [ "api",