Skip to content

Commit d08d5fd

Browse files
authored
Update version, changelog, and release notes for 1.1.0-preview1 release (#1616)
1 parent b28fba0 commit d08d5fd

File tree

4 files changed

+67
-6
lines changed

4 files changed

+67
-6
lines changed

CHANGELOG/1.0.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# 1.0 Changelog
22

3+
## [1.0.3](https://github.com/PowerShell/PSResourceGet/compare/v1.0.2...v1.0.3) - 2024-03-13
4+
5+
### Bug Fixes
6+
- Bug fix for null package version in `Install-PSResource`
7+
38
## [1.0.2](https://github.com/PowerShell/PSResourceGet/compare/v1.0.1...v1.0.2) - 2024-02-06
49

510
### Bug Fixes

CHANGELOG/preview.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
1-
This file will contain changelog updates for preview releases for Microsoft.PowerShell.PSResourceGet
1+
## [1.1.0-preview1](https://github.com/PowerShell/PSResourceGet/compare/v1.0.3...v1.1.0-preview1) - 2024-04-01
2+
3+
### New Features
4+
5+
- Support for Azure Container Registries (#1495, #1497-#1499, #1501, #1502, #1505, #1522, #1545, #1548, #1550, #1554, #1560, #1567,
6+
#1573, #1576, #1587, #1588, #1589, #1594, #1598, #1600, #1602, #1604, #1615)
7+
8+
### Bug Fixes
9+
10+
- Fix incorrect request URL when installing resources from ADO (#1597 Thanks @anytonyoni!)
11+
- Fix for swallowed exceptions (#1569)
12+
- Fix for PSResourceGet not working in Constrained Languange Mode (#1564)

src/Microsoft.PowerShell.PSResourceGet.psd1

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@{
55
RootModule = './Microsoft.PowerShell.PSResourceGet.dll'
66
NestedModules = @('./Microsoft.PowerShell.PSResourceGet.psm1')
7-
ModuleVersion = '1.0.0'
7+
ModuleVersion = '1.1.0'
88
CompatiblePSEditions = @('Core', 'Desktop')
99
GUID = 'e4e0bda1-0703-44a5-b70d-8fe704cd0643'
1010
Author = 'Microsoft Corporation'
@@ -45,7 +45,7 @@
4545
'udres')
4646
PrivateData = @{
4747
PSData = @{
48-
#Prerelease = ''
48+
Prerelease = 'preview1'
4949
Tags = @('PackageManagement',
5050
'PSEdition_Desktop',
5151
'PSEdition_Core',
@@ -55,6 +55,51 @@
5555
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
5656
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
5757
ReleaseNotes = @'
58+
## 1.1.0-preview1
59+
60+
### New Features
61+
62+
- Support for Azure Container Registries (#1495, #1497-#1499, #1501, #1502, #1505, #1522, #1545, #1548, #1550, #1554, #1560, #1567,
63+
#1573, #1576, #1587, #1588, #1589, #1594, #1598, #1600, #1602, #1604, #1615)
64+
65+
### Bug Fixes
66+
67+
- Fix incorrect request URL when installing resources from ADO (#1597 Thanks @anytonyoni!)
68+
- Fix for swallowed exceptions (#1569)
69+
- Fix for PSResourceGet not working in Constrained Languange Mode (#1564)
70+
71+
## 1.0.3
72+
73+
### Bug Fixes
74+
- Bug fix for null package version in `Install-PSResource`
75+
76+
## 1.0.2
77+
78+
### Bug Fixes
79+
80+
- Bug fix for `Update-PSResource` not updating from correct repository (#1549)
81+
- Bug fix for creating temp home directory on Unix (#1544)
82+
- Bug fix for creating `InstalledScriptInfos` directory when it does not exist (#1542)
83+
- Bug fix for `Update-ModuleManifest` throwing null pointer exception (#1538)
84+
- Bug fix for `name` property not populating in `PSResourceInfo` object when using `Find-PSResource` with JFrog Artifactory (#1535)
85+
- Bug fix for incorrect configuration of requests to JFrog Artifactory v2 endpoints (#1533 Thanks @sean-r-williams!)
86+
- Bug fix for determining JFrog Artifactory repositories (#1532 Thanks @sean-r-williams!)
87+
- Bug fix for v2 server repositories incorrectly adding script endpoint (1526)
88+
- Bug fixes for null references (#1525)
89+
- Typo fixes in message prompts in `Install-PSResource` (#1510 Thanks @NextGData!)
90+
- Bug fix to add `NormalizedVersion` property to `AdditionalMetadata` only when it exists (#1503 Thanks @sean-r-williams!)
91+
- Bug fix to verify whether `Uri` is a UNC path and set respective `ApiVersion` (#1479 Thanks @kborowinski!)
92+
93+
## 1.0.1
94+
95+
### Bug Fixes
96+
97+
- Bugfix to update Unix local user installation paths to be compatible with .NET 7 and .NET 8 (#1464)
98+
- Bugfix for Import-PSGetRepository in Windows PowerShell (#1460)
99+
- Bugfix for `Test-PSScriptFileInfo`` to be less sensitive to whitespace (#1457)
100+
- Bugfix to overwrite rels/rels directory on net472 when extracting nupkg to directory (#1456)
101+
- Bugfix to add pipeline by property name support for Name and Repository properties for Find-PSResource (#1451 Thanks @ThomasNieto!)
102+
58103
## 1.0.0
59104
60105
### New Features

src/code/Microsoft.PowerShell.PSResourceGet.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<OutputType>Library</OutputType>
66
<RootNamespace>Microsoft.PowerShell.PSResourceGet</RootNamespace>
77
<AssemblyName>Microsoft.PowerShell.PSResourceGet</AssemblyName>
8-
<AssemblyVersion>1.0.0.0</AssemblyVersion>
9-
<FileVersion>1.0.0</FileVersion>
10-
<InformationalVersion>1.0.0</InformationalVersion>
8+
<AssemblyVersion>1.1.0.1</AssemblyVersion>
9+
<FileVersion>1.1.0.1</FileVersion>
10+
<InformationalVersion>1.1.0.1</InformationalVersion>
1111
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
1212
<LangVersion>9.0</LangVersion>
1313
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>

0 commit comments

Comments
 (0)