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

Install-PSResource -RequiredResourceFile ignores the prerelease key if set to $true in a psd1 file #1794

Open
3 tasks done
matteocoder opened this issue Feb 16, 2025 · 0 comments

Comments

@matteocoder
Copy link

Prerequisites

  • Write a descriptive title.
  • Make sure you are able to repro it on the latest released version
  • Search the existing issues.

Steps to reproduce

  1. Create a test.psd1 file as follows
@{
	'PrereleaseTest' = @{
        'repository' = 'PSGallery'
        prerelease = $True
        'Scope'      = 'CurrentUser'
    }
}
  1. run Install-PSResource -RequiredResourceFile test.psd1

Consider that the current prerelease version of PrereleaseTest is 0.0.2-prerelease according to PSGallery.

Expected behavior

import-module prereleasetest; get-module prereleasetest
ModuleType Version    PreRelease Name                                ExportedCommands
---------- -------    ---------- ----                                ----------------
Manifest   0.0.2      prerelease           prereleasetest

Actual behavior

import-module prereleasetest; get-module prereleasetest
ModuleType Version    PreRelease Name                                ExportedCommands
---------- -------    ---------- ----                                ----------------
Manifest   0.0.1                 prereleasetest

Error details

When importing from a json file, though, the prerelease setting is correctly respected.

Environment data

ModuleType Version    PreRelease Name                                ExportedCommands
---------- -------    ---------- ----                                ----------------
Binary     1.1.0                 Microsoft.PowerShell.PSResourceGet  {Compress-PSResource, Find-PSResource, Get-Instal…


Name                           Value
----                           -----
PSVersion                      7.6.0-preview.2
PSEdition                      Core
GitCommitId                    7.6.0-preview.2
OS                             Microsoft Windows 10.0.26100
Platform                       Win32NT
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
WSManStackVersion              3.0

Visuals

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant