Skip to content

Commit

Permalink
Merge branch 'canary' into wyattjoh/NEXT-713-unify-request
Browse files Browse the repository at this point in the history
  • Loading branch information
wyattjoh committed Apr 5, 2023
2 parents e45f1f3 + d32ee25 commit b6b4546
Show file tree
Hide file tree
Showing 81 changed files with 852 additions and 456 deletions.
19 changes: 0 additions & 19 deletions .github/.kodiak.toml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/build_test_deploy.yml
Expand Up @@ -3,6 +3,7 @@ on:
branches: ['canary', 'trunk-merge/*']
pull_request:
types: [opened, synchronize]
merge_group:

name: Build, test, and deploy

Expand Down
4 changes: 2 additions & 2 deletions docs/basic-features/image-optimization.md
Expand Up @@ -35,7 +35,7 @@ Now, you can define the `src` for your image (either local or remote).
To use a local image, `import` your `.jpg`, `.png`, or `.webp` files:

```jsx
import profilePic from '../public/me.png'
import profilePic from '../assets/me.png'
```

Dynamic `await import()` or `require()` are _not_ supported. The `import` must be static so it can be analyzed at build time.
Expand All @@ -44,7 +44,7 @@ Next.js will automatically determine the `width` and `height` of your image base

```js
import Image from 'next/image'
import profilePic from '../public/me.png'
import profilePic from '../assets/me.png'

function Home() {
return (
Expand Down
2 changes: 1 addition & 1 deletion docs/migrating/from-gatsby.md
Expand Up @@ -185,7 +185,7 @@ Instead, use the built-in [`next/image`](/docs/api-reference/next/image.md) comp
```jsx
import Image from 'next/image'
import profilePic from '../public/me.png'
import profilePic from '../assets/me.png'

export default function Home() {
return (
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -16,5 +16,5 @@
"registry": "https://registry.npmjs.org/"
}
},
"version": "13.2.5-canary.29"
"version": "13.2.5-canary.30"
}
2 changes: 1 addition & 1 deletion packages/create-next-app/package.json
@@ -1,6 +1,6 @@
{
"name": "create-next-app",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"keywords": [
"react",
"next",
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-next/package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-config-next",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"description": "ESLint configuration used by NextJS.",
"main": "index.js",
"license": "MIT",
Expand All @@ -12,7 +12,7 @@
"test-pack": "cd ../../ && pnpm test-pack eslint-config-next"
},
"dependencies": {
"@next/eslint-plugin-next": "13.2.5-canary.29",
"@next/eslint-plugin-next": "13.2.5-canary.30",
"@rushstack/eslint-patch": "^1.1.3",
"@typescript-eslint/parser": "^5.42.0",
"eslint-import-resolver-node": "^0.3.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-next/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/eslint-plugin-next",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"description": "ESLint plugin for NextJS.",
"main": "dist/index.js",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/font/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/font",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"repository": {
"url": "vercel/next.js",
"directory": "packages/font"
Expand Down
2 changes: 1 addition & 1 deletion packages/next-bundle-analyzer/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/bundle-analyzer",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/next-codemod/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/codemod",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/next-env/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/env",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"keywords": [
"react",
"next",
Expand Down
2 changes: 1 addition & 1 deletion packages/next-mdx/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/mdx",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"main": "index.js",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/next-plugin-storybook/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/plugin-storybook",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"repository": {
"url": "vercel/next.js",
"directory": "packages/next-plugin-storybook"
Expand Down
2 changes: 1 addition & 1 deletion packages/next-polyfill-module/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/polyfill-module",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"description": "A standard library polyfill for ES Modules supporting browsers (Edge 16+, Firefox 60+, Chrome 61+, Safari 10.1+)",
"main": "dist/polyfill-module.js",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/next-polyfill-nomodule/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/polyfill-nomodule",
"version": "13.2.5-canary.29",
"version": "13.2.5-canary.30",
"description": "A polyfill for non-dead, nomodule browsers.",
"main": "dist/polyfill-nomodule.js",
"license": "MIT",
Expand Down

0 comments on commit b6b4546

Please sign in to comment.