Skip to content

Releases: denoland/denokv

0.14.0

Choose a tag to compare

@github-actions github-actions released this 06 Jun 08:36

What's Changed

  • chore: release 0.14.0
  • fix: push releases with a deploy key (#163)
  • remote: fix metadata refresher lifetime and stale token recovery (#138)
  • feat: add a manually triggered release workflow (#160)
  • docs: add supported feature matrices to the readmes (#161)
  • docs: add a worked HTTPS reverse proxy example (#162)
  • fix: load the napi binding lazily-failing (#159)
  • fix: deflake the queue delivery e2e test (#158)
  • fix: match native Deno.Kv.list selector validation (#157)
  • fix: sync generated protobuf ts files with the datapath schema (#152)
  • fix: add missing AtomicOperation.mutate() types (#122)
  • feat: export KvU64 from the npm package (#156)
  • fix: send content-type header on data path requests (#151)
  • fix: report failed check indexes in AtomicWriteOutput (#150)
  • chore: test the napi package on node 22 and 24 (#155)
  • feat: build and publish the napi package for linux arm64 (#154)
  • fix: build the darwin-x64 napi binary for the right architecture (#153)
  • chore: use chrono::DateTime::from_timestamp in utc_now (#128)
  • chore: upgrade prost to 0.14 (#149)
  • chore: upgrade rusqlite to 0.40 (#148)
  • chore: update env_logger to 0.11 and constant_time_eq to 0.5 (#147)
  • chore: upgrade reqwest to 0.13 (#146)
  • chore: upgrade axum to 0.8 (#145)
  • chore: migrate to aws-sdk v1 (#144)
  • chore: update Rust toolchain to 1.96.0 (#143)
  • chore: fix prettier lint errors in napi test file (#142)
  • chore: update npm/napi yarn.lock to address security advisories (#141)
  • chore: update Cargo.lock to address security advisories (#140)
  • chore: use correct version for denokv crate (#134)

Full Changelog: 0.13.0...0.14.0

0.7.0

Choose a tag to compare

@github-actions github-actions released this 21 Dec 18:17
a5ae69f

What's Changed

Full Changelog: 0.6.1...0.7.0

0.6.1

Choose a tag to compare

@igorzi igorzi released this 08 Dec 18:28
3ef711a

What's Changed

Full Changelog: 0.6.0...0.6.1

0.6.0

Choose a tag to compare

@igorzi igorzi released this 05 Dec 20:55
ddf86cc

What's Changed

Full Changelog: 0.5.0...0.6.0

0.6.0-next.1

0.6.0-next.1 Pre-release
Pre-release

Choose a tag to compare

@igorzi igorzi released this 05 Dec 20:22
8238a1a
0.6.0 (#42)

0.5.0

Choose a tag to compare

@github-actions github-actions released this 06 Dec 23:11
d8d09f8

What's Changed

Full Changelog: 0.4.0...0.5.0

0.4.0

Choose a tag to compare

@igorzi igorzi released this 27 Nov 19:05
061ffbd

What's Changed

New Contributors

Full Changelog: 0.2.0...0.4.0

0.2.0

Choose a tag to compare

@lucacasonato lucacasonato released this 09 Nov 12:12
3231644

What's Changed

  • refactor: extract datapath/interface converters by @igorzi in #19
  • feat: s3 replica and pitr by @losfair in #17

New Contributors

Full Changelog: 0.1.0...0.2.0

0.1.0

Choose a tag to compare

@lucacasonato lucacasonato released this 03 Nov 16:22
40b67f3
feat: add standalone SQLite backed denokv server (#14)

This is a standalone Deno KV server backed by SQLite. It exposes a HTTP
API that implements the KV Connect protocol and can be used from
the Deno CLI.

The server can be connected to from multiple clients at the same time,
which enables a simple way to self host a production ready Deno KV
database.