Skip to content

Commit 80a6e4a

Browse files
committed
h2database 1.4.200.1 release and notes
1 parent 383fd6a commit 80a6e4a

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-5
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
# Welcome to H2, the Java SQL database. [![Build Status](https://travis-ci.org/h2database/h2database.svg?branch=master)](https://travis-ci.org/h2database/h2database)
1+
# Welcome to H2, the Java SQL database.
2+
3+
This is a fork of https://github.com/h2database/h2database from https://h2database.com/
4+
5+
Changes documented here: h2/src/docsrc/html/changelog.html
6+
7+
Check https://github.com/boris-unckel/h2database/releases for fork binaries.
8+
Use at your own risk. It's better to use the latest original version.
29

310
## The main features of H2 are:
411

h2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.h2database</groupId>
66
<artifactId>h2</artifactId>
7-
<version>1.4.201-SNAPSHOT</version>
7+
<version>1.4.200.1</version>
88
<packaging>jar</packaging>
99
<name>H2 Database Engine</name>
1010
<url>https://h2database.com</url>

h2/src/docsrc/html/changelog.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,16 @@ <h2>Next Version (unreleased)</h2>
2525
</li>
2626
</ul>
2727

28+
<h2>Version 1.4.200.1 (2022-12-24)</h2>
29+
<ul>
30+
<li>JDK 8 for source/target
31+
</li>
32+
<li>Backport Check URL scheme (fixes CVE-2021-42392)
33+
</li>
34+
<li>Clean URL (fixes CVE-2022-23221)
35+
</li>
36+
</ul>
37+
2838
<h2>Version 1.4.200 (2019-10-14)</h2>
2939
<ul>
3040
<li>PR #2168: Add non-standard SNAPSHOT isolation level to MVStore databases

h2/src/main/org/h2/engine/Constants.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ public class Constants {
1515
/**
1616
* The build date is updated for each public release.
1717
*/
18-
public static final String BUILD_DATE = "2019-10-14";
18+
public static final String BUILD_DATE = "2022-12-24";
1919

2020
/**
2121
* The build date of the last stable release.
2222
*/
23-
public static final String BUILD_DATE_STABLE = "2019-03-13";
23+
public static final String BUILD_DATE_STABLE = "2019-10-14";
2424

2525
/**
2626
* The build id is incremented for each public release.
@@ -43,7 +43,7 @@ public class Constants {
4343
* Additionally, a version number should be set to distinguish releases.
4444
* Example: ACME_SVN1651_BUILD3
4545
*/
46-
public static final String BUILD_VENDOR_AND_VERSION = null;
46+
public static final String BUILD_VENDOR_AND_VERSION = "XF01213_BUILD1";
4747

4848
/**
4949
* The TCP protocol version number 9.

h2/src/test/org/h2/samples/newsfeed.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
88
INSERT INTO VERSION VALUES
99

10+
(151, '1.4.200.1', '2022-12-24'),
1011
(150, '1.4.200', '2019-10-14'),
1112
(149, '1.4.199', '2019-03-13'),
1213
(148, '1.4.198', '2019-02-22'),

0 commit comments

Comments
 (0)