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 12, 2023
1 parent a1ebac2 commit 3f68a31
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 6 deletions.
7 changes: 7 additions & 0 deletions dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @nhost/dashboard

## 0.20.24

### Patch Changes

- e10389ecf: fix(dashboard): disable run tab when developing locally
- @nhost/react-apollo@5.0.37

## 0.20.23

### 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.23",
"version": "0.20.24",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export default function useProjectRoutes() {
exact: false,
label: 'Run',
icon: <ServicesIcon />,
disabled: !isPlatform,
},
...nhostRoutes,
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function ServicesPage() {
const router = useRouter();
const { openDrawer, openAlertDialog } = useDialog();
const { currentProject } = useCurrentWorkspaceAndProject();
const isPlanFree = currentProject.plan.isFree;
const isPlanFree = currentProject?.plan?.isFree;

const [currentPage, setCurrentPage] = useState(
parseInt(router.query.page as string, 10) || 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstarts/nhost-backend/nhost/nhost.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ httpPoolSize = 100

[functions]
[functions.node]
version = 16
version = 18

[auth]
version = '0.21.3'
Expand Down
6 changes: 6 additions & 0 deletions integrations/apollo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @nhost/apollo

## 5.2.20

### Patch Changes

- 7459a9413: fix: apollo-integration: reset accessToken to null after sign-out

## 5.2.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion integrations/apollo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nhost/apollo",
"version": "5.2.19",
"version": "5.2.20",
"description": "Nhost Apollo Client library",
"license": "MIT",
"keywords": [
Expand Down
7 changes: 7 additions & 0 deletions integrations/react-apollo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @nhost/react-apollo

## 5.0.37

### Patch Changes

- Updated dependencies [7459a9413]
- @nhost/apollo@5.2.20

## 5.0.36

### 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.36",
"version": "5.0.37",
"description": "Nhost React Apollo client",
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit 3f68a31

Please sign in to comment.