Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: added missing k8s versions and updated core dependencies #4231

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ audit = false
fund = false
update-notifier = true
# Lock versions of node and npm, when looking up engines.
node-version = 18.17.0
npm-version = 9.6.7
node-version = 20.15.1
npm-version = 10.7.0
# Default options for package-lock - package-lock=true package-lock-only=false
# If set to false, then ignore package-lock.json files when installing. This will also prevent writing package-lock.json if save is true.
# When package package-locks are disabled, automatic pruning of extraneous modules will also be disabled.
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.17.0
20.15.1
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
"concurrently": "8.0.1",
"craco-less": "2.0.0",
"cross-env": "7.0.3",
"electron": "28.2.4",
"electron-builder": "24.12.0",
"electron": "31.2.1",
"electron-builder": "24.13.3",
"electron-reload": "2.0.0-alpha.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
Expand Down Expand Up @@ -122,7 +122,7 @@
"electron-devtools-installer": "3.2.0",
"electron-log": "4.4.8",
"electron-store": "8.1.0",
"electron-updater": "6.1.8",
"electron-updater": "6.3.0",
"elkjs": "0.8.2",
"execa": "5.1.1",
"fast-json-stable-stringify": "2.1.0",
Expand All @@ -136,14 +136,14 @@
"lodash": "4.17.21",
"loglevel": "1.8.1",
"luxon": "3.3.0",
"micromatch": "4.0.5",
"micromatch": "4.0.7",
"module-alias": "2.2.2",
"monaco-editor": "0.38.0",
"monaco-yaml": "4.0.4",
"new-github-issue-url": "1.0.0",
"node-fetch": "2.6.9",
"node-machine-id": "1.1.12",
"node-pty": "0.11.0-beta11",
"node-pty": "1.1.0-beta14",
"numeral": "2.0.6",
"openai": "3.2.1",
"polished": "4.2.2",
Expand Down
21 changes: 21 additions & 0 deletions src/shared/constants/k8s.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
export const PREDEFINED_K8S_VERSION = '1.26.3';

export const K8S_VERSIONS = [
'1.30.3',
'1.30.2',
'1.30.1',
'1.30.0',
'1.29.7',
'1.29.6',
'1.29.5',
'1.29.4',
'1.29.3',
'1.29.2',
'1.29.1',
'1.29.0',
'1.28.12',
'1.28.11',
'1.28.10',
'1.28.9',
'1.28.8',
'1.28.7',
'1.28.6',
'1.28.5',
'1.28.4',
'1.28.3',
'1.28.2',
'1.28.1',
Expand Down
Loading