Skip to content

Commit 4b3cb28

Browse files
authored
Bump patch versions of dependencies (okhttp, micronaut) (#535)
* Bump dependencies * OKHTTP 4.8.0 -> 4.8.1 * Micronaut 2.0.0 -> 2.0.1 * AWS S3 SDK 1.11.820 -> 1.11.836 * run all integration tests
1 parent 18ad070 commit 4b3cb28

File tree

6 files changed

+31
-8
lines changed

6 files changed

+31
-8
lines changed

bolt-micronaut/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
</parent>
1111

1212
<properties>
13-
<micronaut.version>2.0.0</micronaut.version>
13+
<micronaut.bom.version>2.0.0</micronaut.bom.version>
14+
<micronaut.version>2.0.1</micronaut.version>
1415
<micronaut-test-junit5.version>1.2.0</micronaut-test-junit5.version>
1516
<mockito-all.version>1.10.19</mockito-all.version>
1617
</properties>
@@ -25,7 +26,7 @@
2526
<dependency>
2627
<groupId>io.micronaut</groupId>
2728
<artifactId>micronaut-bom</artifactId>
28-
<version>${micronaut.version}</version>
29+
<version>${micronaut.bom.version}</version>
2930
<type>pom</type>
3031
<scope>import</scope>
3132
</dependency>

bolt-spring-boot-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<properties>
13-
<spring-boot.version>2.3.1.RELEASE</spring-boot.version>
13+
<spring-boot.version>2.3.2.RELEASE</spring-boot.version>
1414
</properties>
1515

1616
<groupId>com.slack.api</groupId>

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ url: https://slack.dev
88

99
sdkLatestVersion: 1.1.2
1010
kotlinVersion: 1.3.72
11-
springBootVersion: 2.3.1.RELEASE
11+
springBootVersion: 2.3.2.RELEASE
1212
compatibleMicronautVersion: 2.x
1313
quarkusVersion: 1.6.0.Final
14-
helidonVersion: 1.4.5
14+
helidonVersion: 1.4.5

json-logs/raw/status/api/v1.0.0/current.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,10 @@
249249
{
250250
"date_created": "2020-07-24T10:45:08-07:00",
251251
"body": "We\u0027re currently aware of some intermittent latency and timeouts with image attachments, certain API methods (including users.setPhoto, chat.postMessage and chat.update, views.*), and apps which use these features. We are currently investigating and will update when we believe these issues have been resolved. Sorry for the inconvenience."
252+
},
253+
{
254+
"date_created": "2020-08-06T14:52:25-07:00",
255+
"body": "Some users and app developers are currently seeing \"Request failed with status code 400\" errors when apps submit requests. We are looking into this and will post when we have more information."
252256
}
253257
]
254258
}

json-logs/raw/status/api/v2.0.0/current.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,24 @@
365365
"body": "We\u0027re currently aware of some intermittent latency and timeouts with image attachments, certain API methods (including users.setPhoto, chat.postMessage and chat.update, views.*), and apps which use these features. We are currently investigating and will update when we believe these issues have been resolved. Sorry for the inconvenience."
366366
}
367367
]
368+
},
369+
{
370+
"id": 882,
371+
"date_created": "2020-08-06T14:52:25-07:00",
372+
"date_updated": "2020-08-06T14:52:25-07:00",
373+
"title": "We\u0027re looking into an issue with API requests",
374+
"type": "incident",
375+
"status": "active",
376+
"url": "https://status.slack.com/2020-08/025d277cbb15bb95",
377+
"services": [
378+
"Apps/Integrations/APIs"
379+
],
380+
"notes": [
381+
{
382+
"date_created": "2020-08-06T14:52:25-07:00",
383+
"body": "Some users and app developers are currently seeing \"Request failed with status code 400\" errors when apps submit requests. We are looking into this and will post when we have more information."
384+
}
385+
]
368386
}
369387
]
370388
}

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@
3838
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3939
<jetty-for-tests.version>9.2.27.v20190403</jetty-for-tests.version>
4040
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
41-
<okhttp.version>4.8.0</okhttp.version>
41+
<okhttp.version>4.8.1</okhttp.version>
4242
<gson.version>2.8.6</gson.version>
4343
<lombok.version>1.18.12</lombok.version>
4444
<lombok-maven-plugin.version>1.18.10.0</lombok-maven-plugin.version>
4545
<delombok.output>target/generated-sources-for-javadocs</delombok.output>
4646
<kotlin.version>1.3.72</kotlin.version>
4747
<slf4j.version>1.7.30</slf4j.version>
48-
<aws.s3.version>1.11.820</aws.s3.version>
48+
<aws.s3.version>1.11.836</aws.s3.version>
4949
<junit.version>4.13</junit.version>
5050
<hamcrest.version>1.3</hamcrest.version>
5151
<logback.version>1.2.3</logback.version>
52-
<mockito-core.version>3.4.0</mockito-core.version>
52+
<mockito-core.version>3.4.6</mockito-core.version>
5353
<duplicate-finder-maven-plugin.version>1.3.0</duplicate-finder-maven-plugin.version>
5454
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
5555
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>

0 commit comments

Comments
 (0)