Skip to content

Commit

Permalink
16.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Sep 3, 2022
1 parent ac0db0d commit 3526c0a
Show file tree
Hide file tree
Showing 9 changed files with 2,701 additions and 2,675 deletions.
2 changes: 1 addition & 1 deletion dprint.json
Expand Up @@ -19,6 +19,6 @@
"plugins": [
"../dprint-plugin-typescript/target/wasm32-unknown-unknown/release/dprint_plugin_typescript.wasm",
"https://plugins.dprint.dev/json-0.7.2.wasm",
"https://plugins.dprint.dev/markdown-0.13.3.wasm"
"https://plugins.dprint.dev/markdown-0.14.0.wasm"
]
}
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -23,7 +23,7 @@
"homepage": "https://github.com/dsherret/ts-morph#readme",
"devDependencies": {
"@types/node": "16.11.7",
"dprint": "^0.29.1",
"dprint": "^0.31.1",
"lerna": "^5.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/bootstrap/package.json
@@ -1,6 +1,6 @@
{
"name": "@ts-morph/bootstrap",
"version": "0.16.0",
"version": "0.17.0",
"description": "API for getting quickly set up with the TypeScript Compiler API.",
"keywords": ["typescript", "compiler", "bootstrap"],
"main": "dist/ts-morph-bootstrap.js",
Expand All @@ -20,7 +20,7 @@
"rollup": "rollup -c"
},
"dependencies": {
"@ts-morph/common": "~0.16.0"
"@ts-morph/common": "~0.17.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
@@ -1,6 +1,6 @@
{
"name": "@ts-morph/common",
"version": "0.16.0",
"version": "0.17.0",
"description": "Common functionality for ts-morph packages.",
"main": "dist/ts-morph-common.js",
"author": "David Sherret",
Expand Down
19 changes: 19 additions & 0 deletions packages/ts-morph/CHANGELOG.md
Expand Up @@ -2,6 +2,25 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="16.0.0"></a>
# [16.0.0](https://github.com/dsherret/ts-morph/compare/15.1.0...16.0.0) (2022-09-03)


### Features

* add `Type#isNever()` ([ac0db0d](https://github.com/dsherret/ts-morph/commit/ac0db0d)), closes [#1303](https://github.com/dsherret/ts-morph/issues/1303)
* add `Type#isReadonlyArray()` and `Type#isArray()` also includes readonly arrays ([f1d5c43](https://github.com/dsherret/ts-morph/commit/f1d5c43)), closes [#1306](https://github.com/dsherret/ts-morph/issues/1306) [#1305](https://github.com/dsherret/ts-morph/issues/1305)
* upgrade to TS 4.8 ([#1316](https://github.com/dsherret/ts-morph/issues/1316)) ([8a87a1b](https://github.com/dsherret/ts-morph/commit/8a87a1b))


### BREAKING CHANGES

- Upgraded to TS 4.8
- Decorators are now modifiers due to TS 4.8
- `ts.createX` functions seem almost completely deprecated in TS 4.8, so make sure to update your code to use the `traversal.context.createX` functions instead
- `Type#isArray()` returns true for readonly arrays


<a name="15.1.0"></a>
# [15.1.0](https://github.com/dsherret/ts-morph/compare/15.0.0...15.1.0) (2022-06-03)

Expand Down
7 changes: 7 additions & 0 deletions packages/ts-morph/breaking-changes.md
Expand Up @@ -2,6 +2,13 @@

View [CHANGELOG.md](CHANGELOG.md) for more detail on releases. This file is only a high level overview of breaking changes.

## Version 16

- Upgraded to TS 4.8
- Decorators are now modifiers due to TS 4.8
- `ts.createX` functions seem almost completely deprecated in TS 4.8, so make sure to update your code to use the `traversal.context.createX` functions instead
- `Type#isArray()` returns true for readonly arrays

## Version 14

- Upgraded to TS 4.6
Expand Down

0 comments on commit 3526c0a

Please sign in to comment.