Releases: hibernate/quarkus-local-cache
Releases · hibernate/quarkus-local-cache
Release 0.5.0
Changelog
- 242df42 [Jenkins release job] Preparing release 0.5.0 (Jenkins)
- a5078a7 Upgrade to Hibernate ORM 7.2 (dependabot[bot])
- 443d543 Compile to Java 17 bytecode (Yoann Rodière)
- 2fece66 Fix some oddities in POM (Yoann Rodière)
- d53ace1 Bump version to 0.5.0-SNAPSHOT (Yoann Rodière)
- 175e6bf Bump org.mockito:mockito-core in the build-dependencies group (dependabot[bot])
- 48b5787 Bump org.checkerframework:checker-qual in the build-dependencies group (dependabot[bot])
- ca7ff7e Bump org.apache.maven.plugins:maven-source-plugin (dependabot[bot])
- d311945 Bump org.hibernate.orm:hibernate-core from 7.1.10.Final to 7.1.11.Final (dependabot[bot])
- e06a56b Bump org.apache.maven.plugins:maven-jar-plugin (dependabot[bot])
- 318583a Bump org.hibernate.orm:hibernate-core from 7.1.8.Final to 7.1.10.Final (dependabot[bot])
- b9a4989 Bump org.hibernate.orm:hibernate-core from 7.1.7.Final to 7.1.8.Final (dependabot[bot])
- b455a9e Bump org.hibernate.orm:hibernate-core from 7.1.6.Final to 7.1.7.Final (dependabot[bot])
- 55f3300 Bump org.checkerframework:checker-qual in the build-dependencies group (dependabot[bot])
- 5a967e4 Bump org.hibernate.orm:hibernate-core from 7.1.5.Final to 7.1.6.Final (dependabot[bot])
- 0fd2125 Bump com.github.ben-manes.caffeine:caffeine from 3.2.2 to 3.2.3 (dependabot[bot])
- 740da40 Bump org.junit:junit-bom in the build-dependencies group (dependabot[bot])
- 6e35ecc Bump org.hibernate.orm:hibernate-core from 7.1.4.Final to 7.1.5.Final (dependabot[bot])
- c540dd9 Bump org.hibernate.orm:hibernate-core from 7.1.3.Final to 7.1.4.Final (dependabot[bot])
- 39f78fe Bump org.hibernate.orm:hibernate-core from 7.1.2.Final to 7.1.3.Final (dependabot[bot])
- c376760 Bump the build-dependencies group with 3 updates (dependabot[bot])
- 6bb70d9 Bump org.hibernate.orm:hibernate-core from 7.1.1.Final to 7.1.2.Final (dependabot[bot])
- 0e72c65 Bump the build-dependencies group with 4 updates (dependabot[bot])
- ac69617 Bump the build-dependencies group with 3 updates (dependabot[bot])
- 1a9800a Bump org.hibernate.orm:hibernate-core from 7.1.0.Final to 7.1.1.Final (dependabot[bot])
- 5c26720 Bump org.checkerframework:checker-qual from 3.49.5 to 3.50.0 (dependabot[bot])
- c9efc1d Include checkerframework in build dependencies (Yoann Rodière)
- 52fd442 Regenerate Maven wrapper (Yoann Rodière)
- cc738db Bump org.apache.maven.plugins:maven-wrapper-plugin (dependabot[bot])
- cb2ff15 Bump the build-dependencies group with 2 updates (dependabot[bot])
- 1a1051d Bump org.hibernate.orm:hibernate-core from 7.0.8.Final to 7.1.0.Final (dependabot[bot])
- d7590c5 [Jenkins release job] Preparing next development iteration (Jenkins)
Contributors
We'd like to thank the following people for their contributions:
Jenkins, Yoann Rodière, dependabot[bot]
Visit the website for details on getting in touch with us.
0.4.0
What's Changed
- Update the release process to use release scripts and JReleaser by @marko-bekhta in #12
- Use a unique groupId (and bump version) by @yrodiere in #13
- More build and dependency updates by @marko-bekhta in #14
New Contributors
- @marko-bekhta made their first contribution in #12
Full Changelog: 0.3.1...0.4.0
0.3.1
0.3.0
Performance improvements and code cleanup
While 0.2.0 was meant to simply work with Hibernate ORM 6 with minimal changes, this new release also includes some improvements.
Among others:
- inline execution of cache maintainence, this has been shown to have a very dramatic impact on Quarkus benchmarks
- avoid allocating objects only needed for trace logging
- remove the need for the JVM to generate synthetic accessor bridges because of encapsulation rules
- avoid pointless use of System.identityHashCode
- avoid Long boxing - as the ORM 6 SPIs now allow better use of primitives for timestamps
- avoid boxing because of lazy choice of functioal interfaces (removed the functional interfaces)