Skip to content

Commit 93900bd

Browse files
authored
chore(release): prepare for 2025.1.3 (#1266)
1 parent a457fdc commit 93900bd

File tree

14 files changed

+80
-15
lines changed

14 files changed

+80
-15
lines changed

CHANGELOG.md

+57
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,63 @@
22

33
This document provides a list of notable changes introduced in Devolutions Gateway service, installer and Jetsocat.
44

5+
## 2025.1.3 (2025-03-05)
6+
7+
### Bug Fixes
8+
9+
- _agent-installer_: don't fail an uninstall if the shell extension can't be unregistered ([#1249](https://github.com/Devolutions/devolutions-gateway/issues/1249)) ([67bc5dfc01](https://github.com/Devolutions/devolutions-gateway/commit/67bc5dfc01edcde91c4fe1b57350dea8e74ed7f3))
10+
11+
An unexpected error unregistering the PEDM shell extension can cause an
12+
uninstall to fail; this leads to a bad posture on the user machine.
13+
14+
- _dgw_: fix a bug where shadowing player was sometimes failing with high frame rate ([#1253](https://github.com/Devolutions/devolutions-gateway/issues/1253)) ([e415a674d9](https://github.com/Devolutions/devolutions-gateway/commit/e415a674d9c7c1adc089c420566deff9feb29cf3))
15+
16+
- _installer_: ensure NetworkService has proper file permissions ([#1260](https://github.com/Devolutions/devolutions-gateway/issues/1260)) ([956741757e](https://github.com/Devolutions/devolutions-gateway/commit/956741757e51157a0c03021d474164471f1f894b))
17+
18+
We've had sporadic issues where users cannot update the revocation list
19+
due to a permissions error on the .jrl file (access denied deleting the
20+
original file).
21+
22+
Likely cause:
23+
24+
- Gateway was installed and created this file(s) at or before version
25+
2024.1.5
26+
- In subsequent versions, we switched the service account to
27+
`NetworkService` and updated the DACL applied to the top-level
28+
%programdata%\Devolutions\Gateway directory
29+
- However, files created previously did not retroactively inherit
30+
`NetworkService`'s new ACL
31+
- This doesn't matter for most files where `Users` has read and execute
32+
permission
33+
- Files that need `Modify` permission won't have it (for example, the
34+
.jrl and existing log files)
35+
36+
This version:
37+
38+
- Updates the SDDL set on the top-level
39+
%programdata%\Devolutions\Gateway directory to ensure that
40+
`NetworkService` can delete subfolders and files
41+
- Forcibly resets the ACL on files in the program data directory
42+
43+
- _dgw_: fix WebSocket connection hanging at the end of communication ([#1243](https://github.com/Devolutions/devolutions-gateway/issues/1243)) ([a457fdc90c](https://github.com/Devolutions/devolutions-gateway/commit/a457fdc90c22e1bcac65f948ca19f1506166d3b1))
44+
45+
WebSocket close frames were not sent on session termination.
46+
With this patch, we properly send WebSocket close frames when session terminates.
47+
48+
- _dgw_: fix missing webapp in deb ([#1259](https://github.com/Devolutions/devolutions-gateway/issues/1259)) ([dd4f3d5ed2](https://github.com/Devolutions/devolutions-gateway/commit/dd4f3d5ed2045d86f33c2f51a10d49d35810d700))
49+
50+
### Build
51+
52+
- _dgw,agent_: target Ubuntu 18.04 ([#1241](https://github.com/Devolutions/devolutions-gateway/issues/1241)) ([27f12ef910](https://github.com/Devolutions/devolutions-gateway/commit/27f12ef9101f77e7960b75bb9c1e278391899abd))
53+
54+
Properly target ubuntu-18.04, including for the cadeau library which was
55+
just released with ubuntu-18.04 targeting as well. By targeting
56+
ubuntu-18.04, we are forward-compatible with ubuntu 20.04, 22.04, 24.04
57+
but we are also compatible with RHEL8, which uses a version of
58+
glibc older than ubuntu 20.04.
59+
60+
- _dgw_: don't use libsql default features ([#1254](https://github.com/Devolutions/devolutions-gateway/issues/1254)) ([d05b9a91df](https://github.com/Devolutions/devolutions-gateway/commit/d05b9a91dfda45f88a2a648f03ec6c6330081b8e))
61+
562
## 2025.1.2 (2025-02-20)
663

764
### Features

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025.1.2
1+
2025.1.3

crates/devolutions-pedm-shell-ext/AppxManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
1212
IgnorableNamespaces="uap uap2 uap3 rescap desktop desktop4 desktop5 uap10 com">
1313
<Identity Name="DevolutionPEDMShellExtension" ProcessorArchitecture="neutral" Publisher="CN=Devolutions"
14-
Version="2025.1.2.0" />
14+
Version="2025.1.3.0" />
1515
<Properties>
1616
<DisplayName>Devolutions Agent</DisplayName>
1717
<PublisherDisplayName>Devolutions</PublisherDisplayName>

crates/devolutions-pedm-shell-ext/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "devolutions-pedm-shell-ext"
3-
version = "2025.1.2"
3+
version = "2025.1.3"
44
edition = "2021"
55
license = "MIT/Apache-2.0"
66
authors = ["Devolutions Inc. <[email protected]>"]

devolutions-agent/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "devolutions-agent"
3-
version = "2025.1.2"
3+
version = "2025.1.3"
44
edition = "2021"
55
license = "MIT/Apache-2.0"
66
authors = ["Devolutions Inc. <[email protected]>"]

devolutions-gateway/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "devolutions-gateway"
3-
version = "2025.1.2"
3+
version = "2025.1.3"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT/Apache-2.0"

devolutions-session/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "devolutions-session"
3-
version = "2025.1.2"
3+
version = "2025.1.3"
44
edition = "2021"
55
license = "MIT/Apache-2.0"
66
authors = ["Devolutions Inc. <[email protected]>"]

dotnet/DesktopAgent/DesktopAgent.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>DevolutionsDesktopAgent</AssemblyName>
77
<AssemblyTitle>Devolutions Agent</AssemblyTitle>
88
<LangVersion>latest</LangVersion>
9-
<Version>2025.1.2.0</Version>
9+
<Version>2025.1.3.0</Version>
1010
<Company>Devolutions</Company>
1111
<Copyright>Copyright © 2024</Copyright>
1212
<Product>Devolutions Agent</Product>

fuzz/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jetsocat/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jetsocat"
3-
version = "2025.1.2"
3+
version = "2025.1.3"
44
authors = ["Devolutions Inc. <[email protected]>"]
55
edition = "2021"
66
description = "(Web)Socket toolkit for jet protocol related operations"

package/AgentLinux/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Packaging changelog
22

3+
## 2025.1.3 (2025-03-05)
4+
5+
- No changes.
6+
37
## 2025.1.2 (2025-02-20)
48

59
- No changes.

package/Linux/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Packaging changelog
22

3+
## 2025.1.3 (2025-03-05)
4+
5+
- No changes.
6+
37
## 2025.1.2 (2025-02-20)
48

59
- Properly remove configuration files when uninstalled with the purge flag.

powershell/DevolutionsGateway/DevolutionsGateway.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
RootModule = 'DevolutionsGateway.psm1'
88

99
# Version number of this module.
10-
ModuleVersion = '2025.1.2'
10+
ModuleVersion = '2025.1.3'
1111

1212
# Supported PSEditions
1313
CompatiblePSEditions = 'Desktop', 'Core'

0 commit comments

Comments
 (0)