Changelog
0.26.3 (2024-08-06)
Fixes
-
Fixes an issue where CLI argument
--property foo=""
is effectively parsed as--property foo="true"
. This is now parsed as an empty string (#596). -
Fixes a regression where amending a globbed import or globbed read results in a PklBugException (#607).
-
Fixes an issue around using
file()
notation when using the pkl-gradle plugin on Windows (#611).
0.26.1 (2024-06-28)
Changes
-
Disable revocation checking of TLS certificates (#553).
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. This fix, unfortunately, caused a regression in some cases. For example, this happens when connecting to a server that bears a public trust certificate, while in an environment with no internet access. This is because the HTTP client needs to check the revocation status of all certificates in the chain.
Revocation checks are a nuanced topic with some benefits, and also with its own problem areas. For this reason, revocation checking is disabled for Pkl’s native CLIs. Users of Pkl’s Java APIs will respect the revocation settings set in the JVM.
0.25.3 (2024-03-26)
Fixes
-
Fixes some issues with generated pkldoc websites (#357, #362)
-
Fixes a bug where amending a module that defines an abstract class might cause a Java
AssertionError
(#319) -
Fixes a bug where a for/when generator within a lambda declared with
new {}
syntax might not resolve variables correctly (#297) -
Fixes a bug where
const
andlocal
modifiers are not exported when obtaining a class’s mirror inpkl:reflect
(#265).
Contributors ❤️
Thank you to all the contributors for this release!
0.25.2 (2024-02-08)
0.25.1 (2024-02-01)
Fixes
-
Fixes an issue where pkl-tools fat jar is empty.