diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c15501a0..95fe4864d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ This document provides a list of notable changes introduced in Devolutions Gateway service, installer and Jetsocat. +## 2025.1.2 (2025-02-05) + +### Bug Fixes + +- _agent_: fix downgrade logic for unreleased Devolutions Gateway ([#1207](https://github.com/Devolutions/devolutions-gateway/issues/1207)) ([a978ec6c59](https://github.com/Devolutions/devolutions-gateway/commit/a978ec6c59641a15378fbc4c623283e912f3d32a)) + + Fix an updater corner case where the user is trying to downgrade to the + latest specified version in `productinfo.htm` while a newer unreleased + version is installed locally. + +- _dgw_: mute recording player by default to allow autoplay in web browsers ([#1208](https://github.com/Devolutions/devolutions-gateway/issues/1208)) ([1266e8b327](https://github.com/Devolutions/devolutions-gateway/commit/1266e8b32763e14467e9b650856f85084bcb0d08)) + +- _agent-installer_: add experimental tag to PEDM and session features ([#1211](https://github.com/Devolutions/devolutions-gateway/issues/1211)) ([29b2facc61](https://github.com/Devolutions/devolutions-gateway/commit/29b2facc610ca0bd994af8a48f10337781a4205f)) + ## 2025.1.0 (2025-01-29) ### Features diff --git a/Cargo.lock b/Cargo.lock index 46d16e67b..bdad69ea7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1083,7 +1083,7 @@ dependencies = [ [[package]] name = "devolutions-agent" -version = "2025.1.0" +version = "2025.1.1" dependencies = [ "anyhow", "async-trait", @@ -1132,7 +1132,7 @@ dependencies = [ [[package]] name = "devolutions-gateway" -version = "2025.1.0" +version = "2025.1.1" dependencies = [ "anyhow", "argon2", @@ -1321,7 +1321,7 @@ dependencies = [ [[package]] name = "devolutions-pedm-shell-ext" -version = "2025.1.0" +version = "2025.1.1" dependencies = [ "devolutions-pedm-shared", "embed-resource", @@ -1334,7 +1334,7 @@ dependencies = [ [[package]] name = "devolutions-session" -version = "2025.1.0" +version = "2025.1.1" dependencies = [ "anyhow", "async-trait", @@ -2884,7 +2884,7 @@ dependencies = [ [[package]] name = "jetsocat" -version = "2025.1.0" +version = "2025.1.1" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/VERSION b/VERSION index dbaa6bc67..734355525 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2025.1.0 +2025.1.1 diff --git a/crates/devolutions-pedm-shell-ext/AppxManifest.xml b/crates/devolutions-pedm-shell-ext/AppxManifest.xml index 45e7c2003..5fc68f222 100644 --- a/crates/devolutions-pedm-shell-ext/AppxManifest.xml +++ b/crates/devolutions-pedm-shell-ext/AppxManifest.xml @@ -11,7 +11,7 @@ xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10" IgnorableNamespaces="uap uap2 uap3 rescap desktop desktop4 desktop5 uap10 com"> + Version="2025.1.1.0" /> Devolutions Agent Devolutions diff --git a/crates/devolutions-pedm-shell-ext/Cargo.toml b/crates/devolutions-pedm-shell-ext/Cargo.toml index 6b645e284..7d12f831d 100644 --- a/crates/devolutions-pedm-shell-ext/Cargo.toml +++ b/crates/devolutions-pedm-shell-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devolutions-pedm-shell-ext" -version = "2025.1.0" +version = "2025.1.1" edition = "2021" license = "MIT/Apache-2.0" authors = ["Devolutions Inc. "] diff --git a/devolutions-agent/Cargo.toml b/devolutions-agent/Cargo.toml index 7292e2cb9..6c8d633ef 100644 --- a/devolutions-agent/Cargo.toml +++ b/devolutions-agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devolutions-agent" -version = "2025.1.0" +version = "2025.1.1" edition = "2021" license = "MIT/Apache-2.0" authors = ["Devolutions Inc. "] diff --git a/devolutions-gateway/Cargo.toml b/devolutions-gateway/Cargo.toml index eb8eb91ca..8a90adff0 100644 --- a/devolutions-gateway/Cargo.toml +++ b/devolutions-gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devolutions-gateway" -version = "2025.1.0" +version = "2025.1.1" edition = "2021" readme = "README.md" license = "MIT/Apache-2.0" diff --git a/devolutions-session/Cargo.toml b/devolutions-session/Cargo.toml index 965104095..22de35f0b 100644 --- a/devolutions-session/Cargo.toml +++ b/devolutions-session/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devolutions-session" -version = "2025.1.0" +version = "2025.1.1" edition = "2021" license = "MIT/Apache-2.0" authors = ["Devolutions Inc. "] diff --git a/dotnet/DesktopAgent/DesktopAgent.csproj b/dotnet/DesktopAgent/DesktopAgent.csproj index d3c08bc74..3f7815d20 100644 --- a/dotnet/DesktopAgent/DesktopAgent.csproj +++ b/dotnet/DesktopAgent/DesktopAgent.csproj @@ -5,7 +5,7 @@ Devolutions.Agent.Desktop DevolutionsDesktopAgent latest - 2025.1.0.0 + 2025.1.1.0 Devolutions Copyright © 2024 Devolutions Agent diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 5e8c0e6b3..c1d01637b 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -689,7 +689,7 @@ dependencies = [ [[package]] name = "devolutions-gateway" -version = "2025.1.0" +version = "2025.1.1" dependencies = [ "anyhow", "async-trait", diff --git a/jetsocat/Cargo.toml b/jetsocat/Cargo.toml index d39582610..8fdc89a1b 100644 --- a/jetsocat/Cargo.toml +++ b/jetsocat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jetsocat" -version = "2025.1.0" +version = "2025.1.1" authors = ["Devolutions Inc. "] edition = "2021" description = "(Web)Socket toolkit for jet protocol related operations" diff --git a/package/AgentLinux/CHANGELOG.md b/package/AgentLinux/CHANGELOG.md index cb54151c6..126c24ba1 100644 --- a/package/AgentLinux/CHANGELOG.md +++ b/package/AgentLinux/CHANGELOG.md @@ -1,9 +1,13 @@ # Packaging changelog +## 2025.1.1 (2025-02-05) + +- No changes. + ## 2025.1.0 (2025-01-29) - No changes. ## 2024.3.6 (2024-12-02) -- Add packaging changelog. \ No newline at end of file +- Add packaging changelog. diff --git a/package/Linux/CHANGELOG.md b/package/Linux/CHANGELOG.md index cb54151c6..126c24ba1 100644 --- a/package/Linux/CHANGELOG.md +++ b/package/Linux/CHANGELOG.md @@ -1,9 +1,13 @@ # Packaging changelog +## 2025.1.1 (2025-02-05) + +- No changes. + ## 2025.1.0 (2025-01-29) - No changes. ## 2024.3.6 (2024-12-02) -- Add packaging changelog. \ No newline at end of file +- Add packaging changelog. diff --git a/powershell/DevolutionsGateway/DevolutionsGateway.psd1 b/powershell/DevolutionsGateway/DevolutionsGateway.psd1 index a27a65ffe..05d9de461 100644 --- a/powershell/DevolutionsGateway/DevolutionsGateway.psd1 +++ b/powershell/DevolutionsGateway/DevolutionsGateway.psd1 @@ -7,7 +7,7 @@ RootModule = 'DevolutionsGateway.psm1' # Version number of this module. - ModuleVersion = '2025.1.0' + ModuleVersion = '2025.1.1' # Supported PSEditions CompatiblePSEditions = 'Desktop', 'Core'