Skip to content

Commit

Permalink
chore(release): 1.1.7 [skip ci]
Browse files Browse the repository at this point in the history
## [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))
  • Loading branch information
semantic-release-bot committed Nov 22, 2021
1 parent 696a1b2 commit d0833d8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file. Dates are displayed in UTC.

## [1.1.7](https://github.com/RebeccaStevens/deepmerge-ts/compare/v1.1.6...v1.1.7) (2021-11-22)


### Bug Fixes

* 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))

## [1.1.6](https://github.com/RebeccaStevens/deepmerge-ts/compare/v1.1.5...v1.1.6) (2021-11-22)


Expand Down
7 changes: 7 additions & 0 deletions deno-dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file. Dates are displayed in UTC.

## [1.1.6](https://github.com/RebeccaStevens/deepmerge-ts/compare/v1.1.5...v1.1.6) (2021-11-22)


### Performance Improvements

* 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))

## [1.1.5](https://github.com/RebeccaStevens/deepmerge-ts/compare/v1.1.4...v1.1.5) (2021-10-18)


Expand Down
3 changes: 1 addition & 2 deletions deno-dist/types/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import type {
import type {
FlatternAlias,
FilterOutNever,
IsNever,
OptionalKeysOf,
RequiredKeysOf,
UnionMapKeys,
Expand Down Expand Up @@ -134,7 +133,7 @@ type DeepMergeArraysDefaultHKTHelper<
? Head extends ReadonlyArray<unknown>
? Rest extends readonly [
ReadonlyArray<unknown>,
...ReadonlyArray<unknown[]>
...ReadonlyArray<ReadonlyArray<unknown>>
]
? DeepMergeArraysDefaultHKTHelper<Rest, MF, [...Acc, ...Head]>
: [...Acc, ...Head]
Expand Down

0 comments on commit d0833d8

Please sign in to comment.