Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump org.instancio:instancio-junit from 4.8.1 to 5.0.1 in the dev-deps group across 1 directory #105

Merged
merged 1 commit into from
Aug 5, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 4, 2024

Bumps the dev-deps group with 1 update in the / directory: org.instancio:instancio-junit.

Updates org.instancio:instancio-junit from 4.8.1 to 5.0.1

Release notes

Sourced from org.instancio:instancio-junit's releases.

5.0.1

What's Changed

Full Changelog: instancio/instancio@instancio-parent-5.0.0...instancio-parent-5.0.1

5.0.0

What's Changed

Breaking changes

Renamed classes:

  • org.instancio.InstancioOfClassApi to InstancioClassApi
  • org.instancio.InstancioOfCollectionApi to InstancioCollectionsApi

Breaking changes to experimental APIs

1. Removed the deprecated instancio-quickcheck module

2. Replaced org.instancio.Gen with org.instancio.Instancio.gen()

// Before
import org.instancio.Gen;
int n = Gen.ints().range(1, 10).get();
// Now
import static org.instancio.Instancio.gen;
int n = gen().ints().range(1, 10).get();

3. Removed method org.instancio.generator.ValueSpec.toModel():

Model<Integer> model = gen().ints().range(1, 10)
        .toModel(); // toModel() method no longer available

The above can still be achieved using Instancio.of() API:

Model<Integer> model = Instancio.of(Integer.class)
        .generate(Select.root(), gen -> gen.ints().range(1, 10))
        .toModel();

... (truncated)

Commits
  • 3a05957 [maven-release-plugin] prepare release instancio-parent-5.0.1
  • 2815f17 Updated README
  • 3874acf Minor refactoring: simplify StringConverters util
  • 1feb05a Bug fix: error applying feed specs to primitive fields
  • e1b28ec User guide update
  • e1b21e2 Bump version in docs to 5.0.0
  • 8fdc2f1 [maven-release-plugin] prepare for next development iteration
  • 5a9994a [maven-release-plugin] prepare release instancio-parent-5.0.0
  • 855ffc7 Bug fix: error using setModel() with root selector
  • 04c5d6a Updated user guide
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dev-deps group with 1 update in the / directory: [org.instancio:instancio-junit](https://github.com/instancio/instancio).


Updates `org.instancio:instancio-junit` from 4.8.1 to 5.0.1
- [Release notes](https://github.com/instancio/instancio/releases)
- [Commits](instancio/instancio@instancio-parent-4.8.1...instancio-parent-5.0.1)

---
updated-dependencies:
- dependency-name: org.instancio:instancio-junit
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner August 4, 2024 18:36
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 4, 2024
Copy link

sonarqubecloud bot commented Aug 4, 2024

@dmtkachenko
Copy link
Contributor

@dependabot squash and merge

@dependabot dependabot bot merged commit 72e997b into master Aug 5, 2024
5 checks passed
@dependabot dependabot bot deleted the dependabot/maven/dev-deps-5acbad5131 branch August 5, 2024 10:22
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