Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.21 KB

File metadata and controls

38 lines (29 loc) · 2.21 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Fixed:

  • Resolve bug: Bucket.query handle only one HTTP GET request. The query now returns the records until gets last bucket PR-50

0.1.0 - 2024-08-21

Added:

  • BucketClient.createBucket() method to create a bucket PR-10
  • TokenClient.createToken() method to create a token PR-4
  • ServerClient.serverInfo() method to get server info PR-3
  • ServerClient.getList() method to get a list of the buckets with their stats PR-16
  • ServerClient.isAlive() method to check if the storage engine is working PR-17
  • TokenClient.getTokens() method to get a list of tokens PR-20
  • EntryClient.writeRecord(Bucket bucket, Entry<?> body) method to add a record to a bucket PR-25
  • EntryClient.getRecord(Bucket bucket, Entry<?> body) method to get a record from a bucket PR-27
  • Improve ReductClient initialization. PR-41
  • Add exists option to BucketSettings. PR-42
  • Bucket.writeRecord receives entry name and bucket. PR-43
  • Add getBucket method to ReductClient. PR-44
  • Extend a method query(String entryName, QueryOptions options) for Bucket class. Add a QueryOptions class for the new method PR-45

Infrastructure:

  • Added GitHub Actions for CI/CD PR-35