Skip to content

Commit

Permalink
feat(azure-func): upgrade @azure/functions to 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ziacik committed Jun 25, 2024
1 parent 92e9745 commit 1661d65
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 @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [3.1.0] - 2024-06-24

- Upgraded nx to 19.3.1.
- Upgraded @azure/functions to 4.5.0.

## [3.0.0] - 2024-05-12

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 @@ -44,6 +44,15 @@
"alwaysAddToPackageJson": false
}
}
},
"3.1.0": {
"version": "3.1.0",
"packages": {
"@azure/functions": {
"version": "^4.5.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.4.0',
'@azure/functions': '^4.5.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.4.0',
'@azure/functions': '^4.5.0',
},
{}
);
Expand Down

0 comments on commit 1661d65

Please sign in to comment.