Skip to content

fix: async cache storing exception fixed - #548

Merged
mosuem merged 13 commits into
dart-lang:mainfrom
akmalviya03:async_cache
Jul 27, 2026
Merged

fix: async cache storing exception fixed#548
mosuem merged 13 commits into
dart-lang:mainfrom
akmalviya03:async_cache

Conversation

@akmalviya03

Copy link
Copy Markdown
Contributor

Earlier async cache was caching exceptions.
With new changes in fetch method of AsyncCache class will no longer store exception.
By default AsyncCache will store exception, by setting _canCacheException to false. It won't store exception.

Please refer #366 for video demo of both issue and solution along with minimal reproducible code.


  • I’ve reviewed the contributor guide and applied the relevant portions to this PR.

@mosuem
mosuem requested a review from a team as a code owner April 17, 2025 13:00
AsyncCache(Duration duration) : _duration = duration;
/// If [cacheErrors] is `false` the cache will be invalidated if the [Future]
/// returned by the callback completes as an error.
AsyncCache(Duration duration, {bool cacheErrors = true})

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any naming we can use that would make the flag default to false?
Just because it's usually a good idea to have false as the default value.

Maybe bool ephemeralErrors = false. (Ouch, would hate to have to write that).
flushErrors?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about discardErrors?

Comment thread pkgs/async/lib/src/async_cache.dart Outdated
/// executed at most once concurrently. This is useful for requests for which
/// data is updated frequently but stale data is acceptable.
AsyncCache.ephemeral() : _duration = null;
AsyncCache.ephemeral(): _duration = null, _cacheErrors = true;

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The _cacheErrors here feels like it should be false (since it doesn't cache errors, because it doesn't cache anything). It's invisible to the user, so it doesn't really matter, and I guess it just means "don't special-case errors".
It's OK, just a little confusing.

I guess there are really three modes:

  • Ephemeral everything.
  • Ephemeral errors, persistent values.
  • Persistent everything.

covered by two constructors. Should we just have three constructors?

Comment thread pkgs/async/test/async_cache_test.dart Outdated
var errorThrowingFuture = cache.fetch(asyncFunctionThatThrows);
await expectLater(errorThrowingFuture, throwsA(isException));

var valueFuture = cache.fetch(() async => 'Success');

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider checking that time hasn't progressed by one hour. Just for good measure.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done updated test cases.

cache = AsyncCache(const Duration(hours: 1));
});

test('should not fetch when callback throws exception', () async {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure "fetch" is the verb I'd use here (aka: I don't know what the description means).
It's consistent with the other tests. I also can't read those.

That's not really your issue to fix, though. (Should we say "recompute" instead of "fetch". Why is the method called fetch to begin with, seems to assume a specific use-case.)

@akmalviya03 akmalviya03 Apr 25, 2025

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Initially I also thought the same, to rename it to something more generic.

@github-actions

github-actions Bot commented Apr 23, 2025

Copy link
Copy Markdown

PR Health

Unused Dependencies ✔️
Package Status
async ✔️ All dependencies utilized correctly.

For details on how to fix these, see dependency_validator.

This check can be disabled by tagging the PR with skip-unused-dependencies-check.

Breaking changes ✔️
Package Change Current Version New Version Needed Version Looking good?
async Non-Breaking 2.13.1 2.14.0-wip 2.14.0-wip ✔️

This check can be disabled by tagging the PR with skip-breaking-check.

API leaks ✔️

The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.

Package Leaked API symbol Leaking sources

This check can be disabled by tagging the PR with skip-leaking-check.

Changelog Entry ✔️
Package Changed Files

Changes to files need to be accounted for in their respective changelogs.

This check can be disabled by tagging the PR with skip-changelog-check.

Coverage ⚠️
File Coverage
pkgs/async/lib/src/async_cache.dart 💔 84 % ⬇️ 9 %

This check for test coverage is informational (issues shown here will not fail the PR).

This check can be disabled by tagging the PR with skip-coverage-check.

License Headers ✔️
// Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
Files
no missing headers

All source files should start with a license header.

Unrelated files missing license headers
Files
pkgs/collection/benchmark/legacy_quicksort.dart

This check can be disabled by tagging the PR with skip-license-check.

@mosuem

mosuem commented Oct 7, 2025

Copy link
Copy Markdown
Member

@lrhn i think it's your turn for the review ;) Just a friendly ping!

@mosuem

mosuem commented Dec 12, 2025

Copy link
Copy Markdown
Member

@lrhn any more comments? Otherwise I would merge this.

@akmalviya03

Copy link
Copy Markdown
Contributor Author

Hi guys, how should I proceed with future PRs. So, that it won't take much time to merge.

@github-actions

Copy link
Copy Markdown

Package publishing

Package Version Status Publish tag (post-merge)
package:args 2.8.0 ready to publish args-v2.8.0
package:async 2.13.1-wip WIP (no publish necessary)
package:characters 1.4.1 already published at pub.dev
package:collection 1.20.0-wip WIP (no publish necessary)
package:convert 3.1.3-wip WIP (no publish necessary)
package:crypto 3.0.7 already published at pub.dev
package:fixnum 1.2.0-wip WIP (no publish necessary)
package:lints 6.1.0-wip WIP (no publish necessary)
package:logging 1.3.1-wip WIP (no publish necessary)
package:os_detect 2.0.4-wip WIP (no publish necessary)
package:path 1.9.2-wip WIP (no publish necessary)
package:platform 3.1.7-wip WIP (no publish necessary)
package:typed_data 1.4.1-wip WIP (no publish necessary)

Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automation.

@mosuem

mosuem commented Dec 15, 2025

Copy link
Copy Markdown
Member

Hi, I think it's just an issue of the team having a full plate - sorry about that!

@mosuem
mosuem merged commit 2deeead into dart-lang:main Jul 27, 2026
21 checks passed
copybara-service Bot pushed a commit to dart-lang/sdk that referenced this pull request Jul 29, 2026
Hold back `dart-lang/http` which has deprecations that break CI.

Revisions updated by `dart tools/rev_sdk_deps.dart`.

core (https://github.com/dart-lang/core/compare/25926e8..fe516ee):
  fe516ee1  Mon Jul 27 20:19:16 2026 +0200  Moritz  Consolidate no-response workflow into no_response.yml (dart-lang/core#982)
  2deeeade  Mon Jul 27 18:05:47 2026 +0530  Abhishak Kumar Malviya  fix: async cache storing exception fixed (dart-lang/core#548)
  bed8f40e  Fri Jul 24 11:29:13 2026 -0700  Nate Bosch  Add `value` getter to `Result` (dart-lang/core#969)

dartdoc (https://github.com/dart-lang/dartdoc/compare/1d56f26..c771ad2):
  c771ad2a  Tue Jul 7 12:36:55 2026 +0200  Sarah Zakarias  bump to 9.0.8 (dart-lang/dartdoc#4270)
  38d079a2  Tue Jul 7 12:09:52 2026 +0200  Sigurd Meldgaard  Fix RangeError when stripping doc-imports from files with CRLF line endings (dart-lang/dartdoc#4268)
  794a1d38  Mon Jul 6 13:48:14 2026 +0200  Sarah Zakarias  bump to 9.0.7 (dart-lang/dartdoc#4269)
  b9c94739  Mon Jul 6 13:29:28 2026 +0200  Sarah Zakarias  Add interactive copy-to-clipboard button to code snippets (dart-lang/dartdoc#4267)
  9831db9b  Fri Jul 3 11:44:06 2026 +0200  Sarah Zakarias  Add support and styling for custom <callout-box> HTML tags (dart-lang/dartdoc#4264)
  f52f910f  Wed Jul 1 18:55:26 2026 +0000  dependabot[bot]  Bump the github-actions group with 3 updates (dart-lang/dartdoc#4265)
  36b1aebc  Wed Jul 1 12:14:01 2026 +0200  Sarah Zakarias  Bump to 9.0.6 (dart-lang/dartdoc#4263)

ecosystem (https://github.com/dart-lang/ecosystem/compare/848b3bf..edfdb3b):
  edfdb3b  Thu Jul 23 17:27:43 2026 +0200  Moritz  Add want-lgtm reusable workflow (dart-lang/ecosystem#432)
  a6c8ef0  Thu Jul 23 14:29:53 2026 +0200  Moritz  Validate target PR number and comment ownership in post_summaries workflow (dart-lang/ecosystem#434)
  80a9928  Thu Jul 23 13:49:48 2026 +0200  Moritz  Fix canary workflow (dart-lang/ecosystem#433)
  910d668  Wed Jul 15 18:04:05 2026 +0200  Moritz  Pass GITHUB_TOKEN to firehose:comment steps in workflows (dart-lang/ecosystem#431)
  980c6df  Sat Jul 11 00:20:55 2026 +0200  Moritz  Fix `-WIP` ending detection (dart-lang/ecosystem#430)
  60c0f67  Wed Jul 8 20:38:35 2026 +0200  Moritz  Run `pub get` before `dart format` in groundskeeper (dart-lang/ecosystem#429)
  bcef699  Tue Jul 7 10:17:24 2026 +0200  Moritz  Fix `groundskeeper` workflow (dart-lang/ecosystem#428)
  77def11  Fri Jul 3 11:43:12 2026 +0200  Moritz  Simplify groundskeeper (dart-lang/ecosystem#426)
  3dd606a  Wed Jul 1 18:19:25 2026 +0000  dependabot[bot]  Bump the github-actions group with 3 updates (dart-lang/ecosystem#427)
  d6ec975  Wed Jul 1 14:41:23 2026 +0200  Moritz  Add changelog updater (dart-lang/ecosystem#424)
  f8a4fbb  Wed Jul 1 10:00:59 2026 +0200  Moritz  Add `Groundskeeper` workflow (dart-lang/ecosystem#425)

i18n (https://github.com/dart-lang/i18n/compare/d0683bd..e1b5a79):
  e1b5a798  Tue Jul 14 13:10:29 2026 +0200  Moritz  Add weekday API (dart-lang/i18n#1071)
  04b78e38  Thu Jul 9 14:16:22 2026 +0200  Moritz  Add stale workflow (dart-lang/i18n#1069)
  01e20101  Thu Jul 9 13:42:08 2026 +0200  Moritz  Add stale workflow
  03efda51  Thu Jul 9 13:19:31 2026 +0200  Moritz  Update ICU4X (dart-lang/i18n#1068)
  4d8a1b39  Tue Jul 7 11:23:06 2026 +0200  Moritz  feat(intl4x): add locale.dart entrypoint exposing only Locale (dart-lang/i18n#1067)
  b2b7ce08  Mon Jul 6 03:23:28 2026 -0700  Copybara-Service  Merge pull request `#1038` from donny-dont:patch-1
  cca1dc44  Mon Jul 6 03:10:59 2026 -0700  Copybara-Service  Merge pull request `#1040` from suxoikorm:main
  28352851  Mon Jul 6 02:40:25 2026 -0700  Copybara-Service  Merge pull request `#1062` from AbdeMohlbi:issue_116
  9f8e7998  Mon Jul 6 02:16:05 2026 -0700  Copybara-Service  Merge pull request `#1050` from LaijieJi:patch-1
  be8e2c0d  Fri Jul 3 14:50:28 2026 +0200  Moritz  Merge branch 'main' into issue_116
  8b119830  Fri Jul 3 14:33:33 2026 +0200  Moritz  Merge branch 'main' into patch-1
  96aab97a  Fri Jul 3 14:30:55 2026 +0200  Moritz  Merge branch 'main' into main
  9e700b2a  Thu Jul 2 09:37:45 2026 +0200  Moritz  Merge branch 'main' into patch-1
  a6f174b8  Wed Jul 1 08:32:07 2026 -0700  Googler  No public description
  fb1feb18  Wed Jul 1 08:32:33 2026 -0700  Copybara-Service  Merge pull request `#1058` from dart-lang:upgrade_analyzer
  77926a26  Thu May 7 20:52:55 2026 +0100  abdessalem  gemini has a point
  c2f96cba  Thu May 7 20:45:40 2026 +0100  abdessalem  revert the formating changes
  ebb0a441  Thu May 7 20:41:40 2026 +0100  abdessalem  update select documentation to clarify other fallback behavior and when `ArgumentError` is thrown
  b13c2d48  Mon Mar 9 10:35:50 2026 +0100  Moritz  Merge branch 'main' into patch-1
  6581675f  Mon Feb 9 09:13:25 2026 +0100  Laijie  Fix typo in number_format.dart documentation
  69d1e6a6  Thu Jan 29 15:25:06 2026 +0400  Luka Katsadze  Merge branch 'main' into main
  55a61fa6  Fri Dec 19 15:51:58 2025 -0800  Don Olmstead  Escape text direction code points
  a140f2ef  Mon Dec 29 21:42:09 2025 +0400  Luka Katsadze  fix: correct formatting of Georgian Lari symbol entry in changelog
  76a370c5  Mon Dec 29 21:34:35 2025 +0400  Luka Katsadze  chore: update changelog
  9df0c191  Mon Dec 29 21:31:39 2025 +0400  Luka Katsadze  feat: add georgian lari symbol support

shelf (https://github.com/dart-lang/shelf/compare/71248e7..6918a76):
  6918a76  Mon Jul 20 18:45:56 2026 -0700  Kevin Moore  feat(compliance): add GitHub Actions Job Summary to test runs (dart-lang/shelf#527)
  e9c742d  Mon Jul 20 20:28:03 2026 +0300  Yusuf İhsan Görgel  fix: join multiple Cookie header values with '; ' instead of ',' (`#521`) (dart-lang/shelf#536)
  833433e  Mon Jul 6 16:59:42 2026 -0700  Kevin Moore  chore: standardize min SDK to ^3.9.0 and unify lints
  7af986e  Wed Jul 1 12:27:06 2026 +0000  dependabot[bot]  Bump the github-actions group with 2 updates (dart-lang/shelf#535)

test (https://github.com/dart-lang/test/compare/bd92e63..5fcd6f4):
  5fcd6f40  Thu Jul 23 16:01:06 2026 -0700  Nate Bosch  Remove unnecessary remote debugging flag (dart-lang/test#2705)
  72d6dfcc  Thu Jul 23 14:02:30 2026 -0700  Nate Bosch  Launch browsers with redirecting files (dart-lang/test#2703)
  8ab38846  Thu Jul 23 13:50:10 2026 -0700  Nate Bosch  Disable more backgrounding features on chromium (dart-lang/test#2680)
  d835f706  Wed Jul 22 16:30:46 2026 -0700  Nate Bosch  Only print debug URL when debugging (dart-lang/test#2702)
  9abe202a  Tue Jul 21 11:56:41 2026 -0700  Nate Bosch  Ignore dart2js output for successful compiles (dart-lang/test#2701)
  ce557ba1  Mon Jul 20 16:25:56 2026 -0700  Nate Bosch  Group messages with passing tests (dart-lang/test#2699)
  d79747cd  Fri Jul 17 13:10:12 2026 -0700  Jacob MacDonald  Make workflow files more secure (dart-lang/test#2698)
  91ca13f0  Wed Jul 8 14:17:45 2026 -0700  Nate Bosch  Support DART_TEST_REPORTER environment variable (dart-lang/test#2692)
  dcb06ac7  Wed Jul 1 03:50:42 2026 +0000  dependabot[bot]  Bump the github-actions group with 3 updates (dart-lang/test#2689)

tools (https://github.com/dart-lang/tools/compare/3f850c4..01f45d8):
  01f45d85  Thu Jul 23 16:49:10 2026 -0700  Nate Bosch  [glob] Limit expansion during option flattening (dart-lang/tools#2477)
  acc91d65  Thu Jul 23 16:00:59 2026 -0700  Kevin Moore  Add tests for PoolResource and close, and fix allowRelease leak (dart-lang/tools#2368)
  0e54bd66  Thu Jul 23 15:25:22 2026 -0700  Nate Bosch  Parse hosted URLs as URLs (dart-lang/tools#2476)
  7e124963  Wed Jul 22 15:01:34 2026 -0700  Sam Rawlins  Markdown: optimize email regex (dart-lang/tools#2474)
  906d9d4e  Wed Jul 22 13:25:24 2026 -0700  Sam Rawlins  Markdown: More tag filter tests (dart-lang/tools#2473)
  588fbad4  Wed Jul 22 10:54:42 2026 -0700  Sam Rawlins  Expand HTML filter regexp to include more characters that would denote an HTML tag (dart-lang/tools#2472)
  e4f20cc7  Wed Jul 22 09:33:59 2026 -0700  Sam Rawlins  Respect enableTagfilter when inlineOnly is passed (dart-lang/tools#2471)
  c4082344  Wed Jul 22 07:41:06 2026 -0700  Jacob MacDonald  add legend to multiselect dialogs (dart-lang/tools#2470)
  a2ecf08f  Thu Jul 16 09:30:49 2026 -0700  Jacob MacDonald  add an event type for events coming from package:skills (dart-lang/tools#2468)
  6a85977a  Mon Jul 13 10:12:17 2026 -0700  Kevin Moore  [api_summary] Support latest analyzer version (dart-lang/tools#2460)
  58b0fd0a  Mon Jul 13 11:01:18 2026 +0200  Moritz  Add no-response workflow (dart-lang/tools#2459)
  dc9ef3a9  Wed Jul 8 17:03:20 2026 -0700  Kevin Moore  chore(html): use MIT license header instead of BSD (dart-lang/tools#2458)

web (https://github.com/dart-lang/web/compare/eb8c3fc..12a9ca2):
  12a9ca2  Sun Jul 19 19:27:25 2026 -0700  Kevin Moore  test(js_interop_gen): reformat integration test goldens for dart_style 3.1.12 (dart-lang/web#565)
  6b5e93a  Wed Jul 1 06:55:34 2026 +0000  dependabot[bot]  Bump actions/checkout from 6.0.2 to 7.0.0 in the github-actions group (dart-lang/web#563)
  b8f47ab  Tue Jun 30 16:50:11 2026 -0700  Kevin Moore  [chore] Improve notice about updating the js_type_supertypes.dart (dart-lang/web#562)

Change-Id: I18fe6d51ce221bb7985b57711089e6b9651b2637
Tested:Package roll
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/523862
Auto-Submit: Nate Bosch <nbosch@google.com>
Reviewed-by: Ben Konyi <bkonyi@google.com>
Reviewed-by: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Nate Bosch <nbosch@google.com>
copybara-service Bot pushed a commit to dart-lang/sdk that referenced this pull request Jul 30, 2026
…, web"

This reverts commit 2610f35.

Reason for revert: Failures during Dart -> Flutter rolls

```
+0 -1: test smoke test -- this test SHOULD FAIL [E]

  Expected: true
    Actual: <false>


  package:matcher/src/expect/expect.dart 187:31          fail
  package:matcher/src/expect/expect.dart 182:3           _expect
  package:matcher/src/expect/expect.dart 65:3            expect
  flutter/testing/smoke_test_failure/fail_test.dart 9:5  main.<fn>
  package:test_api/src/backend/declarer.dart 253:25      Declarer.test.<fn>.<fn>
  ===== asynchronous gap ===========================
  package:test_api/src/backend/declarer.dart 250:11      Declarer.test.<fn>
  ===== asynchronous gap ===========================
  package:test_api/src/backend/invoker.dart 318:9        Invoker._waitForOutstandingCallbacks.<fn>
```

Failure Link: https://logs.chromium.org/logs/flutter/buildbucket/cr-buildbucket/8674893380073937889/+/u/test:_Host_Tests_for_host_debug__2_/stdout

Also, wide-spread timeouts on Dart CI: #63923

Original change's description:
> [deps] rev core, dartdoc, ecosystem, i18n, shelf, test, tools, web
>
> Hold back `dart-lang/http` which has deprecations that break CI.
>
> Revisions updated by `dart tools/rev_sdk_deps.dart`.
>
> core (https://github.com/dart-lang/core/compare/25926e8..fe516ee):
>   fe516ee1  Mon Jul 27 20:19:16 2026 +0200  Moritz  Consolidate no-response workflow into no_response.yml (dart-lang/core#982)
>   2deeeade  Mon Jul 27 18:05:47 2026 +0530  Abhishak Kumar Malviya  fix: async cache storing exception fixed (dart-lang/core#548)
>   bed8f40e  Fri Jul 24 11:29:13 2026 -0700  Nate Bosch  Add `value` getter to `Result` (dart-lang/core#969)
>
> dartdoc (https://github.com/dart-lang/dartdoc/compare/1d56f26..c771ad2):
>   c771ad2a  Tue Jul 7 12:36:55 2026 +0200  Sarah Zakarias  bump to 9.0.8 (dart-lang/dartdoc#4270)
>   38d079a2  Tue Jul 7 12:09:52 2026 +0200  Sigurd Meldgaard  Fix RangeError when stripping doc-imports from files with CRLF line endings (dart-lang/dartdoc#4268)
>   794a1d38  Mon Jul 6 13:48:14 2026 +0200  Sarah Zakarias  bump to 9.0.7 (dart-lang/dartdoc#4269)
>   b9c94739  Mon Jul 6 13:29:28 2026 +0200  Sarah Zakarias  Add interactive copy-to-clipboard button to code snippets (dart-lang/dartdoc#4267)
>   9831db9b  Fri Jul 3 11:44:06 2026 +0200  Sarah Zakarias  Add support and styling for custom <callout-box> HTML tags (dart-lang/dartdoc#4264)
>   f52f910f  Wed Jul 1 18:55:26 2026 +0000  dependabot[bot]  Bump the github-actions group with 3 updates (dart-lang/dartdoc#4265)
>   36b1aebc  Wed Jul 1 12:14:01 2026 +0200  Sarah Zakarias  Bump to 9.0.6 (dart-lang/dartdoc#4263)
>
> ecosystem (https://github.com/dart-lang/ecosystem/compare/848b3bf..edfdb3b):
>   edfdb3b  Thu Jul 23 17:27:43 2026 +0200  Moritz  Add want-lgtm reusable workflow (dart-lang/ecosystem#432)
>   a6c8ef0  Thu Jul 23 14:29:53 2026 +0200  Moritz  Validate target PR number and comment ownership in post_summaries workflow (dart-lang/ecosystem#434)
>   80a9928  Thu Jul 23 13:49:48 2026 +0200  Moritz  Fix canary workflow (dart-lang/ecosystem#433)
>   910d668  Wed Jul 15 18:04:05 2026 +0200  Moritz  Pass GITHUB_TOKEN to firehose:comment steps in workflows (dart-lang/ecosystem#431)
>   980c6df  Sat Jul 11 00:20:55 2026 +0200  Moritz  Fix `-WIP` ending detection (dart-lang/ecosystem#430)
>   60c0f67  Wed Jul 8 20:38:35 2026 +0200  Moritz  Run `pub get` before `dart format` in groundskeeper (dart-lang/ecosystem#429)
>   bcef699  Tue Jul 7 10:17:24 2026 +0200  Moritz  Fix `groundskeeper` workflow (dart-lang/ecosystem#428)
>   77def11  Fri Jul 3 11:43:12 2026 +0200  Moritz  Simplify groundskeeper (dart-lang/ecosystem#426)
>   3dd606a  Wed Jul 1 18:19:25 2026 +0000  dependabot[bot]  Bump the github-actions group with 3 updates (dart-lang/ecosystem#427)
>   d6ec975  Wed Jul 1 14:41:23 2026 +0200  Moritz  Add changelog updater (dart-lang/ecosystem#424)
>   f8a4fbb  Wed Jul 1 10:00:59 2026 +0200  Moritz  Add `Groundskeeper` workflow (dart-lang/ecosystem#425)
>
> i18n (https://github.com/dart-lang/i18n/compare/d0683bd..e1b5a79):
>   e1b5a798  Tue Jul 14 13:10:29 2026 +0200  Moritz  Add weekday API (dart-lang/i18n#1071)
>   04b78e38  Thu Jul 9 14:16:22 2026 +0200  Moritz  Add stale workflow (dart-lang/i18n#1069)
>   01e20101  Thu Jul 9 13:42:08 2026 +0200  Moritz  Add stale workflow
>   03efda51  Thu Jul 9 13:19:31 2026 +0200  Moritz  Update ICU4X (dart-lang/i18n#1068)
>   4d8a1b39  Tue Jul 7 11:23:06 2026 +0200  Moritz  feat(intl4x): add locale.dart entrypoint exposing only Locale (dart-lang/i18n#1067)
>   b2b7ce08  Mon Jul 6 03:23:28 2026 -0700  Copybara-Service  Merge pull request `#1038` from donny-dont:patch-1
>   cca1dc44  Mon Jul 6 03:10:59 2026 -0700  Copybara-Service  Merge pull request `#1040` from suxoikorm:main
>   28352851  Mon Jul 6 02:40:25 2026 -0700  Copybara-Service  Merge pull request `#1062` from AbdeMohlbi:issue_116
>   9f8e7998  Mon Jul 6 02:16:05 2026 -0700  Copybara-Service  Merge pull request `#1050` from LaijieJi:patch-1
>   be8e2c0d  Fri Jul 3 14:50:28 2026 +0200  Moritz  Merge branch 'main' into issue_116
>   8b119830  Fri Jul 3 14:33:33 2026 +0200  Moritz  Merge branch 'main' into patch-1
>   96aab97a  Fri Jul 3 14:30:55 2026 +0200  Moritz  Merge branch 'main' into main
>   9e700b2a  Thu Jul 2 09:37:45 2026 +0200  Moritz  Merge branch 'main' into patch-1
>   a6f174b8  Wed Jul 1 08:32:07 2026 -0700  Googler  No public description
>   fb1feb18  Wed Jul 1 08:32:33 2026 -0700  Copybara-Service  Merge pull request `#1058` from dart-lang:upgrade_analyzer
>   77926a26  Thu May 7 20:52:55 2026 +0100  abdessalem  gemini has a point
>   c2f96cba  Thu May 7 20:45:40 2026 +0100  abdessalem  revert the formating changes
>   ebb0a441  Thu May 7 20:41:40 2026 +0100  abdessalem  update select documentation to clarify other fallback behavior and when `ArgumentError` is thrown
>   b13c2d48  Mon Mar 9 10:35:50 2026 +0100  Moritz  Merge branch 'main' into patch-1
>   6581675f  Mon Feb 9 09:13:25 2026 +0100  Laijie  Fix typo in number_format.dart documentation
>   69d1e6a6  Thu Jan 29 15:25:06 2026 +0400  Luka Katsadze  Merge branch 'main' into main
>   55a61fa6  Fri Dec 19 15:51:58 2025 -0800  Don Olmstead  Escape text direction code points
>   a140f2ef  Mon Dec 29 21:42:09 2025 +0400  Luka Katsadze  fix: correct formatting of Georgian Lari symbol entry in changelog
>   76a370c5  Mon Dec 29 21:34:35 2025 +0400  Luka Katsadze  chore: update changelog
>   9df0c191  Mon Dec 29 21:31:39 2025 +0400  Luka Katsadze  feat: add georgian lari symbol support
>
> shelf (https://github.com/dart-lang/shelf/compare/71248e7..6918a76):
>   6918a76  Mon Jul 20 18:45:56 2026 -0700  Kevin Moore  feat(compliance): add GitHub Actions Job Summary to test runs (dart-lang/shelf#527)
>   e9c742d  Mon Jul 20 20:28:03 2026 +0300  Yusuf İhsan Görgel  fix: join multiple Cookie header values with '; ' instead of ',' (`#521`) (dart-lang/shelf#536)
>   833433e  Mon Jul 6 16:59:42 2026 -0700  Kevin Moore  chore: standardize min SDK to ^3.9.0 and unify lints
>   7af986e  Wed Jul 1 12:27:06 2026 +0000  dependabot[bot]  Bump the github-actions group with 2 updates (dart-lang/shelf#535)
>
> test (https://github.com/dart-lang/test/compare/bd92e63..5fcd6f4):
>   5fcd6f40  Thu Jul 23 16:01:06 2026 -0700  Nate Bosch  Remove unnecessary remote debugging flag (dart-lang/test#2705)
>   72d6dfcc  Thu Jul 23 14:02:30 2026 -0700  Nate Bosch  Launch browsers with redirecting files (dart-lang/test#2703)
>   8ab38846  Thu Jul 23 13:50:10 2026 -0700  Nate Bosch  Disable more backgrounding features on chromium (dart-lang/test#2680)
>   d835f706  Wed Jul 22 16:30:46 2026 -0700  Nate Bosch  Only print debug URL when debugging (dart-lang/test#2702)
>   9abe202a  Tue Jul 21 11:56:41 2026 -0700  Nate Bosch  Ignore dart2js output for successful compiles (dart-lang/test#2701)
>   ce557ba1  Mon Jul 20 16:25:56 2026 -0700  Nate Bosch  Group messages with passing tests (dart-lang/test#2699)
>   d79747cd  Fri Jul 17 13:10:12 2026 -0700  Jacob MacDonald  Make workflow files more secure (dart-lang/test#2698)
>   91ca13f0  Wed Jul 8 14:17:45 2026 -0700  Nate Bosch  Support DART_TEST_REPORTER environment variable (dart-lang/test#2692)
>   dcb06ac7  Wed Jul 1 03:50:42 2026 +0000  dependabot[bot]  Bump the github-actions group with 3 updates (dart-lang/test#2689)
>
> tools (https://github.com/dart-lang/tools/compare/3f850c4..01f45d8):
>   01f45d85  Thu Jul 23 16:49:10 2026 -0700  Nate Bosch  [glob] Limit expansion during option flattening (dart-lang/tools#2477)
>   acc91d65  Thu Jul 23 16:00:59 2026 -0700  Kevin Moore  Add tests for PoolResource and close, and fix allowRelease leak (dart-lang/tools#2368)
>   0e54bd66  Thu Jul 23 15:25:22 2026 -0700  Nate Bosch  Parse hosted URLs as URLs (dart-lang/tools#2476)
>   7e124963  Wed Jul 22 15:01:34 2026 -0700  Sam Rawlins  Markdown: optimize email regex (dart-lang/tools#2474)
>   906d9d4e  Wed Jul 22 13:25:24 2026 -0700  Sam Rawlins  Markdown: More tag filter tests (dart-lang/tools#2473)
>   588fbad4  Wed Jul 22 10:54:42 2026 -0700  Sam Rawlins  Expand HTML filter regexp to include more characters that would denote an HTML tag (dart-lang/tools#2472)
>   e4f20cc7  Wed Jul 22 09:33:59 2026 -0700  Sam Rawlins  Respect enableTagfilter when inlineOnly is passed (dart-lang/tools#2471)
>   c4082344  Wed Jul 22 07:41:06 2026 -0700  Jacob MacDonald  add legend to multiselect dialogs (dart-lang/tools#2470)
>   a2ecf08f  Thu Jul 16 09:30:49 2026 -0700  Jacob MacDonald  add an event type for events coming from package:skills (dart-lang/tools#2468)
>   6a85977a  Mon Jul 13 10:12:17 2026 -0700  Kevin Moore  [api_summary] Support latest analyzer version (dart-lang/tools#2460)
>   58b0fd0a  Mon Jul 13 11:01:18 2026 +0200  Moritz  Add no-response workflow (dart-lang/tools#2459)
>   dc9ef3a9  Wed Jul 8 17:03:20 2026 -0700  Kevin Moore  chore(html): use MIT license header instead of BSD (dart-lang/tools#2458)
>
> web (https://github.com/dart-lang/web/compare/eb8c3fc..12a9ca2):
>   12a9ca2  Sun Jul 19 19:27:25 2026 -0700  Kevin Moore  test(js_interop_gen): reformat integration test goldens for dart_style 3.1.12 (dart-lang/web#565)
>   6b5e93a  Wed Jul 1 06:55:34 2026 +0000  dependabot[bot]  Bump actions/checkout from 6.0.2 to 7.0.0 in the github-actions group (dart-lang/web#563)
>   b8f47ab  Tue Jun 30 16:50:11 2026 -0700  Kevin Moore  [chore] Improve notice about updating the js_type_supertypes.dart (dart-lang/web#562)
>
> Change-Id: I18fe6d51ce221bb7985b57711089e6b9651b2637
> Tested:Package roll
> Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/523862
> Auto-Submit: Nate Bosch <nbosch@google.com>
> Reviewed-by: Ben Konyi <bkonyi@google.com>
> Reviewed-by: Daco Harkes <dacoharkes@google.com>
> Commit-Queue: Nate Bosch <nbosch@google.com>

TEST=ci
Change-Id: I0b07e7fe893a6bf78832c5d3d114f33080ab66e8
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/529340
Commit-Queue: Alexander Markov <alexmarkov@google.com>
Reviewed-by: Daco Harkes <dacoharkes@google.com>
copybara-service Bot pushed a commit to dart-lang/sdk that referenced this pull request Jul 30, 2026
Revisions updated by `dart tools/rev_sdk_deps.dart`.

Rolls a subset of the packages which were rolled and reverted in
https://dart-review.googlesource.com/c/sdk/+/529340

`test` is held back due to triggering a VM issue with some flutter
engine tests.

`dartdoc` is being rolled in
https://dart-review.googlesource.com/c/sdk/+/529460

As was the case with the reverted CL, `http` is being rolled in
https://dart-review.googlesource.com/c/sdk/+/524264

core (https://github.com/dart-lang/core/compare/25926e8..fe516ee):
  fe516ee1  Mon Jul 27 20:19:16 2026 +0200  Moritz  Consolidate no-response workflow into no_response.yml (dart-lang/core#982)
  2deeeade  Mon Jul 27 18:05:47 2026 +0530  Abhishak Kumar Malviya  fix: async cache storing exception fixed (dart-lang/core#548)
  bed8f40e  Fri Jul 24 11:29:13 2026 -0700  Nate Bosch  Add `value` getter to `Result` (dart-lang/core#969)

ecosystem (https://github.com/dart-lang/ecosystem/compare/848b3bf..edfdb3b):
  edfdb3b  Thu Jul 23 17:27:43 2026 +0200  Moritz  Add want-lgtm reusable workflow (dart-lang/ecosystem#432)
  a6c8ef0  Thu Jul 23 14:29:53 2026 +0200  Moritz  Validate target PR number and comment ownership in post_summaries workflow (dart-lang/ecosystem#434)
  80a9928  Thu Jul 23 13:49:48 2026 +0200  Moritz  Fix canary workflow (dart-lang/ecosystem#433)
  910d668  Wed Jul 15 18:04:05 2026 +0200  Moritz  Pass GITHUB_TOKEN to firehose:comment steps in workflows (dart-lang/ecosystem#431)
  980c6df  Sat Jul 11 00:20:55 2026 +0200  Moritz  Fix `-WIP` ending detection (dart-lang/ecosystem#430)
  60c0f67  Wed Jul 8 20:38:35 2026 +0200  Moritz  Run `pub get` before `dart format` in groundskeeper (dart-lang/ecosystem#429)
  bcef699  Tue Jul 7 10:17:24 2026 +0200  Moritz  Fix `groundskeeper` workflow (dart-lang/ecosystem#428)
  77def11  Fri Jul 3 11:43:12 2026 +0200  Moritz  Simplify groundskeeper (dart-lang/ecosystem#426)
  3dd606a  Wed Jul 1 18:19:25 2026 +0000  dependabot[bot]  Bump the github-actions group with 3 updates (dart-lang/ecosystem#427)
  d6ec975  Wed Jul 1 14:41:23 2026 +0200  Moritz  Add changelog updater (dart-lang/ecosystem#424)
  f8a4fbb  Wed Jul 1 10:00:59 2026 +0200  Moritz  Add `Groundskeeper` workflow (dart-lang/ecosystem#425)

i18n (https://github.com/dart-lang/i18n/compare/d0683bd..e1b5a79):
  e1b5a798  Tue Jul 14 13:10:29 2026 +0200  Moritz  Add weekday API (dart-lang/i18n#1071)
  04b78e38  Thu Jul 9 14:16:22 2026 +0200  Moritz  Add stale workflow (dart-lang/i18n#1069)
  01e20101  Thu Jul 9 13:42:08 2026 +0200  Moritz  Add stale workflow
  03efda51  Thu Jul 9 13:19:31 2026 +0200  Moritz  Update ICU4X (dart-lang/i18n#1068)
  4d8a1b39  Tue Jul 7 11:23:06 2026 +0200  Moritz  feat(intl4x): add locale.dart entrypoint exposing only Locale (dart-lang/i18n#1067)
  b2b7ce08  Mon Jul 6 03:23:28 2026 -0700  Copybara-Service  Merge pull request `#1038` from donny-dont:patch-1
  cca1dc44  Mon Jul 6 03:10:59 2026 -0700  Copybara-Service  Merge pull request `#1040` from suxoikorm:main
  28352851  Mon Jul 6 02:40:25 2026 -0700  Copybara-Service  Merge pull request `#1062` from AbdeMohlbi:issue_116
  9f8e7998  Mon Jul 6 02:16:05 2026 -0700  Copybara-Service  Merge pull request `#1050` from LaijieJi:patch-1
  be8e2c0d  Fri Jul 3 14:50:28 2026 +0200  Moritz  Merge branch 'main' into issue_116
  8b119830  Fri Jul 3 14:33:33 2026 +0200  Moritz  Merge branch 'main' into patch-1
  96aab97a  Fri Jul 3 14:30:55 2026 +0200  Moritz  Merge branch 'main' into main
  9e700b2a  Thu Jul 2 09:37:45 2026 +0200  Moritz  Merge branch 'main' into patch-1
  a6f174b8  Wed Jul 1 08:32:07 2026 -0700  Googler  No public description
  fb1feb18  Wed Jul 1 08:32:33 2026 -0700  Copybara-Service  Merge pull request `#1058` from dart-lang:upgrade_analyzer
  77926a26  Thu May 7 20:52:55 2026 +0100  abdessalem  gemini has a point
  c2f96cba  Thu May 7 20:45:40 2026 +0100  abdessalem  revert the formating changes
  ebb0a441  Thu May 7 20:41:40 2026 +0100  abdessalem  update select documentation to clarify other fallback behavior and when `ArgumentError` is thrown
  b13c2d48  Mon Mar 9 10:35:50 2026 +0100  Moritz  Merge branch 'main' into patch-1
  6581675f  Mon Feb 9 09:13:25 2026 +0100  Laijie  Fix typo in number_format.dart documentation
  69d1e6a6  Thu Jan 29 15:25:06 2026 +0400  Luka Katsadze  Merge branch 'main' into main
  55a61fa6  Fri Dec 19 15:51:58 2025 -0800  Don Olmstead  Escape text direction code points
  a140f2ef  Mon Dec 29 21:42:09 2025 +0400  Luka Katsadze  fix: correct formatting of Georgian Lari symbol entry in changelog
  76a370c5  Mon Dec 29 21:34:35 2025 +0400  Luka Katsadze  chore: update changelog
  9df0c191  Mon Dec 29 21:31:39 2025 +0400  Luka Katsadze  feat: add georgian lari symbol support

shelf (https://github.com/dart-lang/shelf/compare/71248e7..6918a76):
  6918a76  Mon Jul 20 18:45:56 2026 -0700  Kevin Moore  feat(compliance): add GitHub Actions Job Summary to test runs (dart-lang/shelf#527)
  e9c742d  Mon Jul 20 20:28:03 2026 +0300  Yusuf İhsan Görgel  fix: join multiple Cookie header values with '; ' instead of ',' (`#521`) (dart-lang/shelf#536)
  833433e  Mon Jul 6 16:59:42 2026 -0700  Kevin Moore  chore: standardize min SDK to ^3.9.0 and unify lints
  7af986e  Wed Jul 1 12:27:06 2026 +0000  dependabot[bot]  Bump the github-actions group with 2 updates (dart-lang/shelf#535)

tools (https://github.com/dart-lang/tools/compare/3f850c4..b827a6e):
  b827a6e3  Wed Jul 29 10:18:52 2026 -0700  Nate Bosch  Use -- to separate chrome URLs (dart-lang/tools#2475)
  0fc3b0e7  Wed Jul 29 10:02:32 2026 -0700  Sam Rawlins  markdown: escape alt text in images (dart-lang/tools#2478)
  01f45d85  Thu Jul 23 16:49:10 2026 -0700  Nate Bosch  [glob] Limit expansion during option flattening (dart-lang/tools#2477)
  acc91d65  Thu Jul 23 16:00:59 2026 -0700  Kevin Moore  Add tests for PoolResource and close, and fix allowRelease leak (dart-lang/tools#2368)
  0e54bd66  Thu Jul 23 15:25:22 2026 -0700  Nate Bosch  Parse hosted URLs as URLs (dart-lang/tools#2476)
  7e124963  Wed Jul 22 15:01:34 2026 -0700  Sam Rawlins  Markdown: optimize email regex (dart-lang/tools#2474)
  906d9d4e  Wed Jul 22 13:25:24 2026 -0700  Sam Rawlins  Markdown: More tag filter tests (dart-lang/tools#2473)
  588fbad4  Wed Jul 22 10:54:42 2026 -0700  Sam Rawlins  Expand HTML filter regexp to include more characters that would denote an HTML tag (dart-lang/tools#2472)
  e4f20cc7  Wed Jul 22 09:33:59 2026 -0700  Sam Rawlins  Respect enableTagfilter when inlineOnly is passed (dart-lang/tools#2471)
  c4082344  Wed Jul 22 07:41:06 2026 -0700  Jacob MacDonald  add legend to multiselect dialogs (dart-lang/tools#2470)
  a2ecf08f  Thu Jul 16 09:30:49 2026 -0700  Jacob MacDonald  add an event type for events coming from package:skills (dart-lang/tools#2468)
  6a85977a  Mon Jul 13 10:12:17 2026 -0700  Kevin Moore  [api_summary] Support latest analyzer version (dart-lang/tools#2460)
  58b0fd0a  Mon Jul 13 11:01:18 2026 +0200  Moritz  Add no-response workflow (dart-lang/tools#2459)
  dc9ef3a9  Wed Jul 8 17:03:20 2026 -0700  Kevin Moore  chore(html): use MIT license header instead of BSD (dart-lang/tools#2458)

web (https://github.com/dart-lang/web/compare/eb8c3fc..12a9ca2):
  12a9ca2  Sun Jul 19 19:27:25 2026 -0700  Kevin Moore  test(js_interop_gen): reformat integration test goldens for dart_style 3.1.12 (dart-lang/web#565)
  6b5e93a  Wed Jul 1 06:55:34 2026 +0000  dependabot[bot]  Bump actions/checkout from 6.0.2 to 7.0.0 in the github-actions group (dart-lang/web#563)
  b8f47ab  Tue Jun 30 16:50:11 2026 -0700  Kevin Moore  [chore] Improve notice about updating the js_type_supertypes.dart (dart-lang/web#562)

R=alexmarkov@google.com

Change-Id: I410cb87fd72a63e4deacaad61206fbbdf6937f5f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/529520
Commit-Queue: Nate Bosch <nbosch@google.com>
Reviewed-by: Alexander Markov <alexmarkov@google.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants