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: docs/modules/release-notes/pages/changelog.adoc
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,27 @@
1
1
= Changelog
2
2
include::ROOT:partial$component-attributes.adoc[]
3
3
4
+
[[release-0.26.1]]
5
+
== 0.26.1 (2024-06-28)
6
+
7
+
=== Fixes
8
+
9
+
* Fixes a regression where native executables fail to run on some environments that don't support newer CPU features (https://github.com/apple/pkl/pull/551[#551]).
10
+
* Fixes a `PklBugException` when passing `.` as a project directory to `pkl project resolve` and `pkl project package` (https://github.com/apple/pkl/pull/544[#544]).
11
+
12
+
=== Changes
13
+
14
+
* Disable revocation checking of TLS certificates (https://github.com/apple/pkl/pull/553[#553]).
15
+
+
16
+
As part of HTTP improvements in 0.26, we unwittingly fixed a bug where Pkl does not actually perform cert revocation checks when making HTTPS requests.
17
+
This fix, unfortunately, caused a regression in some cases.
18
+
For example, this happens when connecting to a server that bears a public trust certificate, while in an environment with no internet access.
19
+
This is because the HTTP client needs to check the revocation status of all certificates in the chain.
20
+
+
21
+
Revocation checks are a nuanced topic with some benefits, and also with its own problem areas.
22
+
For this reason, revocation checking is disabled for Pkl's native CLIs.
23
+
Users of Pkl's Java APIs will respect the revocation settings set in the JVM.
0 commit comments