Skip to content

Commit 05b3ba3

Browse files
authored
Merge pull request #211 from ably/update-ably-java
bump: ably-java to 1.6.0
2 parents aab70f7 + 1b5c088 commit 05b3ba3

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

.github/workflows/integration-test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
push:
66
branches:
77
- main
8+
tags:
9+
- 'v[0-9]+.[0-9]+.[0-9]+*'
810

911
jobs:
1012
build:
@@ -32,16 +34,27 @@ jobs:
3234
role-to-assume: arn:aws:iam::${{ secrets.ABLY_AWS_ACCOUNT_ID_SDK}}:role/ably-sdk-builds-kafka-connect-ably
3335
role-session-name: "${{ github.run_id }}-${{ github.run_number }}"
3436

37+
- name: Read artifacts names
38+
id: artifacts
39+
run: |
40+
MSK_ARCHIVE=$(basename "$(find build/distributions/msk -name '*.zip' -type f | head -n 1)")
41+
CONFLUENT_ARCHIVE=$(basename "$(find build/distributions/confluent -name '*.zip' -type f | head -n 1)")
42+
echo "msk_archive=${MSK_ARCHIVE}" >> $GITHUB_OUTPUT
43+
echo "confluent_archive=${CONFLUENT_ARCHIVE}" >> $GITHUB_OUTPUT
44+
3545
- name: Upload Confluent ZIP archive
3646
uses: ably/sdk-upload-action@v2
3747
with:
3848
sourcePath: build/distributions/confluent
3949
githubToken: ${{ secrets.GITHUB_TOKEN }}
4050
artifactName: kafka-connect-ably
51+
landingPagePath: ${{ steps.artifacts.outputs.confluent_archive }}
4152

4253
- name: Upload MSK Plugin ZIP archive
4354
uses: ably/sdk-upload-action@v2
4455
with:
4556
sourcePath: build/distributions/msk
4657
githubToken: ${{ secrets.GITHUB_TOKEN }}
4758
artifactName: kafka-connect-ably-msk-plugin
59+
landingPagePath: ${{ steps.artifacts.outputs.msk_archive }}
60+

build.gradle.kts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import java.time.LocalDate
2+
13
plugins {
24
java
35
`maven-publish`
@@ -139,10 +141,10 @@ val confluentArchive by tasks.registering(Zip::class) {
139141
"logo": "assets/ably.png"
140142
},
141143
"support": {
142-
"provider_name": "Ably",
144+
"summary": "This connector is <a href=\"https://ably.com/support\">supported by Ably</a>",
143145
"url": "https://ably.com/support",
144146
"logo": "assets/ably.png",
145-
"summary": "This connector is supported by Ably"
147+
"provider_name": "Ably"
146148
},
147149
"tags": ["Ably", "realtime", "kafka-connect-ably"],
148150
"features": {
@@ -152,6 +154,13 @@ val confluentArchive by tasks.registering(Zip::class) {
152154
"kafka_connect_api": true
153155
},
154156
"documentation_url": "https://github.com/ably/kafka-connect-ably",
157+
"source_url": "https://github.com/ably/kafka-connect-ably",
158+
"license": [ {
159+
"name": "The Apache License, Version 2.0",
160+
"url": "https://www.apache.org/licenses/LICENSE-2.0"
161+
} ],
162+
"docker_image": { },
163+
"release_date": "${LocalDate.now()}",
155164
"component_types": ["sink"]
156165
}
157166
""".trimIndent())

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Core versions
33
kafka = "3.9.1"
44
kafka-scala = "2.13"
5-
confluent = "7.9.2"
5+
confluent = "7.9.5"
66

77
# Library versions
8-
ably = "1.2.54"
8+
ably = "1.6.0"
99
guava = "33.4.0-jre"
1010
gson = "2.11.0"
1111
msgpack = "0.9.11"

0 commit comments

Comments
 (0)