Dear community,
Weβre excited to announce the release of Eclipse JNoSQL 1.1.6! π
This release marks a significant milestone with the official support for Jakarta NoSQL 1.0, the first specification in the Jakarta EE process dedicated to NoSQL databases. This brings more substantial standardization and alignment with the Jakarta ecosystem.
Jakarta NoSQL 1.0 support: A significant leap forward in standardizing NoSQL for Jakarta EE.
Standard Graph API: Work seamlessly with popular graph database standards such as Apache TinkerPop and OpenCypher using a unified API:
Person person = new Person();
Book book = new Book();
Edge<Person, Book> edge = Edge.source(person)
.label("READS")
.target(book)
.property("since", 2019)
.property("format", "digital")
.build();
template.edge(edge);
CDI Lite enhancements: Improved performance and compatibility thanks to updates inspired by Quarkus optimizations.
βοΈ Bug fixes and performance improvements across the board.
For full release notes and upgrade instructions, visit:
π https://github.com/eclipse-jnosql/jnosql/releases/tag/1.1.6
Thank you to everyone who contributed to this release β your feedback and support help shape the future of NoSQL in Jakarta EE.
Happy coding!