- Require Dart 3.3.0
- Move to
dart-lang/toolsmonorepo.
- Populate the pubspec
repositoryfield.
- Stable release for null safety.
- Require Dart 2.12
- Removed dependency on
package_resolverand changed the apis to accept aMap<String, Uri>which maps package names to the base uri to resolve thepackage:uris for those packages. - The
sdkRootargument must be anUri. UseUri.parsefor use cases previously passing aString. - The deprecated
packageRootargument 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
SyncPackageResolverhas no package information at all.
-
mapStackTrace()now uses aSyncPackageResolverobject from thepackage_resolverpackage to recreatepackage:URIs. -
Deprecation: the
packageRootparameter tomapStackTraceis deprecated in favor of thepackageInfoparameter 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.