covalence 0.9.7 → 0.9.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/README.md +0 -2
- data/lib/covalence/core/cli_wrappers/popen_wrapper.rb +1 -3
- data/lib/covalence/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e903fa8c44b45782f8ed35bcf35cc2f6b3097987a3b591df8a4d64fee2668cb
|
4
|
+
data.tar.gz: a73c98132b3bfc7ed501af2f8394c2ed91e5fb9e0dd58ee15f10521cd77f702c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f76aa5ca172ade473803119a386f7e07779b9a69d6e5d5ae1cfbeb4410d327b0e0b4af07b6569c51bd4c125ec93aa0f58bb2650afe0f634fc300a7eff0fc8d8e
|
7
|
+
data.tar.gz: 16efeb2013c66258bfa0c15c5bffb9a06fdc764b8ea41afb06f5b0c6e7f58c7ee35a1d166f1eefb1d86969676997f0cd78acc6a255c40361cd00ce1c8f355049
|
data/CHANGELOG.md
CHANGED
@@ -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
|
-
|
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
|
|
data/lib/covalence/version.rb
CHANGED
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.
|
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:
|
11
|
+
date: 2020-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: deep_merge
|