Skip to content

Commit a94d4f8

Browse files
committed
version 2.16.5
1 parent 693220a commit a94d4f8

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.eslintrc.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@
2727
"import/no-duplicates": "error",
2828
"import/no-unresolved": "off",
2929
"import/order": "off",
30-
"simple-import-sort/imports": "error"
30+
"simple-import-sort/imports": "error",
31+
"no-restricted-syntax": [
32+
"error",
33+
{
34+
"selector": "CallExpression[callee.property.name='push'] > SpreadElement.arguments",
35+
"message": "Do not use spread arguments in Array.push"
36+
}
37+
]
3138
}
3239
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
**Note**: A feature tagged as Experimental is in a
1717
high state of flux, you're at risk of it changing without notice.
1818

19+
# 2.16.5
20+
21+
**Polish**
22+
23+
Resolved a RangeError where the maximum call stack size was exceeded when invoking `chainWithIndex`, #1931
24+
1925
# 2.16.4
2026

2127
**Polish**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fp-ts",
3-
"version": "2.16.4",
3+
"version": "2.16.5",
44
"description": "Functional programming in TypeScript",
55
"main": "./lib/index.js",
66
"module": "./es6/index.js",

0 commit comments

Comments
 (0)