Skip to content

Releases: mybatis/mybatis-3

Mybatis 3.5.19

02 Jan 20:39
Compare
Choose a tag to compare

Revert Regression introduced by #3349.

Mybatis 3.5.18

01 Jan 03:46
Compare
Choose a tag to compare

Regressions

  • Fixed issue in 3.5.17 #3334

New

  • Ignore empty xnode per #3349
  • Share expression validator #3339
  • Throw helpful error instead of IndexOutOfBoundsException (automapping) #3327
  • Optimize mapper builder #3252

Tests

  • Add TransactionFactory, Transaction test cases #3277

Build

  • Reworked pom to match current java 17 build usage
  • Moved all tests to newer java standards
  • Cleaned up github actions
  • Run 'site' branch only on release commits

Support Notice: This is expected last java 8 release, A new branch support-java8 will be created from this point in case older support needs a fix. After this, master will move to java 11 for one release in order to start bringing code support up to java 11. After that, a support-java11 will be created then master will move to java 17 or better only. This will change the plans slightly as doing this means java 11 will be 3.6.0 and temporary in nature whereas anything discussed for 3.6.0 will move to 3.7.0. Once at java 17, same java application will occur. After that point, anything previously discussed for the original 3.6.0 can start coming in.

mybatis-3.5.17

26 Nov 16:55
Compare
Choose a tag to compare

Bugs:

  • VendorDatabaseIdProvider#getDatabaseId() should return product name when properties is empty #3297
  • Update NClobTypeHandler to use methods for national character set #3298

Enhancements:

  • Allow DefaultSqlSessionFactory to provide a custom SqlSession #3128

There also are many pull requests for document updates and code improvements!
Please see the full changelog: mybatis-3.5.16...mybatis-3.5.17

mybatis-3.5.16

04 Apr 10:26
Compare
Choose a tag to compare

Security:

  • Prevent Invocation from being used by vulnerable applications. #3115

Bugs:

  • When database ID resolution is failed, invalid bound statement is used. #3040

Enhancements:

  • It is now possible to write a custom map wrapper to customize how to map column name with dots or brackets. #13 #3062

Performance:

  • Improved compatibility with Virtual Threads introduced by Loom.
  • Reduced memory footprint when performing the default (i.e. order based) constructor auto-mapping. #3113

Build:

  • Include the shaded libraries (OGNL and Javassist) in the sources.jar.

Please see the 3.5.16 milestone page or commit log for the complete list of changes.

Mybatis 3.5.15

14 Dec 06:41
Compare
Choose a tag to compare

Changes

  • XNode#toString() should output all child nodes. See #3001 and associated tickets on this issue
  • Fix performance of mappedColumnNames.contains by using 'set' rather than 'list'. See #3023
  • Fix osgi issue with javassist. See #3031
  • Updated shaded OGNL to 3.4.2. See #3035
  • Add support method for generating dynamic sql on SQL class. See #2887
  • General library updates
  • General document updates

Build

  • We now show builds from java 11, 17, 21, and 22 on Github Actions. Code is still java 8 compatible at this time.
  • Update vulnerable hsqldb to 2.7.2 fixing our tests that now work due to newer support. Note, users were never affected by this but at least one user pull request was attempted opened in addition to both renovate and dependabot and various reporting on it.
  • Now using more properties to define versions in pom to lower the frequency of pull requests from renovate

Site

  • We have moved to maven site 4.0.0 using site xsd 2.0.0. This resulted in us needing to turn off the PDF documentation of our site. Please just use our site pages for now.
  • Due to site changes, if anyone finds any issues, please be sure to report them as the upgrade path with maven has been disappointing at best. We believe we got all setup correctly but will fix anything as quickly as discovered problematic. We apologize in advance of this situation as we work through maven 4 site changes.

mybatis-3.5.14

03 Nov 06:27
Compare
Choose a tag to compare

Bug fixes:

  • Registered type handler is not used for anonymous enums #2956
  • Discriminator does not work in constructor mapping #2913

There is no known backward incompatible change since 3.5.13.

Please see the 3.5.14 milestone page for the complete list of changes.

mybatis-3.5.13

11 Mar 12:15
Compare
Choose a tag to compare

This is a maintenance release to address the regression bug found in 3.5.12.

Bug fix:

  • Unable to resolve result type when the target property has a getter with different return type #2834

Mybatis 3.5.12 Release

01 Mar 04:17
Compare
Choose a tag to compare

"The Great Cleanup"

User impactful changes

  • #2703 Referencing collection parameter by name fails fixing #2693

  • #2709 Fix a race condition caused by other threads calling mapper methods while mapped tables are being constructed

  • #2727 Enable ability to provide custom configuration to XMLConfigBuilder

  • #2731 Adding mapper could fail under JPMS

  • #2741 Add 'affectedData' attribute to @select, @SelectProvider, and <select />

  • #2767 Resolve resultType by namespace and id when not provided resultType and resultMap

  • #2804 Search readable property when resolving constructor arg type by name

  • Minor correction: 'boolean' can never be null (primative)

  • General library updates

  • Uses parameters option for compiler now (needed by spring boot 3) (for reflection needs)

Code cleanup

  • #2816 Use open rewrite to partially cleanup java code
  • #2817 Add private constructors per open rewrite
  • #2819 Add final where appropriate per open rewrite
  • #2825 Cleanup if statement breaks / return logic
  • #2826 Eclipse based cleanup

Build

  • #2820 Remove test ci group profile in favor of more direct usage on GH-Actions and update deprecated surefire along in overview in README.md
  • Adjustments to build so shaded ognl and javassist no longer throw warnings
  • Build with jdk 21-ea as well now
  • Various test cleanup, updates, and additions
  • Turn on auto formatting of all java code including note to contributors on readme to skip formatting when necessary in code blocks
  • Tests may use jdk 11 now while retaining jdk 8 runtime
  • Pom cleanup / better clarification on parameters

Documentation

  • Various documentation updates

For Contributors:

  • Mybatis is now using auto formatting of the code base. If contribution needs special formatting such as annotations or specific javadocs that conflict with formatting rules, use // @formatter:off and // @formatter:on around block of code to be ignored on formatting. If within a javadoc, since its a comment type, the entire thing is affected so just wrap this around the entire javadoc. Try to ensure code inside the non formatting block is appropriately formatted otherwise to ease readability.

What's Changed

Read more

mybatis-3.5.11

18 Sep 21:22
Compare
Choose a tag to compare

Bug fixes:

  • OGNL could throw IllegalArgumentException when invoking inherited method. #2609
  • returnInstanceForEmptyRow is not applied to constructor auto-mapping. #2665

There is no known backward incompatible change since 3.5.10.

Please see the 3.5.11 milestone page for the complete list of changes.

mybatis-3.5.10

23 May 20:35
Compare
Choose a tag to compare

Bug fixes:

  • Unexpected illegal reflective access warning (or InaccessibleObjectException on Java 16+) when calling method in OGNL expression. #2392
  • IllegalAccessException when auto-mapping Records (JEP-359) #2195
  • 'interrupted' status is not set when PooledConnection#getConnection() is interrupted. #2503

Enhancements:

  • A new option argNameBasedConstructorAutoMapping is added. If enabled, constructor argument names are used to look up columns when auto-mapping. #2192
  • Added a new property skipSetAutoCommitOnClose to JdbcTransactionFactory. Skipping setAutoCommit() call could improve performance with some drivers. #2426
  • <idArg /> can now be listed after <arg /> in <constructor />. #2541

There is no known backward incompatible change since 3.5.9.

Please see the 3.5.10 milestone page for the complete list of changes.