Skip to content

Commit 688517d

Browse files
authored
Update CHANGELOG.md
1 parent 8655fe1 commit 688517d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 0.26.0
4+
5+
- Added support for [default exports and export equals statements](https://github.com/Microsoft/TypeScript/issues/7185#issuecomment-421632656).
6+
- Added support for [object spread expressions](https://mariusschulz.com/blog/object-rest-and-spread-in-typescript).
7+
- Added support for most common [destructuring assignments](https://basarat.gitbooks.io/typescript/content/docs/destructuring.html).
8+
- Added support for omitted declarations in destructuring tuples. (i.e. `const [a,,c] = foo();`)
9+
10+
- `@noSelf` now only applies to members of the namespace with the directive, in case of namespace merging.
11+
- Fixed issue with isNumerType causing enum members as array indices not to recieve the `+1`.
12+
- Fixed string.indexOf failing in case the search string was a Lua string pattern.
13+
- Fixed some crashes from recursive type constraints.
14+
15+
- Some simplification to the printing of expression statements.
16+
- Added new testing util methods to improve the testing process.
17+
318
## 0.25.0
419

520
- Added support for named function assignments, i.e. `const myFunc = function x(n) { ...; return x(n - 1); }`

0 commit comments

Comments
 (0)