Skip to content

Commit

Permalink
Merge upstream changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sync Fork committed Oct 25, 2023
1 parent 1380a64 commit 8fd893b
Show file tree
Hide file tree
Showing 14 changed files with 57 additions and 12 deletions.
9 changes: 9 additions & 0 deletions dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @nhost/dashboard

## 0.20.27

### Patch Changes

- fa79b7709: chore(dashboard): tweaks and fixes to the service form and dialog
- 8df84d782: fix(dashboard): allow resetting custom domains
- @nhost/react-apollo@6.0.0
- @nhost/nextjs@1.13.39

## 0.20.26

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nhost/dashboard",
"version": "0.20.26",
"version": "0.20.27",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
Expand Down
8 changes: 8 additions & 0 deletions integrations/react-apollo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @nhost/react-apollo

## 6.0.0

### Patch Changes

- Updated dependencies [00c363f80]
- Updated dependencies [66c3193bc]
- @nhost/react@2.1.0

## 5.0.38

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion integrations/react-apollo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nhost/react-apollo",
"version": "5.0.38",
"version": "6.0.0",
"description": "Nhost React Apollo client",
"license": "MIT",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions integrations/react-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @nhost/react-urql

## 3.0.0

### Patch Changes

- Updated dependencies [00c363f80]
- Updated dependencies [66c3193bc]
- @nhost/react@2.1.0

## 2.0.33

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion integrations/react-urql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nhost/react-urql",
"version": "2.0.33",
"version": "3.0.0",
"description": "Nhost React URQL client",
"license": "MIT",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @nhost/nextjs

## 1.13.39

### Patch Changes

- Updated dependencies [00c363f80]
- Updated dependencies [66c3193bc]
- @nhost/react@2.1.0

## 1.13.38

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nhost/nextjs",
"version": "1.13.38",
"version": "1.13.39",
"description": "Nhost NextJS library",
"license": "MIT",
"keywords": [
Expand Down
10 changes: 10 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @nhost/react

## 2.1.0

### Minor Changes

- 66c3193bc: Update useChangePassword hook interface to include ActionLoadingState

### Patch Changes

- 00c363f80: fix(docs): update changeEmail usage reference

## 2.0.32

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nhost/react",
"version": "2.0.32",
"version": "2.1.0",
"description": "Nhost React library",
"license": "MIT",
"keywords": [
Expand Down
4 changes: 1 addition & 3 deletions packages/react/src/useChangeEmail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ export interface ChangeEmailHookResult extends ChangeEmailState {
* const handleFormSubmit = async (e) => {
* e.preventDefault();
*
* await changeEmail({
* email: '[email protected]',
* })
* await changeEmail('[email protected]')
* }
* ```
*
Expand Down
6 changes: 6 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @nhost/vue

## 1.13.39

### Patch Changes

- 00c363f80: fix(docs): update changeEmail usage reference

## 1.13.38

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nhost/vue",
"version": "1.13.38",
"version": "1.13.39",
"description": "Nhost Vue library",
"license": "MIT",
"keywords": [
Expand Down
4 changes: 1 addition & 3 deletions packages/vue/src/useChangeEmail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ export interface ChangeEmailComposableResult extends ToRefs<ChangeEmailState> {
* const handleFormSubmit = async (e) => {
* e.preventDefault();
*
* await changeEmail({
* email: '[email protected]',
* })
* await changeEmail('[email protected]')
* }
* ```
*
Expand Down

0 comments on commit 8fd893b

Please sign in to comment.