Justin Van Patten
Justin Van Patten
Consider this schema: ```json { "name": "test", "version": "0.1.0", "resources": { "test:index:Resource": { "type": "object", "inputProperties": { "foo": { "$ref": "#/types/test:index:Bar" } }, "requiredInputs": ["foo"] } }, "types": { "test:index:Bar":...
We should employ automation to automatically update these dependencies when new versions are released (e.g. via renovate, dependabot, or similar).
This change exposes the `pulumi stack rm --remove-backups` flag in Go, Node.js, and Python automation APIs. Part of #9474 Follow-up of #20203
### Description `poetry --version` is slower than it could be. On my machine, it takes ~200ms. I found that running `poetry --version --no-plugins` is around 1.86x faster. ```sh $ hyperfine...