Skip to content

Commit 43bdeb4

Browse files
authored
Merge branch 'master' into reproducible
2 parents fd4a527 + 3f073ad commit 43bdeb4

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

avaje-aws-appconfig/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>io.avaje</groupId>
1313
<artifactId>avaje-aws-appconfig</artifactId>
14-
<version>1.1</version>
14+
<version>1.2</version>
1515

1616
<properties>
1717
<surefire.useModulePath>false</surefire.useModulePath>
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>io.avaje</groupId>
3636
<artifactId>avaje-spi-service</artifactId>
37-
<version>2.7</version>
37+
<version>2.10</version>
3838
<optional>true</optional>
3939
</dependency>
4040

avaje-aws-appconfig/src/main/java/io/avaje/config/appconfig/AppConfigPlugin.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ private void performReload() {
110110
} else {
111111
String contentType = result.contentType();
112112
if (log.isLoggable(TRACE)) {
113-
log.log(TRACE, "AwsAppConfig fetched version:{0} contentType:{1} body:{2}", result.version(), contentType, result.body());
113+
int contentLength = result.body().length();
114+
log.log(TRACE, "AwsAppConfig fetched version:{0} contentType:{1} contentLength:{2,number,#}", result.version(), contentType, contentLength);
114115
}
115116
Map<String, String> keyValues = parse(result);
116117
configuration.eventBuilder("AwsAppConfig")

avaje-config-toml/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>ch.qos.logback</groupId>
4444
<artifactId>logback-classic</artifactId>
45-
<version>1.5.12</version>
45+
<version>1.5.17</version>
4646
<scope>test</scope>
4747
</dependency>
4848

avaje-config/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</scm>
1919

2020
<properties>
21-
<snakeyaml.version>2.3</snakeyaml.version>
21+
<snakeyaml.version>2.4</snakeyaml.version>
2222
<nexus.staging.autoReleaseAfterClose>true</nexus.staging.autoReleaseAfterClose>
2323
<surefire.useModulePath>false</surefire.useModulePath>
2424
</properties>
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>io.avaje</groupId>
3636
<artifactId>avaje-spi-service</artifactId>
37-
<version>2.7</version>
37+
<version>2.10</version>
3838
<optional>true</optional>
3939
</dependency>
4040

@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>ch.qos.logback</groupId>
6464
<artifactId>logback-classic</artifactId>
65-
<version>1.5.12</version>
65+
<version>1.5.17</version>
6666
<scope>test</scope>
6767
</dependency>
6868

avaje-dynamic-logback/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
<dependency>
3131
<groupId>io.avaje</groupId>
3232
<artifactId>avaje-spi-service</artifactId>
33-
<version>2.7</version>
33+
<version>2.10</version>
3434
<optional>true</optional>
3535
</dependency>
3636

3737
<dependency>
3838
<groupId>ch.qos.logback</groupId>
3939
<artifactId>logback-classic</artifactId>
40-
<version>1.5.12</version>
40+
<version>1.5.17</version>
4141
</dependency>
4242

4343
<dependency>

0 commit comments

Comments
 (0)