vagrant-databags 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c724879ec150cb1e877c9be2de2839fdb12a5501
4
- data.tar.gz: a64489bae5262f01aa153ff5243ed3a1d2082c8e
3
+ metadata.gz: 1771b2f7e3da6fbad9e926b1a89e770491a18ea7
4
+ data.tar.gz: 77d4abef5e175ed7ac98cd9f4cba87b63fec32b8
5
5
  SHA512:
6
- metadata.gz: bb1b1e33946cc54524df895339143b54b170da0a913669019197ff5b09adeb241e6bf9957051730dca7674836d9ad6b11d36c60f21ef3cb1aac048027e23cc3a
7
- data.tar.gz: b70dc809db76a9397d1f82165d8bfd4e2923c6d589eb6d47f1a1cbc74ea7bc249ac2853c19242d4197fb97097b0b0a0089021416cdae0b519cbda5e64a031f05
6
+ metadata.gz: 1ccfdae2caa88cccb1e202a9f2985f11f00ff4c9608e3d771287ee79ebf36bf07518c0427d5910c022ded19fd62a0d5500ebc3a83293b220c272279e45f19f38
7
+ data.tar.gz: 5c476e30eabdf4dbc8d1af358485599af8c7e3f4fd5b4c1ee41f241dbdf207a098446dc04e92da1fa5fc178d4d3eedcc0e1915be17b4a09bc29b43e5f499c8d6
@@ -1,5 +1,9 @@
1
1
  # vagrant-databags Changelog
2
2
 
3
+ ## 0.1.4
4
+
5
+ Fix hook execution order on vagrant 2.1.3 (and higher) with vagrant-managed-servers plugin installed.
6
+
3
7
  ## 0.1.3
4
8
 
5
9
  Fix hook execution order on vagrant 2.1.3 (and higher) with vagrant-lifecycle plugin installed.
@@ -33,7 +33,7 @@ GIT
33
33
  PATH
34
34
  remote: .
35
35
  specs:
36
- vagrant-databags (0.1.3)
36
+ vagrant-databags (0.1.4)
37
37
 
38
38
  GEM
39
39
  remote: https://rubygems.org/
@@ -10,9 +10,9 @@ module VagrantPlugins
10
10
  action_hook(:databags_provision, action) do |hook|
11
11
  if ::VagrantPlugins.const_defined?(:Lifecycle) && (Vagrant.has_plugin? 'vagrant-lifecycle')
12
12
  hook.before(VagrantPlugins::Lifecycle::Action::EvalLifecycleRunList, Action::LoadDataBags)
13
- else
14
- hook.before(Vagrant::Action::Builtin::Provision, Action::LoadDataBags)
15
13
  end
14
+ # LoadDataBags action internally skips double processing
15
+ hook.before(Vagrant::Action::Builtin::Provision, Action::LoadDataBags)
16
16
  hook.after(Vagrant::Action::Builtin::Provision, Action::PersistDataBags)
17
17
  end
18
18
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module DataBags
3
- VERSION = '0.1.3'
3
+ VERSION = '0.1.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-databags
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nikola Stojiljkovic
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-09-03 00:00:00.000000000 Z
11
+ date: 2018-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler