rambda 7.3.0 → 7.5.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,5 +1,25 @@
1
+ 7.5.0
2
+
3
+ - 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)
4
+
5
+ - Add `R.unnest` - [Rambdax issue 89](https://github.com/selfrefactor/rambdax/issues/89)
6
+
7
+ - `R.uniq` is not using `R.equals` as Ramda does - [Issue #88](https://github.com/selfrefactor/rambdax/issues/88)
8
+
9
+ - Fix `R.path(['non','existing','path'], obj)` TS definition as 7.4.0 release caused TS errors - [Issue #668](https://github.com/selfrefactor/rambda/issues/668)
10
+
11
+ 7.4.0
12
+
13
+ - Synchronize with `@types/ramda` - `R.prop`, `R.path`, `R.pickAll`
14
+
15
+ - Remove `esm` Rollup output due to tree-shaking issues.
16
+
17
+ - Upgrade all dev dependencies.
18
+
1
19
  7.3.0
2
20
 
21
+ - Important - changing import declaration in `package.json` in order to fix tree-shaking issue - [Issue #647](https://github.com/selfrefactor/rambda/issues/647)
22
+
3
23
  - Add `R.modify`
4
24
 
5
25
  - Allow multiple inputs in Typescript versions of `R.anyPass` and `R.allPass` - [Issue #642](https://github.com/selfrefactor/rambda/issues/604)