Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
flow | 2025-06-24 | 1.9 kB | |
flow-win64-v0.274.0.zip | 2025-06-24 | 13.8 MB | |
libflowparser-osx-arm64-v0.274.0.zip | 2025-06-24 | 1.4 MB | |
flow-osx-arm64-v0.274.0.zip | 2025-06-24 | 10.1 MB | |
libflowparser-osx-v0.274.0.zip | 2025-06-24 | 1.3 MB | |
flow-osx-v0.274.0.zip | 2025-06-24 | 8.8 MB | |
flow-linux-arm64-v0.274.0.zip | 2025-06-24 | 15.9 MB | |
libflowparser-linux64-v0.274.0.zip | 2025-06-24 | 2.2 MB | |
flow-linux64-v0.274.0.zip | 2025-06-24 | 13.1 MB | |
README.md | 2025-06-24 | 2.6 kB | |
v0.274.0 source code.tar.gz | 2025-06-24 | 8.7 MB | |
v0.274.0 source code.zip | 2025-06-24 | 14.5 MB | |
Totals: 12 Items | 89.8 MB | 1 |
Likely to cause new Flow errors: * Unannotated object literals reachable from exports will now be inferred to have all mutable fields when being imported. Previously, it has unsound types, so new errors might appear. * When comparing two object types whose properties have variance incompatibilities, Flow will raise a single error that will summarize the properties with incompatible variances, instead of a single error for each property. (e.g. try-Flow) * When an object with extra properties is passed to a place that expect an exact object, we will now generate a single error with all extra properties. The error message will list the extra properties, and state that "Exact objects do not accept extra props". In rare cases, the error locations might be moved. * Flow will error more consistently with sketchy-bool on nullable boolean types (e.g. try-Flow)
Library Definitions:
* All properties in the builtin PropertyDescriptor
type are marked as readonly. If you need a mutable version, you can introduce something like type MutablePropertyDescriptor<T> = {...$Exact<PropertyDescriptor<T>>, ...}