Skip to content

Commit 89d6010

Browse files
authored
Adding new fields in history entity (#34)
* Adding new fields in history entity
1 parent a1479c6 commit 89d6010

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-9
lines changed

.gitpod.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This configuration file was automatically generated by Gitpod.
2+
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
3+
# and commit this file to your remote git repository to share the goodness with others.
4+
5+
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart
6+
7+
tasks:
8+
- init: mvn install -DskipTests=false -Dgpg.skip
9+
10+

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<packaging>pom</packaging>
99

1010
<properties>
11-
<revision>0.11.0</revision>
11+
<revision>0.12.0</revision>
1212
<maven.deploy.skip>true</maven.deploy.skip>
1313
<sonar.organization>azbuilder</sonar.organization>
1414
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

terrakube-client/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.6.13</version>
8+
<version>2.7.15</version>
99
<relativePath/>
1010
</parent>
1111
<groupId>org.terrakube.client</groupId>
@@ -20,7 +20,7 @@
2020
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
2121
<maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
2222
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
23-
<revision>0.11.0</revision>
23+
<revision>0.12.0</revision>
2424
<feign.version>11.9.1</feign.version>
2525
<feign-form.version>3.8.0</feign-form.version>
2626
<maven.deploy.skip>false</maven.deploy.skip>

terrakube-client/src/main/java/org/terrakube/client/model/organization/workspace/history/HistoryAttributes.java

+3
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,7 @@ public class HistoryAttributes {
1212
private String jobReference;
1313
private String updatedBy;
1414
private String updatedDate;
15+
private int serial;
16+
private String md5;
17+
private String lineage;
1518
}

terrakube-spring-boot-autoconfigure/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.6.13</version>
8+
<version>2.7.15</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.terrakube.client</groupId>
@@ -23,7 +23,7 @@
2323
<gson.version>2.8.6</gson.version>
2424
<feign.version>11.9.1</feign.version>
2525
<okhttp.version>4.9.1</okhttp.version>
26-
<revision>0.11.0</revision>
26+
<revision>0.12.0</revision>
2727
<maven.deploy.skip>false</maven.deploy.skip>
2828
<lombok.version>1.18.20</lombok.version>
2929
</properties>

terrakube-spring-boot-starter-sample/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.6.13</version>
8+
<version>2.7.15</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.terrakube.client</groupId>
@@ -19,7 +19,7 @@
1919
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
2020
<maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
2121
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
22-
<revision>0.11.0</revision>
22+
<revision>0.12.0</revision>
2323
<maven.deploy.skip>true</maven.deploy.skip>
2424
</properties>
2525

terrakube-spring-boot-starter/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.boot</groupId>
66
<artifactId>spring-boot-starter-parent</artifactId>
7-
<version>2.6.13</version>
7+
<version>2.7.15</version>
88
</parent>
99

1010
<groupId>org.terrakube.client</groupId>
@@ -17,7 +17,7 @@
1717
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
1818
<maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
1919
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
20-
<revision>0.11.0</revision>
20+
<revision>0.12.0</revision>
2121
<maven.deploy.skip>false</maven.deploy.skip>
2222
</properties>
2323

0 commit comments

Comments
 (0)