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
6 changes: 5 additions & 1 deletion .github/workflows/publish-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,12 @@ jobs:
# `--only-secrets OPENAI_API_KEY` keeps the runtime env scoped to
# just the key these scripts need, instead of injecting every
# secret in the Doppler config.
# Skipped on Windows + Node 24: libuv hits an assertion failure
# (`!(handle->flags & UV_HANDLE_CLOSING)` in src/win/async.c) during
# process shutdown of the example scripts on that combination; the
# same examples pass on every other platform/Node combination.
- name: Run AI examples
if: env.DOPPLER_TOKEN != ''
if: env.DOPPLER_TOKEN != '' && !(runner.os == 'Windows' && matrix.node == '24')
shell: bash
run: |
doppler run --only-secrets OPENAI_API_KEY -- node examples/openai_tool.mjs
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## [0.7.1] - 2026-05-25

### Fixed

* fix(ci): skip publish-js AI examples step on Windows + Node 24. The libuv assertion `!(handle->flags & UV_HANDLE_CLOSING)` fires during process shutdown of the example scripts on that combination only, blocking the npm publish in v0.7.0. The same scripts pass on every other platform/Node combination, so the step is gated off for `runner.os == 'Windows' && matrix.node == '24'`.

**Full Changelog**: https://github.com/everruns/bashkit/compare/v0.7.0...v0.7.1

## [0.7.0] - 2026-05-25

### Highlights
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resolver = "2"
members = ["crates/*"]

[workspace.package]
version = "0.7.0"
version = "0.7.1"
edition = "2024"
license = "MIT"
authors = ["Everruns"]
Expand Down
2 changes: 1 addition & 1 deletion crates/bashkit-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ scripted_tool = ["bashkit/scripted_tool"]
interactive = ["dep:rustyline", "dep:terminal_size", "dep:signal-hook"]

[dependencies]
bashkit = { path = "../bashkit", version = "0.7.0", features = ["http_client", "git", "jq"] }
bashkit = { path = "../bashkit", version = "0.7.1", features = ["http_client", "git", "jq"] }
tokio = { workspace = true, features = ["macros", "net", "rt", "rt-multi-thread", "time"] }
clap.workspace = true
anyhow.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/bashkit-js/package-lock.json

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

2 changes: 1 addition & 1 deletion crates/bashkit-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@everruns/bashkit",
"version": "0.7.0",
"version": "0.7.1",
"description": "Sandboxed bash interpreter for JavaScript/TypeScript",
"main": "wrapper.js",
"browser": "bashkit.wasi-browser.js",
Expand Down
Loading