Skip to content

Commit a47888f

Browse files
BaseX 12.3
1 parent ca8dde6 commit a47888f

7 files changed

Lines changed: 29 additions & 6 deletions

File tree

CHANGELOG

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
VERSION 12.3 (April 16, 2025) ------------------------------------------
2+
3+
XQUERY 4.0
4+
- JNodes: XPath traversal in map/array structures
5+
- Improved string representation of function items
6+
- XML, JSON: canonical serialization
7+
- Namespace declarations: support for 'fixed' and '##any'
8+
9+
XQUERY
10+
- HTML Parsing without parser: wrap HTML contents as string value
11+
- file:delete: raise no error if target does not exist
12+
- file:copy: Preserve capitalization of target path
13+
14+
GUI
15+
- Support for FlatLaf Look and Feels
16+
- Editor: Improved closing of tags
17+
18+
FIXES, PERFORMANCE
19+
- xquery:fork-join was fixed
20+
- info/debugging strings: increased output length
21+
- numerous tweaks to take advantage of recent JVMs
22+
- fn:path: caching of repeatedly accessed steps
23+
124
VERSION 12.2 (January 20, 2025) ----------------------------------------
225

326
XQUERY 4.0

basex-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.basex</groupId>
99
<artifactId>basex-parent</artifactId>
10-
<version>12.3-SNAPSHOT</version>
10+
<version>12.3</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

basex-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.basex</groupId>
99
<artifactId>basex-parent</artifactId>
10-
<version>12.3-SNAPSHOT</version>
10+
<version>12.3</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

basex-core/src/main/java/org/basex/util/Prop.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public final class Prop {
2424
/** Project name. */
2525
public static final String NAME = "BaseX";
2626
/** Current version (major and minor number, optionally followed by development tag). */
27-
private static final String CURRENT_VERSION = "12.3 RC1";
27+
private static final String CURRENT_VERSION = "12.3";
2828

2929
/** Name of project in lower case. */
3030
public static final String PROJECT = NAME.toLowerCase(Locale.ENGLISH);

basex-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.basex</groupId>
99
<artifactId>basex-parent</artifactId>
10-
<version>12.3-SNAPSHOT</version>
10+
<version>12.3</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

basex-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.basex</groupId>
99
<artifactId>basex-parent</artifactId>
10-
<version>12.3-SNAPSHOT</version>
10+
<version>12.3</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- Artifact information -->
66
<groupId>org.basex</groupId>
77
<artifactId>basex-parent</artifactId>
8-
<version>12.3-SNAPSHOT</version>
8+
<version>12.3</version>
99
<packaging>pom</packaging>
1010

1111
<modules>

0 commit comments

Comments
 (0)