pg_online_schema_change 0.7.0 → 0.7.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
  SHA256:
3
- metadata.gz: 273557a58c9492e628277e6eed7b655233c47bb51b12a61ca3eaf3377557205a
4
- data.tar.gz: 6ec45511249401c420cc3c61652a4ad18225917b644574fb58329819fb422ab1
3
+ metadata.gz: c49f895f91c72ef491002660c994088b9d527db88d3b5d77cbb851771a2f2ac8
4
+ data.tar.gz: d57329d32657cd64edb60b8c174c6fc32f4279a202548b5132407e98c59f2f9e
5
5
  SHA512:
6
- metadata.gz: 29f07b0af4c6a78de6945b6f43e271518f9c5953388e99dcc7582c4db865881ac5e5b8d0f1dff9a1215216ea534ad1e393fb268816e3799832911688b7abc14e
7
- data.tar.gz: 0362f9c666c58acdb2fb63f1cd0208c719eb788555b218a57e2aee7bb9d98bbd9a7ff4d1e0ee0a56deec8e9679def1ae116fef919366e86ae30b2444d3379e6a
6
+ metadata.gz: 963c4c9751301d029857f021b40d033d50f9b8865548a5d8bd752ed4c03a4cf1e5b016c5129e771db45df1e2677a8e29b5c2b488f152932238e7158e4c3a2a8b
7
+ data.tar.gz: bc8c559ade623ea76794cf1756642474cf32eee08406f884503b9450e1d5b39233778dd77b7fcd56327c140ba046279b21a1a1a64b5ac606bf5c2119cea6b350
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+
2
+ ## [0.6.0] - 2022-03-13
3
+ * Move CI to Github Actions in https://github.com/shayonj/pg-osc/pull/64
4
+ * Set --password as optional since it is deprecated in https://github.com/shayonj/pg-osc/pull/66
5
+ * Smoke tests in https://github.com/shayonj/pg-osc/pull/65
6
+ * Add foreign keys to parent during swap in https://github.com/shayonj/pg-osc/pull/67
7
+
1
8
  ## [0.6.0] - 2022-02-26
2
9
  * Delete items by audit table PK when replaying by @shayonj @jfrost in https://github.com/shayonj/pg-osc/pull/60
3
10
  - Fixes a race condition issue: https://github.com/shayonj/pg-osc/issues/58
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pg_online_schema_change (0.6.0)
4
+ pg_online_schema_change (0.7.0)
5
5
  ougai (~> 2.0.0)
6
6
  pg (~> 1.3.2)
7
7
  pg_query (~> 2.1.3)
@@ -22,7 +22,7 @@ GEM
22
22
  parallel (1.21.0)
23
23
  parser (3.0.3.2)
24
24
  ast (~> 2.4.1)
25
- pg (1.3.3)
25
+ pg (1.3.4)
26
26
  pg_query (2.1.3)
27
27
  google-protobuf (>= 3.19.2)
28
28
  pry (0.14.1)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PgOnlineSchemaChange
4
- VERSION = "0.7.0"
4
+ VERSION = "0.7.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_online_schema_change
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shayon Mukherjee