Skip to content

Commit

Permalink
Merge pull request #58 from kloudlite/features/release-checklist
Browse files Browse the repository at this point in the history
Features/release checklist
  • Loading branch information
abdheshnayak authored Dec 25, 2023
2 parents 9ee515c + 87c7f9a commit 388e91a
Show file tree
Hide file tree
Showing 229 changed files with 2,744 additions and 2,596 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ dist-ssr
.cache
public/**
!public/package.json
.tmp

tsconfig-compile.tsbuildinfo
7 changes: 6 additions & 1 deletion gql-queries-generator/doc/queries.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2684,6 +2684,9 @@ query authCli_getKubeConfig($name: String!) {
encoding
value
}
status {
isReady
}
}
}

Expand All @@ -2695,14 +2698,16 @@ query authCli_listClusters($pagination: CursorPaginationIn) {
metadata {
name
}
status {
isReady
}
}
}
}
}

query authCli_listAccounts {
accounts_listAccounts {
id
metadata {
name
}
Expand Down
5 changes: 3 additions & 2 deletions lib/server/helpers/execute-query-with-context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
IGqlReturn,
NN,
} from '../../types/common';
import logger from '../../client/helpers/log';

const parseCookie = (cookieString: string) => {
const [cookie] = cookieString.split(';');
Expand Down Expand Up @@ -112,11 +113,11 @@ export const ExecuteQueryWithContext = (
return { ...resp.data, data };
} catch (err) {
if ((err as AxiosError).response) {
console.error('ErrorIn:', apiName, (err as Error).name);
console.trace('ErrorIn:', apiName, (err as Error).name);
return (err as AxiosError).response?.data;
}

console.error('ErrorIn:', apiName, (err as Error).message);
console.trace('ErrorIn:', apiName, (err as Error).message);

return {
errors: [
Expand Down
112 changes: 56 additions & 56 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tsgen": "pnpm gql:parse && cd src/generated && pnpm tsgen"
},
"dependencies": {
"@jengaicons/react": "^1.1.0",
"@jengaicons/react": "^1.3.0",
"@mdx-js/react": "^2.3.0",
"@oshq/react-select": "^1.0.1",
"@radix-ui/primitive": "^1.0.1",
Expand All @@ -33,105 +33,105 @@
"@radix-ui/react-context": "^1.0.1",
"@radix-ui/react-dialog": "1.0.4",
"@radix-ui/react-direction": "^1.0.1",
"@radix-ui/react-dismissable-layer": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-dismissable-layer": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-focus-guards": "^1.0.1",
"@radix-ui/react-focus-scope": "^1.0.3",
"@radix-ui/react-focus-scope": "^1.0.4",
"@radix-ui/react-id": "^1.0.1",
"@radix-ui/react-menu": "2.0.5",
"@radix-ui/react-popover": "1.0.6",
"@radix-ui/react-popper": "^1.1.2",
"@radix-ui/react-portal": "^1.0.3",
"@radix-ui/react-popper": "^1.1.3",
"@radix-ui/react-portal": "^1.0.4",
"@radix-ui/react-presence": "^1.0.1",
"@radix-ui/react-primitive": "^1.0.3",
"@radix-ui/react-radio-group": "1.1.3",
"@radix-ui/react-roving-focus": "^1.0.4",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@radix-ui/react-tooltip": "^1.0.7",
"@radix-ui/react-use-callback-ref": "^1.0.1",
"@radix-ui/react-use-controllable-state": "^1.0.1",
"@react-aria/focus": "^3.13.0",
"@react-aria/gridlist": "^3.5.0",
"@react-types/shared": "^3.19.0",
"@remix-run/node": "^1.19.2",
"@remix-run/react": "^1.19.2",
"@react-aria/focus": "^3.16.0",
"@react-aria/gridlist": "^3.7.3",
"@react-types/shared": "^3.22.0",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"anser": "^2.1.1",
"aria-hidden": "^1.2.3",
"axios": "^1.4.0",
"axios": "^1.6.2",
"classnames": "^2.3.2",
"cookie": "^0.5.0",
"dayjs": "^1.11.9",
"framer-motion": "^10.12.16",
"dayjs": "^1.11.10",
"framer-motion": "^10.16.16",
"fuse.js": "^6.6.2",
"graphql": "^16.8.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"highlight.js": "^11.8.0",
"isbot": "^3.6.10",
"highlight.js": "^11.9.0",
"isbot": "^3.7.1",
"js-cookie": "^3.0.5",
"js-yaml": "^4.1.0",
"pino": "^8.15.3",
"rc-slider": "^10.2.1",
"pino": "^8.17.1",
"rc-slider": "^10.5.0",
"react": "18.2.0",
"react-diff-viewer": "3.1.0",
"react-dom": "^18.2.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-highlightjs-logs": "^1.1.0",
"react-hook-form": "^7.46.1",
"react-hook-form": "^7.49.2",
"react-loading-skeleton": "^3.3.1",
"react-pulsable": "^1.0.17",
"react-qr-code": "^2.0.12",
"react-remove-scroll": "^2.5.6",
"react-router-dom": "^6.11.2",
"react-remove-scroll": "^2.5.7",
"react-router-dom": "^6.21.1",
"react-toastify": "^9.1.3",
"react-viewport-list": "^7.1.1",
"remix": "^1.19.2",
"search-in-json": "^1.0.5",
"socket.io-client": "^4.7.2",
"react-viewport-list": "^7.1.2",
"remix": "^1.19.3",
"search-in-json": "^1.0.67",
"swr": "^2.2.4",
"use-immer": "^0.9.0",
"uuid": "^9.0.0",
"uuid": "^9.0.1",
"websocket": "^1.0.34",
"yup": "^1.2.0"
"yup": "^1.3.3"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.22.5",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@faker-js/faker": "^8.3.1",
"@remix-run/dev": "^1.19.2",
"@remix-run/serve": "^1.19.2",
"@types/cookie": "^0.5.1",
"@remix-run/dev": "^1.19.3",
"@remix-run/serve": "^1.19.3",
"@types/cookie": "^0.5.4",
"@types/faker": "^6.6.9",
"@types/js-cookie": "^3.0.3",
"@types/js-yaml": "^4.0.5",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-ranger": "^2.0.1",
"@types/uuid": "^9.0.2",
"@types/websocket": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"autoprefixer": "^10.4.2",
"esbuild": "^0.19.4",
"eslint": "^8.47.0",
"@types/js-cookie": "^3.0.6",
"@types/js-yaml": "^4.0.9",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-ranger": "^2.0.4",
"@types/uuid": "^9.0.7",
"@types/websocket": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"autoprefixer": "^10.4.16",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-jsconfig": "^1.1.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prefer-arrow-functions": "^3.2.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"faker": "^5.5.3",
"json-schema-faker": "^0.5.4",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"remix-flat-routes": "^0.6.4",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.6",
"typescript-json-schema": "^0.62.0"
Expand Down
Loading

0 comments on commit 388e91a

Please sign in to comment.