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.
Files changed (60) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/README.md +2 -2
  3. package/dist/RA.node.js +226 -210
  4. package/dist/RA.node.min.js +1 -1
  5. package/dist/RA.web.js +226 -210
  6. package/dist/RA.web.min.js +1 -1
  7. package/dist/RA.web.standalone.js +5993 -5468
  8. package/dist/RA.web.standalone.min.js +1 -1
  9. package/es/flattenPath.js +2 -2
  10. package/es/included.js +27 -0
  11. package/es/index.js +9 -12
  12. package/es/internal/ponyfills/Promise.any.js +3 -3
  13. package/es/isBlank.js +32 -0
  14. package/es/isUinteger32.js +29 -0
  15. package/es/mergePath.js +2 -3
  16. package/es/omitIndexes.js +2 -2
  17. package/es/pickIndexes.js +2 -2
  18. package/es/sortByPaths.js +52 -0
  19. package/es/spreadPath.js +2 -2
  20. package/es/trimCharsEnd.js +2 -2
  21. package/es/trimCharsStart.js +2 -2
  22. package/lib/flattenPath.js +1 -1
  23. package/lib/included.js +33 -0
  24. package/lib/index.js +18 -21
  25. package/lib/internal/ponyfills/Promise.any.js +3 -3
  26. package/lib/isBlank.js +41 -0
  27. package/lib/isUinteger32.js +38 -0
  28. package/lib/mergePath.js +1 -5
  29. package/lib/omitIndexes.js +1 -1
  30. package/lib/pickIndexes.js +1 -1
  31. package/lib/sortByPaths.js +59 -0
  32. package/lib/spreadPath.js +1 -1
  33. package/lib/trimCharsEnd.js +2 -2
  34. package/lib/trimCharsStart.js +2 -2
  35. package/package.json +33 -49
  36. package/src/flattenPath.js +4 -2
  37. package/src/included.js +28 -0
  38. package/src/index.js +7 -10
  39. package/src/isBlank.js +33 -0
  40. package/src/isUinteger32.js +29 -0
  41. package/src/mergePath.js +2 -4
  42. package/src/omitIndexes.js +2 -2
  43. package/src/pickIndexes.js +2 -2
  44. package/src/sortByPaths.js +55 -0
  45. package/src/spreadPath.js +2 -2
  46. package/src/trimCharsEnd.js +2 -2
  47. package/src/trimCharsStart.js +2 -2
  48. package/types/index.d.ts +21 -34
  49. package/es/contained.js +0 -29
  50. package/es/hasPath.js +0 -38
  51. package/es/mergeRight.js +0 -26
  52. package/es/thenP.js +0 -28
  53. package/lib/contained.js +0 -35
  54. package/lib/hasPath.js +0 -47
  55. package/lib/mergeRight.js +0 -32
  56. package/lib/thenP.js +0 -34
  57. package/src/contained.js +0 -30
  58. package/src/hasPath.js +0 -40
  59. package/src/mergeRight.js +0 -27
  60. 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.19.0 <= 0.27.2
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/2.35.0),
140
+ [PREVIOUS](https://char0n.github.io/ramda-adjunct/3.1.0),
141
141
  [ALL VERSIONS](./VERSIONS.md)
142
142
 
143
143
  ## Wrote about us