-
Notifications
You must be signed in to change notification settings - Fork 8.2k
[release/v7.6] Update the macos package name for preview releases to match the previous pattern #26576
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[release/v7.6] Update the macos package name for preview releases to match the previous pattern #26576
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -82,12 +82,13 @@ Describe "Verify macOS Package" { | |||||
| $script:package | Should -Not -BeNullOrEmpty | ||||||
|
|
||||||
| # Regex pattern for valid macOS PKG package names. | ||||||
| # This pattern matches the validation used in release-validate-packagenames.yml | ||||||
| # Valid examples: | ||||||
| # - powershell-7.4.13-osx-x64.pkg (Intel x64 - note: x64 with hyphens for compatibility) | ||||||
| # - powershell-7.4.13-osx-arm64.pkg (Apple Silicon) | ||||||
| # - powershell-preview-7.6.0-preview.6-osx-x64.pkg | ||||||
| # - powershell-lts-7.4.13-osx-arm64.pkg | ||||||
| $pkgPackageNamePattern = '^powershell(-preview|-lts)?-\d+\.\d+\.\d+(-[a-z]+\.\d+)?-osx-(x64|arm64)\.pkg$' | ||||||
| # - powershell-7.4.13-osx-x64.pkg (Stable release) | ||||||
| # - powershell-7.6.0-preview.6-osx-x64.pkg (Preview version string) | ||||||
| # - powershell-7.4.13-rebuild.5-osx-arm64.pkg (Rebuild version) | ||||||
| # - powershell-lts-7.4.13-osx-arm64.pkg (LTS package) | ||||||
| $pkgPackageNamePattern = '^powershell-(lts-)?\d+\.\d+\.\d+\-([a-z]*.\d+\-)?osx\-(x64|arm64)\.pkg$' | ||||||
|
||||||
| $pkgPackageNamePattern = '^powershell-(lts-)?\d+\.\d+\.\d+\-([a-z]*.\d+\-)?osx\-(x64|arm64)\.pkg$' | |
| $pkgPackageNamePattern = '^powershell-(lts-)?\d+\.\d+\.\d+\-([a-z]+\.\d+\-)?osx\-(x64|arm64)\.pkg$' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The regex pattern has an unescaped dot in the preview/rebuild version capture group
([a-z]*.\d+\-)?. The dot should be escaped as\.to match a literal dot character, not any character.Current:
([a-z]*.\d+\-)?Should be:
([a-z]*\.\d+\-)?Without escaping, the pattern would incorrectly match strings like "preview6" or "previewX6" instead of only matching "preview.6".