Dan Sănduleac
Dan Sănduleac
**[Rendered](https://github.com/palantir/conjure/blob/ds/duplicate-keys-rfc/docs/rfc/007-equality.md)**
Identified in https://github.com/palantir/conjure-verification/issues/45 The [wire spec](https://github.com/palantir/conjure/blob/develop/docs/spec/wire.md#http-requests) states that all endpoints defining a body parameter must set one of two content-type headers: > Content-Type header - For Conjure endpoints that define...
We have datetime, but no duration type. We should add one that serializes using the ISO standard that Java uses (e.g. `PT1s`). I've already come across a use case where...
Right now, it just says TODO ask Mark. https://github.com/palantir/conjure/blob/develop/docs/spec/wire.md#behaviour I think the whole point of supporting unknown variants was that they round trip so that an old "proxy" can pass...
Right now, liche seems to only check that referenced documents are accessible. It would be nice if Liche could also verify that referenced *anchors* actually exist in the referenced documents.
I import using IDEA, and all my projects are multi-project builds where only subprojects contain useful code. By putting all generated code in the _rootDir_'s `generated_src` (i.e. `../generated_src` from a...
## What happened? People regularly import boms into all projects like so: ```gradle allprojects { dependencies { rootConfiguration platform('org:my-bom') } } ``` But this doesn't actually behave as expected unless...
[This logic](https://github.com/palantir/distgo/blob/bedbfc1e5a55bbc0eb986ec8c53c49ed600040c0/publisher/bintray/publisher.go#L110-L112) breaks (e.g. [circleci](https://circleci.com/gh/palantir/go-java-launcher/333)) on multi-project repos like go-java-launcher (publishing both `go-java-launcher` and `go-init`) because it tries to derive the bintray *package* from each project's name, whereas it should...
## What happened? Due to a regression introduced earlier on, we generate `@JsonIgnoreProperties` on all beans: https://github.com/palantir/conjure-java/blob/0ffbc20056e5296b3af0a32fd86e061b624cecaa/conjure-java-core/src/main/java/com/palantir/conjure/java/types/BeanBuilderGenerator.java#L99-L100 which overrides the distinct configuration we had intended for servers as opposed to...
## What happened? Currently, it's a pain for a service high-level-foo to propagate RemoteExceptions coming from another service low-level-foo to its own clients (they have to deserialize the RemoteException, then...