Jon Chambers

Results 22 issues of Jon Chambers

Now that we've introduced connection pooling in #492, the next big step will be to get clients to choose connections from different sub-pools depending on the topic to which a...

enhancement

Implementing multiple sets of credentials within a single client (which will close #540) will be no small feat. For now, this is an integration branch that serves two purposes: 1....

Right now, the deployment process for Pushy is that I type a bunch of stuff into a terminal to manually trigger deployment to Maven Central using the [Maven deploy plugin](http://maven.apache.org/plugins/maven-deploy-plugin/)....

enhancement

According to [a recent update from Apple](https://developer.apple.com/news/?id=jzd7wqva): > APNs SSL certificates will be issued from a new intermediate certificate (Worldwide Developer Relations G4 sub CA) exclusively focused on APNs. Once...

We've run into a curious problem where we'll get a `BatchUpdateException` ("column [X] is of type uuid but expression is of type character varying") if we attempt to execute a...

doc

Rather than keeping idle connections open by sending PING frames, this change will simply close channels after they've been idle for a while. My hope is that this will make...

This (in my opinion) greatly improves the `ApnsClientMetricsListener` interface at the cost of making a bunch of breaking changes. The key changes are: 1. We no longer issue opaque "notification...

We store recent credential file locations, team/key IDs, payloads, etc. in a user's [`Preferences`](https://docs.oracle.com/javase/8/docs/api/java/util/prefs/Preferences.html). It appears that stored values can interfere with test results, and we should avoid letting a...

bug

Constructing APNs payloads is a non-trivial task. Rather than requiring users to manually enter complicated blobs of JSON, we should add some kind of "compose payload" tool.

enhancement

We can translate Pushy Console into new languages by adding new [language-specific string files](https://github.com/turo/pushy-console/blob/master/src/main/resources/com/turo/pushy/console/pushy-console_en.properties). Based on traffic for [Pushy](https://github.com/relayrides/pushy) itself, it seems like we have lots of users who would...

enhancement