pg-pglogical 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '04681bd0e6800c3dbe83a829326246c4410a93e6'
4
- data.tar.gz: cfdb595292dd9ffef00a4f9ed3b29a12bb595d0a
3
+ metadata.gz: 14b9822683a1454c59a7a242b5a01f134162b50e
4
+ data.tar.gz: 6831413e95da2e307ddb4b171f0c98e18511487b
5
5
  SHA512:
6
- metadata.gz: ee49368784dd65348e8e462914a347a8118d85a7450359f5a669871662d3a63c2714549e3815205812c95d307868a54d7b93e0cecd395e4461b0f7d6c1eaf45e
7
- data.tar.gz: 0e58cbd7a6d61e9d3a0a63ce4667cabba32592477f01efc600985af0a6b9f7bbdcf0a9fb1a4654caff5fa0acac96083698abc018b10100f4eb0e202caf06da14
6
+ metadata.gz: 2ef6b32e17e332e5d0f6def34080dffba4810ff2f2f8f6151b047d67cb13892af18e272a83c83abcd35f3d842333e56866eb68b6112d4402771e17a02f04c711
7
+ data.tar.gz: ce36f9052873042f382bf03cb8af1faa91125e640b0b38b0f6a24c1f4ea1ff273027cbb0ad677c3cd6a97b0d15cd8a8101474e7c90fc1b71ecd5734aba6a1df3
data/.rubocop_local.yml CHANGED
@@ -1,7 +1,5 @@
1
- inherit_from:
2
- - .rubocop_base.yml
3
1
  #
4
2
  # Overrides
5
3
  #
6
- AllCops:
7
- TargetRubyVersion: 2.2
4
+ # AllCops:
5
+ # TargetRubyVersion: 2.2
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [2.1.1] - 2017-11-14
10
+ ### Fixed
11
+ - Add the options parameter to the prepended drop table method [[#16](https://github.com/ManageIQ/pg-pglogical/pull/16)]
12
+
9
13
  ## [2.1.0] - 2017-11-13
10
14
  ### Added
11
15
  - Prepend to activerecord's drop table method for removing the table from replication sets [[#14](https://github.com/ManageIQ/pg-pglogical/pull/14)]
@@ -11,7 +11,7 @@ module PG
11
11
  end
12
12
 
13
13
  module MigrationExtension
14
- def drop_table(table)
14
+ def drop_table(table, options = {})
15
15
  pgl = PG::Pglogical::Client.new(ApplicationRecord.connection)
16
16
  if pgl.enabled?
17
17
  pgl.replication_sets.each do |set|
@@ -1,5 +1,5 @@
1
1
  module PG
2
2
  module Pglogical
3
- VERSION = "2.1.0".freeze
3
+ VERSION = "2.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: 2.1.0
4
+ version: 2.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-11-13 00:00:00.000000000 Z
11
+ date: 2017-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord