Version | Change log |
Dart Editor 64-bit 3.6.0 Dec 12, 2024 |
Pub workspaces: Pub now supports shared resolution between packages in a monorepo, or workspace. A workspace is a tightly related group of packages developed, resolved, and released together. The pub workspaces feature ensures that packages in a monorepo share a consistent set of dependencies. This forces you to resolve dependency conflicts between your grouped packages as they arise, rather than facing confusion when you start using the packages.. The Flutter analyzer processes all of the packages in a pub workspace in a single analysis context, as opposed to the previous behavior of a separate context for each package. For large repositories, this can significantly reduce the amount of memory the Dart language server consumes, improving IDE performance. Then run pub get anywhere in the repository to complete the mapping and remaining file management. To use pub workspaces, all workspace packages (but not dependencies) must have an SDK version constraint of ^3.6.0 or greater. Pub download counts: We listened to your requests for more precise metrics on pub.dev, and now download counts are here! The download count replaces the previous “popularity score” on individual package pages. Along with the new metric, you will also find a sparkline chart on each page, showing weekly downloads over time. A screenshot highlighting the new download count and sparkline graph on pub.dev You can learn more about download counts in the pub.dev scoring documentation. Digit separators: The Dart language now allows underscores (_) as digit separators, which help make long number literals more readable. Multiple consecutive underscores indicate higher level grouping. Here are some examples of valid digit separator uses in Dart. Remember, digit separators are valid only between digits, so literals like 100_, 0._000_1, or 1.2e_3 aren’t allowed. It’s also important to use digit separators consistently, so make sure digit groups are the same size between every level of groups. To u |
Dart Editor 64-bit 3.5.4 Nov 19, 2024 |
WebAssembly updates: Today, we’re delighted to announce complete support for WebAssembly (Wasm) is available for Flutter Web apps with the latest Flutter 3.22 stable release! This has been a multi-year investment across Dart & Flutter. If you’ve been following the developments, you’ve seen our incremental developments: Standardizing the WasmGC proposal, Adding a brand new Dart compiler backend to generate WasmGC code, and Revamping our web and JavaScript interop offerings to best support Wasm. We’ll continue to invest in WebAssembly. Our next effort will enable full support for Wasm in pure Dart apps, and completing a few missing features (e.g. deferred loading). The end-to-end tooling for Wasm compilation in Dart is still under development, but you can try the preview in stable now with some temporary steps. Later, we also hope to support Wasm in Dart outside of JS-environments, such as standard Wasm run-times like wasmtime and wasmer. Dart macros: Raising the development abstraction level: We’ve invested many years into designing the Dart macros system. To improve the development experience in Dart, macros provide a metaprogramming solution, like code generation. This solution is built into the Dart language to give developers maximum performance, efficiency, and productivity. Now, we’re ready to offer a preview of this experience! A long standing pain point for Dart developers has been the trivial yet tedious pattern of serializing and deserializing JSON data. Crafting a reusable, sufficiently powerful solution is a challenge in Dart, as it doesn’t support runtime reflection for performance reasons. As an alternative, we’ve relied on code generation solutions like JsonSerializable. These depend on external tools that run before the code itself, complicating the developer experience. Today, we’re announcing a preview of a radical new approach for JSON serialization and deserialization: the JsonCodable macro. A macro is a type of code that generat |
Dart Editor 64-bit 3.4.4 Sep 17, 2024 |
WebAssembly updates: Today, we’re delighted to announce complete support for WebAssembly (Wasm) is available for Flutter Web apps with the latest Flutter 3.22 stable release! This has been a multi-year investment across Dart & Flutter. If you’ve been following the developments, you’ve seen our incremental developments: Standardizing the WasmGC proposal, Adding a brand new Dart compiler backend to generate WasmGC code, and Revamping our web and JavaScript interop offerings to best support Wasm. We’ll continue to invest in WebAssembly. Our next effort will enable full support for Wasm in pure Dart apps, and completing a few missing features (e.g. deferred loading). The end-to-end tooling for Wasm compilation in Dart is still under development, but you can try the preview in stable now with some temporary steps. Later, we also hope to support Wasm in Dart outside of JS-environments, such as standard Wasm run-times like wasmtime and wasmer. Dart macros: Raising the development abstraction level: We’ve invested many years into designing the Dart macros system. To improve the development experience in Dart, macros provide a metaprogramming solution, like code generation. This solution is built into the Dart language to give developers maximum performance, efficiency, and productivity. Now, we’re ready to offer a preview of this experience! A long standing pain point for Dart developers has been the trivial yet tedious pattern of serializing and deserializing JSON data. Crafting a reusable, sufficiently powerful solution is a challenge in Dart, as it doesn’t support runtime reflection for performance reasons. As an alternative, we’ve relied on code generation solutions like JsonSerializable. These depend on external tools that run before the code itself, complicating the developer experience. Today, we’re announcing a preview of a radical new approach for JSON serialization and deserialization: the JsonCodable macro. A macro is a type of code that generat |
Dart Editor 64-bit 3.5.0 Aug 6, 2024 |
Completed Analysis Server integration (now default) Added support for aswync/await and enums Added new quick fixes and quick assists Various formatter fixes and enhancements Various search fixes and enhancements Various memory and performance fixes Various code completion fixes Various debugger and breakpoint fixes |
Dart Editor 64-bit 2.19.6 Mar 29, 2023 | |
Dart Editor 64-bit 2.19.0 Jan 25, 2023 | |
Dart Editor 64-bit 2.16.0 Feb 4, 2022 | |
Dart Editor 64-bit 1.10.0 May 8, 2015 | |
Dart Editor 64-bit 2013.10.08 B Oct 10, 2013 |
Show parameters and return type in outline. Show function type aliases in outline. Fixes for several refactoring related issues. Fixes for better updating dependent files. Fix for deleting original files after failed move. Fix for find next/prev key bindings when Find box is active. Various performance and stability improvements. |