rambda 7.5.0 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ 8.1.0
2
+
3
+ - Fix input order of TS definitions for `R.propEq` method - [Issue #688](https://github.com/selfrefactor/rambda/issues/688)
4
+
5
+ - Add `R.differenceWith` method - [Issue #91](https://github.com/selfrefactor/rambdax/issues/91)
6
+
7
+ 8.0.0
8
+
9
+ - handle falsy values in merge methods - https://github.com/ramda/ramda/pull/3222
10
+
11
+ - `R.head`/`R.last` don't return `undefined` for non-empty arrays
12
+
13
+ - `R.type` supports dates in TS definition - `Rambda` already did support dates in JS.
14
+
15
+ - Improve typings of `R.endsWith/startsWith` with regard to `string` input. - [PR #622](https://github.com/selfrefactor/rambda/pull/622)
16
+
17
+ - Handle list as falsy value in `R.reduce` - [Ramda MR](https://github.com/ramda/ramda/pull/2997/files)
18
+
19
+ - `R.nop` is removed - it will be moved to `Rambdax` as `R.noop`
20
+
21
+ - `R.includes` is no longer using string literal in Typescript definitions
22
+
23
+ > Reason for breaking change - synchronize with Ramda `0.29.0` release:
24
+
25
+ - change order of `R.propEq` - [Ramda MR](https://github.com/ramda/ramda/pull/2938/files)
26
+
27
+
1
28
  7.5.0
2
29
 
3
30
  - IMPORTANT: Remove `export` property in `package.json` in order to allow `Rambda` support for projects with `"type": "module"` in `package.json` - [Issue #667](https://github.com/selfrefactor/rambda/issues/657)