Skip to content

Commit 80ae600

Browse files
committed
Correctly update dependencies for release
1 parent 13bdb66 commit 80ae600

File tree

6 files changed

+178
-1259
lines changed

6 files changed

+178
-1259
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"aws/aws-sdk-php": "^3.171",
2121
"doctrine/dbal": "~2.13.9",
2222
"fruitcake/laravel-cors": "~3.0.0",
23-
"guzzlehttp/guzzle": "~7.4.2",
23+
"guzzlehttp/guzzle": "~7.4.4",
2424
"hashids/hashids": "~4.1.0",
2525
"laracasts/utilities": "~3.2.1",
2626
"laravel/framework": "^8.83",

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"@hot-loader/react-dom": "^16.14.0",
1111
"@tailwindcss/forms": "^0.5.2",
1212
"@tailwindcss/line-clamp": "^0.4.0",
13-
"axios": "^0.21.1",
13+
"axios": "^0.27.2",
1414
"boring-avatars": "^1.7.0",
1515
"chart.js": "^3.8.0",
1616
"classnames": "^2.3.1",
1717
"codemirror": "^5.57.0",
18-
"date-fns": "^2.16.1",
18+
"date-fns": "^2.28.0",
1919
"debounce": "^1.2.0",
2020
"deepmerge-ts": "^4.2.1",
2121
"easy-peasy": "^4.0.1",
@@ -42,7 +42,7 @@
4242
"swr": "^0.2.3",
4343
"tailwindcss": "^3.0.24",
4444
"use-fit-text": "^2.4.0",
45-
"uuid": "^3.3.2",
45+
"uuid": "^8.3.2",
4646
"xterm": "^4.15.0",
4747
"xterm-addon-attach": "^0.6.0",
4848
"xterm-addon-fit": "^0.4.0",

resources/scripts/api/interceptors.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ export const setupInterceptors = (history: History) => {
77
(resp) => resp,
88
(error: AxiosError) => {
99
if (error.response?.status === 400) {
10-
if (error.response?.data.errors?.[0].code === 'TwoFactorAuthRequiredException') {
10+
if (
11+
(error.response?.data as Record<string, any>).errors?.[0].code === 'TwoFactorAuthRequiredException'
12+
) {
1113
if (!window.location.pathname.startsWith('/account')) {
1214
history.replace('/account', { twoFactorRedirect: true });
1315
}

resources/scripts/components/elements/Switch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useMemo } from 'react';
22
import styled from 'styled-components/macro';
3-
import v4 from 'uuid/v4';
3+
import { v4 } from 'uuid';
44
import tw from 'twin.macro';
55
import Label from '@/components/elements/Label';
66
import Input from '@/components/elements/Input';

0 commit comments

Comments
 (0)