Skip to content

Commit 623c0cb

Browse files
authored
chore(release): prepare for 2024.3.6 (#1127)
1 parent 979dda9 commit 623c0cb

File tree

9 files changed

+48
-11
lines changed

9 files changed

+48
-11
lines changed

CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22

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

5+
## 2024.3.6 (2024-12-02)
6+
7+
### Features
8+
9+
- _dgw_: persistent job queue for crash resistance ([#1108](https://github.com/Devolutions/devolutions-gateway/issues/1108)) ([2420b07d21](https://github.com/Devolutions/devolutions-gateway/commit/2420b07d21b40b11a97f3094559740bd186156c3))
10+
11+
This year we added some background tasks in the Gateway that should
12+
not be canceled, or if they are, should be restarted later. Essentially
13+
two tasks: mass deletion of recordings (relatively important, but
14+
it's always possible to launch indexing in DVLS in case of a problem)
15+
and remuxing recordings to webm format (good to have). If the service
16+
is killed in the middle of one of these operations, we should resume
17+
execution on the next startup.
18+
19+
This persisent job queue is implemented using Turso’s libSQL. Using
20+
libSQL (or SQLite) for implementing the queue allow us to benefit from
21+
all the work put into implementing a reliable, secure and performant
22+
disk-based database instead of attempting to implement our own ad-hoc
23+
storage and debugging it forever.
24+
25+
- _dgw_: add agent version field to heartbeat API ([#1122](https://github.com/Devolutions/devolutions-gateway/issues/1122)) ([83fbddb5a4](https://github.com/Devolutions/devolutions-gateway/commit/83fbddb5a465587716b3ebcc1a8ab2c424b50559))
26+
27+
- _jetsocat_: Schannel diagnostics for Windows ([#1125](https://github.com/Devolutions/devolutions-gateway/issues/1125)) ([991d856dea](https://github.com/Devolutions/devolutions-gateway/commit/991d856deaed652722b8b10cdeaf64fb7a3442c8)) ([ARC-255](https://devolutions.atlassian.net/browse/ARC-255))
28+
29+
These diagnostics will return detailed information about how Windows
30+
will understand the specified certification chain.
31+
32+
### Bug Fixes
33+
34+
- _webapp_: session toolbar loading issues ([#1106](https://github.com/Devolutions/devolutions-gateway/issues/1106)) ([1442a1dc6f](https://github.com/Devolutions/devolutions-gateway/commit/1442a1dc6fa3871f7cf8463c89c80b587b8f82b2)) ([DGW-230](https://devolutions.atlassian.net/browse/DGW-230))
35+
36+
- _webapp_: active session connection status in menu ([#1115](https://github.com/Devolutions/devolutions-gateway/issues/1115)) ([45f396af9c](https://github.com/Devolutions/devolutions-gateway/commit/45f396af9c6e151db4241841ae71fc9688dfe0bb)) ([DGW-231](https://devolutions.atlassian.net/browse/DGW-231))
37+
38+
- _dgw_: improve logs of rdp extension module ([#1120](https://github.com/Devolutions/devolutions-gateway/issues/1120)) ([a068fb46e7](https://github.com/Devolutions/devolutions-gateway/commit/a068fb46e77499b1c91f1c343fd148aed1f0ec33))
39+
40+
- _dgw_: lower the level of the control code log ([#1123](https://github.com/Devolutions/devolutions-gateway/issues/1123)) ([85850304f6](https://github.com/Devolutions/devolutions-gateway/commit/85850304f6d7a95104c4e9bf96ee997deaffd3b2))
41+
542
## 2024.3.5 (2024-11-12)
643

744
### Bug Fixes

Cargo.lock

+4-4
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-
2024.3.5
1+
2024.3.6

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 = "2024.3.5"
3+
version = "2024.3.6"
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 = "2024.3.5"
3+
version = "2024.3.6"
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 = "2024.3.5"
3+
version = "2024.3.6"
44
edition = "2021"
55
license = "MIT/Apache-2.0"
66
authors = ["Devolutions Inc. <[email protected]>"]

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 = "2024.3.5"
3+
version = "2024.3.6"
44
authors = ["Devolutions Inc. <[email protected]>"]
55
edition = "2021"
66
description = "(Web)Socket toolkit for jet protocol related operations"

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 = '2024.3.5'
10+
ModuleVersion = '2024.3.6'
1111

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

0 commit comments

Comments
 (0)