Skip to content

Commit

Permalink
Release (next) (#800)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to develop, this PR
will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

`develop` is currently in **pre mode** so this branch has prereleases
rather than normal releases. If you want to exit prereleases, run
`changeset pre exit` on `develop`.

⚠️⚠️⚠️⚠️⚠️⚠️

# Releases
## @headstartwp/core@1.5.0-next.0

### Minor Changes

- 6fa9ec2: Introducing previewRouteHandler to handle preview in Next.js
App Router
-   96ea386: Initial App Router Support
-   e969f38: Introducing SEO handling for App Router
-   2c51bfb: Link handling
-   79ae20e: Adding support for `i18n` routing in app router
- 6fa9ec2: Introducing `revalidateRouteHandler` for handling revalidate
requests in Route Handlers (App Router)
- 4f7a665: Add `forwardBlockProps` to BlocksRenderer which automatically
forwards block props to children components
- ca94535: Introduce `blockContext` prop to BlocksRenderer and
`handleError` in query functions
-   d696703: Multisite support in App Router

### Patch Changes

- 14c398d: remove usage of defaultProps and intropduce the ability to
attach a default test function directly to the component
-   4044248: Introducing `loadHeadstartWpConfig()`
-   9f05f3f: Fix fetch cache option
-   c73d000: Fix: SEO with yoast disabled

## @headstartwp/next@1.5.0-next.0

### Minor Changes

- 6fa9ec2: Introducing previewRouteHandler to handle preview in Next.js
App Router
-   96ea386: Initial App Router Support
-   e969f38: Introducing SEO handling for App Router
-   2c51bfb: Link handling
-   79ae20e: Adding support for `i18n` routing in app router
- 6fa9ec2: Introducing `revalidateRouteHandler` for handling revalidate
requests in Route Handlers (App Router)
- 4f7a665: Add `forwardBlockProps` to BlocksRenderer which automatically
forwards block props to children components
- ca94535: Introduce `blockContext` prop to BlocksRenderer and
`handleError` in query functions
-   d696703: Multisite support in App Router

### Patch Changes

- 14c398d: remove usage of defaultProps and intropduce the ability to
attach a default test function directly to the component
-   4044248: Introducing `loadHeadstartWpConfig()`
-   9f05f3f: Fix fetch cache option
-   c73d000: Fix: SEO with yoast disabled
-   Updated dependencies [6fa9ec2]
-   Updated dependencies [96ea386]
-   Updated dependencies [e969f38]
-   Updated dependencies [2c51bfb]
-   Updated dependencies [79ae20e]
-   Updated dependencies [14c398d]
-   Updated dependencies [6fa9ec2]
-   Updated dependencies [4f7a665]
-   Updated dependencies [4044248]
-   Updated dependencies [9f05f3f]
-   Updated dependencies [ca94535]
-   Updated dependencies [d696703]
-   Updated dependencies [c73d000]
    -   @headstartwp/core@1.5.0-next.0
  • Loading branch information
nicholasio authored Aug 5, 2024
2 parents 2c51bfb + 36511b8 commit b09b696
Show file tree
Hide file tree
Showing 11 changed files with 102 additions and 15 deletions.
31 changes: 31 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"mode": "pre",
"tag": "next",
"initialVersions": {
"@headstartwp/core": "1.4.4",
"@headstartwp/next": "1.4.3",
"@10up/next-redis-cache-provider": "1.0.0",
"@10up/wp-multisite-i18n-nextjs": "0.2.0",
"@10up/wp-multisite-nextjs": "0.2.0",
"@10up/wp-multisite-nextjs-app": "0.1.0",
"@10up/wp-nextjs": "0.2.0",
"@10up/wp-nextjs-app": "0.1.0",
"@10up/wp-polylang-nextjs-app": "0.1.0",
"@headstartwp/headstartwp": "1.1.3"
},
"changesets": [
"cyan-fans-clean",
"forty-apes-repair",
"funny-poems-own",
"fuzzy-cows-press",
"happy-squids-admire",
"large-spies-give",
"moody-emus-matter",
"tall-moles-accept",
"tall-peas-compete",
"tasty-waves-juggle",
"two-weeks-applaud",
"wild-toys-refuse",
"young-planes-jog"
]
}
21 changes: 21 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @headstartwp/core

## 1.5.0-next.0

### Minor Changes

- 6fa9ec2: Introducing previewRouteHandler to handle preview in Next.js App Router
- 96ea386: Initial App Router Support
- e969f38: Introducing SEO handling for App Router
- 2c51bfb: Link handling
- 79ae20e: Adding support for `i18n` routing in app router
- 6fa9ec2: Introducing `revalidateRouteHandler` for handling revalidate requests in Route Handlers (App Router)
- 4f7a665: Add `forwardBlockProps` to BlocksRenderer which automatically forwards block props to children components
- ca94535: Introduce `blockContext` prop to BlocksRenderer and `handleError` in query functions
- d696703: Multisite support in App Router

### Patch Changes

- 14c398d: remove usage of defaultProps and intropduce the ability to attach a default test function directly to the component
- 4044248: Introducing `loadHeadstartWpConfig()`
- 9f05f3f: Fix fetch cache option
- c73d000: Fix: SEO with yoast disabled

## 1.4.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@headstartwp/core",
"version": "1.4.4",
"version": "1.5.0-next.0",
"description": "`@headstartwp/core` is the core package that houses framework-agnostic components and utilities for building headless sites with WordPress.",
"homepage": "https://github.com/10up/headstartwp/blob/develop/packages/core/README.md",
"license": "MIT",
Expand Down
35 changes: 35 additions & 0 deletions packages/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# @headstartwp/next

## 1.5.0-next.0

### Minor Changes

- 6fa9ec2: Introducing previewRouteHandler to handle preview in Next.js App Router
- 96ea386: Initial App Router Support
- e969f38: Introducing SEO handling for App Router
- 2c51bfb: Link handling
- 79ae20e: Adding support for `i18n` routing in app router
- 6fa9ec2: Introducing `revalidateRouteHandler` for handling revalidate requests in Route Handlers (App Router)
- 4f7a665: Add `forwardBlockProps` to BlocksRenderer which automatically forwards block props to children components
- ca94535: Introduce `blockContext` prop to BlocksRenderer and `handleError` in query functions
- d696703: Multisite support in App Router

### Patch Changes

- 14c398d: remove usage of defaultProps and intropduce the ability to attach a default test function directly to the component
- 4044248: Introducing `loadHeadstartWpConfig()`
- 9f05f3f: Fix fetch cache option
- c73d000: Fix: SEO with yoast disabled
- Updated dependencies [6fa9ec2]
- Updated dependencies [96ea386]
- Updated dependencies [e969f38]
- Updated dependencies [2c51bfb]
- Updated dependencies [79ae20e]
- Updated dependencies [14c398d]
- Updated dependencies [6fa9ec2]
- Updated dependencies [4f7a665]
- Updated dependencies [4044248]
- Updated dependencies [9f05f3f]
- Updated dependencies [ca94535]
- Updated dependencies [d696703]
- Updated dependencies [c73d000]
- @headstartwp/core@1.5.0-next.0

## 1.4.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@headstartwp/next",
"version": "1.4.3",
"version": "1.5.0-next.0",
"description": "`@headstartwp/next` is the Next.js bindings for the headless framework.",
"homepage": "https://github.com/10up/headstartwp/blob/develop/packages/next/README.md",
"license": "MIT",
Expand Down Expand Up @@ -58,7 +58,7 @@
"negotiator": "^0.6.3",
"@formatjs/intl-localematcher": "^0.5.4",
"deepmerge": "^4.3.1",
"@headstartwp/core": "^1.4.4",
"@headstartwp/core": "^1.5.0-next.0",
"loader-utils": "^3.2.0",
"schema-utils": "^4.0.0",
"@isaacs/ttlcache": "^1.4.1"
Expand Down
4 changes: 2 additions & 2 deletions projects/wp-multisite-i18n-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"lint": "eslint ."
},
"dependencies": {
"@headstartwp/core": "^1.4.4",
"@headstartwp/next": "^1.4.3",
"@headstartwp/core": "^1.5.0-next.0",
"@headstartwp/next": "^1.5.0-next.0",
"@linaria/core": "^5.0.2",
"@linaria/react": "^5.0.3",
"clsx": "^1.1.1",
Expand Down
4 changes: 2 additions & 2 deletions projects/wp-multisite-nextjs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"react": "^18",
"react-dom": "^18",
"next": "^14.2.5",
"@headstartwp/core": "^1.4.3",
"@headstartwp/next": "^1.4.2"
"@headstartwp/core": "^1.5.0-next.0",
"@headstartwp/next": "^1.5.0-next.0"
},
"devDependencies": {
"@10up/eslint-config": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions projects/wp-multisite-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"lint": "eslint ."
},
"dependencies": {
"@headstartwp/core": "^1.4.4",
"@headstartwp/next": "^1.4.3",
"@headstartwp/core": "^1.5.0-next.0",
"@headstartwp/next": "^1.5.0-next.0",
"@linaria/core": "^5.0.2",
"@linaria/react": "^5.0.3",
"clsx": "^1.1.1",
Expand Down
4 changes: 2 additions & 2 deletions projects/wp-nextjs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"react": "^18",
"react-dom": "^18",
"next": "^14.2.5",
"@headstartwp/core": "^1.4.3",
"@headstartwp/next": "^1.4.2"
"@headstartwp/core": "^1.5.0-next.0",
"@headstartwp/next": "^1.5.0-next.0"
},
"devDependencies": {
"@10up/eslint-config": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions projects/wp-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"tsc": "tsc --noEmit"
},
"dependencies": {
"@headstartwp/core": "^1.4.4",
"@headstartwp/next": "^1.4.3",
"@headstartwp/core": "^1.5.0-next.0",
"@headstartwp/next": "^1.5.0-next.0",
"@10up/next-redis-cache-provider": "^1.0.0",
"@linaria/core": "^5.0.2",
"@linaria/react": "^5.0.3",
Expand Down
4 changes: 2 additions & 2 deletions projects/wp-polylang-nextjs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"react": "^18",
"react-dom": "^18",
"next": "^14.2.5",
"@headstartwp/core": "^1.4.3",
"@headstartwp/next": "^1.4.2"
"@headstartwp/core": "^1.5.0-next.0",
"@headstartwp/next": "^1.5.0-next.0"
},
"devDependencies": {
"@10up/eslint-config": "^4.0.0",
Expand Down

0 comments on commit b09b696

Please sign in to comment.