Skip to content
This repository has been archived by the owner on Feb 10, 2025. It is now read-only.

Require dart 3.4, prepare for release v1.12.0 #162

Merged
merged 1 commit into from
Sep 27, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
matrix:
# Add macos-latest and/or windows-latest if relevant for this package.
os: [ubuntu-latest]
sdk: [3.1, dev]
sdk: [3.4, dev]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## 1.11.2-wip
## 1.12.0

* Require Dart 3.1 or greater
* Added support for parsing Wasm frames of Chrome (V8), Firefox, Safari.
* Require Dart 3.4 or greater

## 1.11.1

Expand Down
2 changes: 1 addition & 1 deletion lib/src/stack_zone_specification.dart
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class StackZoneSpecification {
try {
// TODO(rnystrom): Is the null-assertion correct here? It is nullable in
// Zone. Should we check for that here?
self.parent!.runBinary(_onError!, error, stackChain);
self.parent!.runBinary(_onError, error, stackChain);
} on Object catch (newError, newStackTrace) {
if (identical(newError, error)) {
parent.handleUncaughtError(zone, error, stackChain);
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: stack_trace
version: 1.11.2-wip
version: 1.12.0
description: A package for manipulating stack traces and printing them readably.
repository: https://github.com/dart-lang/stack_trace

environment:
sdk: ^3.1.0
sdk: ^3.4.0

dependencies:
path: ^1.8.0
Expand Down