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

Commit 0cd971c

Browse files
authored
1.21.0 (#2351)
Co-authored-by: jjohnson <[email protected]>
1 parent a0bd93e commit 0cd971c

File tree

6 files changed

+55
-7
lines changed

6 files changed

+55
-7
lines changed

CHANGELOG.md

+48
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
11
# Changelog
22

3+
## 1.21.0
4+
5+
- ### Maintenance
6+
7+
- **Add deprecation badge to Cargo.toml - [caass], [pull/2332]**
8+
9+
[caass]: https://github.com/caass
10+
[pull/2332]: https://github.com/cloudflare/wrangler-legacy/pull/2332
11+
12+
- **Add deprecation message on install Wrangler1 - [JacobMGEvans], [pull/2315] [pull/2314]**
13+
14+
Additional efforts in deprecation of Wrangler 1
15+
16+
[jacobmgevans]: https://github.com/JacobMGEvans
17+
[pull/2315]: https://github.com/cloudflare/wrangler-legacy/pull/2315
18+
19+
- **Mark as deprecated and redirect to Workers SDK in README - [mrbbot], [pull/2348]**
20+
21+
[mrbbot]: https://github.com/mrbbot
22+
[pull/2348]: https://github.com/cloudflare/wrangler-legacy/pull/2348
23+
24+
- **Suggest Wrangler 2 if `wrangler -V` fails - [mrbbot], [pull/2342]**
25+
26+
[mrbbot]: https://github.com/mrbbot
27+
[pull/2342]: https://github.com/cloudflare/wrangler-legacy/pull/2342
28+
29+
- **Update path-slash to v0.2.1 - [rhysd], [pull/2311]**
30+
31+
[rhysd]: https://github.com/rhysd
32+
[pull/2311]: https://github.com/cloudflare/wrangler-legacy/pull/2311
33+
34+
- **Update README.md - [rozenmd], [pull/2306]**
35+
36+
[rozenmd]: https://github.com/rozenmd
37+
[pull/2306]: https://github.com/cloudflare/wrangler-legacy/pull/2306
38+
39+
- **Update URLs for Wrangler v1/v2 GitHub repos - [penalosa], [pull/2347]**
40+
41+
[penalosa]: https://github.com/penalosa
42+
[pull/2347]: https://github.com/cloudflare/wrangler-legacy/pull/2347
43+
44+
- **Upgrade minimatch - [penalosa], [pull/2349]**
45+
46+
Resolve `npm audit` for https://github.com/advisories/GHSA-f8q6-p94x-37v3. Closes https://github.com/cloudflare/wrangler-legacy/issues/2326
47+
48+
[penalosa]: https://github.com/penalosa
49+
[pull/2349]: https://github.com/cloudflare/wrangler-legacy/pull/2349
50+
351
## 1.20.0
452

553
- ### Maintenance

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wrangler"
3-
version = "1.20.0"
3+
version = "1.21.0"
44
authors = ["The Wrangler Team <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"

changelog-generator/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const getMergedPRs = async (octokit, owner, repo, since) => {
124124
// TODO: The script doesn't handle pagination. If we merge more than 100 pull requests between
125125
// releases then this becomes a problem. But if we wait that long, we're doing something wrong :)
126126
let res = await octokit.search.issuesAndPullRequests({
127-
q: `repo:cloudflare/wrangler is:pr base:master merged:>=${since} sort:updated-desc`,
127+
q: `repo:cloudflare/wrangler-legacy is:pr base:master merged:>=${since} sort:updated-desc`,
128128
});
129129

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

153153
console.log(res.url);

npm/npm-shrinkwrap.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/wrangler",
3-
"version": "1.20.0",
3+
"version": "1.21.0",
44
"description": "Command-line interface for all things Cloudflare Workers",
55
"main": "binary.js",
66
"scripts": {

0 commit comments

Comments
 (0)