Skip to content

Commit 401857d

Browse files
committed
Use issue-macro to create issue links
1 parent 1109e00 commit 401857d

3 files changed

Lines changed: 12 additions & 7 deletions

File tree

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ dependencies {
100100
testRuntimeOnly project('chacha64-plugin')
101101
}
102102

103-
asciidoctorExt 'org.firebirdsql.asciidoctor:canonical-link:1.0'
103+
asciidoctorExt libs.canonical.link
104+
asciidoctorExt libs.issue.macro
104105
}
105106

106107
sourceSets {

gradle/libs.versions.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ bouncy-castle = "1.84"
77
jspecify = "1.0.0"
88
asciidoctor-jvm = "4.0.5"
99
javaagent-gradle-plugin = "0.12.2"
10+
fb-asciidoc-ext = "1.1"
1011

1112
[libraries]
1213
jna = { module = "net.java.dev.jna:jna-jpms", version.ref = "jna" }
1314
jakarta-servlet-api = { module = "jakarta.servlet:jakarta.servlet-api", version.ref = "jakarta-servlet" }
1415
bcprov-jdk18on = { module = "org.bouncycastle:bcprov-jdk18on", version.ref = "bouncy-castle" }
1516
jspecify = { module = "org.jspecify:jspecify", version.ref = "jspecify" }
17+
canonical-link = { module = "org.firebirdsql.asciidoctor:canonical-link", version.ref = "fb-asciidoc-ext" }
18+
issue-macro = { module = "org.firebirdsql.asciidoctor:issue-macro", version.ref = "fb-asciidoc-ext" }
1619

1720
[plugins]
1821
asciidoctor-jvm-convert = { id = "org.asciidoctor.jvm.convert", version.ref = "asciidoctor-jvm" }

src/docs/asciidoc/release_notes.adoc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
:issues: https://github.com/FirebirdSQL/jaybird/issues
1616
:jaybird-repo: https://github.com/FirebirdSQL/jaybird
1717
:fb-canonical-html: https://firebirdsql.org/docs/drivers/java/7.0.x/release_notes.html
18+
:fb-issue-repo: FirebirdSQL/jaybird
1819

1920
////
2021
SPDX-FileCopyrightText: Copyright 2021-2026 Firebird development team and individual contributors
@@ -675,22 +676,22 @@ For more information, refer to https://firebirdsql.org/file/documentation/html/e
675676
676677
* Changed the documentation of `FirebirdDatabaseMetaData` methods `getProcedureSourceCode`, `getTriggerSourceCode` and `getViewSourceCode` that the object not being found is reported by a `null` value, not a `SQLException`.
677678
With this change, the documentation reflects the actual behaviour.
678-
* Fixed: race condition during cancellation (https://github.com/FirebirdSQL/jaybird/issues/903[#903])
679+
* Fixed: race condition during cancellation (issue:[903])
679680
+
680681
This change introduce an additional lock during transmit (sending to the server).
681682
Maintainers of Jaybird forks, or implementers of custom wire protocol implementations subclassing classes in `org.firebirdsql.gds.ng.wire` and related packages will need to take out this transmit lock when sending to the server.
682683
The change also lead to incompatible changes to protected methods in the various protocol implementation classes, like adding an `XdrOutputStream` parameter to various methods, and methods renamed for consistency.
683684
+
684685
See also https://github.com/FirebirdSQL/jaybird/blob/master/devdoc/jdp/jdp-2026-01-additional-locking-for-sending-in-wire-protocol.adoc[jdp-2026-01: Additional locking for sending in wire protocol].
685686
* Upgraded `org.firebirdsql.extern.decimal` to https://github.com/FirebirdSQL/decimal-java[decimal-java 2.0.1^]
686-
* Support `USING` clause in generated keys detection (https://github.com/FirebirdSQL/jaybird/issues/932[#932])
687-
* Add support for parenthesized queries to `StatementDetector` (https://github.com/FirebirdSQL/jaybird/issues/933[#933])
687+
* Support `USING` clause in generated keys detection (issue:[932])
688+
* Add support for parenthesized queries to `StatementDetector` (issue:[933])
688689
* Improvement: Clear warnings on connection close (https://github.com/FirebirdSQL/jaybird/pull/943[#943])
689690
+
690691
This change was contributed by https://github.com/FuriousFourier[FuriousFourier^]
691-
* Improvement: Add getters to `BackupManager` and allow "`use default`" to be set (https://github.com/FirebirdSQL/jaybird/issues/948[#948])
692-
* Improvement: Allow "`use default`" (`-1`) on `FBManager#setPageSize` (https://github.com/FirebirdSQL/jaybird/issues/949[#949])
693-
* Improvement: Add getters to `NBackupManager` (https://github.com/FirebirdSQL/jaybird/issues/950[#950])
692+
* Improvement: Add getters to `BackupManager` and allow "`use default`" to be set (issue:[948])
693+
* Improvement: Allow "`use default`" (`-1`) on `FBManager#setPageSize` (issue:[949])
694+
* Improvement: Add getters to `NBackupManager` (issue:[950])
694695
* ...
695696
696697
[#compatibility-changes]

0 commit comments

Comments
 (0)