covalence 0.9.7 → 0.9.8

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
  SHA256:
3
- metadata.gz: f4a31ac71d586d110e04a65e7647f70bec41524d8f3ef62aab08c3d5ec51bcac
4
- data.tar.gz: f430ac9a93d994b8271558b7873d4c55de709951b92115aa53bf1f515aea1f77
3
+ metadata.gz: 1e903fa8c44b45782f8ed35bcf35cc2f6b3097987a3b591df8a4d64fee2668cb
4
+ data.tar.gz: a73c98132b3bfc7ed501af2f8394c2ed91e5fb9e0dd58ee15f10521cd77f702c
5
5
  SHA512:
6
- metadata.gz: 8c253bad63ddadc0074df8e2c29bb8ec5ecb33e490122590a034f16d800658346ed00ca808f60f1bd75df56c361a8279113e3578b1069b1d4edae629e9c7868a
7
- data.tar.gz: cbd437cc4dff8a263780367cf7982bf0452fd6c96a496fd9a1cffe339758e93787d531fff8702badb48caa8b7f067bb886ecf1afa359c5d45130d54b060d319f
6
+ metadata.gz: f76aa5ca172ade473803119a386f7e07779b9a69d6e5d5ae1cfbeb4410d327b0e0b4af07b6569c51bd4c125ec93aa0f58bb2650afe0f634fc300a7eff0fc8d8e
7
+ data.tar.gz: 16efeb2013c66258bfa0c15c5bffb9a06fdc764b8ea41afb06f5b0c6e7f58c7ee35a1d166f1eefb1d86969676997f0cd78acc6a255c40361cd00ce1c8f355049
@@ -1,3 +1,14 @@
1
+ ## 0.9.8 (Jun 10, 2020)
2
+ IMPROVEMENTS:
3
+ - Updated all gems to the latest in the Gemfile.lock.
4
+
5
+ BACKWARDS INCOMPATIBILITIES:
6
+ - Issue [#90](https://github.com/unifio/covalence/issues/90) Removed prefixout dependency from covalence. Directory prefix will no longer be displayed in output. Directory is already output prior to execution.
7
+
8
+ FIXES:
9
+ - [activesupport](https://github.com/advisories/GHSA-2p68-f74v-9wc6) upgraded activesupport to version 5.2.4.3 or later.
10
+ - [nokogiri](https://github.com/advisories/GHSA-7553-jr98-vx47) Upgrade nokogiri to version 1.10.8 or later.
11
+
1
12
  ## 0.9.7 (Sep 14, 2019)
2
13
 
3
14
  IMPROVEMENTS:
data/README.md CHANGED
@@ -106,7 +106,6 @@ $ bin/covalence spec
106
106
  ```
107
107
 
108
108
  To run the Rspec test locally without container, you will need to install the following:
109
- * prefixout -- https://github.com/WhistleLabs/prefixout
110
109
  * sops -- https://github.com/mozilla/sops
111
110
 
112
111
  ### UAT
@@ -502,7 +501,6 @@ You will probably need the following packages installed locally
502
501
  - Terraform
503
502
  - Packer
504
503
  - Sops
505
- - [prefixout](https://github.com/unifio/prefixout/releases)
506
504
 
507
505
  Execute the following to build the gem:
508
506
 
@@ -77,9 +77,7 @@ module Covalence
77
77
  # so when the parent dies, child will know to terminate itself.
78
78
  Signal.trap("INT") { logger.info "Trapped Ctrl-c. Disable parent process from exiting, orphaning the child fork below which may or may not work" }
79
79
  wait_thread = nil
80
- prefix=path.gsub(/^\/workspace*/,'')
81
- whole_cmd=['prefixout', '-p', "#{prefix} ", '--'].concat(run_cmd.split)
82
- Open3.popen3(env, *whole_cmd, :chdir=>workdir) do |stdin, stdout, stderr, wait_thr|
80
+ Open3.popen3(env, *run_cmd, :chdir=>workdir) do |stdin, stdout, stderr, wait_thr|
83
81
  mappings = { stdin_io => stdin, stdout => stdout_io, stderr => stderr_io }
84
82
  wait_thread = wait_thr
85
83
 
@@ -1,3 +1,3 @@
1
1
  module Covalence
2
- VERSION = "0.9.7"
2
+ VERSION = "0.9.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: covalence
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.7
4
+ version: 0.9.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Unif.io
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-14 00:00:00.000000000 Z
11
+ date: 2020-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deep_merge