-
Notifications
You must be signed in to change notification settings - Fork 22
SDK Binding GA Changes #371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
529320c
ea74d51
1e1c720
d4a4e0f
eafba49
2a12029
ecc1efb
0a1789a
df71faf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,7 +28,7 @@ | |
| "README.md" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18.0" | ||
| "node": ">=20.0" | ||
| }, | ||
| "scripts": { | ||
| "build": "webpack --mode development", | ||
|
|
@@ -41,6 +41,7 @@ | |
| "watch": "webpack --watch --mode development" | ||
| }, | ||
| "dependencies": { | ||
| "@azure/functions-extensions-base": "0.2.0-preview", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should release a non-preview version of the base extension for GA There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good Catch. I will create a PR there. |
||
| "cookie": "^0.7.0", | ||
| "long": "^4.0.0", | ||
| "undici": "^5.29.0" | ||
|
|
@@ -55,6 +56,7 @@ | |
| "@types/mocha": "^9.1.1", | ||
| "@types/node": "^18.0.0", | ||
| "@types/semver": "^7.3.9", | ||
| "@types/sinon": "^17.0.4", | ||
| "@typescript-eslint/eslint-plugin": "^5.12.1", | ||
| "@typescript-eslint/parser": "^5.12.1", | ||
| "chai": "^4.2.0", | ||
|
|
@@ -65,8 +67,8 @@ | |
| "eslint-plugin-header": "^3.1.1", | ||
| "eslint-plugin-import": "^2.29.0", | ||
| "eslint-plugin-prettier": "^4.0.0", | ||
| "eslint-webpack-plugin": "^3.2.0", | ||
| "eslint-plugin-simple-import-sort": "^10.0.0", | ||
| "eslint-webpack-plugin": "^3.2.0", | ||
| "fork-ts-checker-webpack-plugin": "^7.2.13", | ||
| "fs-extra": "^10.0.1", | ||
| "globby": "^11.0.0", | ||
|
|
@@ -76,9 +78,10 @@ | |
| "mocha-multi-reporters": "^1.5.1", | ||
| "prettier": "^2.4.1", | ||
| "semver": "^7.3.5", | ||
| "sinon": "^20.0.0", | ||
| "ts-loader": "^9.3.1", | ||
| "ts-node": "^3.3.0", | ||
| "typescript": "^4.5.5", | ||
| "typescript": "^4.9.5", | ||
| "typescript4": "npm:typescript@~4.0.0", | ||
| "webpack": "^5.74.0", | ||
| "webpack-cli": "^4.10.0" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This means that only Node 20 apps will be able to download the latest library version, right? We could also look at bumping the
undicimajor version now (or removing that dependency all together)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets discuss this in Scrum today, should we bump the version?