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

Bump hibernate.version from 7.0.0.Beta1 to 7.0.0.Beta3 #773

Open
wants to merge 2 commits into
base: querydsl-7.0
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 24, 2024

Bumps hibernate.version from 7.0.0.Beta1 to 7.0.0.Beta3.
Updates org.hibernate.orm:hibernate-core from 7.0.0.Beta1 to 7.0.0.Beta3

Release notes

Sourced from org.hibernate.orm:hibernate-core's releases.

Hibernate ORM 7.0.0.Beta3 released

Today, we published a new release of Hibernate ORM 7.0: 7.0.0.Beta3.

You can find the full list of 7.0.0.Beta3 changes here.

What's new

Jakarta Persistence 3.2

7.0 migrates to Jakarta Persistence 3.2 which can be fairly disruptive. See the Migration Guide for details.

See this blog post for a summary of the changes in 3.2

Java 17

Version 3.2 of Jakarta Persistence requires Java 17.
Hibernate 7.0 therefore baselines on Java 17 whereas previous versions baseline on Java 11.

Domain Model Validations

7.0 does much more validation of an application's domain model and especially its mapping details, e.g.

  • illegal combinations such as @Basic and @ManyToOne on the same attribute
  • misplaced annotations such as an annotated getter method with FIELD access
  • stricter following of JavaBean conventions

See the Migration Guide for details.

mapping.xsd

Hibernate 7.0 provides a new XSD that represents an "extension" of the Jakarta Persistence orm.xsd weaving in Hibernate-specific mapping features.
The namespace for this extended mapping is http://www.hibernate.org/xsd/orm/mapping

For applications using Hibernate's legacy hbm.xml format, we provide a tool to help with the transformation. See the Migration Guide for details.

Hibernate Models

7.0 migrates from Hibernate Commons Annotations (HCANN) to the new Hibernate Models project for low-level processing of an application domain model, reading annotations and weaving in XML mapping documents. See the Migration Guide for details.

... (truncated)

Changelog

Sourced from org.hibernate.orm:hibernate-core's changelog.

Changes in 7.0.0.Beta3 (December 05, 2024)

https://hibernate.atlassian.net/projects/HHH/versions/32364

** Bug * [HHH-18912] - Fix ORM release process * [HHH-18881] - In MySQL, array of dates are not converted correctly * [HHH-18872] - ConcreteProxy type not restored from 2LC when loading a ManyToOne * [HHH-18862] - Group by error due to subselect using foreign key reference instead of primary key in HQL query * [HHH-18859] - slice operator and @​ElementCollection * [HHH-18851] - ArrayContainsArgumentTypeResolver wrongly infers array type for needle argument * [HHH-18850] - createCountQuery with Hibernate 6.6.2 * [HHH-18848] - JAR for org.hibernate.orm:hibernate-scan-jandex:7.0.0.Beta2 at Maven Central * [HHH-18842] - Regression: CollectionType.replace() breaks if target is PersistentCollection, but not instance of Collection (e.g. PersistentMap) * [HHH-18832] - Bytecode enhancement skipped for entities with "compute-only" @​Transient properties * [HHH-18830] - extraneous SQL UPDATE statements for unowned collection with @​OrderColumn * [HHH-18826] - mappedBy validation in Processor * [HHH-18765] - Error in the booleanarray_to_string auxiliary function * [HHH-18709] - CriteriaUpdate involving JSON field containing Map results in SemanticException * [HHH-18705] - Hibernate processor creates bad TypedReferenceQuery when @​Entity have name attribute * [HHH-18692] - Hibernate attempts to close batched statements multiple times * [HHH-18629] - Inconsistent column alias generated while result class is used for placeholder * [HHH-18610] - "SQLGrammarException: Unable to find column position by name:" when using Single Table Inheritance with a strict JDBC driver such as PostgreSQL * [HHH-18583] - Joined + discriminator inheritance treat in where clause not restricting to subtype * [HHH-18274] - Problems with generics in queries; proposed partial solution * [HHH-18069] - NullPointerException when unioning partition results * [HHH-17838] - @​OneToOne relationship + @​Embeddable keys + FetchType.LAZY fail in most recent version * [HHH-16054] - JPA / Hibernate, duplicate pkey error when updating entity that is a subclass of a base class that uses IdClass for composite primary key * [HHH-14119] - IN clause parameter padding not working for criteria query in conjunction with LiteralHandlingMode.BIND

** Improvement * [HHH-18875] - Stop using Array.newInstance in org.hibernate.internal.util.collections.StandardStack * [HHH-18861] - Improve GitHub release announcement body for automated releases * [HHH-18847] - Organize the org.hibernate.query.results package * [HHH-18844] - Run preVerifyRelease task as part of h2 CI job * [HHH-18841] - Make _identifierMapper property added for a IdClass synthetic * [HHH-18840] - detect and report incorrect usage of @​OrderColumn, @​MapKeyColumn, and @​MapKey * [HHH-18683] - The method Metamodel#entity(String) should throw IllegalArgumentException for non-entities * [HHH-18534] - Remove the org.hibernate.boot.models.categorize package * [HHH-17246] - Guard against Sybase being configured for truncating trailing zeros. * [HHH-16160] - XML aggregate support for more databases * [HHH-14020] - Allow Hibernate Types to have access to ServiceRegistry during initialization * [HHH-7913] - Catalog and schema replacement in / @​Subselect

** New Feature * [HHH-18644] - New and improved hibernate-maven-plugin

** Remove Feature * [HHH-18843] - remove deprecated @​OrderBy annotation

... (truncated)

Commits
  • f925a80 HHH-18912 - Fix ORM release process
  • e4e1b59 HHH-18863 allow index creation to be disabled in processor
  • 83110b4 HHH-18863 allow index creation to be disabled in processor
  • 3cf2bc8 HHH-18912 - Fix ORM release process
  • 6354326 HHH-18912 - Fix ORM release process
  • 60ff229 HHH-18912 - Fix ORM release process
  • 9eb6cdd Revert "fix release publishing"
  • 58a4a4d HHH-953 / HHH-15667 Test cases for these issues
  • fdae11f clean up some minor formatting / code style issues
  • 23109af HHH-1914 - test case for UnsupportedOperationException upon merge of unmodifi...
  • Additional commits viewable in compare view

Updates org.hibernate.orm:hibernate-envers from 7.0.0.Beta1 to 7.0.0.Beta3

Release notes

Sourced from org.hibernate.orm:hibernate-envers's releases.

Hibernate ORM 7.0.0.Beta3 released

Today, we published a new release of Hibernate ORM 7.0: 7.0.0.Beta3.

You can find the full list of 7.0.0.Beta3 changes here.

What's new

Jakarta Persistence 3.2

7.0 migrates to Jakarta Persistence 3.2 which can be fairly disruptive. See the Migration Guide for details.

See this blog post for a summary of the changes in 3.2

Java 17

Version 3.2 of Jakarta Persistence requires Java 17.
Hibernate 7.0 therefore baselines on Java 17 whereas previous versions baseline on Java 11.

Domain Model Validations

7.0 does much more validation of an application's domain model and especially its mapping details, e.g.

  • illegal combinations such as @Basic and @ManyToOne on the same attribute
  • misplaced annotations such as an annotated getter method with FIELD access
  • stricter following of JavaBean conventions

See the Migration Guide for details.

mapping.xsd

Hibernate 7.0 provides a new XSD that represents an "extension" of the Jakarta Persistence orm.xsd weaving in Hibernate-specific mapping features.
The namespace for this extended mapping is http://www.hibernate.org/xsd/orm/mapping

For applications using Hibernate's legacy hbm.xml format, we provide a tool to help with the transformation. See the Migration Guide for details.

Hibernate Models

7.0 migrates from Hibernate Commons Annotations (HCANN) to the new Hibernate Models project for low-level processing of an application domain model, reading annotations and weaving in XML mapping documents. See the Migration Guide for details.

... (truncated)

Changelog

Sourced from org.hibernate.orm:hibernate-envers's changelog.

Changes in 7.0.0.Beta3 (December 05, 2024)

https://hibernate.atlassian.net/projects/HHH/versions/32364

** Bug * [HHH-18912] - Fix ORM release process * [HHH-18881] - In MySQL, array of dates are not converted correctly * [HHH-18872] - ConcreteProxy type not restored from 2LC when loading a ManyToOne * [HHH-18862] - Group by error due to subselect using foreign key reference instead of primary key in HQL query * [HHH-18859] - slice operator and @​ElementCollection * [HHH-18851] - ArrayContainsArgumentTypeResolver wrongly infers array type for needle argument * [HHH-18850] - createCountQuery with Hibernate 6.6.2 * [HHH-18848] - JAR for org.hibernate.orm:hibernate-scan-jandex:7.0.0.Beta2 at Maven Central * [HHH-18842] - Regression: CollectionType.replace() breaks if target is PersistentCollection, but not instance of Collection (e.g. PersistentMap) * [HHH-18832] - Bytecode enhancement skipped for entities with "compute-only" @​Transient properties * [HHH-18830] - extraneous SQL UPDATE statements for unowned collection with @​OrderColumn * [HHH-18826] - mappedBy validation in Processor * [HHH-18765] - Error in the booleanarray_to_string auxiliary function * [HHH-18709] - CriteriaUpdate involving JSON field containing Map results in SemanticException * [HHH-18705] - Hibernate processor creates bad TypedReferenceQuery when @​Entity have name attribute * [HHH-18692] - Hibernate attempts to close batched statements multiple times * [HHH-18629] - Inconsistent column alias generated while result class is used for placeholder * [HHH-18610] - "SQLGrammarException: Unable to find column position by name:" when using Single Table Inheritance with a strict JDBC driver such as PostgreSQL * [HHH-18583] - Joined + discriminator inheritance treat in where clause not restricting to subtype * [HHH-18274] - Problems with generics in queries; proposed partial solution * [HHH-18069] - NullPointerException when unioning partition results * [HHH-17838] - @​OneToOne relationship + @​Embeddable keys + FetchType.LAZY fail in most recent version * [HHH-16054] - JPA / Hibernate, duplicate pkey error when updating entity that is a subclass of a base class that uses IdClass for composite primary key * [HHH-14119] - IN clause parameter padding not working for criteria query in conjunction with LiteralHandlingMode.BIND

** Improvement * [HHH-18875] - Stop using Array.newInstance in org.hibernate.internal.util.collections.StandardStack * [HHH-18861] - Improve GitHub release announcement body for automated releases * [HHH-18847] - Organize the org.hibernate.query.results package * [HHH-18844] - Run preVerifyRelease task as part of h2 CI job * [HHH-18841] - Make _identifierMapper property added for a IdClass synthetic * [HHH-18840] - detect and report incorrect usage of @​OrderColumn, @​MapKeyColumn, and @​MapKey * [HHH-18683] - The method Metamodel#entity(String) should throw IllegalArgumentException for non-entities * [HHH-18534] - Remove the org.hibernate.boot.models.categorize package * [HHH-17246] - Guard against Sybase being configured for truncating trailing zeros. * [HHH-16160] - XML aggregate support for more databases * [HHH-14020] - Allow Hibernate Types to have access to ServiceRegistry during initialization * [HHH-7913] - Catalog and schema replacement in / @​Subselect

** New Feature * [HHH-18644] - New and improved hibernate-maven-plugin

** Remove Feature * [HHH-18843] - remove deprecated @​OrderBy annotation

... (truncated)

Commits
  • f925a80 HHH-18912 - Fix ORM release process
  • e4e1b59 HHH-18863 allow index creation to be disabled in processor
  • 83110b4 HHH-18863 allow index creation to be disabled in processor
  • 3cf2bc8 HHH-18912 - Fix ORM release process
  • 6354326 HHH-18912 - Fix ORM release process
  • 60ff229 HHH-18912 - Fix ORM release process
  • 9eb6cdd Revert "fix release publishing"
  • 58a4a4d HHH-953 / HHH-15667 Test cases for these issues
  • fdae11f clean up some minor formatting / code style issues
  • 23109af HHH-1914 - test case for UnsupportedOperationException upon merge of unmodifi...
  • Additional commits viewable in compare view

Updates org.hibernate.orm:hibernate-community-dialects from 7.0.0.Beta1 to 7.0.0.Beta3

Release notes

Sourced from org.hibernate.orm:hibernate-community-dialects's releases.

Hibernate ORM 7.0.0.Beta3 released

Today, we published a new release of Hibernate ORM 7.0: 7.0.0.Beta3.

You can find the full list of 7.0.0.Beta3 changes here.

What's new

Jakarta Persistence 3.2

7.0 migrates to Jakarta Persistence 3.2 which can be fairly disruptive. See the Migration Guide for details.

See this blog post for a summary of the changes in 3.2

Java 17

Version 3.2 of Jakarta Persistence requires Java 17.
Hibernate 7.0 therefore baselines on Java 17 whereas previous versions baseline on Java 11.

Domain Model Validations

7.0 does much more validation of an application's domain model and especially its mapping details, e.g.

  • illegal combinations such as @Basic and @ManyToOne on the same attribute
  • misplaced annotations such as an annotated getter method with FIELD access
  • stricter following of JavaBean conventions

See the Migration Guide for details.

mapping.xsd

Hibernate 7.0 provides a new XSD that represents an "extension" of the Jakarta Persistence orm.xsd weaving in Hibernate-specific mapping features.
The namespace for this extended mapping is http://www.hibernate.org/xsd/orm/mapping

For applications using Hibernate's legacy hbm.xml format, we provide a tool to help with the transformation. See the Migration Guide for details.

Hibernate Models

7.0 migrates from Hibernate Commons Annotations (HCANN) to the new Hibernate Models project for low-level processing of an application domain model, reading annotations and weaving in XML mapping documents. See the Migration Guide for details.

... (truncated)

Changelog

Sourced from org.hibernate.orm:hibernate-community-dialects's changelog.

Changes in 7.0.0.Beta3 (December 05, 2024)

https://hibernate.atlassian.net/projects/HHH/versions/32364

** Bug * [HHH-18912] - Fix ORM release process * [HHH-18881] - In MySQL, array of dates are not converted correctly * [HHH-18872] - ConcreteProxy type not restored from 2LC when loading a ManyToOne * [HHH-18862] - Group by error due to subselect using foreign key reference instead of primary key in HQL query * [HHH-18859] - slice operator and @​ElementCollection * [HHH-18851] - ArrayContainsArgumentTypeResolver wrongly infers array type for needle argument * [HHH-18850] - createCountQuery with Hibernate 6.6.2 * [HHH-18848] - JAR for org.hibernate.orm:hibernate-scan-jandex:7.0.0.Beta2 at Maven Central * [HHH-18842] - Regression: CollectionType.replace() breaks if target is PersistentCollection, but not instance of Collection (e.g. PersistentMap) * [HHH-18832] - Bytecode enhancement skipped for entities with "compute-only" @​Transient properties * [HHH-18830] - extraneous SQL UPDATE statements for unowned collection with @​OrderColumn * [HHH-18826] - mappedBy validation in Processor * [HHH-18765] - Error in the booleanarray_to_string auxiliary function * [HHH-18709] - CriteriaUpdate involving JSON field containing Map results in SemanticException * [HHH-18705] - Hibernate processor creates bad TypedReferenceQuery when @​Entity have name attribute * [HHH-18692] - Hibernate attempts to close batched statements multiple times * [HHH-18629] - Inconsistent column alias generated while result class is used for placeholder * [HHH-18610] - "SQLGrammarException: Unable to find column position by name:" when using Single Table Inheritance with a strict JDBC driver such as PostgreSQL * [HHH-18583] - Joined + discriminator inheritance treat in where clause not restricting to subtype * [HHH-18274] - Problems with generics in queries; proposed partial solution * [HHH-18069] - NullPointerException when unioning partition results * [HHH-17838] - @​OneToOne relationship + @​Embeddable keys + FetchType.LAZY fail in most recent version * [HHH-16054] - JPA / Hibernate, duplicate pkey error when updating entity that is a subclass of a base class that uses IdClass for composite primary key * [HHH-14119] - IN clause parameter padding not working for criteria query in conjunction with LiteralHandlingMode.BIND

** Improvement * [HHH-18875] - Stop using Array.newInstance in org.hibernate.internal.util.collections.StandardStack * [HHH-18861] - Improve GitHub release announcement body for automated releases * [HHH-18847] - Organize the org.hibernate.query.results package * [HHH-18844] - Run preVerifyRelease task as part of h2 CI job * [HHH-18841] - Make _identifierMapper property added for a IdClass synthetic * [HHH-18840] - detect and report incorrect usage of @​OrderColumn, @​MapKeyColumn, and @​MapKey * [HHH-18683] - The method Metamodel#entity(String) should throw IllegalArgumentException for non-entities * [HHH-18534] - Remove the org.hibernate.boot.models.categorize package * [HHH-17246] - Guard against Sybase being configured for truncating trailing zeros. * [HHH-16160] - XML aggregate support for more databases * [HHH-14020] - Allow Hibernate Types to have access to ServiceRegistry during initialization * [HHH-7913] - Catalog and schema replacement in / @​Subselect

** New Feature * [HHH-18644] - New and improved hibernate-maven-plugin

** Remove Feature * [HHH-18843] - remove deprecated @​OrderBy annotation

... (truncated)

Commits
  • f925a80 HHH-18912 - Fix ORM release process
  • e4e1b59 HHH-18863 allow index creation to be disabled in processor
  • 83110b4 HHH-18863 allow index creation to be disabled in processor
  • 3cf2bc8 HHH-18912 - Fix ORM release process
  • 6354326 HHH-18912 - Fix ORM release process
  • 60ff229 HHH-18912 - Fix ORM release process
  • 9eb6cdd Revert "fix release publishing"
  • 58a4a4d HHH-953 / HHH-15667 Test cases for these issues
  • fdae11f clean up some minor formatting / code style issues
  • 23109af HHH-1914 - test case for UnsupportedOperationException upon merge of unmodifi...
  • Additional commits viewable in compare view

Updates org.hibernate.orm:hibernate-c3p0 from 7.0.0.Beta1 to 7.0.0.Beta3

Release notes

Sourced from org.hibernate.orm:hibernate-c3p0's releases.

Hibernate ORM 7.0.0.Beta3 released

Today, we published a new release of Hibernate ORM 7.0: 7.0.0.Beta3.

You can find the full list of 7.0.0.Beta3 changes here.

What's new

Jakarta Persistence 3.2

7.0 migrates to Jakarta Persistence 3.2 which can be fairly disruptive. See the Migration Guide for details.

See this blog post for a summary of the changes in 3.2

Java 17

Version 3.2 of Jakarta Persistence requires Java 17.
Hibernate 7.0 therefore baselines on Java 17 whereas previous versions baseline on Java 11.

Domain Model Validations

7.0 does much more validation of an application's domain model and especially its mapping details, e.g.

  • illegal combinations such as @Basic and @ManyToOne on the same attribute
  • misplaced annotations such as an annotated getter method with FIELD access
  • stricter following of JavaBean conventions

See the Migration Guide for details.

mapping.xsd

Hibernate 7.0 provides a new XSD that represents an "extension" of the Jakarta Persistence orm.xsd weaving in Hibernate-specific mapping features.
The namespace for this extended mapping is http://www.hibernate.org/xsd/orm/mapping

For applications using Hibernate's legacy hbm.xml format, we provide a tool to help with the transformation. See the Migration Guide for details.

Hibernate Models

7.0 migrates from Hibernate Commons Annotations (HCANN) to the new Hibernate Models project for low-level processing of an application domain model, reading annotations and weaving in XML mapping documents. See the Migration Guide for details.

... (truncated)

Changelog

Sourced from org.hibernate.orm:hibernate-c3p0's changelog.

Changes in 7.0.0.Beta3 (December 05, 2024)

https://hibernate.atlassian.net/projects/HHH/versions/32364

** Bug * [HHH-18912] - Fix ORM release process * [HHH-18881] - In MySQL, array of dates are not converted correctly * [HHH-18872] - ConcreteProxy type not restored from 2LC when loading a ManyToOne * [HHH-18862] - Group by error due to subselect using foreign key reference instead of primary key in HQL query * [HHH-18859] - slice operator and @​ElementCollection * [HHH-18851] - ArrayContainsArgumentTypeResolver wrongly infers array type for needle argument * [HHH-18850] - createCountQuery with Hibernate 6.6.2 * [HHH-18848] - JAR for org.hibernate.orm:hibernate-scan-jandex:7.0.0.Beta2 at Maven Central * [HHH-18842] - Regression: CollectionType.replace() breaks if target is PersistentCollection, but not instance of Collection (e.g. PersistentMap) * [HHH-18832] - Bytecode enhancement skipped for entities with "compute-only" @​Transient properties * [HHH-18830] - extraneous SQL UPDATE statements for unowned collection with @​OrderColumn * [HHH-18826] - mappedBy validation in Processor * [HHH-18765] - Error in the booleanarray_to_string auxiliary function * [HHH-18709] - CriteriaUpdate involving JSON field containing Map results in SemanticException * [HHH-18705] - Hibernate processor creates bad TypedReferenceQuery when @​Entity have name attribute * [HHH-18692] - Hibernate attempts to close batched statements multiple times * [HHH-18629] - Inconsistent column alias generated while result class is used for placeholder * [HHH-18610] - "SQLGrammarException: Unable to find column position by name:" when using Single Table Inheritance with a strict JDBC driver such as PostgreSQL * [HHH-18583] - Joined + discriminator inheritance treat in where clause not restricting to subtype * [HHH-18274] - Problems with generics in queries; proposed partial solution * [HHH-18069] - NullPointerException when unioning partition results * [HHH-17838] - @​OneToOne relationship + @​Embeddable keys + FetchType.LAZY fail in most recent version * [HHH-16054] - JPA / Hibernate, duplicate pkey error when updating entity that is a subclass of a base class that uses IdClass for composite primary key * [HHH-14119] - IN clause parameter padding not working for criteria query in conjunction with LiteralHandlingMode.BIND

** Improvement * [HHH-18875] - Stop using Array.newInstance in org.hibernate.internal.util.collections.StandardStack * [HHH-18861] - Improve GitHub release announcement body for automated releases * [HHH-18847] - Organize the org.hibernate.query.results package * [HHH-18844] - Run preVerifyRelease task as part of h2 CI job * [HHH-18841] - Make _identifierMapper property added for a IdClass synthetic * [HHH-18840] - detect and report incorrect usage of @​OrderColumn, @​MapKeyColumn, and @​MapKey * [HHH-18683] - The method Metamodel#entity(String) should throw IllegalArgumentException for non-entities * [HHH-18534] - Remove the org.hibernate.boot.models.categorize package * [HHH-17246] - Guard against Sybase being configured for truncating trailing zeros. * [HHH-16160] - XML aggregate support for more databases * [HHH-14020] - Allow Hibernate Types to have access to ServiceRegistry during initialization * [HHH-7913] - Catalog and schema replacement in / @​Subselect

** New Feature * [HHH-18644] - New and improved hibernate-maven-plugin

** Remove Feature * [HHH-18843] - remove deprecated @​OrderBy annotation

... (truncated)

Commits
  • f925a80 HHH-18912 - Fix ORM release process
  • e4e1b59 HHH-18863 allow index creation to be disabled in processor
  • 83110b4 HHH-18863 allow index creation to be disabled in processor
  • 3cf2bc8 HHH-18912 - Fix ORM release process
  • 6354326 HHH-18912 - Fix ORM release process
  • 60ff229 HHH-18912 - Fix ORM release process
  • 9eb6cdd Revert "fix release publishing"
  • 58a4a4d HHH-953 / HHH-15667 Test cases for these issues
  • fdae11f clean up some minor formatting / code style issues
  • 23109af HHH-1914 - test case for UnsupportedOperationException upon merge of unmodifi...
  • Additional commits viewable in compare view

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 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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 24, 2024
@velo velo closed this Dec 24, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 24, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/maven/querydsl-7.0/hibernate.version-7.0.0.Beta3 branch December 24, 2024 12:55
@velo
Copy link
Member

velo commented Dec 24, 2024

@dependabot recreate

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 24, 2024

Looks like this PR is closed. If you re-open it I'll rebase it as long as no-one else has edited it (you can use @dependabot reopen if the branch has been deleted).

@velo
Copy link
Member

velo commented Dec 24, 2024

@dependabot reopen

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 24, 2024

Dependabot tried to reopen this PR, but was told that its branch has been force pushed or recreated since it was closed (and therefore can't be restored by GitHub).

@velo
Copy link
Member

velo commented Dec 24, 2024

@dependabot reopen

@dependabot dependabot bot restored the dependabot/maven/querydsl-7.0/hibernate.version-7.0.0.Beta3 branch December 24, 2024 16:34
@dependabot dependabot bot reopened this Dec 24, 2024
Bumps `hibernate.version` from 7.0.0.Beta1 to 7.0.0.Beta3.

Updates `org.hibernate.orm:hibernate-core` from 7.0.0.Beta1 to 7.0.0.Beta3
- [Release notes](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/main/changelog.txt)
- [Commits](hibernate/hibernate-orm@7.0.0.Beta1...7.0.0.Beta3)

Updates `org.hibernate.orm:hibernate-envers` from 7.0.0.Beta1 to 7.0.0.Beta3
- [Release notes](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/main/changelog.txt)
- [Commits](hibernate/hibernate-orm@7.0.0.Beta1...7.0.0.Beta3)

Updates `org.hibernate.orm:hibernate-community-dialects` from 7.0.0.Beta1 to 7.0.0.Beta3
- [Release notes](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/main/changelog.txt)
- [Commits](hibernate/hibernate-orm@7.0.0.Beta1...7.0.0.Beta3)

Updates `org.hibernate.orm:hibernate-c3p0` from 7.0.0.Beta1 to 7.0.0.Beta3
- [Release notes](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/main/changelog.txt)
- [Commits](hibernate/hibernate-orm@7.0.0.Beta1...7.0.0.Beta3)

---
updated-dependencies:
- dependency-name: org.hibernate.orm:hibernate-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.hibernate.orm:hibernate-envers
  dependency-type: direct:development
  update-type: version-update:semver-patch
- dependency-name: org.hibernate.orm:hibernate-community-dialects
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.hibernate.orm:hibernate-c3p0
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/maven/querydsl-7.0/hibernate.version-7.0.0.Beta3 branch from c3ccc3c to 48a7d11 Compare December 24, 2024 16:35
Signed-off-by: Marvin Froeder <[email protected]>
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