Skip to content
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/v1.1.1 #1803

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 31 additions & 37 deletions .pipelines/PSResourceGet-Official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variables:
value: onebranch.azurecr.io/windows/ltsc2022/vse2022:latest # Docker image which is used to build the project https://aka.ms/obpipelines/containers

resources:
repositories:
repositories:
- repository: onebranchTemplates
type: git
name: OneBranch.Pipelines/GovernedTemplates
Expand All @@ -41,6 +41,8 @@ extends:
featureFlags:
WindowsHostVersion: '1ESWindows2022'
customTags: 'ES365AIMigrationTooling'
release:
category: NonAzure
globalSdl:
disableLegacyManifest: true
sbom:
Expand All @@ -58,7 +60,7 @@ extends:
binskim:
enabled: true
apiscan:
enabled: false
enabled: false

stages:
- stage: stagebuild
Expand Down Expand Up @@ -125,15 +127,6 @@ extends:
AnalyzeInPipeline: true
Language: csharp

- pwsh: |
$module = 'Microsoft.PowerShell.PSResourceGet'
Write-Verbose "installing $module..." -verbose
$ProgressPreference = 'SilentlyContinue'
Install-Module $module -AllowClobber -Force
displayName: Install PSResourceGet 0.9.0 or above for build.psm1
env:
ob_restore_phase: true # Set ob_restore_phase to run this step before '🔒 Setup Signing' step.

# this is installing .NET
- pwsh: |
Set-Location "$(repoRoot)"
Expand Down Expand Up @@ -167,14 +160,14 @@ extends:
}
}
displayName: Find all 3rd party files that need to be signed

- task: onebranch.pipeline.signing@1
displayName: Sign 3rd Party files
inputs:
command: 'sign'
signing_profile: 135020002
files_to_sign: '*.dll'
search_root: $(signSrcPath)/Microsoft.PowerShell.PSResourceGet/UnsignedDependencies
search_root: $(signSrcPath)/Microsoft.PowerShell.PSResourceGet/UnsignedDependencies

- pwsh: |
$newlySignedDepsPath = Join-Path -Path $(signSrcPath) -ChildPath "Microsoft.PowerShell.PSResourceGet" -AdditionalChildPath "UnsignedDependencies"
Expand Down Expand Up @@ -216,7 +209,7 @@ extends:
value: $(Build.SourcesDirectory)\PSResourceGet\.config\tsaoptions.json
# Disable because SBOM was already built in the previous job
- name: ob_sdl_sbom_enabled
value: false
value: true
- name: signOutPath
value: $(repoRoot)/signed
- name: ob_signing_setup_enabled
Expand Down Expand Up @@ -250,15 +243,12 @@ extends:
displayName: Capture artifacts directory structure

- pwsh: |
$module = 'Microsoft.PowerShell.PSResourceGet'
Write-Verbose "installing $module..." -verbose
$ProgressPreference = 'SilentlyContinue'
Install-Module $module -AllowClobber -Force
displayName: Install PSResourceGet 0.9.0 or above for build.psm1
# This need to be done before set-location so the module from PSHome is loaded
Import-Module -Name Microsoft.PowerShell.PSResourceGet -Force

- pwsh: |
Set-Location "$(signOutPath)\Microsoft.PowerShell.PSResourceGet"
New-Item -ItemType Directory -Path "$(signOutPath)\PublishedNupkg" -Force
$null = New-Item -ItemType Directory -Path "$(signOutPath)\PublishedNupkg" -Force

Register-PSResourceRepository -Name 'localRepo' -Uri "$(signOutPath)\PublishedNupkg"
Publish-PSResource -Path "$(signOutPath)\Microsoft.PowerShell.PSResourceGet" -Repository 'localRepo' -Verbose
displayName: Create nupkg for publishing
Expand All @@ -274,61 +264,65 @@ extends:
- pwsh: |
Set-Location "$(signOutPath)\PublishedNupkg"
Write-Host "Contents of signOutPath:"
Get-ChildItem "$(signOutPath)" -Recurse
Get-ChildItem "$(signOutPath)" -Recurse
displayName: Find Nupkg

- task: CopyFiles@2
displayName: "Copy nupkg to ob_outputDirectory - '$(ob_outputDirectory)'"
inputs:
Contents: $(signOutPath)\PublishedNupkg\Microsoft.PowerShell.PSResourceGet.*.nupkg
TargetFolder: $(ob_outputDirectory)

- pwsh: |
Write-Host "Contents of ob_outputDirectory:"
Get-ChildItem "$(ob_outputDirectory)" -Recurse
Get-ChildItem "$(ob_outputDirectory)" -Recurse
displayName: Find Signed Nupkg

- stage: release
displayName: Release PSResourceGet
dependsOn: stagebuild
variables:
version: $[ stageDependencies.build.main.outputs['package.version'] ]
drop: $(Pipeline.Workspace)/drop_build_main
drop: $(Pipeline.Workspace)/drop_stagebuild_nupkg
ob_release_environment: 'Production'

jobs:
- job: validation
displayName: Manual validation
pool:
type: agentless
type: server
timeoutInMinutes: 1440
steps:
- task: ManualValidation@0
displayName: Wait 24 hours for validation
inputs:
instructions: Please validate the release
timeoutInMinutes: 1440

- job: PSGalleryPublish
displayName: Publish to PSGallery
dependsOn: validation
templateContext:
inputs:
- input: pipelineArtifact
artifactName: drop_stagebuild_nupkg
pool:
type: windows
type: release
os: windows
variables:
ob_outputDirectory: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
steps:
- download: current
displayName: Download artifact

- pwsh: |
Get-ChildItem $(Pipeline.Workspace) -Recurse
displayName: Capture environment

- pwsh: |
Get-ChildItem "$(Pipeline.Workspace)/drop_stagebuild_nupkg" -Recurse
- task: PowerShell@2
inputs:
targetType: 'inline'
script: |
Get-ChildItem "$(Pipeline.Workspace)/" -Recurse
displayName: Find signed Nupkg

- task: NuGetCommand@2
displayName: Push PowerShellGet module artifacts to PSGallery feed
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)\drop_stagebuild_nupkg\PSResourceGet\signed\PublishedNupkg\Microsoft.PowerShell.PSResourceGet.*.nupkg'
packagesToPush: '$(Pipeline.Workspace)\PSResourceGet\signed\PublishedNupkg\Microsoft.PowerShell.PSResourceGet.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: PSGet-PSGalleryPush
12 changes: 12 additions & 0 deletions CHANGELOG/1.1.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 1.1 Changelog

## [1.1.1](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0..v1.1.1) - 2025-03-06

- Bugfix to retrieve all metadata properties when finding a PSResource from a ContainerRegistry repository (#1799)
- Update README.md (#1798)
- Use authentication challenge for unauthenticated ContainerRegistry repository (#1797)
- Bugfix for Install-PSResource with varying digit version against ContainerRegistry repository (#1796)
- Bugfix for updating ContainerRegistry dependency parsing logic to account for AzPreview package (#1792)
- Add wildcard support for MAR repository for FindAll and FindByName (#1786)
- Bugfix for nuspec dependency version range calculation for RequiredModules (#1784)

## [1.1.0](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0-rc3...v1.1.0) - 2025-01-09

### Bug Fixes
Expand Down
31 changes: 14 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,25 +52,22 @@ Please use the [PowerShell Gallery](https://www.powershellgallery.com) to get th

### Build the project

```powershell
# Build for the net472 framework
PS C:\Repos\PSResourceGet> .\build.ps1 -Clean -Build -BuildConfiguration Debug -BuildFramework net472

# Build for the netstandard2.0 framework
PS C:\Repos\PSResourceGet> .\build.ps1 -Clean -Build -BuildConfiguration Debug -BuildFramework netstandard2.0
```

### Publish the module to a local repository
=======
* Run functional tests
Note: Please ensure you have the exact version of the .NET SDK installed. The current version can be found in the [global.json](https://github.com/PowerShell/PSResourceGet/blob/master/global.json) and installed from the [.NET website](https://dotnet.microsoft.com/en-us/download).
```powershell
# Build for the net472 framework
PS C:\Repos\PSResourceGet> .\build.ps1 -Clean -Build -BuildConfiguration Debug -BuildFramework net472
```

```powershell
PS C:\Repos\PSResourceGet> Invoke-Pester
```
### Run functional tests

```powershell
PS C:\Repos\PSResourceGet> Invoke-Pester <file-name>
```
* Run all tests
```powershell
PS C:\Repos\PSResourceGet> Invoke-Pester
```
* Run an individual test
```powershell
PS C:\Repos\PSResourceGet> Invoke-Pester <file-name>
```

### Import the built module into a new PowerShell session

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.404"
"version": "8.0.406"
}
}
13 changes: 12 additions & 1 deletion src/Microsoft.PowerShell.PSResourceGet.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@{
RootModule = './Microsoft.PowerShell.PSResourceGet.dll'
NestedModules = @('./Microsoft.PowerShell.PSResourceGet.psm1')
ModuleVersion = '1.1.0'
ModuleVersion = '1.1.1'
CompatiblePSEditions = @('Core', 'Desktop')
GUID = 'e4e0bda1-0703-44a5-b70d-8fe704cd0643'
Author = 'Microsoft Corporation'
Expand Down Expand Up @@ -56,6 +56,17 @@
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
## 1.1.1

### Bug Fix
- Bugfix to retrieve all metadata properties when finding a PSResource from a ContainerRegistry repository (#1799)
- Update README.md (#1798)
- Use authentication challenge for unauthenticated ContainerRegistry repository (#1797)
- Bugfix for Install-PSResource with varying digit version against ContainerRegistry repository (#1796)
- Bugfix for updating ContainerRegistry dependency parsing logic to account for AzPreview package (#1792)
- Add wildcard support for MAR repository for FindAll and FindByName (#1786)
- Bugfix for nuspec dependency version range calculation for RequiredModules (#1784)

## 1.1.0

### Bug Fix
Expand Down
Loading
Loading