From fec665199f15fb55e32c4d7b3527f42c685738b6 Mon Sep 17 00:00:00 2001 From: Scott Hill Date: Thu, 10 Jan 2019 10:57:04 -0600 Subject: [PATCH] Update Dependencies, Change Log, and Version --- CHANGELOG.md | 24 +++++++++++++++++++++++- Gemfile.lock | 20 ++++++++++---------- lib/subserver/version.rb | 2 +- 3 files changed, 34 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f2a615..c00fb26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,24 @@ -# 1.0.0 +# 0.4.0 +- Adds listener_startup lifecycle event + +# 0.3.0 +- Adds Mocks for testing in applications + +# 0.2.2 +- Fix issue where multi-subscriber options were getting overridden + +# 0.2.1 +- Use Rails 5 reloader +- Fix ActiveRecord connection issues using ConnectionHandler +- Use Google's Default Enviroment Variables for fallback + +# 0.2.0 +- Adds PubSub connection testing +- Fixes a case where subserver would infinitly kill and respawn listeners +- Cleans up logger code + +# 0.1.1 +- Fixes connection handling + +# 0.1.0 - Initial Public Release \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 14e34dd..f78480f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - subserver (0.3.0) + subserver (0.4.0) google-cloud-pubsub (~> 0.31, >= 0.31.0) GEM @@ -53,12 +53,12 @@ GEM arel (9.0.0) builder (3.2.3) coderay (1.1.2) - concurrent-ruby (1.0.5) + concurrent-ruby (1.1.4) crass (1.0.4) diff-lcs (1.3) docile (1.3.1) erubi (1.7.1) - faraday (0.15.3) + faraday (0.15.4) multipart-post (>= 1.2, < 3) globalid (0.4.1) activesupport (>= 4.2.0) @@ -66,32 +66,32 @@ GEM google-cloud-env (~> 1.0) google-cloud-env (1.0.5) faraday (~> 0.11) - google-cloud-pubsub (0.33.1) + google-cloud-pubsub (0.33.2) concurrent-ruby (~> 1.0) google-cloud-core (~> 1.2) google-gax (~> 1.3) grpc-google-iam-v1 (~> 0.6.9) - google-gax (1.4.0) + google-gax (1.5.0) google-protobuf (~> 3.2) googleapis-common-protos (>= 1.3.5, < 2.0) - googleauth (~> 0.6.2) + googleauth (>= 0.6.2, < 0.10.0) grpc (>= 1.7.2, < 2.0) rly (~> 0.2.3) - google-protobuf (3.6.1-universal-darwin) + google-protobuf (3.6.1) googleapis-common-protos (1.3.7) google-protobuf (~> 3.0) googleapis-common-protos-types (~> 1.0) grpc (~> 1.0) googleapis-common-protos-types (1.0.2) google-protobuf (~> 3.0) - googleauth (0.6.6) + googleauth (0.8.0) faraday (~> 0.12) jwt (>= 1.4, < 3.0) - memoist (~> 0.12) + memoist (~> 0.16) multi_json (~> 1.11) os (>= 0.9, < 2.0) signet (~> 0.7) - grpc (1.15.0-universal-darwin) + grpc (1.17.1) google-protobuf (~> 3.1) googleapis-common-protos-types (~> 1.0.0) grpc-google-iam-v1 (0.6.9) diff --git a/lib/subserver/version.rb b/lib/subserver/version.rb index d46ae4f..3feca0c 100644 --- a/lib/subserver/version.rb +++ b/lib/subserver/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Subserver - VERSION = "0.3.0" + VERSION = "0.4.0" end \ No newline at end of file