Exclude net.java.dev.jna:jna dependency from dependencies of org.caffinitas.ohc:ohc-core

patch by Maxim Muzafarov; reviewed by Ariel Weisberg, Ekaterina Dimitrova, Stefan Miklosovic for CASSANDRA-18992
This commit is contained in:
Maxim Muzafarov 2023-11-15 10:04:35 +01:00 committed by Stefan Miklosovic
parent f0655159e6
commit 072a13e5ef
No known key found for this signature in database
GPG Key ID: 32F35CB2F546D93E
2 changed files with 5 additions and 0 deletions

View File

@ -976,6 +976,10 @@
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>

View File

@ -1,4 +1,5 @@
5.0-beta1
* Exclude net.java.dev.jna:jna dependency from dependencies of org.caffinitas.ohc:ohc-core (CASSANDRA-18992)
* Add UCS sstable_growth and min_sstable_size options (CASSANDRA-18945)
* Make cqlsh's min required Python version 3.7+ instead of 3.6+ (CASSANDRA-18960)
* Fix incorrect seeking through the sstable iterator by IndexState (CASSANDRA-18932)