Skip to content

Commit

Permalink
[tsp-client] Upgrade minimum node versions for import.meta.resolve() (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeharder authored Aug 1, 2024
1 parent 0ae9770 commit e3c82e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions tools/tsp-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release

## Unreleased - 0.10.0

- Increase minimum node version to "^18.19.0 || >=20.6.0", to ensure API import.meta.resolve() is available. (#8765)

## 2024-07-23 - 0.9.4

- Fixed issue where one additional directory entry is treated as a string instead of an array. (#8551)
Expand Down
4 changes: 2 additions & 2 deletions tools/tsp-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure-tools/typespec-client-generator-cli",
"version": "0.9.4",
"version": "0.10.0",
"description": "A tool to generate Azure SDKs from TypeSpec",
"main": "dist/index.js",
"homepage": "https://github.com/Azure/azure-sdk-tools/tree/main/tools/tsp-client#readme",
Expand All @@ -24,7 +24,7 @@
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
"node": "^18.19.0 || >=20.6.0"
},
"bin": {
"tsp-client": "cmd/tsp-client.js"
Expand Down

0 comments on commit e3c82e1

Please sign in to comment.