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

Commit

Permalink
1.21.0 (#2351)
Browse files Browse the repository at this point in the history
Co-authored-by: jjohnson <jjohnson@cloudflare.com>
  • Loading branch information
jspspike and jspspike committed Feb 21, 2023
1 parent a0bd93e commit 0cd971c
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 7 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# Changelog

## 1.21.0

- ### Maintenance

- **Add deprecation badge to Cargo.toml - [caass], [pull/2332]**

[caass]: https://github.com/caass
[pull/2332]: https://github.com/cloudflare/wrangler-legacy/pull/2332

- **Add deprecation message on install Wrangler1 - [JacobMGEvans], [pull/2315] [pull/2314]**

Additional efforts in deprecation of Wrangler 1

[jacobmgevans]: https://github.com/JacobMGEvans
[pull/2315]: https://github.com/cloudflare/wrangler-legacy/pull/2315

- **Mark as deprecated and redirect to Workers SDK in README - [mrbbot], [pull/2348]**

[mrbbot]: https://github.com/mrbbot
[pull/2348]: https://github.com/cloudflare/wrangler-legacy/pull/2348

- **Suggest Wrangler 2 if `wrangler -V` fails - [mrbbot], [pull/2342]**

[mrbbot]: https://github.com/mrbbot
[pull/2342]: https://github.com/cloudflare/wrangler-legacy/pull/2342

- **Update path-slash to v0.2.1 - [rhysd], [pull/2311]**

[rhysd]: https://github.com/rhysd
[pull/2311]: https://github.com/cloudflare/wrangler-legacy/pull/2311

- **Update README.md - [rozenmd], [pull/2306]**

[rozenmd]: https://github.com/rozenmd
[pull/2306]: https://github.com/cloudflare/wrangler-legacy/pull/2306

- **Update URLs for Wrangler v1/v2 GitHub repos - [penalosa], [pull/2347]**

[penalosa]: https://github.com/penalosa
[pull/2347]: https://github.com/cloudflare/wrangler-legacy/pull/2347

- **Upgrade minimatch - [penalosa], [pull/2349]**

Resolve `npm audit` for https://github.com/advisories/GHSA-f8q6-p94x-37v3. Closes https://github.com/cloudflare/wrangler-legacy/issues/2326

[penalosa]: https://github.com/penalosa
[pull/2349]: https://github.com/cloudflare/wrangler-legacy/pull/2349

## 1.20.0

- ### Maintenance
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.20.0"
version = "1.21.0"
authors = ["The Wrangler Team <wrangler@cloudflare.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions changelog-generator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const getMergedPRs = async (octokit, owner, repo, since) => {
// TODO: The script doesn't handle pagination. If we merge more than 100 pull requests between
// releases then this becomes a problem. But if we wait that long, we're doing something wrong :)
let res = await octokit.search.issuesAndPullRequests({
q: `repo:cloudflare/wrangler is:pr base:master merged:>=${since} sort:updated-desc`,
q: `repo:cloudflare/wrangler-legacy is:pr base:master merged:>=${since} sort:updated-desc`,
});

console.log(res.url);
Expand All @@ -147,7 +147,7 @@ const getClosedIssues = async (octokit, owner, repo, since) => {
// TODO: The script doesn't handle pagination. If we close more than 100 issues between
// releases then this becomes a problem. But if we wait that long, we're doing something wrong :)
let res = await octokit.search.issuesAndPullRequests({
q: `repo:cloudflare/wrangler is:issue is:closed closed:>=${since} sort:updated-desc`,
q: `repo:cloudflare/wrangler-legacy is:issue is:closed closed:>=${since} sort:updated-desc`,
});

console.log(res.url);
Expand Down
4 changes: 2 additions & 2 deletions npm/npm-shrinkwrap.json

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

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.20.0",
"version": "1.21.0",
"description": "Command-line interface for all things Cloudflare Workers",
"main": "binary.js",
"scripts": {
Expand Down

0 comments on commit 0cd971c

Please sign in to comment.