ramda-adjunct 5.0.1 → 6.0.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 +15 -1
- package/README.md +2 -2
- package/dist/RA.node.js +5627 -5723
- package/dist/RA.node.min.js +1 -1
- package/dist/RA.web.js +5634 -5730
- package/dist/RA.web.min.js +1 -1
- package/dist/RA.web.standalone.js +11774 -11534
- package/dist/RA.web.standalone.min.js +1 -1
- package/es/async.js +4 -4
- package/es/copyKeys.js +2 -3
- package/es/index.js +0 -1
- package/es/internal/ap.js +1 -1
- package/es/internal/ponyfills/Math.trunc.js +0 -2
- package/es/internal/ponyfills/Number.isFinite.js +0 -2
- package/es/internal/ponyfills/Number.isNaN.js +0 -2
- package/es/internal/ponyfills/Promise.any.js +1 -1
- package/es/internal/ponyfills/String.padEnd.js +0 -1
- package/es/internal/ponyfills/String.padStart.js +0 -1
- package/es/internal/ponyfills/String.repeat.js +1 -1
- package/es/isArrayLike.js +1 -2
- package/es/isMap.js +3 -3
- package/es/isNotAsyncFunction.js +1 -2
- package/es/isNotFunction.js +1 -2
- package/es/isNotGeneratorFunction.js +1 -2
- package/es/isNotObj.js +1 -2
- package/es/isNotObjLike.js +1 -2
- package/es/isNotPlainObj.js +1 -2
- package/es/isObj.js +1 -2
- package/es/isObjLike.js +1 -2
- package/es/isPlainObj.js +1 -2
- package/es/isSentinelValue.js +1 -1
- package/es/isValidDate.js +1 -2
- package/es/lensTraverse.js +1 -3
- package/es/mergeProp.js +2 -2
- package/es/nand.js +1 -2
- package/es/neither.js +1 -2
- package/es/nor.js +1 -2
- package/es/notBoth.js +1 -2
- package/es/omitBy.js +1 -2
- package/es/pathNotEq.js +1 -2
- package/es/reduceP.js +0 -1
- package/es/reduceRightP.js +0 -1
- package/es/renameKey.js +1 -2
- package/es/resolveP.js +1 -2
- package/es/seq.js +0 -2
- package/es/sortByProps.js +1 -1
- package/es/stubUndefined.js +1 -2
- package/es/toInteger32.js +1 -1
- package/es/toUinteger32.js +0 -1
- package/lib/anyP.js +1 -2
- package/lib/async.js +4 -4
- package/lib/copyKeys.js +2 -4
- package/lib/fantasy-land/Identity.js +1 -2
- package/lib/fantasy-land/traits.js +1 -2
- package/lib/index.js +2 -4
- package/lib/internal/ap.js +2 -3
- package/lib/internal/ponyfills/Math.trunc.js +0 -2
- package/lib/internal/ponyfills/Number.isFinite.js +0 -1
- package/lib/internal/ponyfills/Number.isNaN.js +0 -1
- package/lib/internal/ponyfills/Promise.any.js +1 -1
- package/lib/internal/ponyfills/String.padEnd.js +0 -1
- package/lib/internal/ponyfills/String.padStart.js +0 -1
- package/lib/internal/ponyfills/String.repeat.js +1 -1
- package/lib/isArrayLike.js +1 -2
- package/lib/isMap.js +3 -3
- package/lib/isNotAsyncFunction.js +1 -2
- package/lib/isNotFunction.js +1 -2
- package/lib/isNotGeneratorFunction.js +1 -2
- package/lib/isNotObj.js +1 -2
- package/lib/isNotObjLike.js +1 -2
- package/lib/isNotPlainObj.js +1 -2
- package/lib/isObj.js +1 -2
- package/lib/isObjLike.js +1 -2
- package/lib/isPlainObj.js +1 -2
- package/lib/isSentinelValue.js +1 -1
- package/lib/isValidDate.js +1 -2
- package/lib/lensTraverse.js +1 -2
- package/lib/mergeProp.js +2 -2
- package/lib/nand.js +1 -1
- package/lib/neither.js +1 -2
- package/lib/nor.js +1 -1
- package/lib/notBoth.js +1 -2
- package/lib/omitBy.js +1 -2
- package/lib/pathNotEq.js +1 -2
- package/lib/reduceP.js +0 -1
- package/lib/reduceRightP.js +0 -1
- package/lib/renameKey.js +1 -3
- package/lib/resolveP.js +1 -2
- package/lib/seq.js +0 -2
- package/lib/sortByProps.js +1 -1
- package/lib/stubUndefined.js +1 -1
- package/lib/toInteger32.js +1 -1
- package/lib/toUinteger32.js +0 -1
- package/package.json +63 -86
- package/types/index.d.ts +12 -26
- package/es/renameKeys.js +0 -39
- package/lib/renameKeys.js +0 -44
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
|
|
1
|
+
## 6.0.0 (2025-12-13)
|
|
2
|
+
|
|
3
|
+
* feat: add support for ramda@0.32.0 (#3357) ([614ded2](https://github.com/char0n/ramda-adjunct/commit/614ded2)), closes [#3357](https://github.com/char0n/ramda-adjunct/issues/3357)
|
|
4
|
+
* fix(types): fix types for ramda 0.29.0 breaking changes (#3100) ([36f332f](https://github.com/char0n/ramda-adjunct/commit/36f332f)), closes [#3100](https://github.com/char0n/ramda-adjunct/issues/3100)
|
|
5
|
+
|
|
6
|
+
### BREAKING CHANGE
|
|
7
|
+
|
|
8
|
+
* renameKeys was removed as it's now part of ramda@0.32.0
|
|
9
|
+
|
|
10
|
+
## 5.1.0 (2024-08-10)
|
|
11
|
+
|
|
12
|
+
* fix(types): remove isNotEmpty type declaration (#3072) ([3de6d30](https://github.com/char0n/ramda-adjunct/commit/3de6d30)), closes [#3072](https://github.com/char0n/ramda-adjunct/issues/3072) [#2983](https://github.com/char0n/ramda-adjunct/issues/2983) [#3071](https://github.com/char0n/ramda-adjunct/issues/3071)
|
|
13
|
+
* feat: add support for ramda@0.30.1 (#3020) ([de94706](https://github.com/char0n/ramda-adjunct/commit/de94706)), closes [#3020](https://github.com/char0n/ramda-adjunct/issues/3020)
|
|
14
|
+
|
|
15
|
+
# [5.0.1](https://github.com/char0n/ramda-adjunct/compare/v5.0.0...v5.0.1) (2024-06-02)
|
|
2
16
|
|
|
3
17
|
### Bug Fixes
|
|
4
18
|
|
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.32.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/5.
|
|
140
|
+
[PREVIOUS](https://char0n.github.io/ramda-adjunct/5.1.0),
|
|
141
141
|
[ALL VERSIONS](./VERSIONS.md)
|
|
142
142
|
|
|
143
143
|
## Wrote about us
|