Skip to content

Commit

Permalink
Version Packages (#381)
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 Jul 17, 2023
1 parent 619beea commit ef63ae2
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 28 deletions.
21 changes: 0 additions & 21 deletions .changeset/clean-experts-tap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-terms-boil.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/eslint-plugin-next-on-pages/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# eslint-plugin-next-on-pages

## 1.3.1

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-next-on-pages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-next-on-pages",
"version": "1.3.0",
"version": "1.3.1",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
Expand Down
24 changes: 24 additions & 0 deletions packages/next-on-pages/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @cloudflare/next-on-pages

## 1.3.1

### Patch Changes

- 619beea: bundle assets produced by the Vercel build and make them accessible via fetch

Vercel/Next can allow access binary assets bundled with their edge functions in the following manner:

```
const font = fetch(new URL('../../assets/asset-x', import.meta.url)).then(
(res) => res.arrayBuffer(),
);
```

As you can see in this `@vercel/og` example:
https://vercel.com/docs/concepts/functions/edge-functions/og-image-generation/og-image-examples#using-a-custom-font

This sort of access to bindings is necessary for the `@vercel/og` package to work and might be used in other packages
as well, so it is something that we need to support.
We do so by making sure that we properly bind the assets found in the Vercel build output into our worker
and that fetches to such assets (using blob urls) are correctly handled (this requires us to patch the global `fetch` function)

- 76a8bb4: Fix multiple search params with the same key not being preserved

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/next-on-pages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/next-on-pages",
"version": "1.3.0",
"version": "1.3.1",
"bin": "./bin/index.js",
"scripts": {
"lint": "eslint src",
Expand Down

0 comments on commit ef63ae2

Please sign in to comment.