Skip to content

Commit

Permalink
feat(azure-func): upgrade @azure/functions to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ziacik committed May 12, 2024
1 parent 19dbfff commit 6e4968a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/azure-func/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Upgraded nx to 19.0.2.
- Upgraded @azure/functions to 4.4.0.

## [2.1.0] - 2024-03-23

Expand Down
9 changes: 9 additions & 0 deletions packages/azure-func/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@
"alwaysAddToPackageJson": false
}
}
},
"3.0.0": {
"version": "3.0.0",
"packages": {
"@azure/functions": {
"version": "^4.4.0",
"alwaysAddToPackageJson": false
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('application generator', () => {
const packageJson = readJson(tree, 'package.json');
expect(packageJson).toMatchObject({
dependencies: {
'@azure/functions': '^4.3.0',
'@azure/functions': '^4.4.0',
},
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function addProjectDependencies(tree: Tree): GeneratorCallback {
return addDependenciesToPackageJson(
tree,
{
'@azure/functions': '^4.3.0',
'@azure/functions': '^4.4.0',
},
{}
);
Expand Down

0 comments on commit 6e4968a

Please sign in to comment.