Skip to content

Commit d017366

Browse files
committed
Squash commit from release_v1.2.0
1 parent 2340825 commit d017366

File tree

7 files changed

+32
-9
lines changed

7 files changed

+32
-9
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [1.2.0 ] Repository split and maintenance (2024-05-30)
4+
5+
### Features
6+
7+
* Expose Prometheus metrics endpoint for servers
8+
9+
### Internal
10+
11+
* Split repository into cdoc2-java-ref-impl and cdoc2-capsule-server
12+
* Upgraded Spring 2.7.5 -> 3.2.5 + other third-party dependency updates
13+
* Use 'cdoc2' instead of 'cdoc20' everywhere (packages, documents etc). Salt strings remain unchanged (cdoc20kek, cdoc20cek and so)
14+
* Fix jacoco test coverage reports (broken previously)
15+
* Add gitlab CI build files
16+
* Added scripts for making releases and managing versions (see VERSIONS.md)
17+
* Refactoring required to build cdoc2-capsule-server repo without cdoc2-lib dependency (cdoc2-lib dependency is still needed for running tests )
18+
* Upload/consume cdoc2-key-capsule-openapi.yaml as maven artifact
19+
* Added bats tests to check backward compatibility of CDOC2 format with previous releases
20+
21+
### Bugfixes
22+
23+
* With rename cdoc20-cdoc2 salts values were also incorrectly changed. Broke backward compatibility. Fixed before release 1.2.0
24+
25+
326
## [1.1.0] Version update (2024-03-26)
427

528
### Features

cdoc2-cli/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>cdoc2</artifactId>
66
<groupId>ee.cyber.cdoc2</groupId>
7-
<version>1.3.0-SNAPSHOT</version>
7+
<version>1.2.0</version>
88
</parent>
99

1010
<artifactId>cdoc2-cli</artifactId>
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>ee.cyber.cdoc2</groupId>
4343
<artifactId>cdoc2-lib</artifactId>
44-
<version>1.3.0-SNAPSHOT</version>
44+
<version>1.2.0</version>
4545
</dependency>
4646
</dependencies>
4747

cdoc2-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<artifactId>cdoc2</artifactId>
66
<groupId>ee.cyber.cdoc2</groupId>
7-
<version>1.3.0-SNAPSHOT</version>
7+
<version>1.2.0</version>
88
</parent>
99

1010
<artifactId>cdoc2-client</artifactId>
11-
<version>1.3.0-SNAPSHOT</version>
11+
<version>1.3.0</version>
1212
<description>CDOC2 server client generation from openapi specification</description>
1313

1414
<properties>

cdoc2-lib/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>cdoc2</artifactId>
55
<groupId>ee.cyber.cdoc2</groupId>
6-
<version>1.3.0-SNAPSHOT</version>
6+
<version>1.2.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

@@ -19,13 +19,13 @@
1919
<dependency>
2020
<groupId>ee.cyber.cdoc2</groupId>
2121
<artifactId>cdoc2-schema</artifactId>
22-
<version>1.3.0-SNAPSHOT</version>
22+
<version>1.2.0</version>
2323
</dependency>
2424

2525
<dependency>
2626
<groupId>ee.cyber.cdoc2</groupId>
2727
<artifactId>cdoc2-client</artifactId>
28-
<version>1.3.0-SNAPSHOT</version>
28+
<version>1.3.0</version>
2929
</dependency>
3030

3131
<dependency>

cdoc2-schema/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<parent>
6-
<version>1.3.0-SNAPSHOT</version>
6+
<version>1.2.0</version>
77
<groupId>ee.cyber.cdoc2</groupId>
88
<artifactId>cdoc2</artifactId>
99
</parent>

make_release.sh

100644100755
File mode changed.

pom.xml

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

44
<modelVersion>4.0.0</modelVersion>
55

6-
<version>1.3.0-SNAPSHOT</version>
6+
<version>1.2.0</version>
77
<groupId>ee.cyber.cdoc2</groupId>
88
<artifactId>cdoc2</artifactId>
99
<description>CDOC2 reference implementation </description>

0 commit comments

Comments
 (0)