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

Commit

Permalink
1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kristianfreeman authored and ashleygwilliams committed Sep 17, 2019
1 parent d11ccfd commit 6001efd
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## 🎁 1.3.0
## 🐛 1.3.1

- ### Features

- **Environments - [EverlastingBugstopper], [issue/385][pull/386]**

Wrangler 1.3.0 includes supports for **environments**, allowing developers to deploy Workers projects to multiple places. For instance, an application can be deployed to a production URL _and_ a staging URL, without having to juggle multiple configuration files.
Wrangler 1.3.1 includes supports for **environments**, allowing developers to deploy Workers projects to multiple places. For instance, an application can be deployed to a production URL _and_ a staging URL, without having to juggle multiple configuration files.

To use environments, you can now pass in `[env.$env_name]` properties in your `wrangler.toml`. Here's an example:

Expand Down Expand Up @@ -36,7 +36,7 @@

- **KV commands - [ashleymichal], [gabbifish], [issue/339][pull/405]**

Wrangler 1.3.0 includes commands for managing and updating [Workers KV](https://www.cloudflare.com/products/workers-kv/) namespaces, keys, and values directly from the CLI.
Wrangler 1.3.1 includes commands for managing and updating [Workers KV](https://www.cloudflare.com/products/workers-kv/) namespaces, keys, and values directly from the CLI.

- `wrangler kv:namespace`

Expand Down Expand Up @@ -90,7 +90,7 @@
✨ Success
```

The KV subcommands in Wrangler 1.3.0 make it super easy to comfortably query and manage your Workers KV data without ever having to leave the command-line. For more information on the available commands and their usage, see [the documentation](https://github.com/cloudflare/wrangler/blob/feat-kv-commands/docs/content/kv_commands.md). 🤯
The KV subcommands in Wrangler 1.3.1 make it super easy to comfortably query and manage your Workers KV data without ever having to leave the command-line. For more information on the available commands and their usage, see [the documentation](https://github.com/cloudflare/wrangler/blob/feat-kv-commands/docs/content/kv_commands.md). 🤯

[ashleymichal]: https://github.com/ashleymichal
[gabbifish]: https://github.com/gabbifish
Expand Down Expand Up @@ -154,6 +154,13 @@
[issue/517]: https://github.com/cloudflare/wrangler/issues/517
[pull/528]: https://github.com/cloudflare/wrangler/pull/528

- **Different emojis for different commands - [EverlastingBugstopper], [pull/605]**

KV subcommands would return the same emoji value in `--help` output. This PR updates the command-line output to use different emoji, making the output easier to read!

[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
[pull/605]: https://github.com/cloudflare/wrangler/pull/605

- ### Maintenance

- **Add keywords for npm SEO - [EverlastingBugstopper], [pull/583]**
Expand Down Expand Up @@ -251,7 +258,7 @@

- **Test maintenance - [EverlastingBugstopper], [pull/563]**

This PR cleans up some incorrectly named tests and adds fixtures to support testing new functionality in 1.3.0, such as environments. ✨
This PR cleans up some incorrectly named tests and adds fixtures to support testing new functionality in 1.3.1, such as environments. ✨

[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
[pull/563]: https://github.com/cloudflare/wrangler/pull/563
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrangler"
version = "1.3.0"
version = "1.3.1"
authors = ["Ashley Williams <ashley666ashley@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion npm/install-wrangler.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ if (!existsSync(cwd)) {
mkdirSync(cwd);
}

getReleaseByTag("1.3.0")
getReleaseByTag("1.3.1")
.then(assets => {
const [compatibleAssets] = assets.filter(asset =>
asset.name.endsWith(getPlatform() + ".tar.gz")
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/wrangler",
"version": "1.3.0",
"version": "1.3.1",
"description": "Wrangle your Cloudflare Workers",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 6001efd

Please sign in to comment.