ramda-adjunct 2.36.0 → 3.2.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 +49 -0
- package/README.md +2 -2
- package/dist/RA.node.js +226 -210
- package/dist/RA.node.min.js +1 -1
- package/dist/RA.web.js +226 -210
- package/dist/RA.web.min.js +1 -1
- package/dist/RA.web.standalone.js +5993 -5468
- package/dist/RA.web.standalone.min.js +1 -1
- package/es/flattenPath.js +2 -2
- package/es/included.js +27 -0
- package/es/index.js +9 -12
- package/es/internal/ponyfills/Promise.any.js +3 -3
- package/es/isBlank.js +32 -0
- package/es/isUinteger32.js +29 -0
- package/es/mergePath.js +2 -3
- package/es/omitIndexes.js +2 -2
- package/es/pickIndexes.js +2 -2
- package/es/sortByPaths.js +52 -0
- package/es/spreadPath.js +2 -2
- package/es/trimCharsEnd.js +2 -2
- package/es/trimCharsStart.js +2 -2
- package/lib/flattenPath.js +1 -1
- package/lib/included.js +33 -0
- package/lib/index.js +18 -21
- package/lib/internal/ponyfills/Promise.any.js +3 -3
- package/lib/isBlank.js +41 -0
- package/lib/isUinteger32.js +38 -0
- package/lib/mergePath.js +1 -5
- package/lib/omitIndexes.js +1 -1
- package/lib/pickIndexes.js +1 -1
- package/lib/sortByPaths.js +59 -0
- package/lib/spreadPath.js +1 -1
- package/lib/trimCharsEnd.js +2 -2
- package/lib/trimCharsStart.js +2 -2
- package/package.json +33 -49
- package/src/flattenPath.js +4 -2
- package/src/included.js +28 -0
- package/src/index.js +7 -10
- package/src/isBlank.js +33 -0
- package/src/isUinteger32.js +29 -0
- package/src/mergePath.js +2 -4
- package/src/omitIndexes.js +2 -2
- package/src/pickIndexes.js +2 -2
- package/src/sortByPaths.js +55 -0
- package/src/spreadPath.js +2 -2
- package/src/trimCharsEnd.js +2 -2
- package/src/trimCharsStart.js +2 -2
- package/types/index.d.ts +21 -34
- package/es/contained.js +0 -29
- package/es/hasPath.js +0 -38
- package/es/mergeRight.js +0 -26
- package/es/thenP.js +0 -28
- package/lib/contained.js +0 -35
- package/lib/hasPath.js +0 -47
- package/lib/mergeRight.js +0 -32
- package/lib/thenP.js +0 -34
- package/src/contained.js +0 -30
- package/src/hasPath.js +0 -40
- package/src/mergeRight.js +0 -27
- package/src/thenP.js +0 -29
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,52 @@
|
|
|
1
|
+
# [3.2.0](https://github.com/char0n/ramda-adjunct/compare/v3.1.0...v3.2.0) (2022-06-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **type:** add isUinteger32 ([#2257](https://github.com/char0n/ramda-adjunct/issues/2257)) ([965147e](https://github.com/char0n/ramda-adjunct/commit/965147e836df98fe0fa83851d41c1268503c73e4)), closes [#1281](https://github.com/char0n/ramda-adjunct/issues/1281)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# [3.1.0](https://github.com/char0n/ramda-adjunct/compare/v3.0.0...v3.1.0) (2022-04-24)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **isBlank:** implemented isBlank function ([#2141](https://github.com/char0n/ramda-adjunct/issues/2141)) ([e8cf553](https://github.com/char0n/ramda-adjunct/commit/e8cf553d9ef4daa950a3358d18241356a7089fff))
|
|
16
|
+
* **list:** add sortByPaths ([#2104](https://github.com/char0n/ramda-adjunct/issues/2104)) ([3d59189](https://github.com/char0n/ramda-adjunct/commit/3d591897d1c564a3c18cacc569c1d29cf351315c)), closes [#1240](https://github.com/char0n/ramda-adjunct/issues/1240)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# [3.0.0](https://github.com/char0n/ramda-adjunct/compare/v2.36.0...v3.0.0) (2022-01-17)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Breaking changes
|
|
24
|
+
|
|
25
|
+
Version 3.0.0 adds support for [ramda@0.28.0](https://github.com/ramda/ramda/releases/tag/v0.28.0) which removed bunch of function from its API.
|
|
26
|
+
This means that ramda-adjunct needed to react with breaking change release which currently
|
|
27
|
+
supports only ramda@0.28.0.
|
|
28
|
+
|
|
29
|
+
Some functions in ramda-adjunct API were deprecated for a long time, and we decided to remove them in 3.0.0 release:
|
|
30
|
+
|
|
31
|
+
- **then, thenP** - replaceable by [R.andThen](https://ramdajs.com/docs/#andThen)
|
|
32
|
+
- **hasPath** - replaceable by [R.hasPath](https://ramdajs.com/docs/#hasPath)
|
|
33
|
+
- **mergeRight, mergeLeft, resetToDefaults**: - replaceable by [R.mergeLeft](https://ramdajs.com/docs/#mergeLeft)
|
|
34
|
+
- **contained** - replaceable by [RA.included](https://char0n.github.io/ramda-adjunct/3.0.0/RA.html#.included)
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* **function:** remove then ([4e5516b](https://github.com/char0n/ramda-adjunct/commit/4e5516b7e5bf8c41f3979ae604b3e331b406ea25)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
|
|
39
|
+
* **object:** remove hasPath ([8cc0c8f](https://github.com/char0n/ramda-adjunct/commit/8cc0c8f7859618b5ef3bc00816ed05622841a871)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
|
|
40
|
+
* **object:** remove mergeRight ([06a3338](https://github.com/char0n/ramda-adjunct/commit/06a3338923072c6a4ae3e5c62bc109793d76537b)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Features
|
|
44
|
+
|
|
45
|
+
* add support for ramda@0.28.0 ([20acd56](https://github.com/char0n/ramda-adjunct/commit/20acd562a24759b42ec4f8ae2f3f90af95de25b0)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
|
|
46
|
+
* **list:** add included ([4bfafe0](https://github.com/char0n/ramda-adjunct/commit/4bfafe0593ee2d34b51eb8b5768f8618bee17f5a)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
1
50
|
# [2.36.0](https://github.com/char0n/ramda-adjunct/compare/v2.35.0...v2.36.0) (2022-01-17)
|
|
2
51
|
|
|
3
52
|
|
package/README.md
CHANGED
|
@@ -123,7 +123,7 @@ _Do you want to find out more about why this library exists ? Read this [**artic
|
|
|
123
123
|
|
|
124
124
|
## Requirements
|
|
125
125
|
|
|
126
|
-
- ramda >= 0.
|
|
126
|
+
- ramda >= 0.28.0
|
|
127
127
|
- node >= 0.10.48
|
|
128
128
|
|
|
129
129
|
Ramda Adjunct is being automatically tested against all LTS and Current Node.js versions.
|
|
@@ -137,7 +137,7 @@ It is also possible that our ES5 distributions run on node versions older than 0
|
|
|
137
137
|
## API Documentation
|
|
138
138
|
|
|
139
139
|
[LATEST](https://char0n.github.io/ramda-adjunct),
|
|
140
|
-
[PREVIOUS](https://char0n.github.io/ramda-adjunct/
|
|
140
|
+
[PREVIOUS](https://char0n.github.io/ramda-adjunct/3.1.0),
|
|
141
141
|
[ALL VERSIONS](./VERSIONS.md)
|
|
142
142
|
|
|
143
143
|
## Wrote about us
|