Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.5.0](https://github.com/f0rr0/pglite-oxide/compare/0.4.1...0.5.0) - 2026-05-08

### Added

- [**breaking**] add WASIX asset pipeline and protocol recovery ([#13](https://github.com/f0rr0/pglite-oxide/pull/13))

### Fixed

- publish runtime assets on GitHub releases ([#27](https://github.com/f0rr0/pglite-oxide/pull/27))
- mount WASIX urandom as virtual device ([#31](https://github.com/f0rr0/pglite-oxide/pull/31))
- quiet expected postgres error recovery ([#28](https://github.com/f0rr0/pglite-oxide/pull/28))

## [0.4.1](https://github.com/f0rr0/pglite-oxide/compare/0.4.0...0.4.1) - 2026-05-07

### Fixed
Expand Down
29 changes: 14 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pglite-oxide"
version = "0.4.1"
version = "0.5.0"
edition = "2024"
rust-version = "1.92"
description = "Embedded Postgres for Rust tests and local apps. No Docker, works with SQLx and any Postgres client."
Expand Down Expand Up @@ -76,7 +76,7 @@ hex = "0.4"
sha2 = "0.10"
dunce = "1"
filetime = "0.2"
pglite-oxide-assets = { version = "=0.4.1", path = "crates/assets", optional = true }
pglite-oxide-assets = { version = "=0.5.0", path = "crates/assets", optional = true }
tokio = { version = "1", features = ["io-util", "rt-multi-thread"] }
wasmer = { version = "7.2.0-alpha.2", default-features = false, features = [
"sys",
Expand All @@ -95,16 +95,16 @@ wasmer-wasix = { version = "0.702.0-alpha.2", default-features = false, features
webc = "11.0.0"

[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies]
pglite-oxide-aot-aarch64-apple-darwin = { version = "=0.4.1", path = "crates/aot/aarch64-apple-darwin", optional = true }
pglite-oxide-aot-aarch64-apple-darwin = { version = "=0.5.0", path = "crates/aot/aarch64-apple-darwin", optional = true }

[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies]
pglite-oxide-aot-x86_64-unknown-linux-gnu = { version = "=0.4.1", path = "crates/aot/x86_64-unknown-linux-gnu", optional = true }
pglite-oxide-aot-x86_64-unknown-linux-gnu = { version = "=0.5.0", path = "crates/aot/x86_64-unknown-linux-gnu", optional = true }

[target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies]
pglite-oxide-aot-aarch64-unknown-linux-gnu = { version = "=0.4.1", path = "crates/aot/aarch64-unknown-linux-gnu", optional = true }
pglite-oxide-aot-aarch64-unknown-linux-gnu = { version = "=0.5.0", path = "crates/aot/aarch64-unknown-linux-gnu", optional = true }

[target.'cfg(all(target_os = "windows", target_arch = "x86_64"))'.dependencies]
pglite-oxide-aot-x86_64-pc-windows-msvc = { version = "=0.4.1", path = "crates/aot/x86_64-pc-windows-msvc", optional = true }
pglite-oxide-aot-x86_64-pc-windows-msvc = { version = "=0.5.0", path = "crates/aot/x86_64-pc-windows-msvc", optional = true }

[dev-dependencies]
sqlx = { version = "0.8", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion crates/aot/aarch64-apple-darwin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pglite-oxide-aot-aarch64-apple-darwin"
version = "0.4.1"
version = "0.5.0"
edition = "2024"
rust-version = "1.92"
description = "Internal Wasmer AOT artifacts for pglite-oxide on aarch64-apple-darwin"
Expand Down
2 changes: 1 addition & 1 deletion crates/aot/aarch64-unknown-linux-gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pglite-oxide-aot-aarch64-unknown-linux-gnu"
version = "0.4.1"
version = "0.5.0"
edition = "2024"
rust-version = "1.92"
description = "Internal Wasmer AOT artifacts for pglite-oxide on aarch64-unknown-linux-gnu"
Expand Down
2 changes: 1 addition & 1 deletion crates/aot/x86_64-pc-windows-msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pglite-oxide-aot-x86_64-pc-windows-msvc"
version = "0.4.1"
version = "0.5.0"
edition = "2024"
rust-version = "1.92"
description = "Internal Wasmer AOT artifacts for pglite-oxide on x86_64-pc-windows-msvc"
Expand Down
2 changes: 1 addition & 1 deletion crates/aot/x86_64-unknown-linux-gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pglite-oxide-aot-x86_64-unknown-linux-gnu"
version = "0.4.1"
version = "0.5.0"
edition = "2024"
rust-version = "1.92"
description = "Internal Wasmer AOT artifacts for pglite-oxide on x86_64-unknown-linux-gnu"
Expand Down
2 changes: 1 addition & 1 deletion crates/assets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pglite-oxide-assets"
version = "0.4.1"
version = "0.5.0"
edition = "2024"
rust-version = "1.92"
description = "Internal PGlite runtime and extension assets for pglite-oxide"
Expand Down
12 changes: 6 additions & 6 deletions examples/tauri-sqlx-vanilla/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.