[deps] rev async, bazel_worker, benchmark_harness, boolean_selector, browser_launcher, cli_util, clock, collection, convert, crypto, csslib, dartdoc, ecosystem, http, webdev, yaml_edit

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

async (https://github.com/dart-lang/async/compare/0370a67..09cba7f):
  09cba7f  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/async#273)

bazel_worker (https://github.com/dart-lang/bazel_worker/compare/d396d3d..2fb4fbf):
  2fb4fbf  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/bazel_worker#91)
  de7c44b  2024-05-02  dependabot[bot]  Bump actions/checkout from 4.1.2 to 4.1.4 (dart-lang/bazel_worker#89)

benchmark_harness (https://github.com/dart-lang/benchmark_harness/compare/3a6ed5d..accc755):
  accc755  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/benchmark_harness#105)

boolean_selector (https://github.com/dart-lang/boolean_selector/compare/b353222..2cbd4a6):
  2cbd4a6  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/boolean_selector#60)

browser_launcher (https://github.com/dart-lang/browser_launcher/compare/e5687b4..0dcf224):
  0dcf224  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/browser_launcher#59)

cli_util (https://github.com/dart-lang/cli_util/compare/5103eca..9fe3eeb):
  9fe3eeb  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/cli_util#103)

clock (https://github.com/dart-lang/clock/compare/c7e3875..80e70ac):
  80e70ac  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/clock#64)

collection (https://github.com/dart-lang/collection/compare/34b7269..4718398):
  4718398  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/collection#340)

convert (https://github.com/dart-lang/convert/compare/5da924b..056626e):
  056626e  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/convert#105)

crypto (https://github.com/dart-lang/crypto/compare/fc5e7c8..3f815ac):
  3f815ac  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/crypto#170)

csslib (https://github.com/dart-lang/csslib/compare/4ab68e4..141dd65):
  141dd65  2024-05-03  Devon Carew  blast_repo fixes (dart-lang/csslib#201)

dartdoc (https://github.com/dart-lang/dartdoc/compare/d16bedc..6e9c1ea):
  6e9c1eae  2024-05-02  Sam Rawlins  Privatize ModelCommentReference.codeRef and .parsed (dart-lang/dartdoc#3764)

ecosystem (https://github.com/dart-lang/ecosystem/compare/74942f6..9ce560b):
  9ce560b  2024-05-03  dependabot[bot]  Bump the dependencies group with 2 updates (dart-lang/ecosystem#262)
  bbb5c08  2024-05-03  Devon Carew  update dependabot config; update related blast tweak (dart-lang/ecosystem#261)
  678fe95  2024-05-02  dependabot[bot]  Bump peter-evans/create-or-update-comment in the dependencies group (dart-lang/ecosystem#259)
  9f6d4a9  2024-05-02  Devon Carew  Update the dependabot config (dart-lang/ecosystem#258)

http (https://github.com/dart-lang/http/compare/ec73b19..dd31e64):
  dd31e64  2024-05-02  Brian Quinlan  Eagerly free resources on `CupertinoClient.close()` (dart-lang/http#1191)

webdev (https://github.com/dart-lang/webdev/compare/b41ac34..c233e45):
  c233e453  2024-05-02  Elliott Brooks  Move DWDS launch event (dart-lang/webdev#2423)

yaml_edit (https://github.com/dart-lang/yaml_edit/compare/fe2699d..c4629ad):
  c4629ad  2024-05-06  Jonas Finnemann Jensen  A few more tests to reduce risk of regressions (dart-lang/yaml_edit#77)
  d15b44c  2024-05-06  Jonas Finnemann Jensen  Consume until end of document if there is no newline when removing from (dart-lang/yaml_edit#76)

Change-Id: I04956b5696ec7cfbeabdd4e0889c2e5934a6f48e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/365483
Auto-Submit: Devon Carew <devoncarew@google.com>
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
1 file changed
tree: 7119b7dff634e81f809e711dc32c1c6d098398eb
  1. .dart_tool/
  2. .github/
  3. benchmarks/
  4. build/
  5. docs/
  6. pkg/
  7. runtime/
  8. samples/
  9. sdk/
  10. tests/
  11. third_party/
  12. tools/
  13. utils/
  14. .clang-format
  15. .gitattributes
  16. .gitconfig
  17. .gitignore
  18. .gn
  19. .mailmap
  20. .style.yapf
  21. AUTHORS
  22. BUILD.gn
  23. CHANGELOG.md
  24. codereview.settings
  25. CONTRIBUTING.md
  26. DEPS
  27. LICENSE
  28. OWNERS
  29. PATENT_GRANT
  30. PRESUBMIT.py
  31. README.dart-sdk
  32. README.md
  33. sdk.code-workspace
  34. sdk_args.gni
  35. sdk_packages.yaml
  36. SECURITY.md
  37. WATCHLISTS
README.md

Dart

An approachable, portable, and productive language for high-quality apps on any platform

Dart is:

  • Approachable: Develop with a strongly typed programming language that is consistent, concise, and offers modern language features like null safety and patterns.

  • Portable: Compile to ARM, x64, or RISC-V machine code for mobile, desktop, and backend. Compile to JavaScript or WebAssembly for the web.

  • Productive: Make changes iteratively: use hot reload to see the result instantly in your running app. Diagnose app issues using DevTools.

Dart's flexible compiler technology lets you run Dart code in different ways, depending on your target platform and goals:

  • Dart Native: For programs targeting devices (mobile, desktop, server, and more), Dart Native includes both a Dart VM with JIT (just-in-time) compilation and an AOT (ahead-of-time) compiler for producing machine code.

  • Dart Web: For programs targeting the web, Dart Web includes both a development time compiler (dartdevc) and a production time compiler (dart2js).

Dart platforms illustration

License & patents

Dart is free and open source.

See LICENSE and PATENT_GRANT.

Using Dart

Visit dart.dev to learn more about the language, tools, and to find codelabs.

Browse pub.dev for more packages and libraries contributed by the community and the Dart team.

Our API reference documentation is published at api.dart.dev, based on the stable release. (We also publish docs from our beta and dev channels, as well as from the primary development branch).

Building Dart

If you want to build Dart yourself, here is a guide to getting the source, preparing your machine to build the SDK, and building.

There are more documents on our wiki.

Contributing to Dart

The easiest way to contribute to Dart is to file issues.

You can also contribute patches, as described in Contributing.

Roadmap

Future plans for Dart are included in the combined Dart and Flutter roadmap on the Flutter wiki.