Skip to content

Commit e06e5bc

Browse files
authored
Merge the v2.4.1-beta1 release branch back to master
2 parents 49604e8 + 9a9b4df commit e06e5bc

File tree

3 files changed

+32
-6
lines changed

3 files changed

+32
-6
lines changed

Diff for: PSReadLine/Changes.txt

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
### [2.4.1-beta1] - 2025-02-28
2+
3+
#### Code Changes
4+
5+
- Avoid querying for cursor position when it's not necessary (#4448)
6+
- Handle buffer changes made by an event handler (#4442)
7+
- Update `SelectCommandArgument` to properly handle POSIX style options for CLI commands (#4016)
8+
9+
#### Build Changes
10+
11+
- Update PSReadLine build to target `netstandard2.0` (#4584)
12+
- Update documentation about the building of PSReadLine (#4286) (Thanks @sangafabrice!)
13+
- Update `HelpInfoUri` for 7.5 (#4284)
14+
- Update the release pipeline to remove `AzFeed` from display name (#4204)
15+
- Update the OneBranch pipeline to keep it compliant and remove SBOM files from module (#4201)
16+
- Make sure the `CodeQL` result from release pipeline gets uploaded (#4082)
17+
- Add 'ob_restore_phase' for every task before the signing task to work around the signing issue (#4046)
18+
- Change the NuGet feed to use the governed PowerShell feed (#4044)
19+
- Update "Code of Conduct" and "Security Policy" (#4037)
20+
- Disable SBOM, signing, and codeQL for the publish job (#3986)
21+
- Update triage messages to use the latest stable version (#3985)
22+
- Fix the release stage and update the changelog for v2.3.5 servicing release (#3984)
23+
- Add the release stage to the pipeline and exclude test folders from Component Governance (#3982)
24+
- Change back to 'external_distribution' for nupkg signing (#3977)
25+
- Migrate PSReadLine release build pipeline to OneBranch (#3975)
26+
27+
[2.4.1-beta1]: https://github.com/PowerShell/PSReadLine/compare/v2.4.0-beta0...v2.4.1-beta1
28+
129
### [2.4.0-beta0] - 2024-03-01
230

331
- Fix the null-reference exception when running `Debug-Job` on a thread job (#3957)

Diff for: PSReadLine/PSReadLine.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<RootNamespace>Microsoft.PowerShell.PSReadLine</RootNamespace>
66
<AssemblyName>Microsoft.PowerShell.PSReadLine</AssemblyName>
77
<NoWarn>$(NoWarn);CA1416</NoWarn>
8-
<AssemblyVersion>2.4.0.0</AssemblyVersion>
9-
<FileVersion>2.4.0</FileVersion>
10-
<InformationalVersion>2.4.0-beta0</InformationalVersion>
8+
<AssemblyVersion>2.4.1.0</AssemblyVersion>
9+
<FileVersion>2.4.1</FileVersion>
10+
<InformationalVersion>2.4.1-beta1</InformationalVersion>
1111
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
1212
<TargetFramework>netstandard2.0</TargetFramework>
1313
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>

Diff for: PSReadLine/PSReadLine.psd1

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
@{
22
RootModule = 'PSReadLine.psm1'
33
NestedModules = @("Microsoft.PowerShell.PSReadLine.dll")
4-
ModuleVersion = '2.4.0'
4+
ModuleVersion = '2.4.1'
55
GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'
88
Copyright = '(c) Microsoft Corporation. All rights reserved.'
99
Description = 'Great command line editing in the PowerShell console host'
1010
PowerShellVersion = '5.1'
11-
DotNetFrameworkVersion = '4.6.2'
12-
CLRVersion = '4.0.0'
1311
FormatsToProcess = 'PSReadLine.format.ps1xml'
1412
AliasesToExport = @()
1513
FunctionsToExport = 'PSConsoleHostReadLine'

0 commit comments

Comments
 (0)