Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
HT154 opened a pull request on apple/pkl
Test and document supercalls using the same method/property name
HT154 created a branch on HT154/pkl
method-supercall-docs - A configuration as code language with rich validation and tooling.
HT154 pushed 8 commits to main HT154/pkl
- Upgrade GraalVM and Truffle, set up multi-JDK testing, bump development Java to 21 (#876) This updates the GraalVM a... 408242a
- fix: upgrade ci jobs to jdk 21 (#926) Signed-off-by: Sam Gammon <[email protected]> 5e12dfb
- Fix native gvm ci (#930) * Update GraalVM checksum * Fix: download JDK on macOS Signed-off-by: Sam Gammon <sam@elid... 9075ca0
- Run a simple eval script (#928) Execute `1 + 1` instead of eval'ing `circleci.pkl` (might cause spurious failures du... aadcccd
- Turn CLI commands into objects, self register subcommands (#935) Usages of `RootCommand` no longer need to initializ... 9784cd7
- Remove usages of VmFunction#apply(Object) (#936) These call sites should use `ApplyVmFunction1Node` instead. 3b6fbdf
- [docs] Add documetation about release/evolution/roadmap (#937) e85e888
- Correctly set allowed modules/resoures when external reader scheme contain regex control characters (#941) ad99e4a
HT154 created a comment on an issue on apple/pkl-pantry
Something like this: ```pkl import "package://pkg.pkl-lang.org/pkl-pantry/[email protected]#/toml.pkl" output { renderer = new toml.Renderer { converters { local renderInline...
HT154 created a comment on an issue on apple/pkl-pantry
This might be an interesting application of render directives! A class like this could exist: ```pkl class TomlRenderDirective { value: Any renderInline: Boolean } ```
HT154 created a branch on HT154/pkl
escape-auto-external-reader-schemes - A configuration as code language with rich validation and tooling.
HT154 pushed 4 commits to main HT154/pkl-pantry
- Set up copyright year ratcheting (#93) When files get updated, update the copyright year range as well. Also, updat... 7424ade
- Add newlines to PklProject.deps.json files (#94) This matches the output of `pkl project resolve` in Pkl 0.27. a6d5569
- [org.openapis.v3] Security Scheme Update for HTTP/Bearer Auth (#91) Addresses the issue of being able to make a corr... f67d560
- Run pkl-related Gradle tasks with colors (#95) Allow our own logs to see colors from tests, etc. 5b4e443
HT154 opened a draft pull request on apple/pkl
[RFC] Add properties to `List` for byte-based encodings/hashes
Methods on generic types that only work for some type arguments don't exist in Pkl yet. I considered an entirely separate stdlib class (possibly even a `List` subclass?) that forces the element typ...HT154 created a branch on HT154/pkl
list-byte-properties - A configuration as code language with rich validation and tooling.
HT154 created a review comment on a pull request on apple/pkl-evolution
I'd like to proffer Go's URL implementation as a carrot and Swift's as the stick: ### Go Go's `url.Parse` function does (roughly) this: 1. Split off the fragment, if present, and decode/store ...
HT154 pushed 7 commits to main HT154/pkl
- Bump minimum Gradle version to 8.2 (#901) The Kotlin 2.0 version upgrade made us incompatible with Gradle 8.1. Give... 5dc6727
- Upgrade gradle to 8.12.1 (from 8.12) and fix some build warnings (#910) Build warning fixes: * Return `tasks.regist... 11169d6
- Overhaul implementation of for-generators (#844) Motivation: * fix known bugs and limitations of for-generators * im... 90df066
- Optimization: execute const object bodies and typechecks only once (#915) If the object member is const, it only nee... 3815a02
- Simplify inputs for `javadocJar` (#916) Also, rename `dummy` to `placeholder` aa8a0f1
- fix: downstream `native-image` builds (#914) SVM (SubstrateVM) compile configuration classes must be included within... 3fa935b
- Fix typo in tutorial part 2 (#921) 8cfd235