Skip to content
Open
Show file tree
Hide file tree
Changes from 6 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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.0.0/),
and this project adheres to the versioning scheme outlined in the [README.md](README.md).


## [Unreleased]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this might be a merge artifact?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. That's merge artifact? I have updated that.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It still seems to be here. We should only see changes from commit 216bafe.


### Added

- Add `stackerdb_timeout_secs` to miner config for limiting duration of StackerDB HTTP requests.

## Unreleased

### Added
Expand All @@ -17,7 +24,6 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
- Clarity errors pertaining to syntax binding errors have been made more
expressive (#6337)


## [3.2.0.0.1]

### Added
Expand Down
8 changes: 5 additions & 3 deletions clarity/src/vm/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,11 @@ impl fmt::Display for Error {
Error::Runtime(ref err, ref stack) => {
write!(f, "{err}")?;
if let Some(ref stack_trace) = stack {
writeln!(f, "\n Stack Trace: ")?;
for item in stack_trace.iter() {
writeln!(f, "{item}")?;
if !stack_trace.is_empty() {
writeln!(f, "\n Stack Trace: ")?;
for item in stack_trace.iter() {
writeln!(f, "{item}")?;
}
}
}
Ok(())
Expand Down
8 changes: 8 additions & 0 deletions stacks-signer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to the versioning scheme outlined in the [README.md](README.md).



## [3.2.0.0.1.1]

### Added

- Introduced `stackerdb_timeout_secs`: config option to set the maximum time (in seconds) the signer will wait for StackerDB HTTP requests to complete.


## Unreleased

### Added
Expand Down