pg_online_schema_change 0.9.9 → 0.9.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +4 -7
- data/lib/pg_online_schema_change/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3022588bdf25b1796191894781e530ef8ad7d17648b0bcbabe4a1f3cab307bc0
|
4
|
+
data.tar.gz: 64658e3c7014bd88790ac2a8733f92bc82642bf72144474b7e60393bae3f6d90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbc50a101556ec4fdbec07ffc7597e5cbe9ef32b96dc4eab58c97bc43f306b36d9fe6cc3ee6120e1cc3a4a6fb9cba0178ddedf939d01b632ed573de2ebaa8a9e
|
7
|
+
data.tar.gz: 193703bf94240f5403a60e946b533233a6efd8bbb489aa75356073fb9d7c6b0bda597464af8a750959374e270f4d26c23273f12bf586ccec4e8c64c1de63ce11
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## [0.9.9] - 2024-10-13
|
2
|
+
|
3
|
+
- Validate delta_count value against pull_batch_count by @tanelsuurhans in https://github.com/shayonj/pg-osc/pull/164
|
4
|
+
- Always quote schema names to support uncommon characters like hyphens by @radhikalism in https://github.com/shayonj/pg-osc/pull/166
|
5
|
+
- Bump thor from 1.3.0 to 1.3.2 by @dependabot in https://github.com/shayonj/pg-osc/pull/168
|
6
|
+
- Bump rspec from 3.12.0 to 3.13.0 by @dependabot in https://github.com/shayonj/pg-osc/pull/150
|
7
|
+
- Bump google-protobuf from 3.25.2 to 3.25.5 by @dependabot in https://github.com/shayonj/pg-osc/pull/171
|
8
|
+
- Bump rexml from 3.2.6 to 3.3.6 by @dependabot in https://github.com/shayonj/pg-osc/pull/170
|
9
|
+
- Bump pg from 1.5.4 to 1.5.8 by @dependabot in https://github.com/shayonj/pg-osc/pull/172
|
10
|
+
|
1
11
|
## [0.9.8] - 2024-01-15
|
2
12
|
|
3
13
|
- Dependency updates
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pg_online_schema_change (0.9.
|
4
|
+
pg_online_schema_change (0.9.10)
|
5
|
+
google-protobuf (= 3.25.5)
|
5
6
|
ougai (~> 2.0.0)
|
6
7
|
pg (>= 1.3.2, < 1.6.0)
|
7
8
|
pg_query (>= 2.1.3, < 4.3.0)
|
@@ -15,12 +16,8 @@ GEM
|
|
15
16
|
bigdecimal (3.1.8)
|
16
17
|
coderay (1.1.3)
|
17
18
|
diff-lcs (1.5.1)
|
18
|
-
google-protobuf (
|
19
|
-
|
20
|
-
rake (>= 13)
|
21
|
-
google-protobuf (4.28.2-x86_64-linux)
|
22
|
-
bigdecimal
|
23
|
-
rake (>= 13)
|
19
|
+
google-protobuf (3.25.5-arm64-darwin)
|
20
|
+
google-protobuf (3.25.5-x86_64-linux)
|
24
21
|
haml (6.3.0)
|
25
22
|
temple (>= 0.8.2)
|
26
23
|
thor
|
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.9.
|
4
|
+
version: 0.9.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shayon Mukherjee
|
@@ -10,6 +10,20 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2024-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: google-protobuf
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.25.5
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.25.5
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: ougai
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|