Update dependency strong-mock to v9 (renovate-deps)#11
Open
renovate[bot] wants to merge 1 commit intorenovate-depsfrom
Open
Update dependency strong-mock to v9 (renovate-deps)#11renovate[bot] wants to merge 1 commit intorenovate-depsfrom
renovate[bot] wants to merge 1 commit intorenovate-depsfrom
Conversation
Contributor
Author
Branch automerge failureThis PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.
|
3e876c8 to
cdb13b1
Compare
ab83666 to
096f794
Compare
07b40c3 to
4cb043d
Compare
9629cd2 to
7571feb
Compare
93a9bf7 to
56eb7a3
Compare
d334262 to
006a096
Compare
60d26db to
55dd8a8
Compare
de0a184 to
d3016a0
Compare
6897666 to
a066297
Compare
2e98cfd to
ad22d7d
Compare
| datasource | package | from | to | | ---------- | ----------- | ----- | ----- | | npm | strong-mock | 8.0.1 | 9.2.0 | ## [v9.2.0](https://github.com/NiGhTTraX/strong-mock/blob/HEAD/CHANGELOG.md#920-2026-02-12) ##### Features - Allow mock name customization ([73c3b1c](NiGhTTraX/strong-mock@73c3b1c)) - You can now name mocks with `mock<T>({ name: 'MyCustomMock' })` to help identify them in error messages. ## [v9.1.0](https://github.com/NiGhTTraX/strong-mock/blob/HEAD/CHANGELOG.md#910-2026-01-13) > \[!IMPORTANT]\ > The next major version (v10) will be ESM-only. Since Node 20.19 supports `require(esm)` by default (see [Node 20.19.0 release post](https://nodejs.org/en/blog/release/v20.19.0/#requireesm-is-now-enabled-by-default)), no changes should be required for CJS projects using Node 20.19 or higher. ##### Features - Publish ESM build, alongside CJS ([f1ece16](NiGhTTraX/strong-mock@f1ece16)) - This is in preparation for v10, which will be ESM-only. ESM projects should use the ESM build automatically, while CJS projects will continue to use the CJS build. - Support nesting matchers in `deepEquals` (the default matcher) ([7c243d2](NiGhTTraX/strong-mock@7c243d2)) - Example: `when(() => mockedFn({ foo: It.isNumber() }))` ##### Bug Fixes - Fix diff integration with IDEs for vitest ([f881346](NiGhTTraX/strong-mock@f881346)) ##### [9.0.1](NiGhTTraX/strong-mock@v9.0.0...v9.0.1) (2024-11-23) ##### Bug Fixes - **deps:** update dependency jest-diff to \~29.7.0 ([50a3aa8](NiGhTTraX/strong-mock@50a3aa8)) - Pretty print nested matchers in `isArray` ([24f9deb](NiGhTTraX/strong-mock@24f9deb)) ## [v9.0.1](https://github.com/NiGhTTraX/strong-mock/blob/HEAD/CHANGELOG.md#901-2024-11-23) ## [v9.0.0](https://github.com/NiGhTTraX/strong-mock/blob/HEAD/CHANGELOG.md#900-2024-05-27) This version greatly improves error messages and the matcher API. Check the [migration guide](MIGRATION.md#migrating-to-v9). ```typescript const fn = mock<(x: number, y: number, z: { foo: string }) => number>(); when(() => fn(1, 2, { foo: 'bar' })).thenReturn(42); fn(1, 2, { foo: 'baz' }); ``` | Before | After | | ------------------------------ | ---------------------------- | |  |  | ##### ⚠ BREAKING CHANGES - `isObject` has been replaced by `isPlainObject` and `containsObject` - Merge `isString`'s optional `containing` and `matching` args - Rename the `toJSON` matcher method to `toString` - Don't allow empty partials in `containsObject` ##### Features - Attach actual/expected args to error instance to enable IDE diffs ([7a04a43](NiGhTTraX/strong-mock@7a04a43)) - Improve `isArray` diff ([a5aaddd](NiGhTTraX/strong-mock@a5aaddd)) - Improve `isNumber` diff ([55647ed](NiGhTTraX/strong-mock@55647ed)) - Improve `isObject` diff ([5533bcf](NiGhTTraX/strong-mock@5533bcf)) - Improve `isString` diff ([5c73fbb](NiGhTTraX/strong-mock@5c73fbb)) - Improve `willCapture` diff ([7d92ce9](NiGhTTraX/strong-mock@7d92ce9)) - Improve colors in UnexpectedCall error message ([f326954](NiGhTTraX/strong-mock@f326954)) - Pretty print argument diffs in UnexpectedCall error messages ([ba4f6b5](NiGhTTraX/strong-mock@ba4f6b5)) ##### Bug Fixes - Fix `isPartial` allowing unexpected keys ([cc0b881](NiGhTTraX/strong-mock@cc0b881)) - Fix `isPartial` not working with interfaces ([169b336](NiGhTTraX/strong-mock@169b336)) - `isObject` now correctly fails for `null` and `undefined` ([9b50fe4](NiGhTTraX/strong-mock@9b50fe4)) - Fix `It` docstrings ([df7f91a](NiGhTTraX/strong-mock@df7f91a)) - Handle non string keys in `isObject` ([87cb768](NiGhTTraX/strong-mock@87cb768))
ad22d7d to
9b53d63
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
~8.0.1→~9.2.0Release Notes
NiGhTTraX/strong-mock (strong-mock)
v9.2.0Compare Source
Features
mock<T>({ name: 'MyCustomMock' })to help identify them in error messages.v9.1.0Compare Source
Features
deepEquals(the default matcher) (7c243d2)when(() => mockedFn({ foo: It.isNumber() }))Bug Fixes
9.0.1 (2024-11-23)
Bug Fixes
isArray(24f9deb)v9.0.1Compare Source
v9.0.0Compare Source
This version greatly improves error messages and the matcher API. Check the migration guide.
⚠ BREAKING CHANGES
isObjecthas been replaced byisPlainObjectandcontainsObjectisString's optionalcontainingandmatchingargstoJSONmatcher method totoStringcontainsObjectFeatures
isArraydiff (a5aaddd)isNumberdiff (55647ed)isObjectdiff (5533bcf)isStringdiff (5c73fbb)willCapturediff (7d92ce9)Bug Fixes
isPartialallowing unexpected keys (cc0b881)isPartialnot working with interfaces (169b336)isObjectnow correctly fails fornullandundefined(9b50fe4)Itdocstrings (df7f91a)isObject(87cb768)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.