You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: erts/doc/notes.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,17 @@ limitations under the License.
21
21
22
22
This document describes the changes made to the ERTS application.
23
23
24
+
## Erts 15.2.7.2
25
+
26
+
### Fixed Bugs and Malfunctions
27
+
28
+
- As an optimization, when the `unicode:characters_to_binary/3` was used to convert from `latin1` to `utf8` or vice versa, it would return the original binary unchanged if it only contained 7-bit ASCII characters. That otpimization was broken in Erlang/OTP 27, and has now been mended.
Copy file name to clipboardExpand all lines: lib/inets/doc/notes.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,23 @@ limitations under the License.
19
19
-->
20
20
# Inets Release Notes
21
21
22
+
## Inets 9.3.2.1
23
+
24
+
### Fixed Bugs and Malfunctions
25
+
26
+
- Fixed a bug where a request sent to httpd server which is using CGI script to generate a response, would pollute server's environment variable - `HTTP_PROXY` for that request. This bug is also known as httpoxy. More information: CVE-2016-1000107
27
+
28
+
Own Id: OTP-19729 Aux Id: [PR-6223], [GH-3392]
29
+
30
+
- Fixed a RFC 2616 violation, where a http request, made by httpc, without providing any options, would be sent with an empty TE header, without also having a TE value in the connection header. Now the default request doesn't send a TE header at all.
Copy file name to clipboardExpand all lines: lib/ssh/doc/notes.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,43 @@ limitations under the License.
19
19
-->
20
20
# SSH Release Notes
21
21
22
+
## Ssh 5.2.11.3
23
+
24
+
### Fixed Bugs and Malfunctions
25
+
26
+
- Option max_handles can be configured for sshd running SFTP. The positive integer value limits amount of file handles opened for a connection (by default 4096 is used).
27
+
28
+
*** POTENTIAL INCOMPATIBILITY ***
29
+
30
+
Own Id: OTP-19701 Aux Id: [CVE-2025-48041], [PR-10157]
31
+
32
+
- Avoid decoding KEX messages providing too many algorithms. This change does not introduce new limitation but assures it is enforced earlier in processing chain. Adjustments in error logging during handshake.
33
+
34
+
*** POTENTIAL INCOMPATIBILITY ***
35
+
36
+
Own Id: OTP-19741 Aux Id: [CVE-2025-48040], [PR-10162]
37
+
38
+
- A new 'max_path' option is now available in the sshd configuration, allowing administrators to set the maximum allowable path length. By default, this value is set to 4096 characters.
39
+
40
+
*** POTENTIAL INCOMPATIBILITY ***
41
+
42
+
Own Id: OTP-19742 Aux Id: [CVE-2025-48039], [PR-10155]
0 commit comments