-
Notifications
You must be signed in to change notification settings - Fork 0
Update dependency org.jdbi:jdbi3-core to v3.50.0 #37
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/org.jdbi-jdbi3-core-3.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
22bcb36 to
f878c15
Compare
f878c15 to
e4a0387
Compare
e4a0387 to
b83595d
Compare
b83595d to
0234a4e
Compare
0234a4e to
96f8491
Compare
96f8491 to
85096f7
Compare
85096f7 to
8a7a3e2
Compare
8a7a3e2 to
3c81cf5
Compare
3c81cf5 to
bb7a7f7
Compare
bb7a7f7 to
210c7ee
Compare
210c7ee to
7323b1b
Compare
7323b1b to
7b03f80
Compare
7b03f80 to
6e934d2
Compare
6e934d2 to
99452e6
Compare
99452e6 to
8f5b920
Compare
e48fb89 to
1d67e23
Compare
1d67e23 to
aafb9a4
Compare
aafb9a4 to
80a8415
Compare
80a8415 to
4f80045
Compare
4f80045 to
35811f9
Compare
35811f9 to
f8a2c4b
Compare
f8a2c4b to
aa88ab0
Compare
aa88ab0 to
79146de
Compare
79146de to
8a760c9
Compare
8a760c9 to
a7ca587
Compare
a7ca587 to
ce4062a
Compare
ce4062a to
b1ec725
Compare
b1ec725 to
7ecd113
Compare
7ecd113 to
bced366
Compare
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:
3.20.1->3.50.0Release Notes
jdbi/jdbi (org.jdbi:jdbi3-core)
v3.50.0Compare Source
JDK Baseline Update
3.50.0 is the first release of Jdbi to require Java 17. Thank you Java 11 for your service!
We intend to do occasional bug patches for significant bugs or security issues but there
will be no further active development work.
Experimental Java Native support
3.50.0 is the first release to support using Jdbi directly in native compilation. We only
support using the Java 25+ GraalVM toolchain and fully expect that there are bugs, breakages
and things that are not working well. If you use Jdbi in a native environment and find any
problems, we would be thrilled to get bug reports!
v3.49.6We have some problems with our upstream parent POM. There are changes
to Maven Central that require us to roll the parent POM into the Jdbi
project. This is a temporary thing and will go away as soon as
uploading parent poms to Central has been reenabled.
v3.49.5v3.49.4v3.49.3v3.49.2longupdate count from update statements (#2778)v3.49.1v3.49.0v3.48.0v3.47.0@JdbiRepositoryso aot generation works (#2727, thanks @hpoettker !)springmodule that will focus on Spring Framework 6.x and beyond. This is currently the same code as spring5 but no longer needs to maintain Spring Framework 5.x backwards compatibility.v3.46.0v3.45.4v3.45.3v3.45.2v3.45.1v3.45.0Compare Source
JdbiTestContainersExtension#setShutdownWaitTime(int)to control waiting for extension shutdown if a database is very slow. Addresses #2629 (thanks @stoyants).v3.44.1Compare Source
@Definitionfeature also supports super-interface definitionsv3.44.0Compare Source
@Definitionto define computed constantsConnection#commit()threw an Exception, we called commit() again. Now thecode explicitly calls
Connection#rollback(). Fixes #2595<T extends This<T>>(#2582, reported by @johnarrr)v3.43.0Compare Source
** POTENTIAL BREAKING CHANGE **
With 3.43.0, we have improved the support for calling stored procedures via Call, and in particular
returning result sets.
Like any object that comes from a Statement, the expectation is that code will consume
all results (whether it's "normal" result set or a stored procedure result) before closing the Statement.
However, previously, Jdbi did not enforce this - OutParameters could be used after the statement closed.
So, you might observe new exceptions while trying to use OutParameters after closing the Call they came from.
See: #2592
Optionalor vavrOption(reported by @martyn0ff, #2558)fix SQL script parsing is (reported by @IrinaTerlizhenko, #2554).
integration-testmodule for tests that require different parts of the code base. Should be used to write test cases for issue investigations.nullas a value for binding bean, method, field and pojo objects (Suggested by @xak2000 in #2562)ResultSetfromCallstatements for databases that do not support cursor parameters. (suggested in #2557 by @metaforte and @0x1F528 in #2546)int,long,short,doubleandfloatreturn values from out parameters directly.v3.42.0Compare Source
@EnableJdbiRepositories, thanks @xfredk (#2528, #2544)v3.41.3Compare Source
-at the end of named parameters get swallowed. (#2499, thanks @gokristian for reporting).otjPostgressupport in jdbi-testing as the project shipped 1.02 with JPMS module name support.commons-compressdependabot issuev3.41.2Compare Source
otjPostgressupport in jdbi-testing. This will be undeprecated if they ship a version that provides an automatic module name for JPMS, otherwise it will be removed when Jdbi ships with full JPMS support.Handle#begin()beforeHandle#commit()(#2491, thanks @grigorem)v3.41.1Compare Source
.and-as part of named parameter names. (#2471)v3.41.0Compare Source
@Alpha(#2460)v3.40.0Compare Source
PreparedBatchc'tor problem where the binding context was not set correctly. (#2404)v3.39.1Compare Source
3.39.x is the last release of Jdbi to support Java 8. Java 8 is
obsolete for a long time and the burden of supporting it in Jdbi has
grown as parts of our tool chain and libraries no longer support
it. We intend to do occasional bug patches for significant bugs or
security issues but there will be no further active development
work.
add
Extensions#failFast()to enable extension objects with misconfigured methods to fail at first access. Default is to fail when a misconfigured method is accessed for the first time.add new
@RegisterCollectorcustomizing annotation (#2377)correctly return null for OutParameters when the called procedure returns NULL.
promoted from
@Betato stable (no functional changes, some minor doc reformatting and additions)JdbiProperty,DatabaseValue,PropagateNull,GenerateSqlObjectannotationsNamedArgumentFinder,SetObjectArgumentFactory,GetObjectColumnMapperFactory,GenericMapMapperFactory,RowViewMapperMapMappersconfiguration objectConfigCachefunctionalitySqlStatementCustomizer#warm()andSqlStatementParameterCustomizer#warm()promoted from
@Alphato@Beta(no functional changes, doc cleanups)BaseStatement#attachToHandleForCleanup()v3.39.0Compare Source
v3.38.3Compare Source
ResultReturnerwarmup. This restores the pre-3.38.0 behaviorwhere SQLObject classes with invalid methods could be used unless a method is explicitly called (#2342)
v3.38.2Compare Source
v3.38.1Compare Source
Should reduce allocation rate and time spent in ConcurrentHashMap init
v3.38.0Compare Source
CaseStrategyis now an official API (dropped @Beta) (#2309)AccessibleObjectStrategyinto an enum (#2310)GenericTypecreation in parameterized classes (#2305)SqlStatements#setAttachAllStatementsForCleanup. Setting this configuration flag will attach all created statements to their handles for resource cleanup. Default isfalse. (#2293, thanks @jodastephen)SqlStatements#setAttachCallbackStatementsForCleanup. Setting this configuration flag will attach all created statements within one of theJdbicallback methods to the handle. This allows code that uses theJdbicallback methods to delegate resource management fully to Jdbi. This flag is set by default. (#2293, thanks @jodastephen)JdbiExecutorfor async Jdbi operations (#2280, thanks @leblonk)set(),collectToMap(),toCollection(),collectInto(),collectIntoList(),collectIntoSet()v3.37.1Compare Source
v3.37.0Compare Source
** DO NOT USE **
The default cache contains a thread deadlock when the cache is
evicting while adding new entries through multiple threads. This has
been fixed in 3.37.1
jdbi3-caffeine-cachedependency and addingjdbi.installPlugin(new CaffeineCachePlugin());.v3.36.0Compare Source
v3.35.0Compare Source
JdbiFlywayMigrationto work with Flyway 9 (#2179, thanks @broccolai)JdbiExtensionJUnit5 testing frameworkHandleandStatementContextmapTo(KClass<*>)extension function toResultBearingsetTransactionIsolationmethod, addsetTransactionIsolationLevelto the handlereleasemethod, addreleaseSavepointto the handleisInTransactionmethod toTransactional, bringing it to par to the handle set of methodsJdbiH2ExtensionJdbiGenericExtensionv3.34.0Compare Source
jdbi3-generatorwill now support any Java 8+ version without generating compile-time warnings (#2128)@Unmappablewith@JdbiPropertyso you can configure both mapping and binding flexiblyv3.33.0Compare Source
@Unmappablework with FieldMapper fields and KotlinMapper propertiesbyte[]->BYTEAfor Postgres. (#2109)Sqlclass for SQL statements.v3.32.0Compare Source
examplesmodule for JDBI3 example code.v3.31.0Compare Source
jdbi3-oracle12module up to date.v3.30.0Compare Source
v3.29.0Compare Source
This is a maintenance release. It bumps the minor because of a backwards incompatible change
in the
JdbiOtjPostgresExtensiondue to a change in the upstreamotj-pg-embeddedcomponent.If you do not use this component, there are no significant changes over 3.28.0.
incompatible change as the component changed the call signature of
getJdbcUrl. This onlyaffects the JdbiOtjPostgresExtension
v3.28.0Compare Source
v3.27.2Compare Source
v3.27.1Compare Source
v3.27.0Compare Source
v3.26.1Compare Source
** DO NOT USE **
Serious regression in batch binding: #1987
v3.26.0Compare Source
CLASS(fixes #1971)v3.25.0Compare Source
@Json Stringdatabase type mappers now use@EncodedJson Stringinstead (#1953)v3.24.1Compare Source
v3.24.0Compare Source
RowMappers#register(RowMapper<?>)no longer allowsObjectas concrete parameter type.v3.23.0Compare Source
v3.22.0Compare Source
v3.21.0Compare Source
mvnwbinary to build without a local maven installationConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.