[PR #852] [CLOSED] [0.27] Fix CreateEvaluatorRequest decoding when request specifies external reader with null arguments #775

Closed
opened 2025-12-30 01:26:39 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/apple/pkl/pull/852
Author: @HT154
Created: 12/18/2024
Status: Closed

Base: release/0.27Head: external-readers-pkl-swift-fix


📝 Commits (10+)

  • 33bffbe Prepare 0.27.0 release
  • 44fd680 Start next dev iteration
  • a533e53 Fix broken link to documentation site in release notes (#784)
  • 0d19989 Fix a possible deadlock during external reader process close (#786)
  • ff60f61 Convert org.pkl.core.util POJOs to record classes (#750)
  • a22a8a8 Fix Javadoc warning emitted by Gradle build (#798)
  • 3246a0e Convert org.pkl.core.resource POJOs to record classes (#748)
  • dddbb27 Convert org.pkl.core.project POJOs to record classes (#749)
  • 3f91824 Convert org.pkl.core.runtime POJOs to record classes (#807)
  • 9faff5e Fix length of listings with computed index (#797)

📊 Changes

165 files changed (+2155 additions, -2106 deletions)

View changed files

📝 .circleci/config.pkl (+2 -0)
📝 .circleci/config.yml (+55 -16)
📝 .circleci/jobs/BuildNativeJob.pkl (+10 -10)
📝 .circleci/jobs/DeployJob.pkl (+2 -6)
📝 .circleci/jobs/GradleCheckJob.pkl (+0 -20)
📝 .circleci/jobs/GradleJob.pkl (+52 -0)
📝 .circleci/jobs/SimpleGradleJob.pkl (+2 -6)
📝 bench/bench.gradle.kts (+0 -1)
📝 bench/gradle.lockfile (+1 -1)
📝 buildSrc/src/main/kotlin/BuildInfo.kt (+5 -0)
buildSrc/src/main/kotlin/InstallGraalVm.kt (+85 -0)
📝 buildSrc/src/main/kotlin/pklFatJar.gradle.kts (+1 -1)
📝 buildSrc/src/main/kotlin/pklGraalVm.gradle.kts (+6 -62)
📝 docs/antora.yml (+1 -1)
📝 docs/gradle.lockfile (+1 -1)
📝 docs/modules/ROOT/partials/component-attributes.adoc (+1 -1)
📝 docs/modules/java-binding/pages/codegen.adoc (+10 -6)
📝 docs/modules/java-binding/partials/cli-codegen-options.adoc (+1 -1)
📝 docs/modules/kotlin-binding/pages/codegen.adoc (+1 -1)
📝 docs/modules/pkl-gradle/pages/index.adoc (+27 -8)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/apple/pkl/pull/852 **Author:** [@HT154](https://github.com/HT154) **Created:** 12/18/2024 **Status:** ❌ Closed **Base:** `release/0.27` ← **Head:** `external-readers-pkl-swift-fix` --- ### 📝 Commits (10+) - [`33bffbe`](https://github.com/apple/pkl/commit/33bffbe158de27e7d2cd846290e8d21e8eba191f) Prepare 0.27.0 release - [`44fd680`](https://github.com/apple/pkl/commit/44fd680e438221198d64c9fd4fe0b48ce08d863f) Start next dev iteration - [`a533e53`](https://github.com/apple/pkl/commit/a533e5383862000a6af426d8f12c2e38b3657260) Fix broken link to documentation site in release notes (#784) - [`0d19989`](https://github.com/apple/pkl/commit/0d199892b85f0182b183d1ada61b4c4485e7b258) Fix a possible deadlock during external reader process close (#786) - [`ff60f61`](https://github.com/apple/pkl/commit/ff60f61cbbde4c8ffd4564bc783d851bec67465d) Convert `org.pkl.core.util` POJOs to `record` classes (#750) - [`a22a8a8`](https://github.com/apple/pkl/commit/a22a8a81272541d1e0c214a53649e5ba00416249) Fix Javadoc warning emitted by Gradle build (#798) - [`3246a0e`](https://github.com/apple/pkl/commit/3246a0e4497732d5369e1bf57f79d2a480997af5) Convert `org.pkl.core.resource` POJOs to `record` classes (#748) - [`dddbb27`](https://github.com/apple/pkl/commit/dddbb27143a2af659cf88b562dba774522784a54) Convert `org.pkl.core.project` POJOs to `record` classes (#749) - [`3f91824`](https://github.com/apple/pkl/commit/3f91824dc21fa84f7559694304c1cb1f54c50e2a) Convert `org.pkl.core.runtime` POJOs to `record` classes (#807) - [`9faff5e`](https://github.com/apple/pkl/commit/9faff5e5514ca4a63abf1ddf58efd36daf9a7343) Fix length of listings with computed index (#797) ### 📊 Changes **165 files changed** (+2155 additions, -2106 deletions) <details> <summary>View changed files</summary> 📝 `.circleci/config.pkl` (+2 -0) 📝 `.circleci/config.yml` (+55 -16) 📝 `.circleci/jobs/BuildNativeJob.pkl` (+10 -10) 📝 `.circleci/jobs/DeployJob.pkl` (+2 -6) 📝 `.circleci/jobs/GradleCheckJob.pkl` (+0 -20) 📝 `.circleci/jobs/GradleJob.pkl` (+52 -0) 📝 `.circleci/jobs/SimpleGradleJob.pkl` (+2 -6) 📝 `bench/bench.gradle.kts` (+0 -1) 📝 `bench/gradle.lockfile` (+1 -1) 📝 `buildSrc/src/main/kotlin/BuildInfo.kt` (+5 -0) ➕ `buildSrc/src/main/kotlin/InstallGraalVm.kt` (+85 -0) 📝 `buildSrc/src/main/kotlin/pklFatJar.gradle.kts` (+1 -1) 📝 `buildSrc/src/main/kotlin/pklGraalVm.gradle.kts` (+6 -62) 📝 `docs/antora.yml` (+1 -1) 📝 `docs/gradle.lockfile` (+1 -1) 📝 `docs/modules/ROOT/partials/component-attributes.adoc` (+1 -1) 📝 `docs/modules/java-binding/pages/codegen.adoc` (+10 -6) 📝 `docs/modules/java-binding/partials/cli-codegen-options.adoc` (+1 -1) 📝 `docs/modules/kotlin-binding/pages/codegen.adoc` (+1 -1) 📝 `docs/modules/pkl-gradle/pages/index.adoc` (+27 -8) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-30 01:26:39 +01:00
adam closed this issue 2025-12-30 01:26:39 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/pkl#775