| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| flow | 2025-11-06 | 1.5 kB | |
| flow-win64-v0.290.0.zip | 2025-11-06 | 14.0 MB | |
| flow-osx-arm64-v0.290.0.zip | 2025-11-06 | 10.4 MB | |
| flow-linux-arm64-v0.290.0.zip | 2025-11-06 | 16.2 MB | |
| flow-linux64-v0.290.0.zip | 2025-11-06 | 13.3 MB | |
| README.md | 2025-11-05 | 2.0 kB | |
| v0.290.0 source code.tar.gz | 2025-11-05 | 8.9 MB | |
| v0.290.0 source code.zip | 2025-11-05 | 14.8 MB | |
| Totals: 8 Items | 77.5 MB | 0 | |
Likely to cause new Flow errors:
* flow will now validate variance in interface declarations
* Bad cyclic object types are now banned. e.g. type O_loop = { p: 0, __proto__: O_loop } will cause an error.
* Flow is now stricter with generic mapped type. example
Notable bug fixes:
* We improved the refinement system of match. Some code that previously gets a general type will now get a refined type. example
* allow opaque types to be used as keys to computed object properties
* autocomplete on import { | } from 'a'; will only suggest values, not types.
* flow-dev-tools now properly detects unused suppressions
IDE: * Flow now provide auto-import code actions for all unbound names, even through they might resolve to a global. It can be helpful when the global is not what you want.
Library Definitions: * Add bigint functions to DataView