-
It might be useful to some people to have binary streams support (`read-byte` rather than `read-char`).
Because RFC 8259 [specifically requires UTF-8](https://tools.ietf.org/html/rfc8259#section-8.1)…
-
(Co-chair hat off)
This is related to #63 ("Respect Implementations"). I think it will help us if we think about what we want the output of our work to be. It is a fact that there are lots of imp…
-
I really love JSTool as it makes working with large JSON files a bliss.
However there is one feature it's kind of lacking as for my use case: a validator function. I often have to modify said JSON …
-
It would be very nice to have attrs support, alongside support for dataclasses.
Attrs works quite similarly to dataclasses (dataclasses drew a lot of inspiration from attrs).
The major differenc…
-
Ebean trims whitespace in JSONB columns (see https://github.com/ebean-orm/ebean/issues/2328). The algorithm assumes that the only possible escaped character is a quote. But according to RFC 8259, any …
-
**Is your feature request related to a problem? Please describe.**
Errors returned by `protojson.Unmarshal()` are undocumented and hard (if not impossible) to parse or handle.
Context: I need t…
-
Greetings,
When I do the following:
```
String val = "CF-1.5";
String jsVal = Encode.forJavaScript(val);
```
The ending value of `jsVal` is "CF\\-1.5". Based on the javadoc for the Enc…
-
Consider the following script:
```sh
#!/bin/bash
set -ex
# Delete and create a new database
xh DELETE 'http://admin:root@localhost:6363/api/db/admin/tdb' || true
xh 'http://admin:root@localh…
-
Clusters of terms:
* Cluster 1
* JSON value
* (data) item
* node
* location
These are related, but different. We probably do not need all four.
(Of course, JSON value is a 82…
-
Trying to store event like this:
```
{
"a" : 0.1234567890123456789
}
```
produces following result:
```
{
"a" : 0.12345678901234568
}
```
Similar happens for integer values. For …