Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

HT154

HT154 pushed 5 commits to main HT154/pkl
  • Allow jar:nested: URIs in default security manager (#895) Nested jars built by spring boot can possibly represent cl... 257bd6f
  • Revert "Upgrade Kotlin to 1.7.21 (#887)" (#896) This reverts commit 273d1219a6e32f93bb00ed83634964148be4719d. 2a9b100
  • Import release notes for 0.27.2 (#897) 29049ac
  • Only run Gradle compatibility tests against minimum and maximum release (#898) Currently, we run against every relea... cdd6d52
  • Update Kotlin to 2.0 (#900) - update Kotlin from 1.7.10 to 2.0.21 - Kotlin 1.6 dependencies in Gradle lock files a... 258eda8

View on GitHub

HT154 pushed 10 commits to main HT154/pkl
  • Make Test Report locale independent (#868) Format numbers with `.` decimals 467e64f
  • Update license year (#871) * Update license header file spec to use placeholder year * Update spotless to use ratche... f6c74e9
  • Fix page size for Linux AArch64 native executables (#875) Graal Native Image is assuming 4k page size here, which is... 267de3c
  • YamlRenderer: allow all primitive scalar types as map keys (#879) 160e4a5
  • Fix NPE when handling ExternalReader specs with null arguments (#882) 3296dd8
  • Support jpkl executable for Windows (#872) This updates the script used to start the executable to support Windows a... 100dd05
  • Update gradle to 8.12 (#884) 3096da1
  • Update dependencies (#883) Most of these dependencies are test dependencies. ec7d726
  • Upgrade Kotlin to 1.7.21 (#887) What's new: https://kotlinlang.org/docs/whatsnew1720.html Releases -------- -... 273d121
  • Document where to find all keywords (#892) 75bd214

View on GitHub

HT154 created a comment on a pull request on apple/pkl
The gotcha here is that `external` does actually have meaning! It's used in the standard library to mark declarations that are implemented in the language runtime (Java) instead of directly in the ...

View on GitHub

HT154 deleted a branch HT154/pkl

external-readers-pkl-swift-fix-2

HT154 pushed 1 commit to external-readers HT154/pkl-swift

View on GitHub

HT154 pushed 1 commit to external-readers HT154/pkl-swift

View on GitHub

HT154 created a comment on a pull request on apple/pkl-swift
This should be all set now! Probably best to merge after https://github.com/apple/pkl/pull/882 lands and Pkl 0.27.2 is published and added to CI.

View on GitHub

HT154 pushed 1 commit to external-readers HT154/pkl-swift
  • Fix testing on pre-0.27 Pkl versions bc2d6c9

View on GitHub

HT154 created a review comment on a pull request on apple/pkl-swift
Encoders are much simpler to debug when they tell you where they're at :)

View on GitHub

HT154 created a review on a pull request on apple/pkl-swift

View on GitHub

HT154 pushed 1 commit to external-readers HT154/pkl-swift
  • Fix CreateEvaluatorRequest decoding when request specifies external reader with null arguments 1ab5471

View on GitHub

HT154 pushed 1 commit to external-readers-pkl-swift-fix-2 HT154/pkl
  • Fix NPE when handling ExternalReader specs with null arguments 0f877a3

View on GitHub

HT154 pushed 1 commit to yaml-renderer-scalar-keys HT154/pkl
  • YamlRenderer: allow all primitive scalar types as map keys f6c23bb

View on GitHub

HT154 pushed 1 commit to yaml-renderer-scalar-keys HT154/pkl
  • YamlRenderer: allow all primitive scalar types as map keys fc306ae

View on GitHub

HT154 created a review comment on a pull request on apple/pkl
Pkl's `Int` types are all represented by Java `long` internally (likewise, Pkl `Float` is always Java `double`). In this case, `emitter` has two method overloads `emit(long)` and `emit(double)` so ...

View on GitHub

HT154 created a review on a pull request on apple/pkl

View on GitHub

HT154 created a comment on an issue on apple/pkl
Okay, PR open with the fix. You can also use render directives to get the desired output until this fix is released: ```pkl output { renderer = new YamlRenderer { converters { [Map...

View on GitHub

HT154 opened a pull request on apple/pkl
`YamlRenderer`: allow all primitive scalar types as map keys
[YAML (1.2) explicitly allows _any_ value as a mapping key](https://yaml.org/spec/1.2.2/#3211-nodes), just like Pkl! This PR allows all of Pkl's primitive scalars (those that can already be nativel...
HT154 deleted a branch HT154/pkl

aarch64-page-size-fix

HT154 created a comment on a pull request on apple/pkl
@bioball Thanks! This is probably worth backporting to 0.27 after merge since no historical published binaries run on the affected systems.

View on GitHub

HT154 pushed 1 commit to aarch64-page-size-fix HT154/pkl
  • Update pkl-cli.gradle.kts cf0dea7

View on GitHub

HT154 opened a pull request on apple/pkl
Fix page size for Linux AArch64 native executables
Graal Native Image is assuming 4k page size here, which is a naughty assumption to make in the modern Linux-on-ARM landscape. Two very common hardware configurations require 16k minumum page size: ...
HT154 pushed 1 commit to aarch64-page-size-fix HT154/pkl
  • Fix page size for Linux AArch64 native executables Graal Native Image is assuming 4k page size here, which is a naug... 3ef367e

View on GitHub

HT154 created a branch on HT154/pkl

aarch64-page-size-fix - A configuration as code language with rich validation and tooling.

HT154 created a comment on an issue on apple/pkl
Yup, this all but confirms my theory: ```console $ uname -a Linux js-macbook-pro 6.12.1-404.asahi.fc41.aarch64+16k #1 SMP PREEMPT_DYNAMIC Mon Dec 2 23:05:31 UTC 2024 aarch64 GNU/Linux $ ./pk...

View on GitHub

HT154 created a comment on a pull request on apple/pkl
Heads up: this needs an update too https://github.com/apple/pkl/blob/main/pkl-cli/pkl-cli.gradle.kts#L361-L362 (for JVM versions as well?) Also typo in PR title: `s/exeuctable/executable/`

View on GitHub

HT154 created a comment on an issue on apple/pkl
The Linux aarch64 binary is well-tested on ARM Macs under virtualization, so I suspect this is unique to the rpi and similar systems. It might be related to page size, like this issue https://githu...

View on GitHub