| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| flow | 2026-07-08 | 1.5 kB | |
| flow-win64-v0.322.0.zip | 2026-07-08 | 37.1 MB | |
| flow-osx-arm64-v0.322.0.zip | 2026-07-08 | 30.0 MB | |
| flow-linux-arm64-v0.322.0.zip | 2026-07-08 | 30.9 MB | |
| flow-linux64-v0.322.0.zip | 2026-07-08 | 33.5 MB | |
| README.md | 2026-07-08 | 1.1 kB | |
| v0.322.0 source code.tar.gz | 2026-07-08 | 11.9 MB | |
| v0.322.0 source code.zip | 2026-07-08 | 18.4 MB | |
| Totals: 8 Items | 161.9 MB | 1 | |
Notable bug fixes:
- Fixed https://github.com/facebook/flow/issues/9448
- Fixed a crash in pattern matching. (example)
- Refining a union by
instanceofno longer leaksanyfrom members that cannot match the guard (e.g.Foo<string> | Bar<number>refined byinstanceof Foonow yieldsFoo<string>instead ofFoo<string> | Foo<any>). This may surface real errors that were previously masked.