gson-fire
gson-fire copied to clipboard
A java library that adds some very useful features to Gson, like Date serializing to unix timestamp or RFC3339, method (getters) serialization, pre/post processors and many others. Check out the docum...
Replaces uses of internal `com.google.gson.internal.bind.*` classes from gson-fire and replaces them with an alternative way of configuring the json reader and writer classes. Fixes https://github.com/julman99/gson-fire/issues/52
Bumps [gson](https://github.com/google/gson) from 2.8.6 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...
Denial of Service vulnerability was discovered in gson before 2.8.9 via the writeReplace() method.
Hi, when providing gson and gson-fire as modules in an osgi container gson-fire can't be resolved as it's referencing the internal package com.google.gson.internal.bind which is not exported by gson. Only...
I don't want to serialize a field (a LocalDateTime) to JSON, but your **FireExclusionStrategy** contract does not have the _shouldSkipField_ as found in the ExclusionStrategy from the original package. I...
I noticed that there is no release tags for versions 1.8.4 and 1.8.5. It probably would be nice to have them.
Would be interested to know why maven dependencies haven't been cached on Travis. Thank you.
This is a [pretty common](https://github.com/google/gson/issues/61) request for Gson, so I thought maybe we could implement this using a custom `PostProcessor`? ----- I came up with this little thing, tell me...
Currently, when serializing maps, there are only two options for non-primitive keys: - Either don't do anything and it will be serialized with `toString` with no way back, - or...