Skip to content

Commit f437b9a

Browse files
author
root
committed
Merge branch '20-v1-2-45' into 'master'
Resolve "v1.2.45" Closes #20 See merge request livingfire__public/kanboard-api-java!22
2 parents 51c5dd6 + 59458e1 commit f437b9a

5 files changed

Lines changed: 38 additions & 26 deletions

File tree

CHANGELOG.md

Lines changed: 28 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,37 @@
11
# CHANGELOG
22

3+
## 1.2.21
4+
5+
- no Java API source code changes since 1.2.18
6+
- existing Java API source code runs fine with Dockerhub kanboard/kanboard:v1.2.21
7+
- bump [jackson-databind to 2.19.0](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind)
8+
- bump [jackson-dataformat-yaml to 2.19.0](https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml)
9+
- bump [junit to 4.13.2](https://mvnrepository.com/artifact/junit/junit)
10+
- bump [assertj-core to 3.27.3](https://mvnrepository.com/artifact/org.assertj/assertj-core)
11+
312
## 1.2.18
4-
* no Java API source code changes since 1.2.14
5-
* existing Java API source code runs fine with Dockerhub kanboard/kanboard:v1.2.18
6-
* cleanup Java API test KanboardServiceSwimlaneIntegrationTest INTEGRATION_TEST_URL
7-
* bump [com.fasterxml.jackson.core/jackson-databind](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind) version from 2.9.10.8 to 2.16.0
8-
* bump [com.fasterxml.jackson.dataformat/jackson-dataformat-yaml]() version from 2.9.10 to 2.16.0
9-
* bump [junit](https://mvnrepository.com/artifact/junit/junit) version from 4.12 to 4.13.1
13+
14+
- no Java API source code changes since 1.2.14
15+
- existing Java API source code runs fine with Dockerhub kanboard/kanboard:v1.2.18
16+
- cleanup Java API test KanboardServiceSwimlaneIntegrationTest INTEGRATION_TEST_URL
17+
- bump [com.fasterxml.jackson.core/jackson-databind](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind) version from 2.9.10.8 to 2.16.0
18+
- bump [com.fasterxml.jackson.dataformat/jackson-dataformat-yaml]() version from 2.9.10 to 2.16.0
19+
- bump [junit](https://mvnrepository.com/artifact/junit/junit) version from 4.12 to 4.13.1
1020

1121
## 1.2.15
12-
* no Java API source code changes since 1.2.14
13-
* existing Java API source code runs fine with Dockerhub kanboard/kanboard:v1.2.15
14-
* bump [com.fasterxml.jackson.core/jackson-databind](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind) version to 2.9.10.8
22+
23+
- no Java API source code changes since 1.2.14
24+
- existing Java API source code runs fine with Dockerhub kanboard/kanboard:v1.2.15
25+
- bump [com.fasterxml.jackson.core/jackson-databind](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind) version to 2.9.10.8
1526

1627
## 1.2.14
17-
* no Java API source code changes since ???
18-
* Java API runs fine with Dockerhub kanboard/kanboard:v1.2.14
19-
* added colors to Maven console
20-
* bump [com.fasterxml.jackson.core/jackson-databind](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind) version to 2.9.10.4
28+
29+
- no Java API source code changes since ???
30+
- Java API runs fine with Dockerhub kanboard/kanboard:v1.2.14
31+
- added colors to Maven console
32+
- bump [com.fasterxml.jackson.core/jackson-databind](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind) version to 2.9.10.4
2133

2234
## 1.2.7
23-
* Java API tests run fine with Dockerhub kanboard/kanboard:v1.2.7
24-
* bump [com.fasterxml.jackson.core/jackson-databind](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind) version to 2.9.7
35+
36+
- Java API tests run fine with Dockerhub kanboard/kanboard:v1.2.7
37+
- bump [com.fasterxml.jackson.core/jackson-databind](https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind) version to 2.9.7

docker-compose.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
version: '3'
1+
version: "3"
22

33
services:
4-
54
kanboard:
6-
image: kanboard/kanboard:v1.2.18
5+
image: kanboard/kanboard:v1.2.21
76
ports:
87
- "$NETWORK_KANBOARD_GATEWAY:$PORT_00080_KANBOARD"
98
volumes:

docker/containerBuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
DOCKER_PROJECT="kanboard"
3-
KANBOARD_VERSION="1.2.18"
3+
KANBOARD_VERSION="1.2.21"
44
DOCKER_CONTAINER_KANBOARD="${DOCKER_PROJECT}_test"
55
DOCKER_CONTAINER_MAVEN="${DOCKER_PROJECT}_maven"
66
DOCKER_IMAGE_KANBOARD="$DOCKER_CONTAINER_KANBOARD:$KANBOARD_VERSION"

docker/containerStart.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
DOCKER_PROJECT="kanboard"
3-
KANBOARD_VERSION="1.2.18"
3+
KANBOARD_VERSION="1.2.21"
44
DOCKER_CONTAINER_KANBOARD="${DOCKER_PROJECT}_test"
55
DOCKER_IMAGE_KANBOARD="$DOCKER_CONTAINER_KANBOARD:$KANBOARD_VERSION"
66

project/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>de.livingfire</groupId>
88
<artifactId>kanboard-api-java</artifactId>
9-
<version>1.2.18</version>
9+
<version>1.2.21</version>
1010
<packaging>jar</packaging>
1111

1212
<name>kanboard-api-java</name>
@@ -20,18 +20,18 @@
2020

2121
<dependencies>
2222

23-
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
23+
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
2424
<dependency>
2525
<groupId>com.fasterxml.jackson.core</groupId>
2626
<artifactId>jackson-databind</artifactId>
27-
<version>2.16.0</version>
27+
<version>2.19.0</version>
2828
</dependency>
2929

3030
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml -->
3131
<dependency>
3232
<groupId>com.fasterxml.jackson.dataformat</groupId>
3333
<artifactId>jackson-dataformat-yaml</artifactId>
34-
<version>2.16.0</version>
34+
<version>2.19.0</version>
3535
</dependency>
3636

3737
<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all -->
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>junit</groupId>
4848
<artifactId>junit</artifactId>
49-
<version>4.13.1</version>
49+
<version>4.13.2</version>
5050
<scope>test</scope>
5151
</dependency>
5252

@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>org.assertj</groupId>
6464
<artifactId>assertj-core</artifactId>
65-
<version>3.6.2</version>
65+
<version>3.27.3</version>
6666
<scope>test</scope>
6767
</dependency>
6868
</dependencies>

0 commit comments

Comments
 (0)