Skip to content

Commit

Permalink
Version Packages (#2310)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 5, 2022
1 parent 234435c commit 271aece
Show file tree
Hide file tree
Showing 13 changed files with 59 additions and 70 deletions.
11 changes: 0 additions & 11 deletions .changeset/bright-donkeys-pay.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/cold-zebras-shave.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/eight-ducks-reflect.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/fuzzy-ducks-impress.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/gentle-rocks-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-peaches-drive.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/lazy-wolves-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-cars-shout.md

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

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

11 changes: 11 additions & 0 deletions packages/pages-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @cloudflare/pages-shared

## 0.0.11

### Patch Changes

- [#2303](https://github.com/cloudflare/wrangler2/pull/2303) [`1a1f1dc7`](https://github.com/cloudflare/wrangler2/commit/1a1f1dc7fc8cad06030d3feac1258e2fb3118d8c) Thanks [@jrf0110](https://github.com/jrf0110)! - fix: Pages asset-server duplicating the hash component
fix: Pages metadata missing line numbers. This could have resulted in redirects precedence ordering not being respected.

* [#2268](https://github.com/cloudflare/wrangler2/pull/2268) [`3be1c2cf`](https://github.com/cloudflare/wrangler2/commit/3be1c2cf99fdaef1e612937ccc487a5196c5df67) Thanks [@GregBrimble](https://github.com/GregBrimble)! - feat: Add support for `--experimental-local` to `wrangler pages dev` which will use the `workerd` runtime.

Add `@miniflare/tre` environment polyfill to `@cloudflare/pages-shared`.

## 0.0.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pages-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/pages-shared",
"version": "0.0.10",
"version": "0.0.11",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/wrangler2.git",
Expand Down
44 changes: 44 additions & 0 deletions packages/wrangler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# wrangler

## 2.6.0

### Minor Changes

- [#2268](https://github.com/cloudflare/wrangler2/pull/2268) [`3be1c2cf`](https://github.com/cloudflare/wrangler2/commit/3be1c2cf99fdaef1e612937ccc487a5196c5df67) Thanks [@GregBrimble](https://github.com/GregBrimble)! - feat: Add support for `--experimental-local` to `wrangler pages dev` which will use the `workerd` runtime.

Add `@miniflare/tre` environment polyfill to `@cloudflare/pages-shared`.

* [#2163](https://github.com/cloudflare/wrangler2/pull/2163) [`d73a34be`](https://github.com/cloudflare/wrangler2/commit/d73a34be07c0bd14dc2eabc8cb0474f0d4a64c53) Thanks [@jimhawkridge](https://github.com/jimhawkridge)! - feat: Add support for Analytics Engine bindings.

For example:

```
analytics_engine_datasets = [
{ binding = "ANALYTICS", dataset = "my_dataset" }
]
```

### Patch Changes

- [#2177](https://github.com/cloudflare/wrangler2/pull/2177) [`e98613f8`](https://github.com/cloudflare/wrangler2/commit/e98613f8e2f417f996f351a67cdff54c05f0d194) Thanks [@caass](https://github.com/caass)! - Trigger login flow if a user runs `wrangler dev` while logged out

Previously, we would just error if a user logged out and then ran `wrangler dev`.
Now, we kick them to the OAuth flow and suggest running `wrangler dev --local` if
the login fails.

Closes [#2147](https://github.com/cloudflare/wrangler2/issues/2147)

* [#2298](https://github.com/cloudflare/wrangler2/pull/2298) [`bb5e4f91`](https://github.com/cloudflare/wrangler2/commit/bb5e4f91512d9e12e7a90a9db3ee426b5e535934) Thanks [@rozenmd](https://github.com/rozenmd)! - fix: d1 not using the preview database when using `wrangler dev`

After this fix, wrangler will correctly connect to the preview database, rather than the prod database when using `wrangler dev`

- [#2176](https://github.com/cloudflare/wrangler2/pull/2176) [`d48ee112`](https://github.com/cloudflare/wrangler2/commit/d48ee1124a4a7a8834e228ccdaafbc3fc71b9357) Thanks [@caass](https://github.com/caass)! - Use the user's preferred default branch name if set in .gitconfig.

Previously, we would initialize new workers with `main` as the name of the default branch.
Now, we see if the user has a custom setting in .gitconfig for `init.defaultBranch`, and use
that if it exists.

Closes #2112

* [#2275](https://github.com/cloudflare/wrangler2/pull/2275) [`bbfb6a96`](https://github.com/cloudflare/wrangler2/commit/bbfb6a960e1f57a1b3214497f05f1d55b8dfb5c0) Thanks [@mrbbot](https://github.com/mrbbot)! - Fix script reloads, and allow clean exits, when using `--experimental-local` on Linux

- [#2275](https://github.com/cloudflare/wrangler2/pull/2275) [`bbfb6a96`](https://github.com/cloudflare/wrangler2/commit/bbfb6a960e1f57a1b3214497f05f1d55b8dfb5c0) Thanks [@mrbbot](https://github.com/mrbbot)! - Fix DevTools inspector support when using `--(experimental-)local`

## 2.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wrangler",
"version": "2.5.0",
"version": "2.6.0",
"description": "Command-line interface for all things Cloudflare Workers",
"keywords": [
"wrangler",
Expand Down

0 comments on commit 271aece

Please sign in to comment.