Skip to content

Commit

Permalink
Merge branch 'trunk' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasio committed Jun 10, 2024
2 parents f6e005c + 078bba9 commit 19dba01
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 18 deletions.
8 changes: 0 additions & 8 deletions .changeset/short-steaks-bow.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @headstartwp/core

## 1.4.4

### Patch Changes

- f6e005c: Fix: Improve types for better page props type inference.

It also updates types for data fetching hooks to better reflect the fact that `data` is treated as though it is always there and if users do not check for `loading` or `error` by themselves and there's no preloaded data, a runtime fatal error will be issued instead.

## 1.4.3

### 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.3",
"version": "1.4.4",
"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
11 changes: 11 additions & 0 deletions packages/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @headstartwp/next

## 1.4.3

### Patch Changes

- f6e005c: Fix: Improve types for better page props type inference.

It also updates types for data fetching hooks to better reflect the fact that `data` is treated as though it is always there and if users do not check for `loading` or `error` by themselves and there's no preloaded data, a runtime fatal error will be issued instead.

- Updated dependencies [f6e005c]
- @headstartwp/core@1.4.4

## 1.4.2

### 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.2",
"version": "1.4.3",
"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 @@ -50,7 +50,7 @@
},
"dependencies": {
"deepmerge": "^4.3.1",
"@headstartwp/core": "^1.4.3",
"@headstartwp/core": "^1.4.4",
"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.3",
"@headstartwp/next": "^1.4.2",
"@headstartwp/core": "^1.4.4",
"@headstartwp/next": "^1.4.3",
"@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/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.3",
"@headstartwp/next": "^1.4.2",
"@headstartwp/core": "^1.4.4",
"@headstartwp/next": "^1.4.3",
"@linaria/core": "^5.0.2",
"@linaria/react": "^5.0.3",
"clsx": "^1.1.1",
Expand Down
6 changes: 3 additions & 3 deletions projects/wp-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
"tsc": "tsc --noEmit"
},
"dependencies": {
"@headstartwp/core": "^1.4.3",
"@headstartwp/next": "^1.4.2",
"@headstartwp/core": "^1.4.4",
"@headstartwp/next": "^1.4.3",
"@10up/next-redis-cache-provider": "^1.0.0",
"@linaria/core": "^5.0.2",
"@linaria/react": "^5.0.3",
"clsx": "^1.1.1",
"next": "^14.1.0",
"nprogress": "^0.2.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down

0 comments on commit 19dba01

Please sign in to comment.