From 75b87a690ef9ff838d5c82aaec77adc6070d1622 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 11 Jul 2023 13:16:18 +0000 Subject: [PATCH] Version Packages --- .changeset/fast-impalas-thank.md | 7 ------- packages/core/CHANGELOG.md | 8 ++++++++ packages/core/package.json | 2 +- packages/mocks/CHANGELOG.md | 7 +++++++ packages/mocks/package.json | 2 +- 5 files changed, 17 insertions(+), 9 deletions(-) delete mode 100644 .changeset/fast-impalas-thank.md diff --git a/.changeset/fast-impalas-thank.md b/.changeset/fast-impalas-thank.md deleted file mode 100644 index 3879d29..0000000 --- a/.changeset/fast-impalas-thank.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@acquirejs/core": minor ---- - -Added support for middleware on the `Acquire` and `AcquireRequestExecutor` classes. Middleware can be applied using the `use`, `useOnExecution` and `useOnMocking` methods. -Removed `setMockInterceptor` and `clearMockInterceptor` methods from the `AcquireRequestExecutor` class. Intercepting mock calls should now be done using middleware. -Removed the `useLogger` method from the `Acquire` class. Logging can now be done using the `AcquireRequestLogger` middleware. diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index cf66f44..38eb56c 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @acquirejs/core +## 0.2.0 + +### Minor Changes + +- 8604bfd: Added support for middleware on the `Acquire` and `AcquireRequestExecutor` classes. Middleware can be applied using the `use`, `useOnExecution` and `useOnMocking` methods. + Removed `setMockInterceptor` and `clearMockInterceptor` methods from the `AcquireRequestExecutor` class. Intercepting mock calls should now be done using middleware. + Removed the `useLogger` method from the `Acquire` class. Logging can now be done using the `AcquireRequestLogger` middleware. + ## 0.1.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index d38c47a..09e5438 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -2,7 +2,7 @@ "name": "@acquirejs/core", "author": "Erik Lysne", "license": "MIT", - "version": "0.1.0", + "version": "0.2.0", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", diff --git a/packages/mocks/CHANGELOG.md b/packages/mocks/CHANGELOG.md index 30483cd..f2a69da 100644 --- a/packages/mocks/CHANGELOG.md +++ b/packages/mocks/CHANGELOG.md @@ -1,5 +1,12 @@ # @acquirejs/mocks +## 0.2.0 + +### Patch Changes + +- Updated dependencies [8604bfd] + - @acquirejs/core@0.2.0 + ## 0.1.0 ### Patch Changes diff --git a/packages/mocks/package.json b/packages/mocks/package.json index ab0a2a2..ea83387 100644 --- a/packages/mocks/package.json +++ b/packages/mocks/package.json @@ -2,7 +2,7 @@ "name": "@acquirejs/mocks", "author": "Erik Lysne", "license": "MIT", - "version": "0.1.0", + "version": "0.2.0", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js",