Skip to content

Commit 4696787

Browse files
authored
chore(release): prepare for 2024.3.2 (#987)
1 parent 1f40b45 commit 4696787

File tree

9 files changed

+56
-16
lines changed

9 files changed

+56
-16
lines changed

CHANGELOG.md

+41-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,47 @@
22

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

5-
## [Unreleased]
5+
## 2024.3.2 (2024-08-20)
6+
7+
### Features
8+
9+
- _agent_: initial PEDM implementation ([1ed573ae54](https://github.com/Devolutions/devolutions-gateway/commit/1ed573ae546d17582e6cb1209d588d21e8b47236))
10+
11+
### Improvements
12+
13+
- _dgw_: log KDC domain when throwing the error ([#963](https://github.com/Devolutions/devolutions-gateway/issues/963)) ([873217c804](https://github.com/Devolutions/devolutions-gateway/commit/873217c8042167bf378613f812b3db2a399d256a))
14+
15+
We now print the name of the requested domain when the requested
16+
domain didn't match the authorized (expected) domain.
17+
18+
- _dgw_: accept subject name even if it does not match the hostname ([1f40b45bae](https://github.com/Devolutions/devolutions-gateway/commit/1f40b45baed4c4aca71344de30d826b354029086))
19+
20+
Configurations where the certificate subject name does not match the
21+
hostname are now accepted.
22+
Instead, a few warning and debug log records are added to help
23+
discover configuration issues in case of problem.
24+
The problem with the strict approach we had previously is that we
25+
may reject valid configurations where the hostname was actually
26+
matched by one of the subject alternative names in the certificate.
27+
28+
### Performance
29+
30+
- _jetsocat_: use a larger buffer for plain forwarding ([#968](https://github.com/Devolutions/devolutions-gateway/issues/968)) ([6c18ff1fc1](https://github.com/Devolutions/devolutions-gateway/commit/6c18ff1fc133ecf7bb00ff0a235494988f479e19))
31+
32+
By increasing the size of the intermediate buffer from 8k to 16k,
33+
performance of raw TCP forwarding is increased by ~19.4%.
34+
35+
Performance was measured using `iperf` on local network.
36+
37+
- _jetsocat,dgw_: major throughput improvement for JMUX proxy (Devolutions Gateway Tunnel) ([#973](https://github.com/Devolutions/devolutions-gateway/issues/973)) ([32de1d50de](https://github.com/Devolutions/devolutions-gateway/commit/32de1d50de509559e2b8f2d6c7e1259c0db85cb1)) ([#975](https://github.com/Devolutions/devolutions-gateway/issues/975)) ([8ebfd2316d](https://github.com/Devolutions/devolutions-gateway/commit/8ebfd2316d2bcc1355e9dadd3d379b635c74bb23)) ([#976](https://github.com/Devolutions/devolutions-gateway/issues/976)) ([11efaa5cfe](https://github.com/Devolutions/devolutions-gateway/commit/11efaa5cfe1a87d3880c82a27e37a4da9d38ed4e)) ([#977](https://github.com/Devolutions/devolutions-gateway/issues/977)) ([6b77a993ab](https://github.com/Devolutions/devolutions-gateway/commit/6b77a993abdfb9022babf35194b66c135c06fa53)) ([DGW-202](https://devolutions.atlassian.net/browse/DGW-202)) ([#980](https://github.com/Devolutions/devolutions-gateway/issues/980)) ([53af6fa7c7](https://github.com/Devolutions/devolutions-gateway/commit/53af6fa7c7bab58498b8b0e82d5f7998efe0c368))
38+
39+
See [JMUX-proxy-performance.md](./docs/JMUX-proxy-performance.md).
40+
41+
### Build
42+
43+
- _dgw_: update cryptography dependencies ([787027cbf9](https://github.com/Devolutions/devolutions-gateway/commit/787027cbf96c19a440a401512f9b351b340632e6))
44+
45+
We keep using ring as our crypto provider for now.
646

747
## 2024.3.1 (2024-08-01)
848

Cargo.lock

+3-3
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.1
1+
2024.3.2

cliff.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ commit_parsers = [
8989
{ message = "^chore\\(deps\\)", skip = true },
9090
{ message = "^build\\(deps\\)", skip = true },
9191
{ message = "^.{2,8}\\(.{0,10}nuget.{0,10}\\)", skip = true },
92-
{ message = "^.{2,8}\\(.{0,10}dotnet.{0,10}\\)", skip = true },
93-
{ message = "^.{2,8}\\(.{0,10}ts.{0,10}\\)", skip = true },
92+
{ message = "^.{2,8}\\(dotnet-.{0,15}\\)", skip = true },
93+
{ message = "^.{2,8}\\(ts-.{0,15}\\)", skip = true },
9494
{ message = "^.{2,8}\\(.{0,10}openapi.{0,10}\\)", skip = true },
9595
{ message = "^.{2,8}\\(.{0,10}npm.{0,10}\\)", skip = true },
9696
{ footer = "^[Cc]hangelog: ?ignore", skip = true },
@@ -101,16 +101,16 @@ commit_parsers = [
101101

102102
{ message = "^feat", group = "<!-- 1 -->Features" },
103103

104-
{ message = "(?i)improve", group = "<!-- 2 -->Improvements" },
105-
{ message = "(?i)adjust", group = "<!-- 2 -->Improvements" },
106-
{ message = "(?i)change", group = "<!-- 2 -->Improvements" },
107-
108104
{ message = "^revert", group = "<!-- 3 -->Revert" },
109105
{ message = "^fix", group = "<!-- 4 -->Bug Fixes" },
110106
{ message = "^perf", group = "<!-- 5 -->Performance" },
111107
{ message = "^doc", group = "<!-- 6 -->Documentation" },
112108
{ message = "^build", group = "<!-- 7 -->Build" },
113109

110+
{ message = "(?i)improve", group = "<!-- 2 -->Improvements" },
111+
{ message = "(?i)adjust", group = "<!-- 2 -->Improvements" },
112+
{ message = "(?i)change", group = "<!-- 2 -->Improvements" },
113+
114114
{ message = ".*", group = "<!-- 99 -->Please Sort" },
115115
]
116116
# filter out the commits that are not matched by commit parsers

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.1"
3+
version = "2024.3.2"
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.1"
3+
version = "2024.3.2"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT/Apache-2.0"

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

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

0 commit comments

Comments
 (0)