Skip to content

Commit

Permalink
9.1.0 (#717)
Browse files Browse the repository at this point in the history
* [email protected]

* feat@start r.into

* chore@small

* chore@small

* chore@small

* chore@small

* chore@small

* chore@small

* chore@small

* chore@small

* chore@small

* chore@small

---------

Co-authored-by: Deyan Totev <[email protected]>
  • Loading branch information
selfrefactor and Deyan Totev authored Feb 9, 2024
1 parent 98ae0bc commit c4412e9
Show file tree
Hide file tree
Showing 42 changed files with 1,094 additions and 121 deletions.
1 change: 0 additions & 1 deletion .eggignore

This file was deleted.

58 changes: 49 additions & 9 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,25 +106,19 @@ One of the main issues with `Ramda` is the slow process of releasing new version

<details>
<summary>
Click to see the full list of 51 Ramda methods not implemented in Rambda and their status.
Click to see the full list of 43 Ramda methods not implemented in Rambda and their status.
</summary>

- insert
- insertAll
- into
- invert
- invertObj
- invoker
- isNotNil
- keysIn
- lift
- liftN
- lt
- lte
- mapAccum
- mapAccumRight
- memoizeWith
- mergeDeepLeft
- mergeDeepWith
- mergeDeepWithKey
- mergeWithKey
Expand All @@ -135,7 +129,6 @@ One of the main issues with `Ramda` is the slow process of releasing new version
- pair
- partialRight
- pathSatisfies
- pickBy
- pipeWith
- project
- promap
Expand All @@ -146,7 +139,6 @@ One of the main issues with `Ramda` is the slow process of releasing new version
- scan
- sequence
- splitWhenever
- swap
- symmetricDifferenceWith
- andThen
- toPairsIn
Expand Down Expand Up @@ -6985,6 +6977,14 @@ const result = R.innerJoin(predicate, list1, list2)

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#innerJoin)

### insert

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#insert)

### insertAll

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#insertAll)

### intersection

It loops through `listA` and `listB` and returns the intersection of the two according to `R.equals`.
Expand Down Expand Up @@ -7172,6 +7172,10 @@ test('happy', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#isNil)

### isNotNil

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#isNotNil)

### join

```typescript
Expand Down Expand Up @@ -8098,6 +8102,12 @@ test('get (set(set s v1) v2) === v2', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#lensProp)

### lt

<a title="redirect to Rambda Repl site" href="https://rambda.now.sh?const%20result%20%3D%20%5BR.lt(2%2C%201)%2C%20R.lt(2%2C%203)%5D%0A%2F%2F%20%3D%3E%20%5Bfalse%2C%20true%5D">Try this <strong>R.lt</strong> example in Rambda REPL</a>

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#lt)

### map

```typescript
Expand Down Expand Up @@ -8886,6 +8896,10 @@ describe('R.mergeAll', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#mergeAll)

### mergeDeepLeft

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#mergeDeepLeft)

### mergeDeepRight

```typescript
Expand Down Expand Up @@ -11891,6 +11905,10 @@ describe('R.paths', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#paths)

### pathSatisfies

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#pathSatisfies)

### pick

```typescript
Expand Down Expand Up @@ -12319,6 +12337,10 @@ describe('R.pickAll with string as props input', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#pickAll)

### pickBy

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#pickBy)

### pipe

It performs left-to-right function composition.
Expand Down Expand Up @@ -15270,6 +15292,10 @@ test('happy', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#sum)

### swap

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#swap)

### symmetricDifference

```typescript
Expand Down Expand Up @@ -18673,6 +18699,20 @@ describe('R.zipWith', () => {

## ❯ CHANGELOG

9.1.0

Add these methods

- insert
- insertAll
- lt
- lte
- isNotNil
- pickBy
- pathSatisfies
- swap
- mergeDeepLeft

9.0.1

- Fix bad TS typings, due to missing declaration - [Issue #716](https://github.com/selfrefactor/rambda/issues/716)
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
9.1.0

Add these methods

- insert
- insertAll
- lt
- lte
- isNotNil
- pickBy
- pathSatisfies
- swap
- mergeDeepLeft

9.0.1

- Fix bad TS typings, due to missing declaration - [Issue #716](https://github.com/selfrefactor/rambda/issues/716)
Expand Down
6 changes: 0 additions & 6 deletions ISSUE_TEMPLATE.md

This file was deleted.

58 changes: 49 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,25 +106,19 @@ One of the main issues with `Ramda` is the slow process of releasing new version

<details>
<summary>
Click to see the full list of 51 Ramda methods not implemented in Rambda and their status.
Click to see the full list of 43 Ramda methods not implemented in Rambda and their status.
</summary>

- insert
- insertAll
- into
- invert
- invertObj
- invoker
- isNotNil
- keysIn
- lift
- liftN
- lt
- lte
- mapAccum
- mapAccumRight
- memoizeWith
- mergeDeepLeft
- mergeDeepWith
- mergeDeepWithKey
- mergeWithKey
Expand All @@ -135,7 +129,6 @@ One of the main issues with `Ramda` is the slow process of releasing new version
- pair
- partialRight
- pathSatisfies
- pickBy
- pipeWith
- project
- promap
Expand All @@ -146,7 +139,6 @@ One of the main issues with `Ramda` is the slow process of releasing new version
- scan
- sequence
- splitWhenever
- swap
- symmetricDifferenceWith
- andThen
- toPairsIn
Expand Down Expand Up @@ -6531,6 +6523,14 @@ It returns a new list by applying a `predicate` function to all elements of `lis

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#innerJoin)

### insert

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#insert)

### insertAll

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#insertAll)

### intersection

It loops through `listA` and `listB` and returns the intersection of the two according to `R.equals`.
Expand Down Expand Up @@ -6700,6 +6700,10 @@ test('happy', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#isNil)

### isNotNil

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#isNotNil)

### join

```typescript
Expand Down Expand Up @@ -7542,6 +7546,12 @@ test('get (set(set s v1) v2) === v2', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#lensProp)

### lt

<a title="redirect to Rambda Repl site" href="https://rambda.now.sh?const%20result%20%3D%20%5BR.lt(2%2C%201)%2C%20R.lt(2%2C%203)%5D%0A%2F%2F%20%3D%3E%20%5Bfalse%2C%20true%5D">Try this <strong>R.lt</strong> example in Rambda REPL</a>

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#lt)

### map

```typescript
Expand Down Expand Up @@ -8267,6 +8277,10 @@ describe('R.mergeAll', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#mergeAll)

### mergeDeepLeft

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#mergeDeepLeft)

### mergeDeepRight

```typescript
Expand Down Expand Up @@ -11077,6 +11091,10 @@ describe('R.paths', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#paths)

### pathSatisfies

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#pathSatisfies)

### pick

```typescript
Expand Down Expand Up @@ -11447,6 +11465,10 @@ describe('R.pickAll with string as props input', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#pickAll)

### pickBy

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#pickBy)

### pipe

It performs left-to-right function composition.
Expand Down Expand Up @@ -14134,6 +14156,10 @@ test('happy', () => {

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#sum)

### swap

[![---------------](https://raw.githubusercontent.com/selfrefactor/rambda/master/files/separator.png)](#swap)

### symmetricDifference

```typescript
Expand Down Expand Up @@ -17250,6 +17276,20 @@ describe('R.zipWith', () => {

## ❯ CHANGELOG

9.1.0

Add these methods

- insert
- insertAll
- lt
- lte
- isNotNil
- pickBy
- pathSatisfies
- swap
- mergeDeepLeft

9.0.1

- Fix bad TS typings, due to missing declaration - [Issue #716](https://github.com/selfrefactor/rambda/issues/716)
Expand Down
Loading

0 comments on commit c4412e9

Please sign in to comment.