Skip to content

Commit 4c8f69d

Browse files
Merge branch 'main' into dependabot/npm_and_yarn/types/jest-30.0.0
2 parents 84764e5 + 14fac3e commit 4c8f69d

File tree

63 files changed

+4070
-2536
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+4070
-2536
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
16
version: 2
27
updates:
38
- package-ecosystem: "npm"
49
directory: "/"
510
schedule:
6-
interval: "daily"
7-
open-pull-requests-limit: 10
11+
interval: "weekly"
12+
day: "monday"
13+
open-pull-requests-limit: 10
14+
ignore: # Ignore everything that is not a security update
15+
- dependency-name: "*"
16+
security-updates: true

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build and Release Extension Charts
2+
3+
on:
4+
release:
5+
types: [prereleased, released]
6+
7+
defaults:
8+
run:
9+
shell: bash
10+
working-directory: ./
11+
12+
jobs:
13+
build-extension-charts:
14+
uses: rancher/dashboard/.github/workflows/build-extension-charts.yml@master
15+
permissions:
16+
actions: write
17+
contents: write
18+
deployments: write
19+
pages: write
20+
with:
21+
target_branch: gh-pages
22+
tagged_release: ${{ github.ref_name }}

.github/workflows/ci.yml renamed to .github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: Unit test
22
on: [push, pull_request]
33
jobs:
44
test:

jest.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ const config: Config.InitialOptions = {
1313
'@shell/(.*)': '<rootDir>/node_modules/@rancher/shell/$1',
1414
'@components/(.*)':
1515
'<rootDir>/node_modules/@rancher/components/dist/@rancher/components.common.js',
16-
'@benchmark-compliance/(.*)': '<rootDir>/pkg/benchmark-compliance/$1',
1716
'@sbombastic-image-vulnerability-scanner/(.*)': '<rootDir>/pkg/sbombastic-image-vulnerability-scanner/$1',
1817
'@network/(.*)': '<rootDir>/pkg/network/$1',
1918
'@runtime-process-profile/(.*)': '<rootDir>/pkg/runtime-process-profile/$1',

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
"dependencies": {
99
"@kubernetes/client-node": "^1.3.0",
1010
"@rancher/components": "^0.3.0-alpha.1",
11-
"@rancher/shell": "^3.0.4",
11+
"@rancher/shell": "3.0.5-rc.8",
1212
"vue": "^3.5.17",
1313
"vue-router": "^4.5.0",
1414
"vuex": "^4.1.0"
1515
},
1616
"devDependencies": {
17-
"@stylistic/eslint-plugin": "^4.4.1",
1817
"@types/jest": "^30.0.0",
18+
"@stylistic/eslint-plugin": "^5.2.2",
1919
"@types/lodash": "^4.17.20",
20-
"@types/node": "~24.0.10",
20+
"@types/node": "~24.1.0",
2121
"@types/semver": "7.7.0",
2222
"@types/vue-select": "^3.16.8",
2323
"@vue/cli-plugin-typescript": "^5.0.8",
2424
"@vue/cli-plugin-unit-jest": "^5.0.8",
2525
"@vue/test-utils": "^2.4.6",
2626
"@vue/vue3-jest": "^29.2.6",
27-
"eslint": "^9.30.1",
27+
"eslint": "^9.32.0",
2828
"eslint-plugin-jest": "^29.0.1",
2929
"eslint-plugin-vue": "^9.33.0",
3030
"jest": "30.0.5",
31-
"jest-environment-jsdom": "^30.0.4",
31+
"jest-environment-jsdom": "^30.0.5",
3232
"ts-jest": "^29.4.0",
3333
"ts-node": "^10.9.2",
3434
"typescript": "5.8.3",

pkg/benchmark-compliance/babel.config.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

pkg/benchmark-compliance/index.ts

Lines changed: 0 additions & 18 deletions
This file was deleted.

pkg/benchmark-compliance/l10n/en-us.yaml

Whitespace-only changes.

pkg/benchmark-compliance/package.json

Lines changed: 0 additions & 26 deletions
This file was deleted.

pkg/benchmark-compliance/pages/overview.vue

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)