Skip to content

Releases: rescript-lang/rescript-core

0.5.0

09 Oct 11:30
@zth zth
Compare
Choose a tag to compare

API changes

  • Add Result.mapError #98

Documentation

  • Docstrings for Object. Not yet complete. #117

0.4.0

07 Jul 11:07
@zth zth
Compare
Choose a tag to compare

API changes

  • Map, Set, WeakMap, WeakSet: use the types defined in the Js namespace. #143
  • Symbol: use the types defined in the Js namespace. #145
  • The types RescriptCore.Type.function and RescriptCore.Type.object use the types defined in the Js namespace. #146
  • The type RescriptCore.Type.symbol removed in favor of RescriptCore.Symbol.t. #146
  • Added BigInt support for RescriptCore.Classify.t. #146
  • Array mutable & immutable helper name changed to conform to JS' upcoming APIs such as toSorted
    • sort -> toSorted, sortInPlace -> sort
    • reverse -> toReversed, reverseInPlace -> reverse
    • splice -> toSpliced, spliceInPlace -> splice
    • shuffle -> toShuffled, shuffleInPlace -> shuffle
    • fillAllInPlace -> fillAll, fillInPlaceToEnd -> fillToEnd, fillInPlace -> fill
    • added with
  • Same for TypedArray:
    • sort -> toSorted, sortInPlace -> sort
    • reverse -> toReversed, reverseInPlace -> reverse
    • fillAllInPlace -> fillAll, fillInPlaceToEnd -> fillToEnd, fillInPlace -> fill
  • And List:
    • shuffle -> toShuffled
  • Use float instead of int for ordering to avoid premature overflow. #149
  • Add Ordering module. #149

Note 1: These changes should all produce the correct type errors. Though TypedArray's reverse and sort previously mutated and returned the mutated array itself, whereas now they'd be copies. Please be careful refactoring these 2.

Note 2: the newly added helpers, Array.toSorted, Array.toSpliced, Array.toReversed, Array.with, TypedArray.toSorted and TypedArray.toReversed require their respective polyfill, as they're not currently supported by Firefox.

0.3.1

01 May 17:05
@zth zth
Compare
Choose a tag to compare

Bug fixes

  • Fix peer dependency range so later versions of npm don't complain as Core is used with ReScript v11 alpha.

0.3.0

26 Apr 07:09
@zth zth
Compare
Choose a tag to compare

API changes

  • Add Result.forEach #116
  • Set peer dependencies range for ReScript compiler #133

0.2.0

11 Mar 09:23
@zth zth
Compare
Choose a tag to compare

API changes

  • Change Map.set to not return self, to indicate that it's mutable. #34
  • Change Set.add to not return self, to indicate that it's mutable. #35
  • Change Iterator bindings to have the same shape as AsyncIterator for consistency. #34
  • Add Iterator.toArray binding for turning an iterator into an array. #34
  • Add Array.at binding for returning an array item by its index. #48
  • Fixed type signatures of Array.fromArrayLikeWithMap and Array.fromIteratorWithMap. #50
  • Remove internal async/await helpers that do not need to be exposed in Core.
  • Add locale and formatting options to localeDateString, localeString and localTimeString functions #30
  • Remove Undefined module. Nullable or option directly (where appropriate) can be used instead. #59
  • Change RegExp.source to return a string. Was previously returning a bool, which is wrong. #47
  • Remove Date.valueOf as it returns the same as Date.getTime. #61
  • Change Float.fromString signature. Now accepts only string. #54
  • Change Float.parseFloat signature. Now accepts only string. #54
  • Add getExn, getUnsafe, getWithDefault, map, mapWithDefault and flatMap to Nullable. #67
  • Add getExn, getUnsafe, getWithDefault, map, mapWithDefault and flatMap to Null. #73
  • Add make, fromInitializer, findMap, keepSome, reduceRight and reduceRightWithIndex. #49
  • Remove reduceReverse in favor of reduceRight. #49
  • Fixed type signatures of reduce and reduceWithIndex. #49
  • Add panic/Error.panic. #72
  • The globally available null value now originates from Nullable and not Null, just like the globally available undefined value does. #88
  • Add Int.range and Int.rangeWithOptions, #52
  • Remove Array.fromIterator and Array.fromIteratorWithMap. The same functions exist in Iterator as Iterator.fromArray and Iterator.fromArrayWithMapper. #78
  • Remove unsafe Array.from and Array.fromWithMap. #78

Documentation

  • Docstrings for Map and Iterator. #34
  • Docstrings for Global. #39
  • Docstrings for Set. #35
  • Docstrings for AsyncIterator. #33
  • Docstrings for Type. #32
  • Docstrings for Int. #37
  • Docstrings for Dict. #40
  • Docstrings for RegExp. #47
  • Docstrings for Date. #61
  • Docstrings for Float. #54
  • Docstrings for String. #27
  • Docstrings from Array. #78