Skip to content

Commit a8da2f8

Browse files
authored
BE-578: Gate sink imports behind cfg(nightly) (#8768)
1 parent 97bd10e commit a8da2f8

5 files changed

Lines changed: 10 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/error-stack/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ All notable changes to `error-stack` will be documented in this file.
88
- Support for [`defmt`](https://defmt.ferrous-systems.com).
99
- Better support for serialization and deserialization of `Report`.
1010

11+
## [0.7.1](https://github.com/hashintel/hash/tree/error-stack%400.7.1/libs/error-stack) - 2026-05-27
12+
13+
### Fixes
14+
15+
- Gate `sink` imports behind `cfg(nightly)` so `error-stack` compiles on stable Rust with the `unstable` feature enabled. ([#8768](https://github.com/hashintel/hash/pull/8768))
16+
1117
## [0.7.0](https://github.com/hashintel/hash/tree/error-stack%400.7.0/libs/error-stack) - 2026-03-26
1218

1319
### Features

libs/error-stack/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "error-stack"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = { workspace = true }
55
edition = "2021"
66
rust-version = "1.83.0"

libs/error-stack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rust/error-stack",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"private": true,
55
"description": "A context-aware error-handling library that supports arbitrary attached user data",
66
"license": "MIT OR Apache-2.0",

libs/error-stack/src/sink.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#[cfg(any(all(not(target_arch = "wasm32"), feature = "std"), feature = "tracing"))]
22
use core::panic::Location;
3+
#[cfg(nightly)]
34
use core::{
45
convert::Infallible,
56
ops::{FromResidual, Try},

0 commit comments

Comments
 (0)