Yesterday we released `1.0.0-rc.1` of the `pulumi`...
# announcements
w
Yesterday we released
1.0.0-rc.1
of the
pulumi
CLI and the core provider packages. πŸŽ‰ This 1.0 release candidate is the next step on our path toward Pulumi 1.0. Thanks to everyone for their feedback so far on the beta releases which has helped us make sure we're addressing the key things needed to deliver a stable foundation with Pulumi 1.0! I encourage everyone who can to try out the 1.0 RC and give any remaining feedback - in issues in GitHub or here in Slack.
πŸŽ‰ 8
πŸ™Œ 9
Three quick notes for folks wanting to try out the RC: 1. For
brew
users on macOS, the
pulumi
formula has not been updated yet, so you'll need to install manually to get the latest RC release: https://www.pulumi.com/docs/get-started/install/#installation-script 2. For Node users, setting package versions to
latest
and reinstalling packages will pick up the RC. For Python users, you'lll need to set package constraints to
>=1.0.0rc1,<1.0.1
to pick up the RC. 3. The
pulumi new
templates do not yet pick up the RC versions, so if you are testing out with
pulumi new
you'll want to make the same updates as in (2) above.
πŸ‘Œ 1
c
Seems like:
Copy code
"dependencies": {
        "@pulumi/aws": "^1.0.0-beta.1",
        "@pulumi/gcp": "^1.0.0-beta.1",
        "@pulumi/kubernetes": "^1.0.0-beta.1",
        "@pulumi/pulumi": "^1.0.0-beta.1",
        "@types/node": "^12.0.0",
        "kubernetes-client": "^8.3.1",
        "ts-sync-request": "^1.4.1"
    },
picked it up just fine, at least when using yarn. Isn’t the recommendation not to use
latest
in case of BC breaks?
w
Yep - using
^1.0.0-beta.1
and upgrading should pick these up as well.
b
Congrats to the team on 1.0. I went away from following Pulumi for a while did you guys get debug capabilities into the product yet?
b
Copy code
$ pulumi version
v1.0.0
🍻 1
πŸŽ‰ 1