pg-pglogical 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cfe7f15d53fec94d58d8d5bfa0583c2b18ea9aed
4
- data.tar.gz: 6e536b7b1897e26fd0dbe1bfe0d522dbb965fa52
3
+ metadata.gz: cc47fb1c124f67c34bc3598d46581c52f0e6c7f5
4
+ data.tar.gz: f23bf2966a02ee3a7500df29db376a492a3b78d3
5
5
  SHA512:
6
- metadata.gz: c0d27d37d79a48baa6b8a19fcca50310d9dabf0052ac0eb7c5e8ba4731466c24f1a2fde40d376e53e8c3fdec1b708bef2f230d1a3f15aa0a03a94c02e7819761
7
- data.tar.gz: 757c12060ea5385d6842601a69f1185e1c195961bc1d15ec3af740533143d3e219fd72b64ce8c7df17dc3adbe6960f35c75e00fb2096b71c9076cc49d436e5b2
6
+ metadata.gz: 4a4a2984356ff7d273e36c2841f2a29600a6f9eaba82b03965e3cab18617164ae27524adcd5a126c55eb9bbdd92e68e525c76b3558413180465973ff49783c11
7
+ data.tar.gz: 8e4dea9c8a3ee8834cba848642690e19713561b8761f303086a71a708745c8b675580fb0360966e6820900ca11786fa89bbc4984bb0aaa4c18cad39b5c1bdb94
data/CHANGELOG.md CHANGED
@@ -6,9 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.1.1] - 2018-02-28
10
+ ### Fixed
11
+ - Show all subscriptions defined on global region, even if no corresponding node exists on remote [[#20](https://github.com/ManageIQ/pg-pglogical/pull/20)]
12
+
9
13
  ## [1.1.0] - 2017-02-27
10
14
  ### Added
11
15
  - Add the remote and local lsn to the subscription status [[#8](https://github.com/ManageIQ/pg-pglogical/pull/8)]
12
16
 
13
- [Unreleased]: https://github.com/ManageIQ/pg-pglogical/compare/v1.1.0...HEAD
17
+ [Unreleased]: https://github.com/ManageIQ/pg-pglogical/compare/v1.1.1...HEAD
14
18
  [1.1.0]: https://github.com/ManageIQ/pg-pglogical/compare/v1.0.0...v1.1.0
19
+ [1.1.1]: https://github.com/ManageIQ/pg-pglogical/compare/v1.1.0...v1.1.1
@@ -221,7 +221,7 @@ module PG
221
221
  sql = <<-SQL
222
222
  SELECT sub.*, stat.remote_lsn AS remote_replication_lsn, stat.local_lsn AS local_replication_lsn
223
223
  FROM pglogical.show_subscription_status($1) sub
224
- JOIN pg_replication_origin_status stat
224
+ LEFT JOIN pg_replication_origin_status stat
225
225
  ON sub.slot_name = stat.external_id
226
226
  SQL
227
227
 
@@ -1,5 +1,5 @@
1
1
  module PG
2
2
  module Pglogical
3
- VERSION = "1.1.0".freeze
3
+ VERSION = "1.1.1".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg-pglogical
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Carboni
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-02-27 00:00:00.000000000 Z
11
+ date: 2018-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -127,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  version: '0'
128
128
  requirements: []
129
129
  rubyforge_project:
130
- rubygems_version: 2.5.2
130
+ rubygems_version: 2.6.14
131
131
  signing_key:
132
132
  specification_version: 4
133
133
  summary: A ruby gem for configuring and using pglogical