-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added release-droid requirements (#27)
- Loading branch information
Showing
11 changed files
with
129 additions
and
69 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
.github/workflows/release_droid_prepare_original_checksum.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Release Droid - Prepare Original Checksum | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
- name: Setup Scala | ||
uses: olafurpg/setup-scala@v10 | ||
with: | ||
java-version: [email protected] | ||
- name: Assembly with SBT | ||
run: sbt assembly | ||
- name: Running tests | ||
run: sbt test it:test | ||
- name: Prepare checksum | ||
run: find target/scala*/stripped -name *.jar -exec sha256sum "{}" + > original_checksum | ||
- name: Upload checksum to the artifactory | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: original_checksum | ||
retention-days: 5 | ||
path: original_checksum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Release Droid - Print Quick Checksum | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
- name: Setup Scala | ||
uses: olafurpg/setup-scala@v10 | ||
with: | ||
java-version: [email protected] | ||
- name: Assembly with SBT skipping tests | ||
run: sbt assembly | ||
- name: Prepare checksum | ||
run: echo 'checksum_start==';find target/scala*/stripped -name *.jar -exec sha256sum "{}" + | xargs;echo '==checksum_end' |
26 changes: 26 additions & 0 deletions
26
.github/workflows/release_droid_upload_github_release_assets.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Release Droid - Upload GitHub Release Assets | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
upload_url: | ||
description: 'Upload URL' | ||
required: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
- name: Setup Scala | ||
uses: olafurpg/setup-scala@v10 | ||
with: | ||
java-version: [email protected] | ||
- name: Assembly with SBT skipping tests | ||
run: sbt assembly | ||
- name: Upload assets to the GitHub release draft | ||
uses: shogo82148/actions-upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ github.event.inputs.upload_url }} | ||
asset_path: target/scala*/stripped/*.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,39 @@ | ||
# Kafka Connector Extension 1.0.0, released 2020-12-DD | ||
# Kafka Connector Extension 1.0.0, released 2021-05-06 | ||
|
||
## Features / Improvements | ||
Code name: v1.0.0 - Support for JSON Records import and offset reset strategy | ||
|
||
## Summary | ||
|
||
The release `1.0.0` added support for importing JSON records and consumer offset reset strategy. By using offset strategy consumer imports new records after topic retention. | ||
|
||
## Features | ||
|
||
* #24: Added support for importing JSON records (PR #25). | ||
* Added support for offset reset strategy (PR #26). | ||
|
||
## Bugfixes | ||
|
||
* #20: Fixed the typo in the CI deployment (PR #21) | ||
* #20: Fixed the typo in the CI deployment (PR #21). | ||
|
||
### Runtime Dependency Updates | ||
|
||
* Updated to `sbt.version:1.4.4` (was `1.4.2`) | ||
* Updated to Scala version `2.12.12` (was `2.12.11`) for cross compilation | ||
* Updated to `io.confluent:kafka-avro-serializer:6.0.1` (was `6.0.0`) | ||
* Updated to `org.scala-lang.modules:scala-collection-compat:2.3.1` (was `2.2.0`) | ||
* Updated `sbt.version:1.4.2` to `1.4.4` | ||
* Updated Scala version `2.12.11` to `2.12.13` for cross compilation | ||
* Updated `org.apache.kafka:kafka-clients:2.6.0` to `2.8.0` | ||
* Updated `io.confluent:kafka-avro-serializer:6.0.0` to `6.1.1` | ||
* Updated `org.scala-lang.modules:scala-collection-compat:2.2.0` to `2.4.3` | ||
|
||
### Test Dependency Updates | ||
|
||
* Updated to `org.mockito:mockito-core:3.6.28` (was `3.6.0`) | ||
* Updated `org.scalatest:scalatest:3.2.3` to `3.2.8` | ||
* Updated `org.mockito:mockito-core:3.6.0` to `3.9.0` | ||
* Updated `io.github.embeddedkafka:embedded-kafka-schema-registry:6.0.0` to `6.1.1` | ||
|
||
### Plugin Updates | ||
|
||
* Updated to `org.wartremover:sbt-wartremover:2.4.13` (was `2.4.12`) | ||
* Updated to `org.wartremover:sbt-wartremover-contib:1.3.11` (was `1.3.10`) | ||
* Updated to `com.github.cb372:sbt-explicit-dependencies:0.2.16` (was `0.2.15`) | ||
* Updated `com.timushev.sbt:sbt-updates:0.5.1` to `0.5.3` | ||
* Updated `org.scoverage:sbt-scoverage:1.6.1` to `1.7.3` | ||
* Updated `org.wartremover:sbt-wartremover:2.4.12` to `2.4.13` | ||
* Updated `org.wartremover:sbt-wartremover-contib:1.3.10` to `1.3.11` | ||
* Updated `com.github.cb372:sbt-explicit-dependencies:0.2.15` to `0.2.16` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
community-tags: | ||
- Apache Kafka | ||
- Exasol Streaming Connector | ||
- Open Source | ||
- GitHub | ||
community-project-name: Kafka Connector Extension | ||
community-project-description: | | ||
The [kafka-connector-extension](https://github.com/exasol/kafka-connector-extension) | ||
supports accessing Apache Kafka and importing data from Kafka topic. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters