Skip to content

Commit

Permalink
[DATA-7156] Southpaw java 17 support (#122)
Browse files Browse the repository at this point in the history
* add java 17 to ci

* specify imports directly

* changelog java 17
  • Loading branch information
mvanree00 authored May 17, 2024
1 parent 80f3e67 commit 7fe4d68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
java: [8, 11, 17]
steps:
- uses: actions/checkout@v2
- name: Cache Maven packages
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ May 16th, 2024

### Bug Fixes
* Upgrades Kafka dependencies and avro [#120](https://github.com/jwplayer/southpaw/pull/120)
* Java 17 support added

## 0.8.0
May 26th, 2023
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/com/jwplayer/southpaw/Southpaw.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
import com.codahale.metrics.Timer;
import com.google.common.base.Preconditions;
import com.jwplayer.southpaw.index.Indices;
import com.jwplayer.southpaw.json.*;
import com.jwplayer.southpaw.json.ChildRecords;
import com.jwplayer.southpaw.json.DenormalizedRecord;
import com.jwplayer.southpaw.json.Record;
import com.jwplayer.southpaw.json.Relation;
import com.jwplayer.southpaw.record.BaseRecord;
import com.jwplayer.southpaw.state.BaseState;
import com.jwplayer.southpaw.state.RocksDBState;
Expand Down

0 comments on commit 7fe4d68

Please sign in to comment.