Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update metadata.json#24764

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
jshigetomi merged 2 commits intomasterfrommetadata
Jan 14, 2025
Merged

Update metadata.json#24764

jshigetomi merged 2 commits intomasterfrommetadata
Jan 14, 2025

Conversation

jshigetomi
Copy link
Collaborator

@jshigetomijshigetomi commentedJan 10, 2025
edited
Loading

PR Summary

This pull request updates the release tags in thetools/metadata.json file to reflect the latest versions.

Release tag updates:

  • UpdatedPreviewReleaseTag fromv7.5.0-rc.1 tov7.6.0-preview.2.
  • UpdatedReleaseTag fromv7.4.6 tov7.6.0-preview.2.
  • UpdatedNextReleaseTag fromv7.5.0-preview.6 tov7.6.0-preview.3.

PR Context

PR Checklist

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-macos

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-linux

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-windows

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

1 similar comment
@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-static-analysis

@azure-pipelinesAzure Pipelines
Copy link

No pipelines are associated with this pull request.

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-Windows-Packaging-CI

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines could not run because the pipeline triggers exclude this branch/path.

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PSResourceGet ACR

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-static-analysis

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@TravisEz13TravisEz13 marked this pull request as draftJanuary 10, 2025 23:18
@TravisEz13TravisEz13 added the CL-BuildPackagingIndicates that a PR should be marked as a build or packaging change in the Change Log labelJan 10, 2025
@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-linux

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-macos

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-windows

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

1 similar comment
@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PSResourceGet ACR

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-static-analysis

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-Windows-Packaging-CI

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines could not run because the pipeline triggers exclude this branch/path.

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-linux

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomi
Copy link
CollaboratorAuthor

/azp run PowerShell-CI-linux

@azure-pipelinesAzure Pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@jshigetomijshigetomi marked this pull request as ready for reviewJanuary 14, 2025 18:41
@jshigetomijshigetomi merged commita69452e intomasterJan 14, 2025
41 checks passed
@jshigetomijshigetomi deleted the metadata branchJanuary 14, 2025 18:42
@microsoft-github-policy-serviceMicrosoft GitHub Policy Service
Copy link
Contributor

microsoft-github-policy-servicebot commentedJan 14, 2025
edited by unfurl-linksbot
Loading

📣 Hey@jshigetomi, how did we do? We would love to hear your feedback with the link below! 🗣️

🔗https://aka.ms/PSRepoFeedback

@mjcheetham
Copy link

mjcheetham commentedJan 14, 2025
edited
Loading

@jshigetomi, since the PR was merged the "https://aka.ms/install-powershell.ps1" script fails when run on a Windows ARM64 machine with the following arguments:

$installScript="$env:TEMP\install-powershell.ps1"Invoke-WebRequest-Uri"https://aka.ms/install-powershell.ps1"-OutFile$installScript&$installScript-AddToPath

An exception is thrown saying the following URL is 404-ing:

https://powershellinfraartifacts-gkhedzdeaghdezhr.z01.azurefd.net/install/v7.6.0-preview2/PowerShell-7.6.0-preview.2-win-arm64.zip

Comes from line 374 in the script:

$metadata=Invoke-RestMethod https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/metadata.jsonif ($Preview) {$release=$metadata.PreviewReleaseTag-replace'^v'        }else {$release=$metadata.ReleaseTag-replace'^v'        }if ($IsWinEnv) {if ($UseMSI) {$packageName="PowerShell-${release}-win-${architecture}.msi"            }else {$packageName="PowerShell-${release}-win-${architecture}.zip"            }        }elseif ($IsLinuxEnv) {$packageName="powershell-${release}-linux-${architecture}.tar.gz"        }elseif ($IsMacOSEnv) {$packageName="powershell-${release}-osx-${architecture}.tar.gz"        }$downloadURL="https://github.com/PowerShell/PowerShell/releases/download/v${release}/${packageName}"Write-Verbose"About to download package from '$downloadURL'"-Verbose$packagePath=Join-Path-Path$tempDir-ChildPath$packageNameif (!$PSVersionTable.ContainsKey('PSEdition')-or$PSVersionTable.PSEdition-eq"Desktop") {# On Windows PowerShell, progress can make the download significantly slower$oldProgressPreference=$ProgressPreference$ProgressPreference="SilentlyContinue"        }try {****Invoke-WebRequest-Uri$downloadURL-OutFile$packagePath****        }finally {if (!$PSVersionTable.ContainsKey('PSEdition')-or$PSVersionTable.PSEdition-eq"Desktop") {$ProgressPreference=$oldProgressPreference            }        }

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@TravisEz13TravisEz13TravisEz13 approved these changes

@daxian-dbwdaxian-dbwAwaiting requested review from daxian-dbw

@adityapatwardhanadityapatwardhanAwaiting requested review from adityapatwardhan

@anmenagaanmenagaAwaiting requested review from anmenaga

Assignees
No one assigned
Labels
CL-BuildPackagingIndicates that a PR should be marked as a build or packaging change in the Change Log
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@jshigetomi@mjcheetham@TravisEz13

[8]ページ先頭

©2009-2025 Movatter.jp