Compare commits
15 Commits
@nhost/das
...
@nhost/vue
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b0363a4f4c | ||
|
|
17045b2018 | ||
|
|
c49cc11862 | ||
|
|
c83fe7d776 | ||
|
|
235b4c7405 | ||
|
|
c2c0fbd33a | ||
|
|
300e3f49e0 | ||
|
|
a95a77886b | ||
|
|
1f3f683202 | ||
|
|
4c67fd23c4 | ||
|
|
93d8d71e34 | ||
|
|
47bda15ff2 | ||
|
|
4563488b5d | ||
|
|
8fd35f3fea | ||
|
|
9c61c69a7b |
@@ -1,5 +1,22 @@
|
|||||||
# @nhost/dashboard
|
# @nhost/dashboard
|
||||||
|
|
||||||
|
## 0.19.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @nhost/react-apollo@5.0.32
|
||||||
|
- @nhost/nextjs@1.13.34
|
||||||
|
|
||||||
|
## 0.19.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 9c61c69a7: chore(dashboard):add postgres 14.6-20230705-1 to the version selector
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 47bda15ff: feat(settings): add warning to pull config
|
||||||
|
|
||||||
## 0.18.0
|
## 0.18.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/dashboard",
|
"name": "@nhost/dashboard",
|
||||||
"version": "0.18.0",
|
"version": "0.19.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"preinstall": "npx only-allow pnpm",
|
"preinstall": "npx only-allow pnpm",
|
||||||
|
|||||||
@@ -3,7 +3,10 @@ import { ProjectLayout } from '@/components/layout/ProjectLayout';
|
|||||||
import type { SettingsSidebarProps } from '@/components/layout/SettingsSidebar';
|
import type { SettingsSidebarProps } from '@/components/layout/SettingsSidebar';
|
||||||
import { SettingsSidebar } from '@/components/layout/SettingsSidebar';
|
import { SettingsSidebar } from '@/components/layout/SettingsSidebar';
|
||||||
import { RetryableErrorBoundary } from '@/components/presentational/RetryableErrorBoundary';
|
import { RetryableErrorBoundary } from '@/components/presentational/RetryableErrorBoundary';
|
||||||
|
import { Alert } from '@/components/ui/v2/Alert';
|
||||||
import { Box } from '@/components/ui/v2/Box';
|
import { Box } from '@/components/ui/v2/Box';
|
||||||
|
import { Text } from '@/components/ui/v2/Text';
|
||||||
|
import { useCurrentWorkspaceAndProject } from '@/features/projects/common/hooks/useCurrentWorkspaceAndProject';
|
||||||
import { twMerge } from 'tailwind-merge';
|
import { twMerge } from 'tailwind-merge';
|
||||||
|
|
||||||
export interface SettingsLayoutProps extends ProjectLayoutProps {
|
export interface SettingsLayoutProps extends ProjectLayoutProps {
|
||||||
@@ -22,6 +25,9 @@ export default function SettingsLayout({
|
|||||||
sidebarProps: { className: sidebarClassName, ...sidebarProps } = {},
|
sidebarProps: { className: sidebarClassName, ...sidebarProps } = {},
|
||||||
...props
|
...props
|
||||||
}: SettingsLayoutProps) {
|
}: SettingsLayoutProps) {
|
||||||
|
const { currentProject } = useCurrentWorkspaceAndProject();
|
||||||
|
const hasGitRepo = !!currentProject?.githubRepository;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ProjectLayout
|
<ProjectLayout
|
||||||
mainContainerProps={{
|
mainContainerProps={{
|
||||||
@@ -37,9 +43,39 @@ export default function SettingsLayout({
|
|||||||
|
|
||||||
<Box
|
<Box
|
||||||
sx={{ backgroundColor: 'background.default' }}
|
sx={{ backgroundColor: 'background.default' }}
|
||||||
className="flex w-full flex-auto flex-col overflow-x-hidden"
|
className="flex w-full flex-auto flex-col overflow-scroll overflow-x-hidden"
|
||||||
>
|
>
|
||||||
<RetryableErrorBoundary>{children}</RetryableErrorBoundary>
|
<RetryableErrorBoundary>
|
||||||
|
{hasGitRepo && (
|
||||||
|
<Alert
|
||||||
|
severity="warning"
|
||||||
|
className="grid grid-flow-row place-content-center gap-2"
|
||||||
|
>
|
||||||
|
<Text color="warning" className="text-sm ">
|
||||||
|
As you have a connected repository, make sure to synchronize
|
||||||
|
your changes with{' '}
|
||||||
|
<code className="rounded-md bg-slate-200 px-2 py-px text-slate-500">
|
||||||
|
nhost config pull
|
||||||
|
</code>{' '}
|
||||||
|
or they may be reverted with the next push.
|
||||||
|
<br />
|
||||||
|
If there are multiple projects linked to the same repository and
|
||||||
|
you only want these changes to apply to a subset of them, please
|
||||||
|
check out{' '}
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="underline"
|
||||||
|
href="https://docs.nhost.io/cli/overlays"
|
||||||
|
>
|
||||||
|
docs.nhost.io/cli/overlays
|
||||||
|
</a>{' '}
|
||||||
|
for guidance.
|
||||||
|
</Text>
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
{children}
|
||||||
|
</RetryableErrorBoundary>
|
||||||
</Box>
|
</Box>
|
||||||
</ProjectLayout>
|
</ProjectLayout>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ export type DatabaseServiceVersionFormValues = Yup.InferType<
|
|||||||
>;
|
>;
|
||||||
|
|
||||||
const AVAILABLE_POSTGRES_VERSIONS = [
|
const AVAILABLE_POSTGRES_VERSIONS = [
|
||||||
|
'14.6-20230705-1',
|
||||||
'14.6-20230613-1',
|
'14.6-20230613-1',
|
||||||
'14.6-20230525',
|
'14.6-20230525',
|
||||||
'14.6-20230406-2',
|
'14.6-20230406-2',
|
||||||
|
|||||||
@@ -69,12 +69,12 @@ HTTP endpoints are automatically generated based on the file structure inside `f
|
|||||||
|
|
||||||
Here's an example of four Serverless Functions with their files and their HTTP endpoints:
|
Here's an example of four Serverless Functions with their files and their HTTP endpoints:
|
||||||
|
|
||||||
| File | HTTP Endpoint |
|
| File | HTTP Endpoint |
|
||||||
| --------------------------- | ----------------------------------------------------------------- |
|
| --------------------------- | ------------------------------------------------------------------ |
|
||||||
| `functions/index.js` | `https://[project-subdomain].nhost.run/v1/functions/` |
|
| `functions/index.js` | `https://[subdomain].functions.[region].nhost.run/v1/` |
|
||||||
| `functions/users/index.ts` | `https://[project-subdomain].nhost.run/v1/functions/users` |
|
| `functions/users/index.ts` | `https://[subdomain].functions.[region].nhost.run/v1/users` |
|
||||||
| `functions/users/active.ts` | `https://[project-subdomain].nhost.run/v1/functions/users/active` |
|
| `functions/users/active.ts` | `https://[subdomain].functions.[region].nhost.run/v1/users/active` |
|
||||||
| `functions/my-company.js` | `https://[project-subdomain].nhost.run/v1/functions/my-company` |
|
| `functions/my-company.js` | `https://[subdomain].functions.[region].nhost.run/v1/my-company` |
|
||||||
|
|
||||||
You can prepend files and folders with an underscore (`_`) to prevent them from being treated as Serverless Functions and
|
You can prepend files and folders with an underscore (`_`) to prevent them from being treated as Serverless Functions and
|
||||||
be turned into HTTP endpoints. This is useful if you have, for example, a utils file (`functions/_utils.js`) or a utils-f
|
be turned into HTTP endpoints. This is useful if you have, for example, a utils file (`functions/_utils.js`) or a utils-f
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
HASURA_GRAPHQL_ADMIN_SECRET=nhost-admin-secret
|
HASURA_GRAPHQL_ADMIN_SECRET='nhost-admin-secret'
|
||||||
HASURA_GRAPHQL_JWT_SECRET=oqpdwyffgxncqamwlyebkaifyazvqgso
|
HASURA_GRAPHQL_JWT_SECRET='oqpdwyffgxncqamwlyebkaifyazvqgso'
|
||||||
NHOST_WEBHOOK_SECRET=nhost-webhook-secret
|
NHOST_WEBHOOK_SECRET='nhost-webhook-secret'
|
||||||
GRAFANA_ADMIN_PASSWORD=FIXME
|
GRAFANA_ADMIN_PASSWORD='FIXME'
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @nhost/apollo
|
# @nhost/apollo
|
||||||
|
|
||||||
|
## 5.2.15
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @nhost/nhost-js@2.2.13
|
||||||
|
|
||||||
## 5.2.14
|
## 5.2.14
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/apollo",
|
"name": "@nhost/apollo",
|
||||||
"version": "5.2.14",
|
"version": "5.2.15",
|
||||||
"description": "Nhost Apollo Client library",
|
"description": "Nhost Apollo Client library",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# @nhost/react-apollo
|
# @nhost/react-apollo
|
||||||
|
|
||||||
|
## 5.0.32
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @nhost/apollo@5.2.15
|
||||||
|
- @nhost/react@2.0.28
|
||||||
|
|
||||||
## 5.0.31
|
## 5.0.31
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/react-apollo",
|
"name": "@nhost/react-apollo",
|
||||||
"version": "5.0.31",
|
"version": "5.0.32",
|
||||||
"description": "Nhost React Apollo client",
|
"description": "Nhost React Apollo client",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @nhost/react-urql
|
# @nhost/react-urql
|
||||||
|
|
||||||
|
## 2.0.29
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @nhost/react@2.0.28
|
||||||
|
|
||||||
## 2.0.28
|
## 2.0.28
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/react-urql",
|
"name": "@nhost/react-urql",
|
||||||
"version": "2.0.28",
|
"version": "2.0.29",
|
||||||
"description": "Nhost React URQL client",
|
"description": "Nhost React URQL client",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
HASURA_GRAPHQL_ADMIN_SECRET=nhost-admin-secret
|
HASURA_GRAPHQL_ADMIN_SECRET='nhost-admin-secret'
|
||||||
HASURA_GRAPHQL_JWT_SECRET=oqpdwyffgxncqamwlyebkaifyazvqgso
|
HASURA_GRAPHQL_JWT_SECRET='oqpdwyffgxncqamwlyebkaifyazvqgso'
|
||||||
NHOST_WEBHOOK_SECRET=nhost-webhook-secret
|
NHOST_WEBHOOK_SECRET='nhost-webhook-secret'
|
||||||
GRAFANA_ADMIN_PASSWORD=FIXME
|
GRAFANA_ADMIN_PASSWORD='FIXME'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
HASURA_GRAPHQL_ADMIN_SECRET=nhost-admin-secret
|
HASURA_GRAPHQL_ADMIN_SECRET='nhost-admin-secret'
|
||||||
HASURA_GRAPHQL_JWT_SECRET=oqpdwyffgxncqamwlyebkaifyazvqgso
|
HASURA_GRAPHQL_JWT_SECRET='oqpdwyffgxncqamwlyebkaifyazvqgso'
|
||||||
NHOST_WEBHOOK_SECRET=nhost-webhook-secret
|
NHOST_WEBHOOK_SECRET='nhost-webhook-secret'
|
||||||
GRAFANA_ADMIN_PASSWORD=FIXME
|
GRAFANA_ADMIN_PASSWORD='FIXME'
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @nhost/hasura-storage-js
|
# @nhost/hasura-storage-js
|
||||||
|
|
||||||
|
## 2.2.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 300e3f49e: fix(hasura-storage-js): fix file upload formData field
|
||||||
|
|
||||||
## 2.2.1
|
## 2.2.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/hasura-storage-js",
|
"name": "@nhost/hasura-storage-js",
|
||||||
"version": "2.2.1",
|
"version": "2.2.2",
|
||||||
"description": "Hasura-storage client",
|
"description": "Hasura-storage client",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ export const createFileUploadMachine = () =>
|
|||||||
uploadFile: (context, event) => (callback) => {
|
uploadFile: (context, event) => (callback) => {
|
||||||
const file = (event.file || context.file)!
|
const file = (event.file || context.file)!
|
||||||
const data = new FormData()
|
const data = new FormData()
|
||||||
data.append('file', file)
|
data.append('file[]', file)
|
||||||
|
|
||||||
let currentLoaded = 0
|
let currentLoaded = 0
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @nhost/nextjs
|
# @nhost/nextjs
|
||||||
|
|
||||||
|
## 1.13.34
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @nhost/react@2.0.28
|
||||||
|
|
||||||
## 1.13.33
|
## 1.13.33
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/nextjs",
|
"name": "@nhost/nextjs",
|
||||||
"version": "1.13.33",
|
"version": "1.13.34",
|
||||||
"description": "Nhost NextJS library",
|
"description": "Nhost NextJS library",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
HASURA_GRAPHQL_ADMIN_SECRET=nhost-admin-secret
|
HASURA_GRAPHQL_ADMIN_SECRET='nhost-admin-secret'
|
||||||
HASURA_GRAPHQL_JWT_SECRET=oqpdwyffgxncqamwlyebkaifyazvqgso
|
HASURA_GRAPHQL_JWT_SECRET='oqpdwyffgxncqamwlyebkaifyazvqgso'
|
||||||
NHOST_WEBHOOK_SECRET=nhost-webhook-secret
|
NHOST_WEBHOOK_SECRET='nhost-webhook-secret'
|
||||||
GRAFANA_ADMIN_PASSWORD=FIXME
|
GRAFANA_ADMIN_PASSWORD='FIXME'
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# @nhost/nhost-js
|
# @nhost/nhost-js
|
||||||
|
|
||||||
|
## 2.2.13
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [300e3f49e]
|
||||||
|
- @nhost/hasura-storage-js@2.2.2
|
||||||
|
|
||||||
## 2.2.12
|
## 2.2.12
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/nhost-js",
|
"name": "@nhost/nhost-js",
|
||||||
"version": "2.2.12",
|
"version": "2.2.13",
|
||||||
"description": "Nhost JavaScript SDK",
|
"description": "Nhost JavaScript SDK",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @nhost/react
|
# @nhost/react
|
||||||
|
|
||||||
|
## 2.0.28
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @nhost/nhost-js@2.2.13
|
||||||
|
|
||||||
## 2.0.27
|
## 2.0.27
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/react",
|
"name": "@nhost/react",
|
||||||
"version": "2.0.27",
|
"version": "2.0.28",
|
||||||
"description": "Nhost React library",
|
"description": "Nhost React library",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @nhost/vue
|
# @nhost/vue
|
||||||
|
|
||||||
|
## 1.13.33
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @nhost/nhost-js@2.2.13
|
||||||
|
|
||||||
## 1.13.32
|
## 1.13.32
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/vue",
|
"name": "@nhost/vue",
|
||||||
"version": "1.13.32",
|
"version": "1.13.33",
|
||||||
"description": "Nhost Vue library",
|
"description": "Nhost Vue library",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
Reference in New Issue
Block a user