Using Dev Builds for Unreleased Fixes
If you’ve reported a bug or requested a feature and the fix has been merged to the main branch of a Pulumi repository, you may want to use it before the next official release. Pulumi publishes dev builds automatically on every merge to the main branch, allowing you to access the latest changes immediately.
When to use dev builds
Dev builds are useful when:
- A bug fix has been merged to main but hasn’t been included in an official release yet
- You want to verify that a fix resolves your issue before the next release
- You need to test your infrastructure against the latest Pulumi changes
- A GitHub issue you’ve reported shows a merged PR, but the milestone indicates it hasn’t been released
Checking if a fix is available
When a GitHub issue is closed with a merged pull request:
- Check the issue’s milestone - if it shows a future version number or “needs-release” label, the fix is merged but not yet released
- Look at the pull request to confirm it was merged to the main branch
- Note when the PR was merged - dev builds are published within minutes of merging
Installing dev builds
Pulumi CLI
To install the latest dev build of the Pulumi CLI:
curl -fsSL https://get.pulumi.com | sh -s -- --version dev
curl -fsSL https://get.pulumi.com | sh -s -- --version dev
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; & ([ScriptBlock]::Create((New-Object System.Net.WebClient).DownloadString('https://get.pulumi.com/install.ps1'))) -Version dev" && SET "PATH=%PATH%;%USERPROFILE%\.pulumi\bin"
For more installation options, see the download and install documentation.
Language SDKs
If the fix is in a language SDK rather than the CLI, install the dev version of the SDK for your language:
- TypeScript (Node.js)
- Python
- Go
- .NET
- Java: Dev versions are not currently published. You can build from source by cloning the pulumi/pulumi-java repository.
- YAML: YAML programs use the Pulumi CLI directly — no separate SDK installation is needed.
Verifying the fix
After installing the dev build:
- Run
pulumi versionto confirm you’re using a dev version (it will show an alpha version number like3.225.0-alpha.x3831727) - Test your Pulumi program to verify the fix resolves your issue
- If the issue persists, add a comment to the GitHub issue with details about your testing
Returning to stable releases
Once an official release containing your fix is published:
- Uninstall the dev build
- Install the latest stable version using the standard installation instructions
- For SDKs, update your dependencies to the latest stable version
Related resources
Thank you for your feedback!
If you have a question about how to use Pulumi, reach out in Community Slack.
Open an issue on GitHub to report a problem or suggest an improvement.