Releases: dart-lang/tools
Releases · dart-lang/tools
package:source_map_stack_trace v2.1.2
- Require Dart 3.3.0
- Move to
dart-lang/tools
monorepo.
package:oauth2 v2.0.3
- Require
package:http
v1.0.0 - Move to
dart-lang/tools
.
package:graphs v2.3.2
- Require Dart 3.4
- Update to the latest version of
package:dart_flutter_team_lints
.
unified_analytics v5.8.8+2
- Avoid opening large telemetry log files to prevent out of memory errors.
- Fixed bug where calling
Analytics.send
could result in aFileSystemException
when unable to write to a log file.
unified_analytics v6.1.2
What's Changed
- unified_analytics: now deletes old log file if it exceeds kMaxLogFileSize of 25MiB (to prevent
FileSystemException
s) by @christopherfujino in #277
Full Changelog: unified_analytics-v6.1.1...unified_analytics-v6.1.2
unified_analytics v6.1.1
What's Changed
- [unified_analytics] Suppress any
FileSystemException
thrown duringAnalytics.send
by @andrewkolos in #274
Full Changelog: unified_analytics-v6.1.0...unified_analytics-v6.1.1
package:unified_analytics v6.1.0
- Added new event constructor
Event.devtoolsEvent
for the single devtools event with a new enum valueDashEvent.devtoolsEvent
package:unified_analytics v6.0.0
- Consolidate
Session
functionality intoUserProperty
to prevent race condition crash where session logic crashed before initializingUserProperty
- Get rid of
late
variables throughout implementation class,AnalyticsImpl
- Any error events (
Event.analyticsException
) encountered within package will be sent when invokingAnalytics.close
; replacingErrorHandler
functionality - Exposing new method for
FakeAnalytics.sendPendingErrorEvents
to send error events on command - Added
Event.fromJson
static method to generate instance ofEvent
from JSON - Remove unused parameters
measurementId
andapiSecret
from theAnalytics.test
constructor - Remove
Analytics.test
factory constructor in favor ofAnalytics.fake
static method to return aFakeAnalytics
instance - Remove
FakeAnalytics
default constructor in favor ofAnalytics.fake
package:unified_analytics v5.8.8
- Bug fix rewrite the other call site for the session file
package:unified_analytics v5.8.7
- Bug fix to rewrite the
last_ping
key into the session json file