Skip to content

Commit 852af82

Browse files
authored
New release with Windows DNS fix (#775)
1 parent af96c67 commit 852af82

File tree

18 files changed

+639
-603
lines changed

18 files changed

+639
-603
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ on:
2020

2121
env:
2222
CARGO_TERM_COLOR: always
23+
# sccache
24+
SCCACHE_GHA_ENABLED: "true"
25+
RUSTC_WRAPPER: "sccache"
2326

2427
jobs:
2528
test:
@@ -39,6 +42,7 @@ jobs:
3942
uses: actions/checkout@v5
4043
with:
4144
submodules: recursive
45+
4246
- name: Scan code with Trivy
4347
uses: aquasecurity/trivy-action@0.33.1
4448
env:
@@ -51,25 +55,31 @@ jobs:
5155
ignore-unfixed: true
5256
severity: "CRITICAL,HIGH,MEDIUM"
5357
scanners: "vuln"
54-
- name: Cache
55-
uses: Swatinem/rust-cache@v2
58+
59+
- name: Run sccache-cache
60+
uses: mozilla-actions/sccache-action@v0.0.9
61+
5662
- name: Install required packages
5763
run: |
5864
apt-get update
5965
apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev patchelf libssl-dev libxdo-dev unzip protobuf-compiler
66+
6067
- name: Check format
6168
run: |
6269
rustup component add rustfmt
6370
cargo fmt -- --check
71+
6472
- name: Run clippy linter
6573
run: |
6674
mkdir ../dist
6775
rustup component add clippy
6876
cargo clippy --all-targets --all-features -- -D warnings
77+
6978
- name: Run cargo deny
7079
working-directory: ./src-tauri
7180
run: |
7281
cargo install cargo-deny --version 0.18.6
7382
cargo deny check
83+
7484
- name: Run tests
7585
run: cargo test --locked --no-fail-fast

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
33
"vcs": {
44
"enabled": false,
55
"clientKind": "git",

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "defguard-client",
33
"private": false,
4-
"version": "1.6.4",
4+
"version": "1.6.5",
55
"type": "module",
66
"scripts": {
77
"dev": "npm-run-all --parallel vite typesafe-i18n",
@@ -56,7 +56,7 @@
5656
"@react-hook/resize-observer": "^2.0.2",
5757
"@stablelib/base64": "^2.0.1",
5858
"@stablelib/x25519": "^2.0.1",
59-
"@tanstack/query-core": "^5.90.17",
59+
"@tanstack/query-core": "^5.90.20",
6060
"@tanstack/react-virtual": "3.13.13",
6161
"@tauri-apps/api": "^2.9.1",
6262
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
@@ -82,13 +82,13 @@
8282
"fast-deep-equal": "^3.1.3",
8383
"file-saver": "^2.0.5",
8484
"get-text-width": "^1.0.3",
85-
"html-react-parser": "^5.2.11",
85+
"html-react-parser": "^5.2.12",
8686
"itertools": "^2.5.0",
8787
"js-base64": "^3.7.8",
88-
"lodash-es": "^4.17.22",
88+
"lodash-es": "^4.17.23",
8989
"merge-refs": "^2.0.0",
9090
"millify": "^6.1.0",
91-
"motion": "^12.26.2",
91+
"motion": "^12.29.2",
9292
"p-timeout": "^6.1.4",
9393
"prop-types": "^15.8.1",
9494
"radash": "^12.1.1",
@@ -104,31 +104,31 @@
104104
"react-router-dom": "^6.30.3",
105105
"react-use-websocket": "^4.13.0",
106106
"react-virtualized-auto-sizer": "^1.0.26",
107-
"recharts": "^3.6.0",
107+
"recharts": "^3.7.0",
108108
"rehype-sanitize": "^6.0.0",
109109
"rxjs": "^7.8.2",
110110
"use-breakpoint": "^4.0.10",
111111
"zod": "^3.25.76",
112112
"zustand": "^5.0.10"
113113
},
114114
"devDependencies": {
115-
"@biomejs/biome": "^2.3.11",
115+
"@biomejs/biome": "^2.3.13",
116116
"@hookform/devtools": "^4.4.0",
117117
"@svgr/cli": "^8.1.0",
118-
"@tanstack/react-query": "^5.90.17",
118+
"@tanstack/react-query": "^5.90.20",
119119
"@tanstack/react-query-devtools": "^5.91.2",
120120
"@tauri-apps/cli": "^2.9.6",
121121
"@types/file-saver": "^2.0.7",
122122
"@types/lodash-es": "^4.17.12",
123123
"@types/node": "^24.10.9",
124-
"@types/react": "^19.2.8",
124+
"@types/react": "^19.2.9",
125125
"@types/react-dom": "^19.2.3",
126126
"@vitejs/plugin-react": "^5.1.2",
127127
"@vitejs/plugin-react-swc": "^4.2.2",
128128
"autoprefixer": "^10.4.23",
129129
"npm-run-all": "^4.1.5",
130130
"postcss": "^8.5.6",
131-
"prettier": "^3.8.0",
131+
"prettier": "^3.8.1",
132132
"sass": "~1.92.1",
133133
"typedoc": "^0.28.16",
134134
"typesafe-i18n": "^5.26.2",

0 commit comments

Comments
 (0)