Skip to content

Tags: dart-lang/stack_trace

Tags

v1.12.0

Toggle v1.12.0's commit message

v1.11.1

Toggle v1.11.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare 1.11.1 release (#137)

v1.11.0

Toggle v1.11.0's commit message

1.10.0

Toggle 1.10.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare to publish for stable null safety (#105)

1.9.6

Toggle 1.9.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Async gap fixes (#96)

* Fix async gap handling. (backpublish)

Fix an issue where an async gap at the end of a stack trace would not
get parsed correctly due to the trailing newline being `trim()`'d.

Add tests to cover this case.

* Fixes async gap handling in Trace.parse and Chain.parse (backpublish)

Co-authored-by: Clement Skau <[email protected]>

1.10.0-nullsafety.6

Toggle 1.10.0-nullsafety.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump SDK constraints for pub (#95)

Use a 2.12.0 lower bound since pub does not understand allowed
experiments for earlier versions.

Use a 3.0.0 upper bound to avoid a warning in pub and to give some
flexibility in publishing for stable.

1.10.0-nullsafety.5

Toggle 1.10.0-nullsafety.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
allow the 2.12 prerelease sdks (#87)

1.10.0-nullsafety.4

Toggle 1.10.0-nullsafety.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Allow earlier SDKs (#86)

This was bumped because it wasn't clear which SDKs it worked with,
however a comment on an earlier PR shows that it is compatible with
early SDKs.

1.10.0-nullsafety.3

Toggle 1.10.0-nullsafety.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare to publish (#85)

Bump the min SDk to `2.11.0-0`. There were changes previously which
appear to depend on changes in the SDK that were not reflected in the
lower bound constraint, bump to a much more recent SDK for safety.

v1.10.0-nullsafety.2

Toggle v1.10.0-nullsafety.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Avoid converting stacktrace to nullable and then null checking it. (#82)

The Dart implementation will soon be changed so that a declaration
such as `T? x = y`, where `y` has a non-nullable type, automatically
promotes `x` to a non-nullable type.  This will in turn cause a
warning if a non-nullable value is assigned to a nullable variable and
then null checked.

We're currently doing that in one place, and there's no need to, so
remove the unnecessary type conversion and null check.