git.delta.rocks / jrsonnet / refs/commits / 3c2d9ee98ad3

difftreelog

commits

crateshistory
  1. feat thread_enter/thread_exit bindins
    Yaroslav Bolyukin 2024-05-28 #3c2d9ee
  2. feat impl ContextInitializer for Option<impl ContextInitializer>
    Yaroslav Bolyukin 2024-05-27 #bc5db17
  3. perf document iter_cheap vs iter
    Yaroslav Bolyukin 2024-05-27 #60b06d5
  4. refactor add proper getters for LocExpr
    Yaroslav Bolyukin 2024-05-27 #3e23ebe
  5. perf inline NumValue methods
    Yaroslav Bolyukin 2024-05-27 #8d39c73
  6. refactor drop interior mutable settings from State
    Yaroslav Bolyukin 2024-05-19 #afca77d
  7. fixup! fix formatting
    Yaroslav Bolyukin 2024-05-19 #ec4da3e
  8. style fix clippy warnings
    Yaroslav Bolyukin 2024-05-19 #afe1286
  9. feat enable std.thisFile by default
    Yaroslav Bolyukin 2024-05-19 #e3e6483
  10. perf remove AST (de)serialization
    Yaroslav Bolyukin 2024-05-19 #4f26f96
  11. perf move mapWithKey to native
    Yaroslav Bolyukin 2024-05-19 #0ae36ba
  12. perf move resolvePath to native
    Yaroslav Bolyukin 2024-05-19 #57f709a
  13. perf move mergePatch to native
    Yaroslav Bolyukin 2024-05-19 #71fb4e2
  14. perf move std.assertEqual, std.find to native
    Yaroslav Bolyukin 2024-05-19 #f009c16
  15. fixup!: forgot to commit IniFormat
    Yaroslav Bolyukin 2024-05-19 #541910c
  16. perf move deepJoin to native
    Yaroslav Bolyukin 2024-05-19 #f58bb8e
  17. fix enforce Val::Num finityness at type level
    Yaroslav Bolyukin 2024-05-19 #0e22242
  18. perf move ini manifestification to native
    Yaroslav Bolyukin 2024-05-19 #88907d8
  19. fix ToStringFormat should not quote top-level string
    Yaroslav Bolyukin 2024-05-19 #0ef9787
  20. perf move std.lines to native
    Yaroslav Bolyukin 2024-05-19 #12a8bf0
  21. perf move mapWithIndex to native
    Yaroslav Bolyukin 2024-05-19 #a8186ce
  22. perf move C++ compat to native
    Yaroslav Bolyukin 2024-05-19 #d5d1e03
  23. fix wrong is_empty condition
    Yaroslav Bolyukin 2024-05-19 #cb937ae
  24. feat default params in function description
    Yaroslav Bolyukin 2024-05-19 #6bf55d2
  25. feat `*stripChars` builtins
    Petr Portnov 2024-05-17 #b5d51b9
  26. doc: outdated panic reason
    Yaroslav Bolyukin 2024-05-17 #eced1a8
  27. fix spacing in array toString
    Yaroslav Bolyukin 2024-05-17 #4fe0b2f
  28. fix manifest formats
    Yaroslav Bolyukin 2024-05-17 #78734bc
  29. style fix clippy warnings
    Yaroslav Bolyukin 2024-05-17 #4f2e8db
  30. fix benchmarks against release
    Yaroslav Bolyukin 2024-05-17 #f314b37
  31. fix ObjValue is_empty should not account hidden fields
    Yaroslav Bolyukin 2024-05-04 #bf30e81
  32. feat add description stacktrace frames for all formats
    Yaroslav Bolyukin 2024-05-04 #cc55b2d
  33. fix preserve_order arg defaults
    Yaroslav Bolyukin 2024-05-01 #912ece7
  34. fix experimental build
    Yaroslav Bolyukin 2024-05-01 #11dc48e
  35. refactor move more stdlib functions to builtins
    Yaroslav Bolyukin 2024-05-01 #f0883bb
  36. * native implementation of std.splitLimitR
    
    * style: fix formatting
    
    ---------
    Tristan Stenner 2024-05-17 #f319c35
  37. * build: bump Rust version and update dependencies
    
    * chore: resolve all reported Clippy issues
    
    * build: use the correct Toolchain version
    
    * ci: update GitHub Workflows to use valid actions
    
    * ci: add permissions to `clippy_check`
    
    * chore(GH-160): bump dependencies and disable `thread_local_initializer_can_be_made_const` lint
    
    * chore(GH-160): try fixing `thread_local_initializer_can_be_made_const`
    
    * fix(GH-160): `serialized-stdlib` feature
    
    * ci(GH-160): fix `Test Suite`
    
    * fix(GH-160): resolve `insta` deprecation
    
    * ci(GH-160): add formatting check job
    
    * ci(GH-160): reorganize jobs
    
    * style(GH-160): fix formatting
    
    * build(GH-160): fix `#[cfg(never)]`
    
    * build(GH-160): `#[allow(dead_code)]` on `FinishedRanger::end_token`
    
    * build(GH-160): allow more dead code
    
    * test(GH-160): fix `golden.rs`
    Petr Portnov | PROgrm_JARvis 2024-05-10 #c5b983e
  38. refactor fix clippy warnings
    Yaroslav Bolyukin 2024-04-07 #a9100ab
  39. perf implement std.prune in native
    Yaroslav Bolyukin 2024-04-07 #d349b9e
  40. Stack depth measurement works differently in jrsonnet, yet old value was
    chosen based on golang, and when there was not much in regard to stack
    size optimization in jrsonnet.
    Yaroslav Bolyukin 2024-04-07 #66d8cad
  41. feat implement std.flattenDeepArray builtin
    Yaroslav Bolyukin 2024-04-07 #8f8545c
  42. Merge pull request #154 from CertainLach/fix/if-field-in-super-with-no-super
    Yaroslav Bolyukin 2024-03-21 #c2313a2
  43. fix warnings in libjsonnet.so
    Yaroslav Bolyukin 2024-03-17 #a7b20f9
  44. Jsonnet spec defines special behavior for `super.field` and
    `field in super` expressions, while in jrsonnet it is implemented by
    standalone-super concept, with optimizations in case of `super.field`.
    
    However, standalone-super is conflicting with `field in super` behavior,
    so special handling is needed for this expression.
    Yaroslav Bolyukin 2024-03-20 #d1e2f8e
  45. ci temporarily disable rowan tests
    Yaroslav Bolyukin 2024-03-17 #5c3244a
  46. fix various parsing fixes
    Yaroslav Bolyukin 2024-03-17 #00fbb91
  47. feat support imports from fifo on unix
    Yaroslav Bolyukin 2024-03-17 #bfcd43b
  48. doc: move lints to Crates.io
    Yaroslav Bolyukin 2024-03-17 #d78cbb7
  49. chore cleanup Cargo.toml
    Yaroslav Bolyukin 2024-03-17 #673b628
  50. test fix
    Yaroslav Bolyukin 2024-03-03 #000d927