|
39 | 39 |
|
40 | 40 | #### :bug: Bug Fix
|
41 | 41 |
|
42 |
| -- Fix tag function location on compiler error. https://github.com/rescript-lang/rescript-compiler/pull/6816 |
43 | 42 | - Fix unhandled cases for exotic idents (allow to use exotic PascalCased identifiers for types). https://github.com/rescript-lang/rescript-compiler/pull/6777 https://github.com/rescript-lang/rescript-compiler/pull/6779 https://github.com/rescript-lang/rescript-compiler/pull/6897
|
44 | 43 | - Fix unused attribute check for `@as`. https://github.com/rescript-lang/rescript-compiler/pull/6795
|
45 | 44 | - Reactivate unused attribute check for `@int`. https://github.com/rescript-lang/rescript-compiler/pull/6802
|
46 |
| -- Fix Deno compatibility issues on Windows. https://github.com/rescript-lang/rescript-compiler/pull/6850 |
47 |
| -- Fix issue with infinite loops with type errors on recursive types. https://github.com/rescript-lang/rescript-compiler/pull/6867 |
48 | 45 | - Fix issue where using partial application `...` can generate code that uses `Curry` at runtime. https://github.com/rescript-lang/rescript-compiler/pull/6872
|
49 | 46 | - Avoid generation of `Curry` with reverse application `|>`. https://github.com/rescript-lang/rescript-compiler/pull/6876
|
50 | 47 | - Fix issue where the internal ppx for pipe `->` would not use uncurried application in uncurried mode. https://github.com/rescript-lang/rescript-compiler/pull/6878
|
51 |
| -- Fix build after calling without `-warn-error`, see https://github.com/rescript-lang/rescript-compiler/issues/6868 for more details. https://github.com/rescript-lang/rescript-compiler/pull/6877 |
52 |
| -- Fix issue with uninitialized `_param` in recursive functions with unit argument. https://github.com/rescript-lang/rescript-compiler/pull/6907 |
53 | 48 |
|
54 | 49 | #### :house: Internal
|
55 | 50 |
|
|
64 | 59 | - Make compiler libs ready for uncurried mode. https://github.com/rescript-lang/rescript-compiler/pull/6861
|
65 | 60 | - Make tests ready for uncurried mode. https://github.com/rescript-lang/rescript-compiler/pull/6862
|
66 | 61 | - Make gentype tests uncurried. https://github.com/rescript-lang/rescript-compiler/pull/6866
|
67 |
| -- Ignore `@uncurry` attribute in uncurried mode, to avoid generating calls to `Curry` at runtime. https://github.com/rescript-lang/rescript-compiler/pull/6869 |
68 |
| -- Avoid generating calls to Curry when adjusting arity of uncurried functions. https://github.com/rescript-lang/rescript-compiler/pull/6870 |
69 | 62 | - Remove `@@uncurried.swap`, which was used for internal tests. https://github.com/rescript-lang/rescript-compiler/pull/6875
|
70 | 63 | - Build the compiler libraries/tests in uncurried mode. https://github.com/rescript-lang/rescript-compiler/pull/6864
|
71 | 64 | - Ignore `-uncurried` command-line flag. https://github.com/rescript-lang/rescript-compiler/pull/6885
|
|
90 | 83 | - Fix `Js.Types.JSBigInt` payload to use native `bigint` type. https://github.com/rescript-lang/rescript-compiler/pull/6911
|
91 | 84 | - Deprecate `%external` extension, which has never been officially introduced. https://github.com/rescript-lang/rescript-compiler/pull/6906
|
92 | 85 |
|
| 86 | +# 11.1.3 |
| 87 | + |
| 88 | +#### :bug: Bug Fix |
| 89 | + |
| 90 | +- Fix tag function location on compiler error. https://github.com/rescript-lang/rescript-compiler/pull/6816 |
| 91 | +- Fix Deno compatibility issues on Windows. https://github.com/rescript-lang/rescript-compiler/pull/6850 |
| 92 | +- Fix issue with infinite loops with type errors on recursive types. https://github.com/rescript-lang/rescript-compiler/pull/6867 |
| 93 | +- Ignore `@uncurry` attribute in uncurried mode, to avoid generating calls to `Curry` at runtime. https://github.com/rescript-lang/rescript-compiler/pull/6869 |
| 94 | +- Avoid generating calls to Curry when adjusting arity of uncurried functions. https://github.com/rescript-lang/rescript-compiler/pull/6870 |
| 95 | +- Fix build after calling without `-warn-error`, see https://github.com/rescript-lang/rescript-compiler/issues/6868 for more details. https://github.com/rescript-lang/rescript-compiler/pull/6877 |
| 96 | +- Fix issue with uninitialized `_param` in recursive functions with unit argument. https://github.com/rescript-lang/rescript-compiler/pull/6907 |
| 97 | + |
| 98 | +# 11.1.3-rc.1 |
| 99 | + |
| 100 | +#### :bug: Bug Fix |
| 101 | + |
| 102 | +- Omit standard library dir from load path if -nostdlib is set. https://github.com/rescript-lang/rescript-compiler/pull/6833 |
| 103 | + |
93 | 104 | # 11.1.2
|
94 | 105 |
|
95 | 106 | #### :bug: Bug Fix
|
|
0 commit comments