chore(deps): update dependency dart to v3 #88
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
>=2.12.0 <3.0.0-><4.0.0Release Notes
dart-lang/sdk (dart)
v3.2.2Compare Source
v3.2.1Compare Source
v3.2.0Compare Source
Language
Dart 3.2 adds the following features. To use them, set your package's SDK
constraint lower bound to 3.2 or greater (
sdk: '^3.2.0').Private field promotion: In most circumstances, the types of private final
fields can now be promoted by null checks and
istests. For example:To ensure soundness, a field is not eligible for field promotion in the
following circumstances:
test and the usage, invalidating the promotion).
non-final field (because an access to an overridden field might resolve at
runtime to the overriding getter or field).
elsewhere in the program).
other unrelated class in the library (because a class elsewhere in the
program might extend one of the classes and implement the other, creating an
override relationship between them).
Cin the library whose interface contains agetter with the same name, but
Cdoes not have an implementation of thatgetter (such unimplemented getters aren't safe for field promotion, because
they are implicitly forwarded to
noSuchMethod, which might not return thesame value each time it's called).
Breaking Change #53167: Use a more precise split point for refutable
patterns. Previously, in an if-case statement, if flow analysis could prove
that the scrutinee expression was guaranteed to throw an exception, it would
sometimes fail to propagate type promotions implied by the pattern to the
(dead) code that follows. This change makes the type promotion behavior of
if-case statements consistent regardless of whether the scrutinee expression
throws an exception.
No live code is affected by this change, but there is a small chance that the
change in types will cause a compile-time error to appear in some dead code in
the user's project, where no compile-time error appeared previously.
Libraries
dart:asyncbroadcastparameter toStream.emptyconstructor.dart:cliwaitForis disabled by default and slated for removal in 3.4. Attemptingto call this function will now throw an exception. Users that still depend
on
waitForcan enable it by passing--enable_deprecated_wait_forflagto the VM.
dart:convertutf8.encode()andUtf8Codec.encode()fromList<int>toUint8List.dart:developerService.getIsolateIDmethod.getIsolateIdmethod toService.getObjectIdmethod toService.dart:ffiNativeCallable.isolateLocalconstructor. This createsNativeCallables with the same functionality asPointer.fromFunction,except that
NativeCallableaccepts closures.NativeCallable.keepIsolateAlivemethod, which determines whetherthe
NativeCallablekeeps the isolate that created it alive.NativeCallableconstructors can now accept closures. PreviouslyNativeCallables had the same restrictions asPointer.fromFunction, andcould only create callbacks for static functions.
NativeCallable.nativeFunctionnow throws anerror if is called after the
NativeCallablehas already beenclosed. Callsto
closeafter the first are now ignored.dart:ioBreaking change #53005: The headers returned by
HttpClientResponse.headersandHttpRequest.headersno longer includetrailing whitespace in their values.
Breaking change #53227: Folded headers values returned by
HttpClientResponse.headersandHttpRequest.headersnow have a spaceinserted at the fold point.
dart:isolateIsolate.packageConfigSyncandIsolate.resolvePackageUriSyncAPIs.dart:js_interopJSNumber.toDartis removed in favor oftoDartDoubleandtoDartInttomake the type explicit.
Object.toJSis also removed in favor ofObject.toJSBox. Previously, this function would allow Dart objects to flowinto JS unwrapped on the JS backends. Now, there's an explicit wrapper that is
added and unwrapped via
JSBoxedDartObject.toDart. Similarly,JSExportedDartObjectis renamed toJSBoxedDartObjectand the extensionsObjectToJSExportedDartObjectandJSExportedDartObjectToObjectare renamedto
ObjectToJSBoxedDartObjectandJSBoxedDartObjectToObjectin order toavoid confusion with
@JSExport.Type parameters must now be bound to a static interop type or one of the
dart:js_interoptypes likeJSNumberwhen used in an external API. Thisonly affects
dart:js_interopclasses and notpackage:jsor other forms ofJS interop.
dart:js_interoptypes:@staticInteroptypes can subtype onlyJSObjectandJSAnyfrom the set ofJS types in
dart:js_interop. Subtyping other types fromdart:js_interopwould result in confusing type errors before, so this makes it a static error.
dart:js_interopand@staticInteropAPIs:Static interop APIs will now use the same global context as non-static interop
instead of
globalThisto avoid a greater migration. Static interop APIs,either through
dart:js_interopor the@staticInteropannotation, have usedJavaScript's
globalThisas the global context. This is relevant to thingslike external top-level members or external constructors, as this is the root
context we expect those members to reside in. Historically, this was not the
case in Dart2JS and DDC. We used either
selfor DDC'sglobalin non-staticinterop APIs with
package:js. So, static interop APIs will now use one ofthose global contexts. Functionally, this should matter in only a very small
number of cases, like when using older browser versions.
dart:js_interop'sglobalJSObjectis also renamed toglobalContextand returns the globalcontext used in the lowerings.
dart:js_interopExternal APIs:External JS interop APIs when using
dart:js_interopare restricted to a setof allowed types. Namely, this include the primitive types like
String, JStypes from
dart:js_interop, and other static interop types (either through@staticInteropor extension types).dart:js_interopisNullandisUndefined:nullandundefinedcan only be discerned in the JS backends. dart2wasmconflates the two values and treats them both as Dart null. Therefore, these
two helper methods should not be used on dart2wasm and will throw to avoid
potentially erroneous code.
dart:js_interoptypeofEqualsandinstanceof:Both APIs now return a
boolinstead of aJSBoolean.typeofEqualsalsonow takes in a
Stringinstead of aJSString.dart:js_interopJSAnyandJSObject:These types can only be implemented, and no longer extended, by user
@staticInteroptypes.dart:js_interopJSArray.withLength:This API now takes in an
intinstead ofJSNumber.Tools
Development JavaScript compiler (DDC)
JavaScript Object prototype.
JavaScript
Symbols andBigInts are now associated with their owninterceptor and should not be used with
package:jsclasses. These types werebeing intercepted with the assumption that they are a subtype of JavaScript's
Object, but this is incorrect. This lead to erroneous behavior when usingthese types as Dart
Objects. See #53106 for more details. Usedart:js_interop'sJSSymbolandJSBigIntwith extension types to interopwith these types.
Production JavaScript compiler (dart2js)
JavaScript
Symbols andBigInts are now associated with their owninterceptor and should not be used with
package:jsclasses. These types werebeing intercepted with the assumption that they are a subtype of JavaScript's
Object, but this is incorrect. This lead to erroneous behavior when usingthese types as Dart
Objects. See #53106 for more details. Usedart:js_interop'sJSSymbolandJSBigIntwith extension types to interopwith these types.
Dart command line
dart createcommand has a newclitemplateto quickly create Dart command-line applications
with basic argument parsing capabilities.
To learn more about using the template,
run
dart help create.Dart format
--enable-experimentcommand-line option to enable languageexperiments.
DevTools
2.28.1 releases of DevTools.
Linter
annotate_redeclares][annotate_redeclares] lint.use_build_context_synchronously][use_build_context_synchronously] lint as stable.Pub
dart pub upgrade --tightenwhich will update dependencies' lowerbounds in pubspec.yaml to match the current version.
dart pub get/add/upgradewill now show if a dependencychanged between direct, dev and transitive dependency.
dart pub upgradeno longer shows unchanged dependencies.v3.1.5Compare Source
This is a patch release that:
change in Node.js 21 affected the Dart Web compiler runtime. This patch
release accomodates for those changes (issue #53810).
v3.1.4Compare Source
This is a patch release that:
value of variables while debugging code (issue [#53747]).
v3.1.3Compare Source
This is a patch release that:
Fixes a bug in dart2js which would cause the compiler to crash when using
@staticInterop@anonymousfactory constructors with type parameters (seeissue #53579 for more details).
The standalone Dart VM now exports symbols only for the Dart_* embedding API
functions, avoiding conflicts with other DSOs loaded into the same process,
such as shared libraries loaded through
dart:ffi, that may have differentversions of the same symbols (issue [#53503]).
Fixes an issue with super slow access to variables while debugging.
The fix avoids searching static functions in the imported libraries
as references to members are fully resolved by the front-end. (issue
#53541)
v3.1.2Compare Source
This is a patch release that:
Fixes a bug in dart2js which crashed the compiler when a typed record pattern
was used outside the scope of a function body, such as in a field initializer.
For example
final x = { for (var (int a,) in someList) a: a };(issue #53449)
Fixes an expedient issue of users seeing an unhandled
exception pause in the debugger, please https://github.com/dart-lang/sdk/issues/53450es/53450 for more
details.
The fix uses try/catch in lookupAddresses instead of
Future error so that we don't see an unhandled exception
pause in the debugger (issue #53450)
v3.1.1Compare Source
This is a patch release that:
nested record pattern, where the nested record pattern uses record
destructuring shorthand syntax, for example
final ((:a, :b), c) = record;(issue #53352).
v3.1.0Compare Source
Libraries
dart:asyncinterfacemodifier to purely abstract classes:MultiStreamController,StreamConsumer,StreamIteratorandStreamTransformer. As a result, these types can only be implemented,not extended or mixed in.
dart:coreUri.baseon native platforms now respectsIOOverridesoverridingcurrent directory (#39796).
dart:ffiNativeCallableclass, which can be used to create callbacks thatallow native code to call into Dart code from any thread. See
NativeCallable.listener. In future releases,NativeCallablewill beupdated with more functionality, and will become the recommended way of
creating native callbacks for all use cases, replacing
Pointer.fromFunction.dart:iosameSiteto theCookieclass.SameSite.FileSystemEventissealed. This meansthat
FileSystemEventcannot be extended or implemented.Platformis instantiated.Platform.lineTerminatorwhich exposes the character or charactersthat the operating system uses to separate lines of text, e.g.,
"\r\n"on Windows.dart:js_interopObjectLiteralis removed fromdart:js_interop. It's no longer needed inorder to declare an object literal constructor with inline classes. As long as
an external constructor has at least one named parameter, it'll be treated as
an object literal constructor. If you want to create an object literal with no
named members, use
{}.jsify().Other libraries
package:js@staticInteropandexternalextension members:external@staticInteropmembers andexternalextension members can nolonger be used as tear-offs. Declare a closure or a non-
externalmethod thatcalls these members, and use that instead.
@staticInteropandexternalextension members:external@staticInteropmembers andexternalextension members willgenerate slightly different JS code for methods that have optional parameters.
Whereas before, the JS code passed in the default value for missing optionals,
it will now pass in only the provided members. This aligns with how JS
parameters work, where omitted parameters are actually omitted. For example,
calling
external void foo([int a, int b])asfoo(0)will now result infoo(0), and notfoo(0, null).Tools
DevTools
releases of DevTools.
Linter
your package's
analysis_options.yamlfile:no_self_assignmentsno_wildcard_variable_usesv3.0.7Compare Source
This is a patch release that:
bad codegen causing a
TypeErrororNoSuchMethodErrorto be thrownat runtime (issue #53001).
v3.0.6Compare Source
This is a patch release that:
assignments (issue #52767).
isorasexpressions involving record types with named fields (issue #52869).v3.0.5Compare Source
This is a patch release that:
ListFactorySpecializerduring Flutter web builds (issue #52403).v3.0.4Compare Source
This is a patch release that:
dart formatnow handles formatting nullable record typeswith no fields (dart_style issue #1224).
(issue #52480).
v3.0.3Compare Source
This is a patch release that:
returning an unboxed record (issue #52449).
or-pattern might be erroneously reported as being mismatched (issue #52373).
interfacemodifiers on the purely abstract classesMultiStreamController,StreamConsumer,StreamIteratorandStreamTransformer(issue #52334).InternetAddress.tryParseisused (issue #52423).
a pattern match using a variable or wildcard pattern with a nullable
record type (issue #52439).
cache on Windows (issue #52386).
v3.0.2Compare Source
This is a patch release that:
the fields don't match the cases (issue #52438).
generated with
dart doc(issue #3392).leading to higher memory usage (issue #52352).
(issue: #52078).
v3.0.1Compare Source
This is a patch release that:
(issue #124369).
and records (issue #51899).
voidin a switch case expression(issue #52191).
refers to a private getter (issue #52041).
whenandasas variable names in patterns(issue #52260).
(issue #52241).
v3.0.0Compare Source
Language
Dart 3.0 adds the following features. To use them, set your package's SDK
constraint lower bound to 3.0 or greater (
sdk: '^3.0.0').Records: Records are anonymous immutable data structures that let you
aggregate multiple values together, similar to tuples in other languages.
With records, you can return multiple values from a function, create composite
map keys, or use them any other place where you want to bundle a couple of
objects together.
For example, using a record to return two values:
Pattern matching: Expressions build values out of smaller pieces.
Conversely, patterns are an expressive tool for decomposing values back into
their constituent parts. Patterns can call getters on an object, access
elements from a list, pull fields out of a record, etc. For example, we can
destructure the record from the previous example like so:
Patterns can also be used in switch cases. There, you can destructure values
and also test them to see if they have a certain type or value:
Also, as you can see, non-empty switch cases no longer need
break;statements.
Breaking change: Dart 3.0 interprets switch cases as patterns instead of
constant expressions. Most constant expressions found in switch cases are
valid patterns with the same meaning (named constants, literals, etc.). You
may need to tweak a few constant expressions to make them valid. This only
affects libraries that have upgraded to language version 3.0.
Switch expressions: Switch expressions allow you to use patterns and
multi-way branching in contexts where a statement isn't allowed:
If-case statements and elements: A new if construct that matches a value
against a pattern and executes the then or else branch depending on whether
the pattern matches:
There is also a corresponding if-case element that can be used in collection
literals.
Sealed classes: When you mark a type
sealed, the compiler ensures thatswitches on values of that type exhaustively cover every subtype. This
enables you to program in an algebraic datatype style with the
compile-time safety you expect:
In this last example, the compiler reports an error that the switch doesn't
cover the subclass
Dusty.Class modifiers: New modifiers
final,interface,base, andmixinon
classandmixindeclarations let you control how the type can be used.By default, Dart is flexible in that a single class declaration can be used as
an interface, a superclass, or even a mixin. This flexibility can make it
harder to evolve an API over time without breaking users. We mostly keep the
current flexible defaults, but these new modifiers give you finer-grained
control over how the type can be used.
Breaking change: Class declarations from libraries that have been upgraded
to Dart 3.0 can no longer be used as mixins by default. If you want the class
to be usable as both a class and a mixin, mark it
mixin class. If you want it to be used only as a mixin, make it amixindeclaration. If you haven't upgraded a class to Dart 3.0, you can still use it
as a mixin.
Breaking change #50902: Dart reports a compile-time error if a
continuestatement targets a label that is not a loop (for,doandwhilestatements) or aswitchmember. Fix this by changing thecontinueto target a valid labeled statement.
Breaking change language/#2357: Starting in language version 3.0,
Dart reports a compile-time error if a colon (
:) is used as theseparator before the default value of an optional named parameter.
Fix this by changing the colon (
:) to an equal sign (=).Libraries
General changes
mixinclasses in the platform librariescan no longer be mixed in, unless they are explicitly marked as
mixin class.The following existing classes have been made mixin classes:
IterableIterableMixin(now alias forIterable)IterableBase(now alias forIterable)ListMixinSetMixinMapMixinLinkedListEntryStringConversionSinkdart:coreAdded
bool.parseandbool.tryParsestatic methods.Added
DateTime.timestamp()constructor to get current time as UTC.The type of
RegExpMatch.patternis nowRegExp, not justPattern.Breaking change #49529:
Listconstructor, as it wasn't null safe.Use list literals (e.g.
[]for an empty list or<int>[]for an emptytyped list) or [
List.filled][List.filled].onErrorargument on [int.parse][int.parse], [double.parse][double.parse],and [
num.parse][num.parse]. Use the [tryParse][tryParse] method instead.proxy][proxy] and [Provisional][Provisional] annotations.The original
proxyannotation has no effect in Dart 2,and the
Provisionaltype and [provisional][provisional] constantwere only used internally during the Dart 2.0 development process.
Deprecated.expires][Deprecated.expires] getter.Use [
Deprecated.message][Deprecated.message] instead.CastError][CastError] error.Use [
TypeError][TypeError] instead.FallThroughError][FallThroughError] error. The kind offall-through previously throwing this error was made a compile-time
error in Dart 2.0.
NullThrownError][NullThrownError] error. This error is neverthrown from null safe code.
AbstractClassInstantiationError][AbstractClassInstantiationError] error. It was madea compile-time error to call the constructor of an abstract class in Dart 2.0.
CyclicInitializationError][CyclicInitializationError]. Cyclic dependencies areno longer detected at runtime in null safe code. Such code will fail in other
ways instead, possibly with a StackOverflowError.
NoSuchMethodError][NoSuchMethodError] default constructor.Use the [
NoSuchMethodError.withInvocation][NoSuchMethodError.withInvocation] named constructor instead.BidirectionalIterator][BidirectionalIterator] class.Existing bidirectional iterators can still work, they just don't have
a shared supertype locking them to a specific name for moving backwards.
Breaking change when migrating code to Dart 3.0:
Some changes to platform libraries only affect code when that code is migrated
to language version 3.0.
The
Functiontype can no longer be implemented, extended or mixed in.Since Dart 2.0 writing
implements Functionhas been allowedfor backwards compatibility, but it has not had any effect.
In Dart 3.0, the
Functiontype isfinaland cannot be subtyped,preventing code from mistakenly assuming it works.
The following declarations can only be implemented, not extended:
ComparableExceptionIteratorPatternMatchRegExpRegExpMatchStackTraceStringSinkNone of these declarations contained any implementation to inherit,
and are marked as
interfaceto signify that they are only intendedas interfaces.
The following declarations can no longer be implemented or extended:
MapEntryOutOfMemoryErrorStackOverflowErrorExpandoWeakReferenceFinalizerThe
MapEntryvalue class is restricted to enable later optimizations.The remaining classes are tightly coupled to the platform and not
intended to be subclassed or implemented.
dart:asyncAdded extension member
waiton iterables and 2-9 tuples of futures.Breaking change #49529:
DeferredLibrary][DeferredLibrary] class.Use the [
deferred as][deferred as] import syntax instead.dart:collectionAdded extension members
nonNulls,firstOrNull,lastOrNull,singleOrNull,elementAtOrNullandindexedonIterables.Also exported from
dart:core.Deprecated the
HasNextIteratorclass (#50883).Breaking change when migrating code to Dart 3.0:
Some changes to platform libraries only affect code when it is migrated
to language version 3.0.
QueueLinkedListLinkedListEntryor extended:
HasNextIterator(Also deprecated.)HashMapLinkedHashMapHashSetLinkedHashSetDoubleLinkedQueueListQueueSplayTreeMapSplayTreeSetdart:developerBreaking change #49529:
MAX_USER_TAGS][MAX_USER_TAGS] constant.Use [
maxUserTags][maxUserTags] instead.Callbacks passed to
registerExtensionwill be run in the zone from whichthey are registered.
Breaking change #50231:
Metrics][Metrics], [Metric][Metric], [Counter][Counter],and [
Gauge][Gauge] classes as they have been broken since Dart 2.0.dart:htmlregisterElementand
registerElement2methods inDocumentandHtmlDocumenthave beenremoved. See #49536 for
details.
dart:mathSome changes to platform libraries only affect code when it is migrated
to language version 3.0.
Randominterface can only be implemented, not extended.dart:ionameandsignalNumberto theProcessSignalclass.NetworkInterface.listSupported. Has always returned true sinceDart 2.3.
httpEnableTimelineLoggingparameter name transition fromenableto
enabled. See #43638.#50868.
NetworkProfilingto accommodate newStringidsthat are introduced in vm_service:11.0.0
dart:js_utildeleteand thetypeoffunctionality.jsifyis now permissive and has inverse semantics todartify.jsifyanddartifyboth handle types they understand natively moreefficiently.
callMethodhas been aligned with the other methods andnow takes
Objectinstead ofString.Tools
Observatory
DevTools. Users requiring specific functionality in Observatory should set
the
--serve-observatoryflag.Web Dev Compiler (DDC)
-k,--kernel, and--dart-sdk.--nativeNonNullAsserts, which ensures web library APIsare sound in their nullability, is by default set to true in sound mode. For
more information on the flag, see NATIVE_NULL_ASSERTIONS.md.
dart2js
--native-null-assertions, which ensures web libraryAPIs are sound in their nullability, is by default set to true in sound mode,
unless
-O3or higher is passed, in which case they are not checked. For moreinformation on the flag, see NATIVE_NULL_ASSERTIONS.md.
Dart2js
the internal dart2js snapshot fails unless it is called from a supported
interface, such as
dart compile js,flutter build, orbuild_web_compilers. This is not expected to be a visible change.Formatter
sync*andasync*functions with=>bodies.<in collection literals.Analyzer
remaining hints are intended to be converted soon after the Dart 3.0 release.
This means that any (previously) hints reported by
dart analyzeare nowconsidered "fatal" (will result in a non-zero exit code). The previous
behavior, where such hints (now warnings) are not fatal, can be achieved by
using the
--no-fatal-warningsflag. This behavior can also be altered, on acode-by-code basis, by changing the severity of rules in an analysis
options file.
@Sinceannotation. When code in apackage uses a Dart SDK element annotated with
@Since, analyzer will reporta warning if the package's Dart SDK constraint allows versions of Dart
which don't include that element.
the number of plugins per analysis context to 1. (issue [#50981][]).
Linter
Updates the Linter to
1.35.0, which includes changes thatimplicit_reopenunnecessary_breakstype_literal_in_constant_patterninvalid_case_patternsenable_null_safetyinvariant_booleansprefer_bool_in_assertsprefer_equal_for_default_valuessuper_goes_lastunnecessary_parenthesisfalse-positives with null-aware expressions.void_checksto allow assignments ofFuture<dynamic>?to parameterstyped
FutureOr<void>?.use_build_context_synchronouslyin if conditions.avoid_private_typedef_functionswith generalizedtype aliases.
unnecessary_parenthesisto detect some doubled parens.void_checksto allow returningNeveras void.no_adjacent_strings_in_listto support set literals and for- andif-elements.
avoid_types_as_parameter_namesto handle type variables.avoid_positional_boolean_parametersto handle typedefs.avoid_redundant_argument_valuesto check parameters of redirectingconstructors.
prefer_const_literals_to_create_immutables.use_build_context_synchronouslyto check context properties.unnecessary_parenthesissupport for property accesses and methodinvocations.
unnecessary_parenthesisto allow parentheses in more null-awarecascade contexts.
unreachable_from_mainto track static elements.unnecessary_null_checksto not report on arguments passed toFuture.valueorCompleter.complete.always_use_package_importsandprefer_relative_importsasincompatible rules.
only_throw_errorsto not report onNever-typed expressions.unnecessary_lambdasto not report withlate finalvariables.avoid_function_literals_in_foreach_callsto not report with nullable-typed targets.
deprecated_member_use_from_same_packagewhich replaces thesoft-deprecated analyzer hint of the same name.
public_member_api_docsto not require docs on enum constructors.prefer_void_to_nullto not report on as-expressions.Migration tool removal
The null safety migration tool (
dart migrate) has been removed. If you stillhave code which needs to be migrated to null safety, please run
dart migrateusing Dart version 2.19, before upgrading to Dart version 3.0.
Pub
To preserve compatibility with null-safe code pre Dart 3, Pub will interpret a
language constraint indicating a language version of
2.12or higher and anupper bound of
<3.0.0as<4.0.0.For example
>=2.19.2 <3.0.0will be interpreted as>=2.19.2 <4.0.0.dart pub publishwill no longer warn aboutdependency_overrides. Dependencyoverrides only take effect in the root package of a resolution.
dart pub token addnow verifies that the given token is valid for includingin a header according to RFC 6750 section
2.1. This means they must
contain only the characters:
^[a-zA-Z0-9._~+/=-]+$. Before a failure wouldhappen when attempting to send the authorization header.
dart pub getand related commands will now by default also update thedependencies in the
examplefolder (if it exists). Use--no-exampletoavoid this.
On Windows the
PUB_CACHEhas moved to%LOCALAPPDATA%, since Dart 2.8 thePUB_CACHEhas been created in%LOCALAPPDATA%when one wasn't present.Hence, this only affects users with a
PUB_CACHEcreated by Dart 2.7 orearlier. If you have
path/to/.pub-cache/bininPATHyou may need toupdate your
PATH.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.