Skip to content

Commit 4fe5579

Browse files
committed
chore(release): prepare for 2024.3.3
1 parent d21b94f commit 4fe5579

File tree

9 files changed

+47
-11
lines changed

9 files changed

+47
-11
lines changed

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,42 @@
22

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

5+
## 2024.3.3 (2024-10-02)
6+
7+
### Features
8+
9+
- _pedm_: add context menu icon resource ([#990](https://github.com/Devolutions/devolutions-gateway/issues/990)) ([263de985cc](https://github.com/Devolutions/devolutions-gateway/commit/263de985cc7eec51cb906d8e0d3669d827e1dfcc))
10+
11+
- _agent_: devolutions-session bootstrap ([#997](https://github.com/Devolutions/devolutions-gateway/issues/997)) ([f8b291d908](https://github.com/Devolutions/devolutions-gateway/commit/f8b291d9080c5c541f85c434e5fd23a39319f6b5))
12+
13+
- _jetsocat_: Windows named pipes and Unix sockets ([#1022](https://github.com/Devolutions/devolutions-gateway/issues/1022)) ([b13caba5b6](https://github.com/Devolutions/devolutions-gateway/commit/b13caba5b6a3481861e5cf1595c33e3d0968c93c))
14+
15+
- _jetsocat_: new doctor subcommand for diagnostics ([#1030](https://github.com/Devolutions/devolutions-gateway/issues/1030)) ([6ed8591b38](https://github.com/Devolutions/devolutions-gateway/commit/6ed8591b3865de82c6b3984ded2e335880f2b379))
16+
17+
### Bug Fixes
18+
19+
- _pwsh_: trace more info when importing Certificate from PFX ([#992](https://github.com/Devolutions/devolutions-gateway/issues/992)) ([5de155738a](https://github.com/Devolutions/devolutions-gateway/commit/5de155738a872dcdba922ea54354121277b27c93))
20+
21+
- _dgw_: set dwShareMode for recording files on Windows ([#1007](https://github.com/Devolutions/devolutions-gateway/issues/1007)) ([4df3c854ca](https://github.com/Devolutions/devolutions-gateway/commit/4df3c854cae6642f6c771621c68ef79c478db796))
22+
23+
On Windows, the default default share_mode set when opening a new file
24+
is `FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE`.
25+
26+
We now override the share_mode and set it to `FILE_SHARE_READ`.
27+
28+
This makes the recording process more robust by ensuring no other
29+
process can write or delete the files while the Devolutions Gateway
30+
is actively writing it.
31+
32+
- _jetsocat,dgw_: add backpressure in JMUX proxy ([41ea3ee3f0](https://github.com/Devolutions/devolutions-gateway/commit/41ea3ee3f03254c1415624d2344dd9b2dca38d65))
33+
34+
The memory consumption of the JMUX proxy was unbounded because we used
35+
an unbounded mpsc channel for message passing.
36+
37+
Here is a `jetsocat-bench.nu` run against master:
38+
39+
- _player_: start recording when tab is open ([#1024](https://github.com/Devolutions/devolutions-gateway/issues/1024)) ([6506b08ee2](https://github.com/Devolutions/devolutions-gateway/commit/6506b08ee2e604867bc73c46c08b6b42ba716745)) ([RDMW-16402](https://devolutions.atlassian.net/browse/RDMW-16402))
40+
541
## 2024.3.2 (2024-08-20)
642

743
### Features

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.2
1+
2024.3.3

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.2"
3+
version = "2024.3.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 = "2024.3.2"
3+
version = "2024.3.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 = "2024.3.2"
3+
version = "2024.3.3"
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.2"
3+
version = "2024.3.3"
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.2'
10+
ModuleVersion = '2024.3.3'
1111

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

0 commit comments

Comments
 (0)