Ecosyste.ms: Timeline

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

HT154

HT154 opened a pull request on apple/pkl
Refine external reader API
Thanks to @translatenix for identifying these in #759. This is the subset of items that were either low-hanging fruit or definitely need be addressed before this becomes public API. * Encapsulat...
HT154 pushed 1 commit to external-reader-api-refinement HT154/pkl
  • Refine external reader API * Encapsulate message transport by removing `ExternalReaderProcess.getTransport` and addi... b117011

View on GitHub

HT154 created a branch on HT154/pkl

external-reader-api-refinement - A configuration as code language with rich validation and tooling.

HT154 created a comment on a pull request on apple/pkl
A few clarifying questions about your unaddressed observations (inline) > * many APIs are missing Javadoc Aside from what you've addresses in this PR, which specifically? I'm thinking the add...

View on GitHub

HT154 created a review comment on a pull request on apple/pkl
Gotcha, thanks!

View on GitHub

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

View on GitHub

HT154 pushed 3 commits to main HT154/pkl
  • pkl-executor: fix loading projects and fix incorrectly thrown PklException * Load `PklProject` using the same securi... dd16f74
  • Replace code with italic (#753) 71db4d0
  • Add methods from `List`/`Map` to `Listing`/`Mapping` (#683) * Add `values` to `Mapping` * Add `entries` to `Mappi... a038279

View on GitHub

HT154 created a review on a pull request on apple/pkl
Thanks! One little nit and one question from a non-native Java speaker.

View on GitHub

HT154 created a review on a pull request on apple/pkl
Thanks! One little nit and one question from a non-native Java speaker.

View on GitHub

HT154 deleted a branch HT154/pkl

executor-exception-consistency

HT154 pushed 1 commit to executor-exception-consistency HT154/pkl
  • Update pkl-executor/src/main/java/org/pkl/executor/EmbeddedExecutor.java Co-authored-by: Daniel Chao <daniel.h.chao@... 3094558

View on GitHub

HT154 pushed 1 commit to executor-exception-consistency HT154/pkl
  • Update pkl-executor/src/main/java/org/pkl/executor/EmbeddedExecutor.java Co-authored-by: Daniel Chao <daniel.h.chao@... 82446e1

View on GitHub

HT154 created a review comment on a pull request on apple/pkl
You might see this if you haven't built since switching to this branch since EmbeddedExecutorTest loads the built `pkl-config-java/build/libs/pkl-config-java-all-SNAPSHOT.jar`. The tests error if ...

View on GitHub

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

View on GitHub

HT154 pushed 1 commit to executor-exception-consistency HT154/pkl

View on GitHub

HT154 pushed 1 commit to executor-exception-consistency HT154/pkl
  • Correct EmbeddedExecutor to throw ExecutorException instead of PklException when project evaluation fails b860e50

View on GitHub

HT154 pushed 1 commit to executor-exception-consistency HT154/pkl
  • Correct EmbeddedExecutor to throw ExecutorException instead of PklException when project evaluation fails 79f3f42

View on GitHub

HT154 pushed 1 commit to executor-exception-consistency HT154/pkl
  • Correct EmbeddedExecutor to throw ExecutorException instead of PklException when project evaluation fails a978ed4

View on GitHub

HT154 created a branch on HT154/pkl

executor-exception-consistency - A configuration as code language with rich validation and tooling.

HT154 pushed 5 commits to parse-dynamic-disallow-default HT154/pkl
  • Implement SPICE-0009 External Readers (#660) This adds a new feature, which allows Pkl to read resources and modules... 666f8c3
  • Polish test result running and reporting (#738) Changes: * Move class `TestResults` to package `org.pkl.core`, beca... acd2222
  • Error when JSON/YAML parsing would set property `default` in a Dynamic Resolves #561 2d25e42
  • Improved error messages 792cef3
  • Apply suggestions from code review Co-authored-by: Philip K.F. Hölzenspies <[email protected]> 9ee33e3

View on GitHub

HT154 pushed 41 commits to main HT154/pkl
  • Add .vscode and .pkl-lsp to gitignore (#677) 3600582
  • Update DEVELOPMENT.adoc (#682) bc9d526
  • Don't run native Windows tests during pkl-core:test (#686) b76ff0f
  • Update Windows and Mac development instructions (#685) 2961cda
  • Update Gradle to 8.10.2 (#684) Verify wrapper JAR according to: https://docs.gradle.org/current/userguide/gradle_wr... 4854027
  • Use case-insensitive comparison for module URI schemes (#688) Previously, some factories used case-sensitive compari... 7f26592
  • Fix dangling Javadoc reference (#687) d00c466
  • Set lower limit for glob pattern resolution in test mode (#693) Motivation: Speed up the test that verifies enforce... 475f29c
  • Improve let-expression examples (#680) (#699) Because I did not understand what a `Let Expression` should be and the... 421711b
  • Replace some usages of java.lang.String.replaceAll with String.replace (#701) Both methods replace all occurrences. ... 1022cf3
  • Fix invalid syntax in doc comments of pkl:reflect members (#703) 7ac51f1
  • Fix formatting of let expressions (#702) 2add291
  • Fix error in spread documentation (#704) 9b5c5a5
  • Fix double unary minus (#697) Fix an issue where doubly unary minus (e.g. `--1`) on int/float literals are incorrect... 62c796a
  • Update dependencies (#689) - Update dependencies by deleting lock files and regenerating them with `gw updateDepende... d271b62
  • codegen-kotlin: Fix generation of copy() methods (#705) - don't generate copy methods for abstract classes - precis... 84f4ec8
  • List Pkl GitHub repositories in README (#715) 9abf1de
  • Fix build performance issues of spotless tasks (#722) Using more efficient glob expressions and removing `targetExcl... 5057bb5
  • Add support for const object members (#678) This adds support for adding the `const` modifier to object members. ... 0ee3d37
  • Remove `isMappingDefault` on `VmNull` (#724) This method is unused. a7cc098
  • and 21 more ...

View on GitHub

HT154 deleted a branch HT154/pkl

external-readers

HT154 created a review comment on a pull request on apple/pkl
Ended up using `byteArrayOf()` and disabling the one test that relies specifically on null `content` with explanatory comments.

View on GitHub

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

View on GitHub

HT154 pushed 1 commit to external-readers HT154/pkl
  • Remove Bytes indirection Work around weird kt interop issue e3f777a

View on GitHub

HT154 created a review comment on a pull request on apple/pkl
Hmm but one of these tests that passes null is explicitly doing so to test that it's handled correctly. Passing an empty byte array instead sort of defeats that. The null contents+error is a valid ...

View on GitHub

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

View on GitHub

HT154 pushed 1 commit to external-readers HT154/pkl
  • Work around weird kt interop issue 06708b6

View on GitHub

HT154 pushed 1 commit to external-readers HT154/pkl
  • Work around weird kt interop issue 280ef78

View on GitHub

Load more