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

## [0.1.26] - 2026-05-13

### Fixed

- **Entra HTTPS token acquisition** — picks up the upstream native-TLS fix in
`duroxide-pg 0.1.33` ([microsoft/duroxide-pg#8]). Released `duroxide-pg 0.1.32`
pulled `reqwest` transitively without a TLS connector compiled in, which
caused every HTTPS call (including AAD token acquisition for
`connectWithEntra` / `connectWithSchemaAndEntra`) to fail with
`error sending request` / `invalid URL, scheme is not http`. No public API
changes.

### Changed

- **Bumped `duroxide-pg` dependency** — `0.1.32` → `0.1.33`.

[microsoft/duroxide-pg#8]: https://github.com/microsoft/duroxide-pg/pull/8

## [0.1.25] - 2026-05-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ crate-type = ["cdylib"]

[dependencies]
duroxide = { version = "0.1.29", features = ["sqlite"] }
duroxide-pg = "0.1.32"
duroxide-pg = "0.1.33"
napi = { version = "2", features = ["async", "napi6", "serde-json"] }
napi-derive = "2"
async-trait = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion npm/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "duroxide-darwin-arm64",
"version": "0.1.25",
"version": "0.1.26",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "duroxide-darwin-x64",
"version": "0.1.25",
"version": "0.1.26",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "duroxide-linux-arm64-gnu",
"version": "0.1.25",
"version": "0.1.26",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "duroxide-linux-x64-gnu",
"version": "0.1.25",
"version": "0.1.26",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "duroxide-windows-x64",
"version": "0.1.25",
"version": "0.1.26",
"os": [
"win32"
],
Expand Down
29 changes: 7 additions & 22 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "duroxide",
"version": "0.1.25",
"version": "0.1.26",
"description": "Durable execution runtime for Node.js, powered by Rust",
"main": "lib/duroxide.js",
"types": "lib/duroxide.d.ts",
Expand Down Expand Up @@ -40,11 +40,11 @@
"node": ">= 18"
},
"optionalDependencies": {
"duroxide-darwin-arm64": "0.1.25",
"duroxide-darwin-x64": "0.1.25",
"duroxide-linux-arm64-gnu": "0.1.25",
"duroxide-linux-x64-gnu": "0.1.25",
"duroxide-windows-x64": "0.1.25"
"duroxide-darwin-arm64": "0.1.26",
"duroxide-darwin-x64": "0.1.26",
"duroxide-linux-arm64-gnu": "0.1.26",
"duroxide-linux-x64-gnu": "0.1.26",
"duroxide-windows-x64": "0.1.26"
},
"files": [
"index.js",
Expand Down
Loading