Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ jobs:
VERSION=$(echo ${GITHUB_REF_NAME#v} | cut -d '-' -f1)
echo Version: $VERSION
echo "VERSION=$VERSION" >> ${GITHUB_ENV}
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version: "22"
node-version: "24"
- uses: pnpm/action-setup@v4
with:
version: 10
version: 10.17
run_install: false
- name: Get pnpm store directory
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/sbom-regenerate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
RELEASES_JSON=$(gh api repos/${{ github.repository }}/releases \
--jq '[.[] | select(.draft == false) | {tagName: .tag_name, uploadUrl: .upload_url}][:1]')
--jq '[.[]
| select(.draft == false and (.tag_name | test("^v[0-9]+\\.[0-9]+\\.[0-9]+$")))
| {tagName: .tag_name, uploadUrl: .upload_url}][:1]')
echo "releases=$RELEASES_JSON" >> $GITHUB_OUTPUT
regenerate-for-release:
name: Regenerate SBOM for release
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@ Built packages are available after in `src-tauri/target/release/bundle`.

Remove `default-run` line from `[package]` section in `Cargo.toml` to build the project.

# Built and sponsored by

<p align="center">
<a href="https://teonite.com/services/rust/" target="_blank"><img src="https://drive.google.com/uc?export=view&id=1z0fxSsZztoaeVWxHw2MbPbuOHMe3OsqN" alt="build by teonite" /></a>
</p>

# Legal

WireGuard® is [registered trademarks](https://www.wireguard.com/trademark-policy/) of Jason A. Donenfeld.
Expand Down
2 changes: 1 addition & 1 deletion nix/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
makeDesktopItem,
}: let
pname = "defguard-client";
version = "1.5.1"; # TODO: Get this from Cargo.toml or git
version = "1.5.2"; # TODO: Get this from Cargo.toml or git

desktopItem = makeDesktopItem {
name = pname;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "defguard-client",
"private": false,
"version": "1.5.1",
"version": "1.5.2",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel vite typesafe-i18n",
Expand Down
14 changes: 4 additions & 10 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ edition = "2021"
homepage = "https://github.com/DefGuard/client"
license-file = "../LICENSE.md"
rust-version = "1.80"
version = "1.5.1"
version = "1.5.2"

[package]
name = "defguard-client"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"productName": "defguard-client",
"mainBinaryName": "defguard-client",
"identifier": "net.defguard",
"version": "1.5.1",
"version": "1.5.2",
"app": {
"security": {
"capabilities": [
Expand Down