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

[Merged by Bors] - Support druid 26.0.0 #75

Closed
wants to merge 3 commits into from
Closed
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
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,24 @@

## [Unreleased]

### Fixed
## [0.5.0] - 2023-05-30

- Ignore additional JSON fields the OPA server is sending. This can e.g. be the cause when OPA decision logs are enabled ([#74]).
### Added

- Added support for Druid `26.0.0` ([#75]).

### Changed

- Changed build system to Maven ([#61]).
- Changed module prefix from `de` to `tech` ([#61]).

### Fixed

- Ignore additional JSON fields the OPA server is sending. This can e.g. be the cause when OPA decision logs are enabled ([#74]).

[#61]: https://github.com/stackabletech/druid-opa-authorizer/pull/61
[#74]: https://github.com/stackabletech/druid-opa-authorizer/pull/74
[#75]: https://github.com/stackabletech/druid-opa-authorizer/pull/75

## [0.3.0] - 2022-10-13

Expand Down
12 changes: 7 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@

<groupId>tech.stackable</groupId>
<artifactId>druid-opa-authorizer</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<druid.version>26.0.0</druid.version>
<jackson.version>2.13.3</jackson.version>
</properties>

<dependencies>
Expand All @@ -21,20 +23,20 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.3</version>
<version>${jackson.version}</version>
<scope>compile</scope>
</dependency>
<!-- Druid dependencies, provided at runtime by Druid -->
<dependency>
<groupId>org.apache.druid</groupId>
<artifactId>druid-core</artifactId>
<version>24.0.0</version>
<artifactId>druid-processing</artifactId>
<version>${druid.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.druid</groupId>
<artifactId>druid-server</artifactId>
<version>24.0.0</version>
<version>${druid.version}</version>
<scope>provided</scope>
</dependency>
<!-- JUnit for unit testing -->
Expand Down