Skip to content

Commit

Permalink
Merge pull request #233 from fingerprintjs/rc
Browse files Browse the repository at this point in the history
Release v1.5.0-rc.1
  • Loading branch information
TheUnderScorer authored Jul 22, 2024
2 parents ecbe5a7 + df4251b commit 3d3858b
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyze-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
name: Generate docs and coverage report
uses: fingerprintjs/dx-team-toolkit/.github/workflows/analyze-commits.yml@v1
with:
nodeVersion: 18
nodeVersion: 20
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
name: Build project and run CI checks
uses: fingerprintjs/dx-team-toolkit/.github/workflows/build-typescript-project.yml@v1
with:
nodeVersion: 18
nodeVersion: 20
2 changes: 1 addition & 1 deletion .github/workflows/coverage-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
pull-requests: write
uses: fingerprintjs/dx-team-toolkit/.github/workflows/coverage-diff.yml@v1
with:
nodeVersion: 16
nodeVersion: 20
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: 'Build project, run CI checks and publish new release'
uses: fingerprintjs/dx-team-toolkit/.github/workflows/release-typescript-project.yml@v1
with:
nodeVersion: 18
nodeVersion: 20
appId: ${{ vars.APP_ID }}
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.5.0-rc.1](https://github.com/fingerprintjs/fingerprint-pro-azure-integration/compare/v1.4.1...v1.5.0-rc.1) (2024-07-22)


### Features

* use node 20 in deployment template ([fa9d8af](https://github.com/fingerprintjs/fingerprint-pro-azure-integration/commit/fa9d8afe35f78465792bd27c1b1dd7f236d44cbd))

## [1.4.1](https://github.com/fingerprintjs/fingerprint-pro-azure-integration/compare/v1.4.0...v1.4.1) (2024-06-25)


Expand Down
10 changes: 5 additions & 5 deletions azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
{
"type": "Microsoft.Authorization/roleAssignments",
"apiVersion": "2022-04-01",
"name": "[variables('roleAssignmentName')]",
"name": "[variables('roleAssignmentName')]",
"properties": {
"roleDefinitionId": "[resourceId('Microsoft.Authorization/roleDefinitions', variables('roleDefinitionName'))]",
"principalId": "[reference(resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', variables('userAssignedIdentityName')), '2023-01-31').principalId]",
Expand All @@ -173,7 +173,7 @@
"properties": {
"accessTier": "Hot"
}
},
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices/containers",
"apiVersion": "2022-05-01",
Expand Down Expand Up @@ -263,7 +263,7 @@
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]",
"reserved": true,
"siteConfig": {
"linuxFxVersion": "Node|18",
"linuxFxVersion": "Node|20",
"minimumElasticInstanceCount": 1,
"numberOfWorkers": 2,
"appSettings": [
Expand All @@ -290,14 +290,14 @@
{
"name": "WEBSITE_CONTENTSHARE",
"value": "[toLower(variables('functionAppName'))]"
},
},
{
"name": "USER_ASSIGNED_ENTITY_CLIENT_ID",
"value": "[reference(resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', variables('userAssignedIdentityName')), '2023-01-31').clientId]"
},
{
"name": "WEBSITE_RUN_FROM_PACKAGE_BLOB_MI_RESOURCE_ID",
"value": "[format('{0}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{1}', resourceGroup().id, variables('userAssignedIdentityName'))]"
"value": "[format('{0}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{1}', resourceGroup().id, variables('userAssignedIdentityName'))]"
},
{
"name": "WEBSITE_RUN_FROM_PACKAGE",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fingerprintjs/fingerprint-pro-azure-integration",
"version": "1.4.1",
"version": "1.5.0-rc.1",
"license": "MIT",
"sideEffects": false,
"private": true,
Expand Down

0 comments on commit 3d3858b

Please sign in to comment.