Skip to content

Commit

Permalink
release: 6.2432.64 (#615)
Browse files Browse the repository at this point in the history
* chore(deps): update pnpm to v9.7.0 (#604)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency framer-motion to v11.3.22 (#587)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @floating-ui/react to v0.26.22 (#608)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency tailwindcss to v3.4.8 (#609)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency framer-motion to v11.3.23 (#610)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @tanstack/react-table to v8.20.1 (#607)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update opensearchproject/opensearch-dashboards docker tag to v2.16.0 (#464)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix: oauth sign in (#614)

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
chiol and renovate[bot] authored Aug 8, 2024
1 parent 15bbfdb commit 6247180
Show file tree
Hide file tree
Showing 5 changed files with 113 additions and 60 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,11 @@ export const useOAuthCallback = () => {
const router = useRouter();

const query = useMemo(() => {
if (!router.query.callback_url) return null;
const { code, callback_url } = router.query;

return code ? ({ code, callback_url } as IQuery) : null;
return { code, callback_url } as IQuery;
}, [router.query]);

useEffect(() => {
if (!query) return;
signInWithOAuth(query).catch(() => {
toast.negative({ title: 'OAuth2.0 Login Error' });
void router.replace(Path.SIGN_IN);
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.infra-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ services:

# optional for opensearch
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:2.15.0
image: opensearchproject/opensearch-dashboards:2.16.0
restart: always
container_name: opensearch-dashboards
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.infra-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ services:

# optional for opensearch
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:2.14.0
image: opensearchproject/opensearch-dashboards:2.16.0
restart: always
container_name: opensearch-dashboards
ports:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"turbo": "^2.0.9",
"typescript": "^5.5.4"
},
"packageManager": "pnpm@9.6.0",
"packageManager": "pnpm@9.7.0",
"engines": {
"node": ">=20.11.1"
}
Expand Down
Loading

0 comments on commit 6247180

Please sign in to comment.