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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ and [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

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

### Breaking

- Pivoted `pglite-oxide` to a new runtime architecture built around
reproducible Wasmer WASIX artifacts, generated asset manifests, and
target-specific AOT crates instead of checked-in runtime blobs
([#13](https://github.com/f0rr0/pglite-oxide/pull/13)).
- Release packages now rely on CI-generated portable WASIX and native AOT
artifacts for the exact release SHA. Applications should use the crate APIs
instead of depending on repository asset paths.

### Added

- Added extension catalog/build metadata, smoke/promoted extension manifests,
and generated APIs for discovering bundled PostgreSQL extensions.
- Added `pg_dump` support and native AOT packages for the supported macOS,
Linux, and Windows target triples.

### Changed

- Reworked runtime startup, asset loading, protocol recovery, proxy behavior,
and test coverage around the new backend.

## [0.3.0](https://github.com/f0rr0/pglite-oxide/compare/0.2.0...0.3.0) - 2026-04-26

### Breaking
Expand Down
88 changes: 44 additions & 44 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.3.0"
version = "0.4.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.3.0", path = "crates/assets", optional = true }
pglite-oxide-assets = { version = "=0.4.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.3.0", path = "crates/aot/aarch64-apple-darwin", optional = true }
pglite-oxide-aot-aarch64-apple-darwin = { version = "=0.4.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.3.0", path = "crates/aot/x86_64-unknown-linux-gnu", optional = true }
pglite-oxide-aot-x86_64-unknown-linux-gnu = { version = "=0.4.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.3.0", path = "crates/aot/aarch64-unknown-linux-gnu", optional = true }
pglite-oxide-aot-aarch64-unknown-linux-gnu = { version = "=0.4.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.3.0", path = "crates/aot/x86_64-pc-windows-msvc", optional = true }
pglite-oxide-aot-x86_64-pc-windows-msvc = { version = "=0.4.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.3.0"
version = "0.4.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.3.0"
version = "0.4.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.3.0"
version = "0.4.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.3.0"
version = "0.4.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.3.0"
version = "0.4.0"
edition = "2024"
rust-version = "1.92"
description = "Internal PGlite runtime and extension assets for pglite-oxide"
Expand Down
Loading