Skip to content

Commit

Permalink
Merge pull request #19 from Bisnode/bump_kafka_plugin
Browse files Browse the repository at this point in the history
Update kafka library to 2.8.0
  • Loading branch information
mdanielolsson authored May 3, 2021
2 parents 8b29c13 + 04b5367 commit 15d32fb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0]

### Changes

- Update to Kafka library 2.8.0
- Tested on Kafka 2.7.0 & 2.8.0

## [1.0.0] - 2021-03-29

### Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Open Policy Agent (OPA) plugin for Kafka authorization.

### Prerequisites

* Kafka 2.7.x (compile from source for other versions)
* Kafka 2.7.0+
* Java 11 or above
* OPA installed and running on the brokers

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group 'com.bisnode.kafka.authorization'
version '1.0.0'
version '1.1.0'

java {
sourceCompatibility = JavaVersion.VERSION_11
Expand All @@ -24,7 +24,7 @@ repositories {
// See versions used in Kafka here https://github.com/apache/kafka/blob/2.7.0/gradle/dependencies.gradle
dependencies {
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-scala_2.13', version: '2.10.5'
implementation group: 'org.apache.kafka', name: 'kafka_2.13', version: '2.7.0'
implementation group: 'org.apache.kafka', name: 'kafka_2.13', version: '2.8.0'
implementation group: 'com.google.guava', name: 'guava', version: '30.1-jre'
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'

Expand Down Expand Up @@ -65,7 +65,7 @@ publishing {
mavenJava(MavenPublication) {
groupId ='com.bisnode.kafka.authorization'
artifactId = 'opa-authorizer'
version = '1.0.0'
version = '1.1.0'

from components.java

Expand Down

0 comments on commit 15d32fb

Please sign in to comment.