- Require Dart 3.3.0
- Populate the pubspec
repository
field.
- Stable release for null safety.
- Require Dart 2.12
- Removed dependency on
package_resolver
and changed the apis to accept aMap<String, Uri>
which maps package names to the base uri to resolve thepackage:
uris for those packages. - The
sdkRoot
argument must be anUri
. UseUri.parse
for use cases previously passing aString
. - The deprecated
packageRoot
argument has been removed.
- Set max SDK version to
<3.0.0
.
- Support source maps that depend on the uri of the location to resolve spans correctly.
- Add a missing dependency on
path
.
- Fix a typo in the previous fix.
- Don't crash if the
SyncPackageResolver
has no package information at all.
-
mapStackTrace()
now uses aSyncPackageResolver
object from thepackage_resolver
package to recreatepackage:
URIs. -
Deprecation: the
packageRoot
parameter tomapStackTrace
is deprecated in favor of thepackageInfo
parameter described above. It will be removed in a future release.
- Add compatibility for member names that include named arguments.
- Add compatibility for Dart 1.10-style name munging.
- Prefer "dart:" URLs to "package:" URLs.
- Fix an off-by-one bug that was causing line numbers to be slightly off.
- Don't crash when mapping stack chains.
- Initial release.