Skip to content

Commit 698dcaf

Browse files
authored
chore(release): prepare for 2025.1.6 (#1359)
1 parent 0ede788 commit 698dcaf

File tree

11 files changed

+55
-17
lines changed

11 files changed

+55
-17
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

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

5+
## 2025.1.6 (2025-05-23)
6+
7+
### Bug Fixes
8+
9+
- _agent_: [**breaking**] Major breaking change in the *experimental* **PEDM module**.
10+
11+
The PEDM module is planned to be released officially in the 2025.2.0 release, but for simplicity we are releasing
12+
a 2025.1.6 version that will be compatible with RDM 2025.2 so it’s possible for the users to update or install the
13+
agent before updating the rest of the products to 2025.2.
14+
15+
If you installed the experimental PEDM module prior to 2025.1.5, you must:
16+
17+
- Uninstall the current version
18+
- Run the following PowerShell script as **administrator**.
19+
- Install 2025.1.6 or newer.
20+
21+
```pwsh
22+
$CurrentUser = "$Env:USERDOMAIN\$Env:USERNAME"
23+
$Path = "$Env:ProgramData\Devolutions\Agent\pedm"
24+
25+
if (-Not (Test-Path $Path)) {
26+
Write-Error "Path does not exist ($Path)"
27+
exit 1
28+
}
29+
30+
Write-Output "Taking ownership of $Path"
31+
takeown /F "$Path" /R /D Y | Out-Null
32+
Write-Output "Granting full control to $CurrentUser"
33+
$Args = "`"$Path`" /grant:r `"$CurrentUser`:F`" /T /C"
34+
Start-Process icacls -ArgumentList $Args -NoNewWindow -Wait
35+
Write-Output "Deleting $Path"
36+
Remove-Item -LiteralPath $Path -Recurse -Force
37+
```
38+
539
## 2025.1.5 (2025-05-15)
640

741
### Features

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exclude = [
2121
]
2222

2323
[workspace.package]
24-
version = "2025.1.5"
24+
version = "2025.1.6"
2525

2626
[profile.profiling]
2727
inherits = "release"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025.1.5
1+
2025.1.6

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

Lines changed: 1 addition & 1 deletion
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.5.0" />
14+
Version="2025.1.6.0" />
1515
<Properties>
1616
<DisplayName>Devolutions Agent</DisplayName>
1717
<PublisherDisplayName>Devolutions</PublisherDisplayName>

dotnet/DesktopAgent/DesktopAgent.csproj

Lines changed: 1 addition & 1 deletion
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.5.0</Version>
9+
<Version>2025.1.6.0</Version>
1010
<Company>Devolutions</Company>
1111
<Copyright>Copyright © 2024</Copyright>
1212
<Product>Devolutions Agent</Product>

fuzz/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/AgentLinux/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Packaging changelog
22

3+
## 2025.1.6 (2025-05-23)
4+
5+
- No changes.
6+
37
## 2025.1.5 (2025-05-15)
48

59
- No changes.

package/Linux/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Packaging changelog
22

3+
## 2025.1.6 (2025-05-23)
4+
5+
- No changes.
6+
37
## 2025.1.5 (2025-05-15)
48

59
- No changes.

powershell/DevolutionsGateway/DevolutionsGateway.psd1

Lines changed: 1 addition & 1 deletion
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.5'
10+
ModuleVersion = '2025.1.6'
1111

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

0 commit comments

Comments
 (0)