Skip to content

Commit

Permalink
V0.3.0 (#2)
Browse files Browse the repository at this point in the history
## Changed

- Split the core data table into `data` and `metadata`.
- Add a simple garbage collection task to clean up any redundant state. E.g. from a client cancelling an in-progress `list_objects` task.
- Remove SQLite `VACUUM` command on startup due to potentially large memory usage.

### Fixed

- Snapshot database `metadata` state on `list_objects` so that deletes will remove all objects.
  • Loading branch information
seddonm1 authored Jul 16, 2023
1 parent bd049fb commit d9f5113
Show file tree
Hide file tree
Showing 8 changed files with 372 additions and 257 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.70.0
FROM rust:1.71.0

RUN rustup component add rustfmt &&\
rustup component add clippy
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0] - 2023-07-16

## Changed

- Split the core data table into `data` and `metadata`.
- Add a simple garbage collection task to clean up any redundant state. E.g. from a client cancelling an in-progress `list_objects` task.
- Remove SQLite `VACUUM` command on startup due to potentially large memory usage.

### Fixed

- Snapshot database `metadata` state on `list_objects` so that deletes will remove all objects.

## [0.2.0] - 2023-07-05

### Fixed
Expand Down
Loading

0 comments on commit d9f5113

Please sign in to comment.