Skip to content

Bump mockito-core from 3.12.4 to 4.2.0#249

Merged
mergify[bot] merged 1 commit into
mainfrom
dependabot/maven/org.mockito-mockito-core-4.2.0
Jan 12, 2022
Merged

Bump mockito-core from 3.12.4 to 4.2.0#249
mergify[bot] merged 1 commit into
mainfrom
dependabot/maven/org.mockito-mockito-core-4.2.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Dec 20, 2021

Copy link
Copy Markdown
Contributor

Bumps mockito-core from 3.12.4 to 4.2.0.

Release notes

Sourced from mockito-core's releases.

v4.2.0

Changelog generated by Shipkit Changelog Gradle Plugin

4.2.0

v4.1.0

Major new feature: @DoNotMock

You can now mark classes/interfaces with @org.mockito.DoNotMock to disallow mocking with Mockito. For more information, see our documentation: https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/DoNotMock.html

Changelog generated by Shipkit Changelog Gradle Plugin

4.1.0

... (truncated)

Commits
  • 8319cc5 Update ByteBuddy to 1.12.4 (#2515)
  • 27e6df6 Bump kotlinVersion from 1.6.0 to 1.6.10 (#2514)
  • 95bc5b2 Add DoNotMock mention to main JavaDoc (#2512)
  • b91bd29 Replace ExpectedException in MissingInvocationInOrderCheckerTest (#2511)
  • 44ba00f Fixes #2497: Throw exception on invalid matchers for mockStatic (#2506)
  • 582d890 Bump com.diffplug.spotless from 6.0.2 to 6.0.4 (#2501)
  • 44aec66 Update Gradle to version 7.3.1 (#2509)
  • a82d5c3 Merge pull request #2505 from mockito/initialize-interfaces
  • 4635780 Make sure interface types are initialized before inline mocking to avoid bloc...
  • dbcbb3f Bump org.eclipse.osgi from 3.17.0 to 3.17.100 (#2504)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [mockito-core](https://github.com/mockito/mockito) from 3.12.4 to 4.2.0.
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v3.12.4...v4.2.0)

---
updated-dependencies:
- dependency-name: org.mockito:mockito-core
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java labels Dec 20, 2021
@arcade-player arcade-player self-requested a review January 12, 2022 20:43
@mergify mergify Bot merged commit 6b94b9a into main Jan 12, 2022
@dependabot dependabot Bot deleted the dependabot/maven/org.mockito-mockito-core-4.2.0 branch January 12, 2022 20:44
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
…g.mockito-mockito-core-4.2.0

Bump mockito-core from 3.12.4 to 4.2.0
mergify Bot added a commit that referenced this pull request Jul 12, 2026
…3.5.1 in /studio in the build-tools group [skip ci]

Bumps the build-tools group in /studio with 1 update: [webpack-sources](https://github.com/webpack/webpack-sources).
Updates `webpack-sources` from 3.5.0 to 3.5.1
Release notes

*Sourced from [webpack-sources's releases](https://github.com/webpack/webpack-sources/releases).*

> v3.5.1
> ------
>
> ### Patch Changes
>
> * perf: stream potential tokens in OriginalSource instead of materialising an array (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#246](https://redirect.github.com/webpack/webpack-sources/pull/246))
>
>   `OriginalSource.streamChunks` (and therefore `map()` / `sourceAndMap()`) previously built the full `splitIntoPotentialTokens` array of substrings and then iterated it — even though `map()` and `sourceAndMap()` run with `finalSource: true` and discard every chunk substring. The scan is now streamed by offset, so chunk substrings are only allocated when actually emitted. This removes the intermediate array and, on the dominant final-source paths, all per-token slices: `map()` / `sourceAndMap()` allocate ~38–46% less memory and run ~15–40% faster.
> * Reduce allocations and CPU in `map()` / `sourceAndMap()`: mappings are serialized into a reused byte buffer instead of per-mapping strings, `ReplaceSource` verifies original content through a line-offset index instead of splitting sources into line arrays, and `ReplaceSource.streamChunks` emits position-only chunks and returns the final source directly when `finalSource` is requested. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#251](https://redirect.github.com/webpack/webpack-sources/pull/251))
> * Skip sorting ReplaceSource replacements when they were added in order. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#249](https://redirect.github.com/webpack/webpack-sources/pull/249))
> * perf: use lookup table in splitIntoPotentialTokens for faster character classification (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#240](https://redirect.github.com/webpack/webpack-sources/pull/240))
>
>   Replace multi-comparison chains (4 comparisons in phase 1, 6 in phase 2) with a single Uint8Array bitmask lookup per character. This reduces per-character branching overhead, yielding ~7% improvement on typical source and ~21% on large sources.


Changelog

*Sourced from [webpack-sources's changelog](https://github.com/webpack/webpack-sources/blob/main/CHANGELOG.md).*

> 3.5.1
> -----
>
> ### Patch Changes
>
> * perf: stream potential tokens in OriginalSource instead of materialising an array (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#246](https://redirect.github.com/webpack/webpack-sources/pull/246))
>
>   `OriginalSource.streamChunks` (and therefore `map()` / `sourceAndMap()`) previously built the full `splitIntoPotentialTokens` array of substrings and then iterated it — even though `map()` and `sourceAndMap()` run with `finalSource: true` and discard every chunk substring. The scan is now streamed by offset, so chunk substrings are only allocated when actually emitted. This removes the intermediate array and, on the dominant final-source paths, all per-token slices: `map()` / `sourceAndMap()` allocate ~38–46% less memory and run ~15–40% faster.
> * Reduce allocations and CPU in `map()` / `sourceAndMap()`: mappings are serialized into a reused byte buffer instead of per-mapping strings, `ReplaceSource` verifies original content through a line-offset index instead of splitting sources into line arrays, and `ReplaceSource.streamChunks` emits position-only chunks and returns the final source directly when `finalSource` is requested. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#251](https://redirect.github.com/webpack/webpack-sources/pull/251))
> * Skip sorting ReplaceSource replacements when they were added in order. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#249](https://redirect.github.com/webpack/webpack-sources/pull/249))
> * perf: use lookup table in splitIntoPotentialTokens for faster character classification (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#240](https://redirect.github.com/webpack/webpack-sources/pull/240))
>
>   Replace multi-comparison chains (4 comparisons in phase 1, 6 in phase 2) with a single Uint8Array bitmask lookup per character. This reduces per-character branching overhead, yielding ~7% improvement on typical source and ~21% on large sources.


Commits

* [`210e0a4`](webpack/webpack-sources@210e0a4) chore(release): new release ([#245](https://redirect.github.com/webpack/webpack-sources/issues/245))
* [`f38af31`](webpack/webpack-sources@f38af31) perf: cut map()/sourceAndMap() allocations via mappings writer and streaming ...
* [`bf3033c`](webpack/webpack-sources@bf3033c) chore(deps-dev): bump the dependencies group with 2 updates ([#247](https://redirect.github.com/webpack/webpack-sources/issues/247))
* [`de37f65`](webpack/webpack-sources@de37f65) perf: stream potential tokens in OriginalSource, avoid discarded slices ([#246](https://redirect.github.com/webpack/webpack-sources/issues/246))
* [`841bdb3`](webpack/webpack-sources@841bdb3) perf: skip sorting ReplaceSource replacements when already in order ([#249](https://redirect.github.com/webpack/webpack-sources/issues/249))
* [`cb3733d`](webpack/webpack-sources@cb3733d) chore(deps): bump the dependencies group with 2 updates ([#248](https://redirect.github.com/webpack/webpack-sources/issues/248))
* [`0872bcd`](webpack/webpack-sources@0872bcd) perf: use lookup table in splitIntoPotentialTokens ([#240](https://redirect.github.com/webpack/webpack-sources/issues/240))
* [`4874fd7`](webpack/webpack-sources@4874fd7) feat: port performance fixes and ignoreList propagation from rspack-sources (...
* [`5c5ed84`](webpack/webpack-sources@5c5ed84) chore(deps): bump the dependencies group with 3 updates ([#244](https://redirect.github.com/webpack/webpack-sources/issues/244))
* [`0ea507d`](webpack/webpack-sources@0ea507d) chore(deps-dev): bump tooling from v1.26.3 to v1.26.4 ([#243](https://redirect.github.com/webpack/webpack-sources/issues/243))
* Additional commits viewable in [compare view](webpack/webpack-sources@v3.5.0...v3.5.1)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=webpack-sources&package-manager=npm\_and\_yarn&previous-version=3.5.0&new-version=3.5.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore  major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore  minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant