Skip to content

Commit d0833d8

Browse files
chore(release): 1.1.7 [skip ci]
## [1.1.7](v1.1.6...v1.1.7) (2021-11-22) ### Bug Fixes * incorrect resulting type when merging 3+ readonly tuples ([#20](#20)) ([696a1b2](696a1b2))
1 parent 696a1b2 commit d0833d8

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
33

4+
## [1.1.7](https://github.com/RebeccaStevens/deepmerge-ts/compare/v1.1.6...v1.1.7) (2021-11-22)
5+
6+
7+
### Bug Fixes
8+
9+
* incorrect resulting type when merging 3+ readonly tuples ([#20](https://github.com/RebeccaStevens/deepmerge-ts/issues/20)) ([696a1b2](https://github.com/RebeccaStevens/deepmerge-ts/commit/696a1b21ce225e11e38ee9ef3b92a28cf3ed6a4c))
10+
411
## [1.1.6](https://github.com/RebeccaStevens/deepmerge-ts/compare/v1.1.5...v1.1.6) (2021-11-22)
512

613

deno-dist/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
33

4+
## [1.1.6](https://github.com/RebeccaStevens/deepmerge-ts/compare/v1.1.5...v1.1.6) (2021-11-22)
5+
6+
7+
### Performance Improvements
8+
9+
* convert recursive types to tail-recursive versions ([#15](https://github.com/RebeccaStevens/deepmerge-ts/issues/15)) ([4401ac2](https://github.com/RebeccaStevens/deepmerge-ts/commit/4401ac2d1651093ab855d3d4bdf6c9628c0767ab))
10+
411
## [1.1.5](https://github.com/RebeccaStevens/deepmerge-ts/compare/v1.1.4...v1.1.5) (2021-10-18)
512

613

deno-dist/types/defaults.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import type {
77
import type {
88
FlatternAlias,
99
FilterOutNever,
10-
IsNever,
1110
OptionalKeysOf,
1211
RequiredKeysOf,
1312
UnionMapKeys,
@@ -134,7 +133,7 @@ type DeepMergeArraysDefaultHKTHelper<
134133
? Head extends ReadonlyArray<unknown>
135134
? Rest extends readonly [
136135
ReadonlyArray<unknown>,
137-
...ReadonlyArray<unknown[]>
136+
...ReadonlyArray<ReadonlyArray<unknown>>
138137
]
139138
? DeepMergeArraysDefaultHKTHelper<Rest, MF, [...Acc, ...Head]>
140139
: [...Acc, ...Head]

0 commit comments

Comments
 (0)