-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from RADAR-base/release-0.5.3
Release 0.5.3
- Loading branch information
Showing
11 changed files
with
104 additions
and
53 deletions.
There are no files selected for viewing
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,34 @@ | ||
name: Snyk test | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
security: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: snyk/actions/setup@master | ||
with: | ||
snyk-version: v1.1032.0 | ||
|
||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
- name: Run Snyk to check for vulnerabilities | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
run: > | ||
snyk test | ||
--all-projects | ||
--configuration-matching="^runtimeClasspath$" | ||
--fail-on=upgradable | ||
--org=radar-base | ||
--policy-path=.snyk | ||
--severity-threshold=high |
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,33 +1,31 @@ | ||
@Suppress("ConstPropertyName", "MemberVisibilityCanBePrivate") | ||
object Versions { | ||
const val project = "0.5.2" | ||
const val project = "0.5.3" | ||
|
||
const val java = 17 | ||
const val kotlin = "1.9.10" | ||
const val kotlin = "1.9.22" | ||
const val wrapper = "8.4" | ||
|
||
const val radarCommons = "1.1.2" | ||
const val confluent = "7.6.0" | ||
const val confluent = "7.7.0" | ||
const val kafka = "$confluent-ce" | ||
const val avro = "1.11.3" | ||
const val avro = "1.12.0" | ||
|
||
const val managementPortal = "2.0.0" | ||
|
||
// From image | ||
const val jackson = "2.16.1" | ||
const val jackson = "2.17.0" | ||
|
||
const val log4j2 = "2.20.0" | ||
const val slf4j = "2.0.9" | ||
const val log4j2 = "2.23.1" | ||
const val slf4j = "2.0.13" | ||
|
||
const val okhttp = "4.12.0" | ||
|
||
const val firebaseAdmin = "9.1.0" | ||
const val firebaseAdmin = "9.2.0" | ||
const val radarSchemas = "0.8.7-hotfix" | ||
const val ktor = "2.3.5" | ||
const val ktor = "2.3.10" | ||
|
||
const val junit = "5.9.3" | ||
const val wiremock = "2.27.2" | ||
const val mockito = "5.3.1" | ||
|
||
const val kotlinVersion = "1.9.10" | ||
const val junit = "5.10.2" | ||
const val wiremock = "3.0.1" | ||
const val mockito = "5.11.0" | ||
} |
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 |
---|---|---|
|
@@ -34,6 +34,13 @@ RUN gradle jar | |
|
||
FROM confluentinc/cp-kafka-connect-base:7.5.0 | ||
|
||
USER root | ||
|
||
RUN yum remove -y zulu11-ca-jdk-headless && yum remove -y zulu11-ca-jre-headless | ||
RUN yum install -y zulu17-ca-jdk-headless && yum install -y zulu17-ca-jre-headless | ||
|
||
USER appuser | ||
|
||
MAINTAINER Joris Borgdorff <[email protected]> | ||
|
||
LABEL description="Kafka REST API Source connector" | ||
|
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 |
---|---|---|
|
@@ -34,6 +34,13 @@ RUN gradle jar | |
|
||
FROM confluentinc/cp-kafka-connect-base:7.5.0 | ||
|
||
USER root | ||
|
||
RUN yum remove -y zulu11-ca-jdk-headless && yum remove -y zulu11-ca-jre-headless | ||
RUN yum install -y zulu17-ca-jdk-headless && yum install -y zulu17-ca-jre-headless | ||
|
||
USER appuser | ||
|
||
MAINTAINER Pauline Conde <[email protected]> | ||
|
||
LABEL description="Kafka Oura REST API Source connector" | ||
|
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
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