Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

🎭 1.8.4

Compare
Choose a tag to compare
@github-actions github-actions released this 31 Mar 19:31
· 1053 commits to master since this release
  • Fixes

    • Don't remove user configuration on npm installs - EverlastingBugstopper, issue/1180 pull/1181

      Wrangler started removing user's authentication configuration files on reinstallation from npm - this is no good and is fixed in this release.

    • Allow multiline files to be piped to wrangler secret put - EverlastingBugstopper, issue/1132 pull/1171

      Previously, if you tried to pipe a multiline file to wrangler secret put, the secret would only upload the first line of the file. This... was not helpful - cat hello_world.txt | wrangler secret put should behave as expected with this release.

  • Maintenance

    • Bump GitHub Actions checkout version - imbsky, pull/1170

      GitHub Actions are pretty nifty, and we've started using them as our CI provider in Wrangler. Actions allow you to specify a step that "uses" a template, and one of the most used templates is the template that checks out relevant code. GitHub just released v2 of that template, and our CI now uses it!