Skip to content

Commit

Permalink
Chore: Release 10.4.1 (#3384)
Browse files Browse the repository at this point in the history
* Chore: September dependabot upgrades (#3324)

* Fix: Inputting beta version results in getting beta endpoint suggestions (#3289)

* chore: bootstrap release please to the dev branch (#3340)

* fix: clone the resources and re-assign children to found values (#3337)

* chore: add starting commit where changelog commits gathering will stop (#3345)

* Fix: Dependency security patch updates  (#3355)

* chore: migrate releases to governed templates (#3377)

* Fix: Update playwright tests (#3381)

* chore: Remove reference to a deprecated rule (#3380)

* chore(dev): release 10.4.1 (#3376)
  • Loading branch information
ElinorW authored Oct 7, 2024
1 parent c88cafa commit b5e08be
Show file tree
Hide file tree
Showing 17 changed files with 696 additions and 550 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ module.exports = {
accessibility: 'explicit'
}
],
'@typescript-eslint/indent': ['error', 2],
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/member-delimiter-style': [
'off',
Expand Down
3 changes: 3 additions & 0 deletions .github/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
manifest: true
primaryBranch: dev
handleGHRelease: true
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "10.4.1"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [10.4.1](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v10.4.0...v10.4.1) (2024-10-07)


### Bug Fixes

* Update playwright tests ([#3381](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3381)) ([fea4886](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/fea4886bc9b7dbd026cfd908d589842614b0ec13))
* clone the resources and re-assign children to found values ([#3337](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3337)) ([974c3bc](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/974c3bc25e8f94b7995b8e8a3827cca0e8c1b475))
* Dependency security patch updates ([#3355](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3355)) ([d87b87a](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/d87b87aa20375a482e705ab501fee2fef2766995))
* Inputting beta version results in getting beta endpoint suggestions ([#3289](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3289)) ([0ba6683](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/0ba66837771b92bd0155262befa465fa3cb81ca1))


## [4.7.0](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v4.2.0...v4.7.0) (2021-05-31)


Expand Down
99 changes: 97 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ extends:
- ES365AIMigrationTooling

stages:
- stage: stage
- stage: BuildTestAndPublish
jobs:
- job: One
displayName: "Build and test validation"
Expand Down Expand Up @@ -178,7 +178,6 @@ extends:
- job: Three
displayName: "Publish artifacts"
dependsOn: One
condition: and(succeeded(), or(eq(variables['isMaster'], 'true'), eq(variables['isDev'], 'true')))
steps:
- task: NodeTool@0
inputs:
Expand Down Expand Up @@ -287,3 +286,99 @@ extends:
directory: 'microsoft-graph-explorer-v4'
repoName: ReleasePipelines
dependsOn: ['Three']

- stage: DeployStaging
condition: and(contains(variables['build.sourceBranch'], 'refs/heads/dev'), succeeded())
dependsOn: BuildTestAndPublish
jobs:
- deployment: staging
templateContext:
type: releaseJob
isProduction: false
inputs:
- input: pipelineArtifact
artifactName: drop
targetPath: '$(Build.ArtifactStagingDirectory)/drop'
environment: graphexplorer-staging
strategy:
runOnce:
deploy:
steps:
- task: AzureWebApp@1
displayName: 'Deploy to graphTryIt-staging copy'
inputs:
azureSubscription: 'Federated GE Managed Identity Connection'
appType: webApp
appName: 'graphTryIt-staging'
package: '$(Build.ArtifactStagingDirectory)/drop'

- task: AzureFileCopy@6
displayName: 'Deploy to dev storage -tst'
inputs:
SourcePath: '$(Build.ArtifactStagingDirectory)/drop'
azureSubscription: 'Federated GE Managed Identity Connection'
Destination: AzureBlob
storage: graphexplorerstorage
ContainerName: deployments
BlobPrefix: 'vendor/bower_components/explorer-v2/build'

- stage: DeployProduction
condition: and(contains(variables['build.sourceBranch'], 'refs/heads/master'), succeeded())
dependsOn: BuildTestAndPublish
jobs:
- deployment: production
templateContext:
type: releaseJob
isProduction: true
inputs:
- input: pipelineArtifact
artifactName: drop
targetPath: '$(Build.ArtifactStagingDirectory)/drop'
environment: graphexplorer-production
strategy:
runOnce:
deploy:
steps:
- task: AzureWebApp@1
displayName: 'Azure Web App Deploy: graphTryIt'
inputs:
azureSubscription: 'Federated GE Managed Identity Connection'
appType: webApp
appName: graphTryIt
package: '$(Build.ArtifactStagingDirectory)/drop'

- task: AzureFileCopy@6
displayName: 'Deploy to portal - staging'
inputs:
SourcePath: '$(Build.ArtifactStagingDirectory)/drop/*'
azureSubscription: 'Federated GE-Portals Managed Identity Connection'
Destination: AzureBlob
storage: graphstagingblobstorage
ContainerName: staging
BlobPrefix: 'vendor/bower_components/explorer$(Build.BuildNumber)/build'

- task: AzureFileCopy@6
displayName: 'Deploy to portal - production'
inputs:
SourcePath: '$(Build.ArtifactStagingDirectory)/drop/*'
azureSubscription: 'Federated GE-Portals Managed Identity Connection'
Destination: AzureBlob
storage: graphprodblobstorage
ContainerName: prod
BlobPrefix: 'vendor/bower_components/explorer$(Build.BuildNumber)/build'

- task: ArchiveFiles@2
displayName: 'Archive built assets'
inputs:
rootFolderOrFile: '$(Build.ArtifactStagingDirectory)/drop/'
archiveFile: '$(Build.ArtifactStagingDirectory)/graph-explorer-$(Build.BuildNumber)-$(Build.BuildId).zip'

- task: GitHubRelease@1
displayName: 'GitHub release (v$(Build.BuildNumber)-$(Build.BuildId))'
inputs:
gitHubConnection: 'GitHub - thewahome'
action: edit
tag: 'v$(Build.BuildNumber)'
title: 'Graph Explorer - v$(Build.BuildNumber)'
assets: '$(Build.ArtifactStagingDirectory)/*.zip'
changeLogType: issueBased
Loading

0 comments on commit b5e08be

Please sign in to comment.