Skip to content

Commit b5e08be

Browse files
authored
Chore: Release 10.4.1 (#3384)
* 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)
1 parent c88cafa commit b5e08be

File tree

17 files changed

+696
-550
lines changed

17 files changed

+696
-550
lines changed

.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ module.exports = {
3333
accessibility: 'explicit'
3434
}
3535
],
36-
'@typescript-eslint/indent': ['error', 2],
3736
'@typescript-eslint/interface-name-prefix': 'off',
3837
'@typescript-eslint/member-delimiter-style': [
3938
'off',

.github/release-please.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
manifest: true
2+
primaryBranch: dev
3+
handleGHRelease: true

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "10.4.1"
3+
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
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.
44

5+
## [10.4.1](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v10.4.0...v10.4.1) (2024-10-07)
6+
7+
8+
### Bug Fixes
9+
10+
* 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))
11+
* 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))
12+
* 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))
13+
* 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))
14+
15+
516
## [4.7.0](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v4.2.0...v4.7.0) (2021-05-31)
617

718

azure-pipelines.yml

Lines changed: 97 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ extends:
8484
- ES365AIMigrationTooling
8585

8686
stages:
87-
- stage: stage
87+
- stage: BuildTestAndPublish
8888
jobs:
8989
- job: One
9090
displayName: "Build and test validation"
@@ -178,7 +178,6 @@ extends:
178178
- job: Three
179179
displayName: "Publish artifacts"
180180
dependsOn: One
181-
condition: and(succeeded(), or(eq(variables['isMaster'], 'true'), eq(variables['isDev'], 'true')))
182181
steps:
183182
- task: NodeTool@0
184183
inputs:
@@ -287,3 +286,99 @@ extends:
287286
directory: 'microsoft-graph-explorer-v4'
288287
repoName: ReleasePipelines
289288
dependsOn: ['Three']
289+
290+
- stage: DeployStaging
291+
condition: and(contains(variables['build.sourceBranch'], 'refs/heads/dev'), succeeded())
292+
dependsOn: BuildTestAndPublish
293+
jobs:
294+
- deployment: staging
295+
templateContext:
296+
type: releaseJob
297+
isProduction: false
298+
inputs:
299+
- input: pipelineArtifact
300+
artifactName: drop
301+
targetPath: '$(Build.ArtifactStagingDirectory)/drop'
302+
environment: graphexplorer-staging
303+
strategy:
304+
runOnce:
305+
deploy:
306+
steps:
307+
- task: AzureWebApp@1
308+
displayName: 'Deploy to graphTryIt-staging copy'
309+
inputs:
310+
azureSubscription: 'Federated GE Managed Identity Connection'
311+
appType: webApp
312+
appName: 'graphTryIt-staging'
313+
package: '$(Build.ArtifactStagingDirectory)/drop'
314+
315+
- task: AzureFileCopy@6
316+
displayName: 'Deploy to dev storage -tst'
317+
inputs:
318+
SourcePath: '$(Build.ArtifactStagingDirectory)/drop'
319+
azureSubscription: 'Federated GE Managed Identity Connection'
320+
Destination: AzureBlob
321+
storage: graphexplorerstorage
322+
ContainerName: deployments
323+
BlobPrefix: 'vendor/bower_components/explorer-v2/build'
324+
325+
- stage: DeployProduction
326+
condition: and(contains(variables['build.sourceBranch'], 'refs/heads/master'), succeeded())
327+
dependsOn: BuildTestAndPublish
328+
jobs:
329+
- deployment: production
330+
templateContext:
331+
type: releaseJob
332+
isProduction: true
333+
inputs:
334+
- input: pipelineArtifact
335+
artifactName: drop
336+
targetPath: '$(Build.ArtifactStagingDirectory)/drop'
337+
environment: graphexplorer-production
338+
strategy:
339+
runOnce:
340+
deploy:
341+
steps:
342+
- task: AzureWebApp@1
343+
displayName: 'Azure Web App Deploy: graphTryIt'
344+
inputs:
345+
azureSubscription: 'Federated GE Managed Identity Connection'
346+
appType: webApp
347+
appName: graphTryIt
348+
package: '$(Build.ArtifactStagingDirectory)/drop'
349+
350+
- task: AzureFileCopy@6
351+
displayName: 'Deploy to portal - staging'
352+
inputs:
353+
SourcePath: '$(Build.ArtifactStagingDirectory)/drop/*'
354+
azureSubscription: 'Federated GE-Portals Managed Identity Connection'
355+
Destination: AzureBlob
356+
storage: graphstagingblobstorage
357+
ContainerName: staging
358+
BlobPrefix: 'vendor/bower_components/explorer$(Build.BuildNumber)/build'
359+
360+
- task: AzureFileCopy@6
361+
displayName: 'Deploy to portal - production'
362+
inputs:
363+
SourcePath: '$(Build.ArtifactStagingDirectory)/drop/*'
364+
azureSubscription: 'Federated GE-Portals Managed Identity Connection'
365+
Destination: AzureBlob
366+
storage: graphprodblobstorage
367+
ContainerName: prod
368+
BlobPrefix: 'vendor/bower_components/explorer$(Build.BuildNumber)/build'
369+
370+
- task: ArchiveFiles@2
371+
displayName: 'Archive built assets'
372+
inputs:
373+
rootFolderOrFile: '$(Build.ArtifactStagingDirectory)/drop/'
374+
archiveFile: '$(Build.ArtifactStagingDirectory)/graph-explorer-$(Build.BuildNumber)-$(Build.BuildId).zip'
375+
376+
- task: GitHubRelease@1
377+
displayName: 'GitHub release (v$(Build.BuildNumber)-$(Build.BuildId))'
378+
inputs:
379+
gitHubConnection: 'GitHub - thewahome'
380+
action: edit
381+
tag: 'v$(Build.BuildNumber)'
382+
title: 'Graph Explorer - v$(Build.BuildNumber)'
383+
assets: '$(Build.ArtifactStagingDirectory)/*.zip'
384+
changeLogType: issueBased

0 commit comments

Comments
 (0)