Fork of daniellemaywood.uk/gleam โ€” Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ“ Update changelog

author
fruno
committer
Louis Pilfold
date (Nov 23, 2025, 8:14 PM UTC) commit 6e1a0c26 parent 59416538 change-id oxvukovo
+7
+7
CHANGELOG.md
··· 103 103 from 1.13 has been extended to int segments! 104 104 Aside from the various performance improvements, this allows the compiler to 105 105 mark more branches as unreachable. 106 + 106 107 ```gleam 107 108 case bits { 108 109 <<"a">> -> 0 ··· 116 117 _ -> 99 117 118 } 118 119 ``` 120 + 119 121 ([fruno](https://github.com/fruno-bulax/)) 120 122 121 123 ### Build tool ··· 235 237 - The "add omitted label" code action no longer adds labels to arguments 236 238 being piped in or the callbacks of `use`. 237 239 ([fruno](https://github.com/fruno-bulax)) 240 + 241 + - Fixed a bug that caused the compiler to incorrectly optimise away runtime 242 + size checks in bit array patterns on the javascript target if they used 243 + calculations in the size of a segment (`_:size(wibble - wobble)`). 244 + ([fruno](https://github.com/fruno-bulax/)) 238 245 239 246 - Add a missing BitArray constructor return type in the prelude's TypeScript 240 247 definitions.