pg_online_schema_change 0.7.0 → 0.7.2

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: d9b2ebcfd1944ac2ddba65466ca474751637d6fdb2db7abcf3a5d587e716c617
4
+ data.tar.gz: 3a6ac8b49967e9483f75359006097865de640c3ce414dad5bd0e07e766d4a3c3
5
5
  SHA512:
6
- metadata.gz: 29f07b0af4c6a78de6945b6f43e271518f9c5953388e99dcc7582c4db865881ac5e5b8d0f1dff9a1215216ea534ad1e393fb268816e3799832911688b7abc14e
7
- data.tar.gz: 0362f9c666c58acdb2fb63f1cd0208c719eb788555b218a57e2aee7bb9d98bbd9a7ff4d1e0ee0a56deec8e9679def1ae116fef919366e86ae30b2444d3379e6a
6
+ metadata.gz: a0a7d0bf9bf030859d6b7cb36b1d69770d3af9c7721c5e5042732887959bc1664e1c8bd4f09f076cdafcb1b272a57f49ddf1fbb5d86aad60a4b0b81d79378804
7
+ data.tar.gz: bb12999f436c8d93591c17b97f5f508d7234355ef25780834565a8222da4c43dd3dfd52450210007bc3f0a32cd0231958a3e7645af538d1af67cc3e620582f14
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+
2
+ ## [0.7.1] - 2022-03-13
3
+ * Bump pg to `1.3.4` https://github.com/shayonj/pg-osc/commit/d086c19d4f273dc960491cbedf9e0602d812896b
4
+
5
+ ## [0.7.0] - 2022-03-13
6
+ * Move CI to Github Actions in https://github.com/shayonj/pg-osc/pull/64
7
+ * Set --password as optional since it is deprecated in https://github.com/shayonj/pg-osc/pull/66
8
+ * Smoke tests in https://github.com/shayonj/pg-osc/pull/65
9
+ * Add foreign keys to parent during swap in https://github.com/shayonj/pg-osc/pull/67
10
+
1
11
  ## [0.6.0] - 2022-02-26
2
12
  * Delete items by audit table PK when replaying by @shayonj @jfrost in https://github.com/shayonj/pg-osc/pull/60
3
13
  - 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.2)
5
5
  ougai (~> 2.0.0)
6
6
  pg (~> 1.3.2)
7
7
  pg_query (~> 2.1.3)
@@ -14,7 +14,6 @@ GEM
14
14
  coderay (1.1.3)
15
15
  diff-lcs (1.5.0)
16
16
  google-protobuf (3.19.4)
17
- google-protobuf (3.19.4-x86_64-linux)
18
17
  method_source (1.0.0)
19
18
  oj (3.13.11)
20
19
  ougai (2.0.0)
@@ -22,7 +21,7 @@ GEM
22
21
  parallel (1.21.0)
23
22
  parser (3.0.3.2)
24
23
  ast (~> 2.4.1)
25
- pg (1.3.3)
24
+ pg (1.3.4)
26
25
  pg_query (2.1.3)
27
26
  google-protobuf (>= 3.19.2)
28
27
  pry (0.14.1)
@@ -71,6 +70,7 @@ GEM
71
70
 
72
71
  PLATFORMS
73
72
  arm64-darwin-20
73
+ arm64-darwin-21
74
74
  x86_64-linux
75
75
 
76
76
  DEPENDENCIES
data/README.md CHANGED
@@ -205,6 +205,7 @@ docker run --network host -it --rm shayonj/pg-osc:latest \
205
205
  --drop
206
206
  ```
207
207
  ## Caveats
208
+ - Partitioned tables are not supported as of yet. Pull requests and ideas welcome.
208
209
  - A primary key should exist on the table; without it, `pg-osc` will raise an exception
209
210
  - This is because - currently there is no other way to uniquely identify rows during replay.
210
211
  - `pg-osc` will acquire `ACCESS EXCLUSIVE` lock on the parent table twice during the operation.
@@ -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.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
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.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shayon Mukherjee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-13 00:00:00.000000000 Z
11
+ date: 2022-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ougai