ghost_adapter 0.2.1 → 0.2.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: 74aed2db6347e0839ee599e4cc30d41f8261533d8926aa65a3fb97bdb0518348
4
- data.tar.gz: 12e12bfd052ff336e2b2f9088e18554bdc00e7e0647f65254a33f6b32c9a6fd0
3
+ metadata.gz: d3ff416d6745fa79685e3f81fd82da3c54e94599f997eb6b069e48bb67e36cc0
4
+ data.tar.gz: 77a45f893d2f4e2ae02f4a16e54654a8b6f9c897af1f2b562565bee06263e3a0
5
5
  SHA512:
6
- metadata.gz: e0de5d2b1dc0162733d976379a2eaf3f892b1c189fe799619f5c6129bfa7a9e285748ce9076c095d471f8c29d4e194335087ee2becc615781c0e9ac76412b687
7
- data.tar.gz: da399185e546d532a8b501b4a00c97dd1ade0611c438e444024cf8ad891ca77a024fab31de7c1feb1af0c9755749b95a556316cf730c50f22a98fda15f3b8bc5
6
+ metadata.gz: 896134509fe6a1689123c59f88b2ab7cef83b2658adb528b193e78bbaf844b6177d7bb4ccb2e86d3f2c8bfac6725b07d3878fdeb004434a0faaed680f656295a
7
+ data.tar.gz: 9a774e2e39dd80ada82532b1cd5ef5bd175d53534f013f3ca5534d999a28daf8df926d78bb504cbfe2a448db2de5c71a3c9cf2f5a0ea4a35eb44944a64202b4e
data/CHANGELOG.md CHANGED
@@ -1,11 +1,17 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.2.2
4
+
5
+ - Bump rexml from 3.2.4 to 3.2.5 (security fix) ([#35](https://github.com/WeTransfer/ghost_adapter/pull/35))
6
+ - Add azure configuration option now available with gh-ost v1.1.1 ([#36](https://github.com/WeTransfer/ghost_adapter/pull/36))
7
+
3
8
  ## 0.2.1
9
+
4
10
  - Fix bug caused by missing `require 'ghost_adapter'` for non-rails apps ([#34](https://github.com/WeTransfer/ghost_adapter/pull/34))
5
11
 
6
12
  ## 0.2.0
7
13
 
8
- - Add templating to configuration values. See [the docs](./docs/config/templating.md) for more info on how to use this feature.
14
+ - Add templating to configuration values. See [the docs](./docs/config/templating.md) for more info on how to use this feature.
9
15
 
10
16
  ## 0.1.4
11
17
 
data/Gemfile.lock CHANGED
@@ -1,19 +1,19 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ghost_adapter (0.2.1)
4
+ ghost_adapter (0.2.2)
5
5
  activerecord (>= 5)
6
6
  mysql2 (>= 0.4.0, < 0.6.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activemodel (6.1.3.1)
12
- activesupport (= 6.1.3.1)
13
- activerecord (6.1.3.1)
14
- activemodel (= 6.1.3.1)
15
- activesupport (= 6.1.3.1)
16
- activesupport (6.1.3.1)
11
+ activemodel (6.1.3.2)
12
+ activesupport (= 6.1.3.2)
13
+ activerecord (6.1.3.2)
14
+ activemodel (= 6.1.3.2)
15
+ activesupport (= 6.1.3.2)
16
+ activesupport (6.1.3.2)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 1.6, < 2)
19
19
  minitest (>= 5.1)
@@ -34,7 +34,7 @@ GEM
34
34
  rainbow (3.0.0)
35
35
  rake (13.0.3)
36
36
  regexp_parser (2.0.3)
37
- rexml (3.2.4)
37
+ rexml (3.2.5)
38
38
  rspec (3.10.0)
39
39
  rspec-core (~> 3.10.0)
40
40
  rspec-expectations (~> 3.10.0)
data/README.md CHANGED
@@ -5,13 +5,13 @@
5
5
  [![Gem](https://img.shields.io/gem/v/ghost_adapter)](https://rubygems.org/gems/ghost_adapter)
6
6
  ![GitHub Actions Workflow](https://github.com/WeTransfer/ghost_adapter/actions/workflows/tests.yml/badge.svg)
7
7
  [![Hippocratic License](https://img.shields.io/badge/license-Hippocratic-green)](https://github.com/WeTransfer/ghost_adapter/blob/main/LICENSE.md)
8
- [![gh-ost version](https://img.shields.io/badge/gh--ost%20version-1.1.0-blue)](https://github.com/github/gh-ost/releases/latest)
8
+ [![gh-ost version](https://img.shields.io/badge/gh--ost%20version-1.1.1-blue)](https://github.com/github/gh-ost/releases/latest)
9
9
 
10
10
  A tiny, _very configurable_ ActiveRecord adapter built for running [gh-ost](https://github.com/github/gh-ost) migrations. When not running migrations, it'll stay the heck out of the way.
11
11
 
12
12
  ## Installation
13
13
 
14
- First, you'll need to install `gh-ost`. You can find the latest release [here](https://github.com/github/gh-ost/releases/latest). You can check the allowed version range in [the version checker](./lib/ghost_adapter/version_checker.rb#L13) (current range: [>= 1.1, < 2]). Once you've got that installed, install the gem!
14
+ First, you'll need to install `gh-ost`. You can find the latest release [here](https://github.com/github/gh-ost/releases/latest). You can check the allowed version range in [the version checker](./lib/ghost_adapter/version_checker.rb#L13) (current range: [>= 1.1.0, < 2]). Once you've got that installed, install the gem!
15
15
 
16
16
  Add this line to your application's Gemfile:
17
17
 
@@ -8,6 +8,7 @@ module GhostAdapter
8
8
  approve_renamed_columns
9
9
  assume_master_host
10
10
  assume_rbr
11
+ azure
11
12
  check_flag
12
13
  chunk_size
13
14
  concurrent_rowcount
@@ -1,3 +1,3 @@
1
1
  module GhostAdapter
2
- VERSION = '0.2.1'.freeze
2
+ VERSION = '0.2.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ghost_adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Austin C Roos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-13 00:00:00.000000000 Z
11
+ date: 2021-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord