Compare commits

...

23 Commits

Author SHA1 Message Date
Szilárd Dóró
ce3ece1ad7 Merge pull request #1714 from nhost/changeset-release/main
chore: update versions
2023-03-08 09:21:29 +01:00
github-actions[bot]
c81002622c chore: update versions 2023-03-07 16:27:40 +00:00
Szilárd Dóró
35fa6bb043 Merge pull request #1712 from nhost/fix/functions
fix(nhost-js): correct return type in functions
2023-03-07 17:24:07 +01:00
Szilárd Dóró
b8f11a13d7 fix: add missing type 2023-03-07 15:09:35 +01:00
Szilárd Dóró
1d1555593f fix: correct return type in functions 2023-03-07 15:03:28 +01:00
Szilárd Dóró
99fcc36250 Merge pull request #1695 from nhost/changeset-release/main
chore: update versions
2023-03-07 10:22:13 +01:00
github-actions[bot]
7e4a756cfe chore: update versions 2023-03-06 07:49:58 +00:00
Szilárd Dóró
5bf61583e0 Merge pull request #1699 from nhost/renovate/xstate-inspect-0.x
chore(deps): update dependency @xstate/inspect to ^0.8.0
2023-03-06 08:48:24 +01:00
Szilárd Dóró
7eac17a1cb chore: add changeset 2023-03-06 08:48:02 +01:00
Szilárd Dóró
a41aeeb9ef Merge pull request #1697 from nhost/fix/deployment-glitch
fix(dashboard): show correct deployment status on the main page
2023-03-03 15:37:22 +01:00
Johan Eliasson
e33df513ff Merge pull request #1698 from nhost/chatgpt-b9asdasd
tests: hasura-storage-js
2023-03-03 15:20:27 +01:00
Johan Eliasson
323fd5cbe3 Update packages/hasura-storage-js/src/utils/index.ts
Co-authored-by: Szilárd Dóró <doroszilard@icloud.com>
2023-03-03 13:30:36 +01:00
renovate[bot]
ffb3c426d3 chore(deps): update dependency @xstate/inspect to ^0.8.0 2023-03-03 00:17:57 +00:00
Johan Eliasson
889ee6589e added tests 2023-03-02 23:13:03 +01:00
Szilárd Dóró
5223ee9353 fix(dashboard): don't show weird deployment dates 2023-03-02 14:08:59 +01:00
Szilárd Dóró
c8c5ace7cc Merge pull request #1500 from nhost/renovate/turbo-1.x
chore(deps): update dependency turbo to v1.8.3
2023-03-02 13:05:29 +01:00
Johan Eliasson
c6a4c28579 Merge pull request #1694 from nhost/renovate-changesets
chore: create changesest from Renovate bumps
2023-03-02 12:36:10 +01:00
szilarddoro
850a049ca2 chore(deps): update docker/build-push-action action to v4 2023-03-02 11:36:03 +00:00
Szilárd Dóró
eff3f0aefd Merge pull request #1641 from nhost/renovate/docker-build-push-action-4.x
chore(deps): update docker/build-push-action action to v4
2023-03-02 12:34:35 +01:00
Szilárd Dóró
2b1338f716 chore(deps): bump turbo for the dashboard 2023-03-02 11:50:48 +01:00
Szilárd Dóró
2b58c60747 Merge remote-tracking branch 'origin/main' into renovate/turbo-1.x 2023-03-02 11:44:21 +01:00
renovate[bot]
369b931689 chore(deps): update dependency turbo to v1.8.3 2023-03-02 08:56:38 +00:00
renovate[bot]
7d577a68b7 chore(deps): update docker/build-push-action action to v4 2023-02-20 10:08:41 +00:00
41 changed files with 805 additions and 198 deletions

View File

@@ -98,7 +98,7 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push to Docker Hub
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
timeout-minutes: 60
with:
context: .

View File

@@ -1,5 +1,23 @@
# @nhost/dashboard
## 0.12.4
### Patch Changes
- @nhost/react-apollo@5.0.9
- @nhost/nextjs@1.13.14
## 0.12.3
### Patch Changes
- 2b1338f7: chore(dashboard): bump `turbo` to 1.8.3
- 5223ee93: fix(dashboard): show correct deployment status on the main page
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [850a049c]
- @nhost/nextjs@1.13.13
- @nhost/react-apollo@5.0.8
## 0.12.2
### Patch Changes

View File

@@ -3,7 +3,7 @@ RUN apk add --no-cache libc6-compat
RUN apk update
WORKDIR /app
RUN yarn global add turbo@1.6.3
RUN yarn global add turbo@1.8.3
COPY . .
RUN turbo prune --scope="@nhost/dashboard" --docker

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/dashboard",
"version": "0.12.2",
"version": "0.12.4",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
@@ -116,6 +116,7 @@
"babel-loader": "^8.3.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"csstype": "^3.0.10",
"encoding": "^0.1.13",
"eslint": "^8.28.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",

View File

@@ -1,4 +1,7 @@
import { useDeleteApplicationMutation } from '@/generated/graphql';
import {
GetOneUserDocument,
useDeleteApplicationMutation,
} from '@/generated/graphql';
import { useCurrentWorkspaceAndApplication } from '@/hooks/useCurrentWorkspaceAndApplication';
import Button from '@/ui/v2/Button';
import ArrowRightIcon from '@/ui/v2/icons/ArrowRightIcon';
@@ -12,7 +15,9 @@ import { useRouter } from 'next/router';
export default function ApplicationInfo() {
const { currentApplication } = useCurrentWorkspaceAndApplication();
const [deleteApplication, { client }] = useDeleteApplicationMutation();
const [deleteApplication, { client }] = useDeleteApplicationMutation({
refetchQueries: [GetOneUserDocument],
});
const router = useRouter();
async function handleClickRemove() {

View File

@@ -1,8 +1,8 @@
import DeploymentStatusMessage from '@/components/deployments/DeploymentStatusMessage';
import { FindOldApps } from '@/components/home';
import type { UserData } from '@/hooks/useGetAllUserWorkspacesAndApplications';
import type { ApplicationState } from '@/types/application';
import { ApplicationStatus } from '@/types/application';
import { Avatar } from '@/ui/Avatar';
import StateBadge from '@/ui/StateBadge';
import type { DeploymentStatus } from '@/ui/StatusCircle';
import { StatusCircle } from '@/ui/StatusCircle';
@@ -10,59 +10,11 @@ import Divider from '@/ui/v2/Divider';
import Link from '@/ui/v2/Link';
import List from '@/ui/v2/List';
import { ListItem } from '@/ui/v2/ListItem';
import Text from '@/ui/v2/Text';
import { getApplicationStatusString } from '@/utils/helpers';
import { formatDistance } from 'date-fns';
import Image from 'next/image';
import NavLink from 'next/link';
import { Fragment } from 'react';
function ApplicationCreatedAt({ createdAt }: any) {
return (
<Text component="span" className="text-sm">
created{' '}
{formatDistance(new Date(createdAt), new Date(), {
addSuffix: true,
})}
</Text>
);
}
function LastSuccessfulDeployment({ deployment }: any) {
return (
<span className="flex flex-row">
<Avatar
component="span"
name={deployment.commitUserName}
avatarUrl={deployment.commitUserAvatarUrl}
className="mr-1 h-4 w-4 self-center"
/>
<Text component="span" className="self-center text-sm">
{deployment.commitUserName} deployed{' '}
{formatDistance(new Date(deployment.deploymentEndedAt), new Date(), {
addSuffix: true,
})}
</Text>
</span>
);
}
function CurrentDeployment({ deployment }: any) {
return (
<span className="flex flex-row">
<Avatar
component="span"
name={deployment.commitUserName}
avatarUrl={deployment.commitUserAvatarUrl}
className="mr-1 h-4 w-4 self-center"
/>
<Text component="span" className="self-center text-sm">
{deployment.commitUserName} updated just now
</Text>
</span>
);
}
export function checkStatusOfTheApplication(
stateHistory: ApplicationState[] | [],
) {
@@ -141,27 +93,23 @@ export function RenderWorkspacesWithApps({
</NavLink>
<List className="grid grid-flow-row border-y">
{workspaceProjects.map((app, index) => {
const isDeployingToProduction = app.deployments[0]
? ['SCHEDULED', 'PENDING', 'DEPLOYING'].includes(
app.deployments[0].deploymentStatus,
)
: false;
const [latestDeployment] = app.deployments;
return (
<Fragment key={app.slug}>
<ListItem.Root
secondaryAction={
<div className="grid grid-flow-col gap-px">
{app.deployments[0] && (
{latestDeployment && (
<div className="mr-2 flex self-center align-middle">
<StatusCircle
status={
app.deployments[0]
.deploymentStatus as DeploymentStatus
latestDeployment.deploymentStatus as DeploymentStatus
}
/>
</div>
)}
<StateBadge
status={checkStatusOfTheApplication(
app.appStates,
@@ -192,27 +140,10 @@ export function RenderWorkspacesWithApps({
<ListItem.Text
primary={app.name}
secondary={
<>
{isDeployingToProduction && (
<CurrentDeployment
deployment={app.deployments[0]}
/>
)}
{!isDeployingToProduction &&
app.deployments[0] && (
<LastSuccessfulDeployment
deployment={app.deployments[0]}
/>
)}
{!isDeployingToProduction &&
!app.deployments[0] && (
<ApplicationCreatedAt
createdAt={app.createdAt}
/>
)}
</>
<DeploymentStatusMessage
appCreatedAt={app.createdAt}
deployment={latestDeployment}
/>
}
/>
</ListItem.Button>

View File

@@ -0,0 +1,94 @@
import type { Deployment } from '@/types/application';
import { render, screen } from '@/utils/testUtils';
import { test, vi } from 'vitest';
import DeploymentStatusMessage from './DeploymentStatusMessage';
const defaultDeployment: Deployment = {
id: 'de305d54-75b4-431b-adb2-eb6b9e546013',
commitUserName: 'john.doe',
commitUserAvatarUrl: 'https://example.com/avatar.png',
deploymentStartedAt: '2023-02-24T12:00:00.000Z',
deploymentEndedAt: null,
deploymentStatus: 'SCHEDULED',
commitSHA: '1234567890',
commitMessage: 'Update README.md',
};
beforeAll(() => {
vi.useFakeTimers();
});
afterAll(() => {
vi.useRealTimers();
});
test('should render the avatar of the user who deployed the application', () => {
render(
<DeploymentStatusMessage
deployment={defaultDeployment}
appCreatedAt="2023-02-24"
/>,
);
expect(
screen.getByRole('img', {
name: `Avatar of ${defaultDeployment.commitUserName}`,
}),
).toHaveAttribute(
'style',
`background-image: url(${defaultDeployment.commitUserAvatarUrl});`,
);
});
test('should render "updated just now" when the deployment is in progress and has not ended', () => {
render(
<DeploymentStatusMessage
deployment={defaultDeployment}
appCreatedAt="2023-02-24"
/>,
);
expect(screen.getByText(/updated just now/i)).toBeInTheDocument();
});
test('should render "updated just now" when the deployment\'s status is DEPLOYED, but it doesn\'t have an end date for some reason', () => {
render(
<DeploymentStatusMessage
deployment={{
...defaultDeployment,
deploymentStatus: 'DEPLOYED',
deploymentEndedAt: null,
}}
appCreatedAt="2023-02-24"
/>,
);
expect(screen.getByText(/updated just now/i)).toBeInTheDocument();
});
test('should render "deployed 1 day ago" when the deployment has ended', () => {
vi.setSystemTime(new Date('2023-02-25T12:25:00.000Z'));
render(
<DeploymentStatusMessage
deployment={{
...defaultDeployment,
deploymentStatus: 'DEPLOYED',
deploymentEndedAt: '2023-02-24T12:15:00.000Z',
}}
appCreatedAt="2023-02-24"
/>,
);
expect(screen.getByText(/deployed 1 day ago/i)).toBeInTheDocument();
});
test('should render "created 1 day ago" if the application does not have a deployment', () => {
vi.setSystemTime(new Date('2023-02-25T12:25:00.000Z'));
render(
<DeploymentStatusMessage deployment={null} appCreatedAt="2023-02-24" />,
);
expect(screen.getByText(/created 1 day ago/i)).toBeInTheDocument();
});

View File

@@ -0,0 +1,73 @@
import type { Deployment } from '@/types/application';
import { Avatar } from '@/ui/Avatar';
import Text from '@/ui/v2/Text';
import formatDistance from 'date-fns/formatDistance';
export interface DeploymentStatusMessageProps {
/**
* The deployment to render the status message for.
*/
deployment: Partial<Deployment>;
/**
* The date the application was created.
*/
appCreatedAt: string;
}
export default function DeploymentStatusMessage({
deployment,
appCreatedAt,
}: DeploymentStatusMessageProps) {
const isDeployingToProduction = [
'SCHEDULED',
'PENDING',
'DEPLOYING',
].includes(deployment?.deploymentStatus);
if (
isDeployingToProduction ||
(deployment && !deployment.deploymentEndedAt)
) {
return (
<span className="flex flex-row">
<Avatar
component="span"
name={deployment.commitUserName}
avatarUrl={deployment.commitUserAvatarUrl}
className="mr-1 h-4 w-4 self-center"
/>
<Text component="span" className="self-center text-sm">
{deployment.commitUserName} updated just now
</Text>
</span>
);
}
if (!isDeployingToProduction && deployment?.deploymentEndedAt) {
return (
<span className="flex flex-row">
<Avatar
component="span"
name={deployment.commitUserName}
avatarUrl={deployment.commitUserAvatarUrl}
className="mr-1 h-4 w-4 self-center"
/>
<Text component="span" className="self-center text-sm">
{deployment.commitUserName} deployed{' '}
{formatDistance(new Date(deployment.deploymentEndedAt), new Date(), {
addSuffix: true,
})}
</Text>
</span>
);
}
return (
<Text component="span" className="text-sm">
created{' '}
{formatDistance(new Date(appCreatedAt), new Date(), {
addSuffix: true,
})}
</Text>
);
}

View File

@@ -0,0 +1,2 @@
export * from './DeploymentStatusMessage';
export { default } from './DeploymentStatusMessage';

View File

@@ -59,7 +59,8 @@ export function Avatar({
<Box
style={Object.assign(style, { backgroundImage: `url(${avatarUrl})` })}
className={classes}
aria-label="Avatar"
aria-label={name ? `Avatar of ${name}` : 'Avatar'}
role="img"
{...rest}
/>
);

View File

@@ -1,5 +1,15 @@
# @nhost-examples/vue-quickstart
## 0.0.8
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [7eac17a1]
- Updated dependencies [850a049c]
- @nhost/vue@1.13.13
- @nhost/apollo@5.0.7
## 0.0.7
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost-examples/vue-quickstart",
"version": "0.0.7",
"version": "0.0.8",
"private": true,
"scripts": {
"build": "vite build",

View File

@@ -1,5 +1,20 @@
# @nhost/apollo
## 5.0.8
### Patch Changes
- Updated dependencies [1d155559]
- @nhost/nhost-js@2.0.8
## 5.0.7
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [850a049c]
- @nhost/nhost-js@2.0.7
## 5.0.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/apollo",
"version": "5.0.6",
"version": "5.0.8",
"description": "Nhost Apollo Client library",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,21 @@
# @nhost/react-apollo
## 5.0.9
### Patch Changes
- @nhost/apollo@5.0.8
- @nhost/react@2.0.8
## 5.0.8
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [850a049c]
- @nhost/apollo@5.0.7
- @nhost/react@2.0.7
## 5.0.7
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/react-apollo",
"version": "5.0.7",
"version": "5.0.9",
"description": "Nhost React Apollo client",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,19 @@
# @nhost/react-urql
## 2.0.8
### Patch Changes
- @nhost/react@2.0.8
## 2.0.7
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [850a049c]
- @nhost/react@2.0.7
## 2.0.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/react-urql",
"version": "2.0.6",
"version": "2.0.8",
"description": "Nhost React URQL client",
"license": "MIT",
"keywords": [

View File

@@ -76,7 +76,7 @@
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"turbo": "1.6.3",
"turbo": "1.8.3",
"typedoc": "^0.22.18",
"typescript": "4.9.5",
"vite": "^4.0.2",

View File

@@ -1,5 +1,11 @@
# @nhost/docgen
## 0.1.8
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
## 0.1.7
### Patch Changes

View File

@@ -2,7 +2,7 @@
"name": "@nhost/docgen",
"description": "Documentation generator for classes and functions",
"private": true,
"version": "0.1.7",
"version": "0.1.8",
"license": "MIT",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",

View File

@@ -1,5 +1,11 @@
# @nhost/graphql-js
## 0.0.5
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
## 0.0.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/graphql-js",
"version": "0.0.4",
"version": "0.0.5",
"description": "Nhost GraphQL client",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @nhost/hasura-auth-js
## 2.0.2
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
## 2.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/hasura-auth-js",
"version": "2.0.1",
"version": "2.0.2",
"description": "Hasura-auth client",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @nhost/hasura-storage-js
## 2.0.3
### Patch Changes
- 889ee658: added tests
- 850a049c: chore(deps): update docker/build-push-action action to v4
## 2.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/hasura-storage-js",
"version": "2.0.2",
"version": "2.0.3",
"description": "Hasura-storage client",
"license": "MIT",
"keywords": [

View File

@@ -7,7 +7,7 @@ export const appendImageTransformationParameters = (
params: StorageImageTransformationParams
): string => {
const queryParameters = Object.entries(params)
.map(([key, value]) => `${Array.from(key)[0]}=${value}`)
.map(([key, value]) => `${key.charAt(0)}=${value}`)
.join('&')
return queryParameters ? `${url}?${queryParameters}` : url
}

View File

@@ -0,0 +1,23 @@
import { describe, expect, it } from 'vitest'
import { appendImageTransformationParameters, StorageImageTransformationParams } from '../src/utils'
describe('appendImageTransformationParameters', () => {
it('appends image transformation parameters to the url', () => {
const url = 'https://example.com/image.jpg'
const params: StorageImageTransformationParams = {
width: 200,
height: 300,
quality: 80,
blur: 10
}
const result = appendImageTransformationParameters(url, params)
expect(result).toBe('https://example.com/image.jpg?w=200&h=300&q=80&b=10')
})
it('returns the original url when no parameters are provided', () => {
const url = 'https://example.com/image.jpg'
const params: StorageImageTransformationParams = {}
const result = appendImageTransformationParameters(url, params)
expect(result).toBe('https://example.com/image.jpg')
})
})

View File

@@ -1,5 +1,19 @@
# @nhost/nextjs
## 1.13.14
### Patch Changes
- @nhost/react@2.0.8
## 1.13.13
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [850a049c]
- @nhost/react@2.0.7
## 1.13.12
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/nextjs",
"version": "1.13.12",
"version": "1.13.14",
"description": "Nhost NextJS library",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,22 @@
# @nhost/nhost-js
## 2.0.8
### Patch Changes
- 1d155559: fix(nhost-js): allow `null` as body and return JSON when `content-type` is `application/json`
## 2.0.7
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [889ee658]
- Updated dependencies [850a049c]
- @nhost/hasura-storage-js@2.0.3
- @nhost/graphql-js@0.0.5
- @nhost/hasura-auth-js@2.0.2
## 2.0.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/nhost-js",
"version": "2.0.6",
"version": "2.0.8",
"description": "Nhost JavaScript SDK",
"license": "MIT",
"keywords": [

View File

@@ -40,7 +40,7 @@ export class NhostFunctionsClient {
async call<T = unknown, D = any>(
url: string,
data: D,
data: D | null,
config?: NhostFunctionCallConfig
): Promise<NhostFunctionCallResponse<T>>
@@ -56,7 +56,7 @@ export class NhostFunctionsClient {
*/
async call<T = unknown, D = any>(
url: string,
body: D,
body: D | null,
config?: NhostFunctionCallConfig
): Promise<NhostFunctionCallResponse<T>> {
const headers: HeadersInit = {
@@ -69,7 +69,7 @@ export class NhostFunctionsClient {
try {
const result = await fetch(fullUrl, {
body: JSON.stringify(body),
body: body ? JSON.stringify(body) : null,
headers,
method: 'POST'
})
@@ -80,7 +80,7 @@ export class NhostFunctionsClient {
let data: T
if (result.headers.get('content-type') === 'application/json') {
if (result.headers.get('content-type')?.includes('application/json')) {
data = await result.json()
} else {
data = (await result.text()) as unknown as T

View File

@@ -1,5 +1,20 @@
# @nhost/react
## 2.0.8
### Patch Changes
- Updated dependencies [1d155559]
- @nhost/nhost-js@2.0.8
## 2.0.7
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [850a049c]
- @nhost/nhost-js@2.0.7
## 2.0.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/react",
"version": "2.0.6",
"version": "2.0.8",
"description": "Nhost React library",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @nhost/sync-versions
## 0.0.6
### Patch Changes
- 850a049c: chore(deps): update docker/build-push-action action to v4
## 0.0.5
### Patch Changes

View File

@@ -2,7 +2,7 @@
"name": "@nhost/sync-versions",
"description": "Sync the versions of Nhost services in each of the packages of a pnpm workspace",
"private": true,
"version": "0.0.5",
"version": "0.0.6",
"license": "MIT",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",

View File

@@ -1,5 +1,21 @@
# @nhost/vue
## 1.13.14
### Patch Changes
- Updated dependencies [1d155559]
- @nhost/nhost-js@2.0.8
## 1.13.13
### Patch Changes
- 7eac17a1: chore(deps): bump `@xstate/inspect` to 0.8.0
- 850a049c: chore(deps): update docker/build-push-action action to v4
- Updated dependencies [850a049c]
- @nhost/nhost-js@2.0.7
## 1.13.12
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/vue",
"version": "1.13.12",
"version": "1.13.14",
"description": "Nhost Vue library",
"license": "MIT",
"keywords": [
@@ -72,7 +72,7 @@
"devDependencies": {
"@nhost/docgen": "workspace:*",
"@vitejs/plugin-vue": "^4.0.0",
"@xstate/inspect": "^0.7.0",
"@xstate/inspect": "^0.8.0",
"vue": "^3.2.41",
"vue-router": "^4.1.6",
"ws": "^8.10.0",

499
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff