Add java.time.format.DateTimeParseException
This commit is contained in:
parent
4f87c41ba9
commit
007ebb918e
2 changed files with 12 additions and 10 deletions
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -10,27 +10,28 @@ contributing to this release.
|
|||
|
||||
### New
|
||||
|
||||
- Add `add-tap`,`tap>`, `remove-tap`, `class?`, `iterator-seq`, `remove-watch`, `realized?`
|
||||
- Add `java.lang.ProcessHandle` and better support for killing subprocesses via
|
||||
Java interop. See [test script](https://github.com/borkdude/babashka/blob/7049b1b0bd582b717094703bcf299fb6363bb142/test/babashka/scripts/kill_child_processes.bb).
|
||||
- Add `clojure.lang.ArityException` and tests to support https://github.com/circleci/bond library [#524](https://github.com/borkdude/babashka/issues/524) ([@cldwalker](https://github.com/cldwalker)).
|
||||
- Expose more transit vars [#525](https://github.com/borkdude/babashka/issues/525) ([@djblue](https://github.com/djblue))
|
||||
- Add support for `clojure.datafy`, `Datafiable` and `Navigable` [#468](https://github.com/borkdude/babashka/issues/468)
|
||||
- Add support for building and running uberjars [#536](https://github.com/borkdude/babashka/issues/536). See [docs](https://github.com/borkdude/babashka#uberjar).
|
||||
- Print context, locals and stack trace on exception [#543](https://github.com/borkdude/babashka/issues/543).
|
||||
- Expose more transit vars [#525](https://github.com/borkdude/babashka/issues/525) ([@djblue](https://github.com/djblue))
|
||||
- Add `add-tap`,`tap>`, `remove-tap`, `class?`, `iterator-seq`, `remove-watch`, `realized?`
|
||||
- Add `java.lang.ProcessHandle` and better support for killing subprocesses via
|
||||
Java interop. See [test script](https://github.com/borkdude/babashka/blob/7049b1b0bd582b717094703bcf299fb6363bb142/test/babashka/scripts/kill_child_processes.bb).
|
||||
- Add `clojure.lang.ArityException` and tests to support the [circleci/bond](https://github.com/circleci/bond) library [#524](https://github.com/borkdude/babashka/issues/524) ([@cldwalker](https://github.com/cldwalker)).
|
||||
- Add `java.time.format.DateTimeParseException`
|
||||
|
||||
### Fixed
|
||||
|
||||
- Eval metadata on var created with `defn` [borkdude/sci#36](https://github.com/borkdude/sci/issues/36)
|
||||
- Metadata fn on var fails if calling the var itself [borkdude/sci#363](https://github.com/borkdude/sci/issues/363)
|
||||
- Allow re-binding of core vars in with-redefs [borkdude/sci#375](https://github.com/borkdude/sci/issues/375)
|
||||
- Babashka shows wrong filename when error is from required ns [#508](https://github.com/borkdude/babashka/issues/508)
|
||||
- Fix order of namespaces in uberscript [#535](https://github.com/borkdude/babashka/issues/535)
|
||||
- Fix reading resources from jar files [#528](https://github.com/borkdude/babashka/issues/528)
|
||||
- Switch from canonical to absolute paths in `:file` field on var metadata
|
||||
[#532](https://github.com/borkdude/babashka/issues/532)
|
||||
- Babashka shows wrong filename when error is from required ns [#508](https://github.com/borkdude/babashka/issues/508)
|
||||
- Eval metadata on var created with `defn` [borkdude/sci#36](https://github.com/borkdude/sci/issues/36)
|
||||
- Metadata fn on var fails if calling the var itself [borkdude/sci#363](https://github.com/borkdude/sci/issues/363)
|
||||
- Allow re-binding of core vars in with-redefs [borkdude/sci#375](https://github.com/borkdude/sci/issues/375)
|
||||
- Fix `false` dynamic binding value (which was read as `nil`) [borkdude/sci#379](https://github.com/borkdude/sci/issues/379)
|
||||
- Fix setting of `*warn-on-reflection*` in nREPL session [babashka/babashka.nrepl#25](https://github.com/babashka/babashka.nrepl/issues/25)
|
||||
- Fix order of namespaces in uberscript [#535](https://github.com/borkdude/babashka/issues/535)
|
||||
- Fix protocols with multiple methods on defrecords [borkdude/sci#367](https://github.com/borkdude/sci/issues/367) ([@patrick-galvin](https://github.com/patrick-galvin))
|
||||
|
||||
## v0.1.3 (2020-06-27)
|
||||
|
|
|
|||
|
|
@ -182,6 +182,7 @@
|
|||
java.time.ZoneId
|
||||
java.time.ZoneOffset
|
||||
java.time.format.DateTimeFormatterBuilder
|
||||
java.time.format.DateTimeParseException
|
||||
java.time.format.DecimalStyle
|
||||
java.time.format.ResolverStyle
|
||||
java.time.format.SignStyle
|
||||
|
|
|
|||
Loading…
Reference in a new issue