What's new
The following was fixed or changed since Jaybird 6.0.1:
- Improvement: added
authPlugins
property onFBManager
(#866) - Improvement: increased default and maximum SQL info sizes used for retrieving statement information like columns, parameters and plan information (#869)
- Improvement: backported inline blob support (Firebird 5.0.3 and higher) from Jaybird 7 (#870)
- Improvement: The time zone mapping was updated (#874)
Jaybird 6 supports Firebird 3.0 and higher, on Java 17, Java 21, and Java 24.
Bug reports about undocumented changes in behavior are appreciated. Feedback can be sent to the Firebird-java mailing list or reported on the issue tracker https://github.com/FirebirdSQL/jaybird/issues.
See also the full Jaybird 6 release notes.
Maven
The release is also available on Maven:
<dependency>
<groupId>org.firebirdsql.jdbc</groupId>
<artifactId>jaybird</artifactId>
<version>6.0.2</version>
</dependency>
If you use the native or embedded protocol, you need to add the jaybird-native
dependency:
<dependency>
<groupId>org.firebirdsql.jdbc</groupId>
<artifactId>jaybird-native</artifactId>
<version>6.0.2</version>
</dependency>
For ChaCha64 wire encryption support, add the chacha64-plugin
dependency:
<dependency>
<groupId>org.firebirdsql.jdbc</groupId>
<artifactId>chacha64-plugin</artifactId>
<version>6.0.2</version>
</dependency>