Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 7.6.0 #10

Merged
merged 6 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

# Upload it to GitHub
- name: Upload to GitHub
uses: AButler/[email protected]
uses: AButler/[email protected].2
with:
files: 'build/libs/*;build/distributions/*'
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled_snyk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
--fail-on=upgradable
--json-file-output=${{ env.REPORT_FILE }}
--org=radar-base
--policy-path=$PWD/.snyk
--policy-path=.snyk

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah never mind. I understand.


- name: Report new vulnerabilities
uses: thehyve/report-vulnerability@master
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/snyk.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Snyk test
on:
pull_request:
branches:
- master
branches: [ master, dev ]

jobs:
security:
runs-on: ubuntu-latest
Expand All @@ -25,6 +25,8 @@ jobs:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
run: >
snyk test
--configuration-matching='^runtimeClasspath$'
--all-projects
--configuration-matching="^runtimeClasspath$"
--fail-on=upgradable
--org=radar-base
--policy-path=$PWD/.snyk
--policy-path=.snyk
Comment on lines -30 to +32

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah never mind. I understand.

4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BASE_IMAGE=confluentinc/cp-kafka-connect-base:7.3.2
ARG BASE_IMAGE=confluentinc/cp-kafka-connect-base:7.6.0

FROM --platform=$BUILDPLATFORM gradle:7.6-jdk11 as builder
FROM --platform=$BUILDPLATFORM gradle:8.3-jdk17 as builder

COPY ./*.gradle /code/
COPY src/main/java /code/src/main/java
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.s3
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BASE_IMAGE=confluentinc/cp-kafka-connect-base:7.3.2
ARG BASE_IMAGE=confluentinc/cp-kafka-connect-base:7.6.0

FROM --platform=$BUILDPLATFORM gradle:7.6-jdk11 as builder
FROM --platform=$BUILDPLATFORM gradle:8.3-jdk17 as builder

COPY ./*.gradle /code/
COPY src/main/java /code/src/main/java
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ plugins {
id 'java-library'
}

version = '7.3.2'
version = '7.6.0'
description = "Kafka Connect transformation used to copy the key and value to a struct in the value of the record."

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}

dependencies {
compileOnly 'org.apache.kafka:connect-transforms:3.3.2'
compileOnly 'org.apache.kafka:connect-transforms:3.7.0'
}

wrapper {
gradleVersion = '7.6'
gradleVersion = '8.3'
}
Loading