conjur-debify 1.11.4 → 1.11.5

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: 41e5d9399f2cfe965473a9230f63a4ad29ee6f4ad7cab16444102ea4c9d229ab
4
- data.tar.gz: f96651968ae77964629c274601afe6753c44acc8b82cfd60d0831a4d360df899
3
+ metadata.gz: 58a50a072fd2700fa612ac0a6113f2a6227787ed67ac732767443dc26a6f9e72
4
+ data.tar.gz: ba642699eb85c6506091ccdb8c82779a1f4daf9b5e00f45e071f910b889883e5
5
5
  SHA512:
6
- metadata.gz: a0baafc13a1b48124f53ae33934d0ec9901a025ff5b3c61d0f1dfd01747b6c78b355eeb9757f6bf5e918a0b2418e1667be871220eb5365a8e7611f58d2c1bf4f
7
- data.tar.gz: d6dcade119d526db7b035f7a109c40642008a5bbe15be5ae1faeabac50b21a11b420c0b3ded0ec2f88405fc9d01464801a6cedd3dfdb0305c43a5b137b8c9699
6
+ metadata.gz: 3674127fd6cc68ee9696f552edac2a089efe2c9ab6e1b0ac212ee78b4b282735e03ec65f15c7502592e2c31702a182756e6744c8a3bbc90a2e04b1c06ad6ffeb
7
+ data.tar.gz: 31b3d6dd4a7c414ea09ea97e98ef1a56963d4724b4bd637fbd0379f7f53db0c9d0be22981a1de2de748aa8925a5b15d82b6551e4eb7b4edf6c68579c7f5b9d3b
@@ -1,3 +1,8 @@
1
+ # 1.11.5
2
+
3
+ ### Changed
4
+ * Updated FPM and Test images to use a base image with FIPS-compliant Ruby and OpenSSL.
5
+
1
6
  # 1.11.4
2
7
 
3
8
  * Updated sandbox password to match Conjur password complexity requirements.
@@ -0,0 +1,16 @@
1
+ # Contributing
2
+
3
+ For general contribution and community guidelines, please see the [community repo](https://github.com/cyberark/community).
4
+
5
+ ## Contributing
6
+
7
+ 1. [Fork the project](https://help.github.com/en/github/getting-started-with-github/fork-a-repo)
8
+ 2. [Clone your fork](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository)
9
+ 3. Make local changes to your fork by editing files
10
+ 3. [Commit your changes](https://help.github.com/en/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line)
11
+ 4. [Push your local changes to the remote server](https://help.github.com/en/github/using-git/pushing-commits-to-a-remote-repository)
12
+ 5. [Create new Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork)
13
+
14
+ From here your pull request will be reviewed and once you've responded to all
15
+ feedback it will be merged into the project. Congratulations, you're a
16
+ contributor!
data/Dockerfile CHANGED
@@ -7,7 +7,9 @@ FROM ruby:2.6-stretch
7
7
  ### docker:dind image much more complicated and didn't lend itself to
8
8
  ### also running ruby.
9
9
 
10
- RUN apt-get update -qq && apt-get install -qqy \
10
+ RUN apt-get update -qq && \
11
+ apt-get dist-upgrade -qqy && \
12
+ apt-get install -qqy \
11
13
  apt-transport-https \
12
14
  ca-certificates \
13
15
  curl \
@@ -32,6 +32,23 @@ pipeline {
32
32
  }
33
33
  }
34
34
 
35
+ stage('Scan Docker image') {
36
+ parallel {
37
+ stage('Scan Docker image for fixable issues') {
38
+ steps{
39
+ script {
40
+ VERSION = sh(returnStdout: true, script: 'cat VERSION')
41
+ }
42
+ scanAndReport("debify:${VERSION}", "HIGH", false)
43
+ }
44
+ }
45
+ // No all report generated because it currently adds 10-12 minutes of
46
+ // build time just to write the trivy report. It'll be added once we've
47
+ // cleaned up and/or ignored enough issues to reduce the impact
48
+ // on build time.
49
+ }
50
+ }
51
+
35
52
  stage('Run feature tests') {
36
53
  steps {
37
54
  sh './test.sh'
data/README.md CHANGED
@@ -293,8 +293,6 @@ root@7d4217655332:/src/example# getent hosts mydb
293
293
 
294
294
  ## Contributing
295
295
 
296
- 1. Fork it ( https://github.com/[my-github-username]/debify/fork )
297
- 2. Create your feature branch (`git checkout -b my-new-feature`)
298
- 3. Commit your changes (`git commit -am 'Add some feature'`)
299
- 4. Push to the branch (`git push origin my-new-feature`)
300
- 5. Create a new Pull Request
296
+ For instructions on how to get started and
297
+ descriptions of our development workflows, please see our
298
+ [contributing guide](CONTRIBUTING.md).
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.4
1
+ 1.11.5
@@ -24,14 +24,14 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  spec.add_development_dependency "bundler", "~> 1.7"
26
26
  spec.add_development_dependency "fakefs", "~> 0"
27
- spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rake", "~> 12.3.3"
28
28
 
29
29
  # Pin to cucumbe v2. cucumber v3 changes (breaks) the behavior of
30
30
  # unmatched capture groups with \(d+). In v3, the value of such a
31
31
  # group is 0 instead of nil, which breaks aruba's "I successfully
32
32
  # run...." steps.
33
33
  spec.add_development_dependency "cucumber", '~> 2'
34
- spec.add_development_dependency "aruba"
34
+ spec.add_development_dependency "aruba", "~> 0.14"
35
35
  spec.add_development_dependency 'rspec', '~> 3'
36
36
  spec.add_development_dependency 'ci_reporter_rspec', '~> 1.0'
37
37
  end
@@ -1,14 +1,11 @@
1
1
  # Build from the same version of ubuntu as phusion/baseimage
2
- FROM ubuntu:18.04
2
+ FROM cyberark/phusion-ruby-fips:0.11-latest
3
3
 
4
4
  RUN apt-get update -y && \
5
+ apt-get dist-upgrade -y && \
5
6
  apt-get install -y build-essential \
6
7
  git \
7
- libffi-dev \
8
- libpq5 \
9
- libpq-dev \
10
- ruby2.5 \
11
- ruby2.5-dev
8
+ libffi-dev
12
9
 
13
10
  RUN gem install --no-document bundler:1.17.3 \
14
11
  fpm
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-debify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.4
4
+ version: 1.11.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-30 00:00:00.000000000 Z
11
+ date: 2020-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gli
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '10.0'
103
+ version: 12.3.3
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '10.0'
110
+ version: 12.3.3
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: cucumber
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -126,16 +126,16 @@ dependencies:
126
126
  name: aruba
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ">="
129
+ - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: '0'
131
+ version: '0.14'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ">="
136
+ - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: '0'
138
+ version: '0.14'
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: rspec
141
141
  requirement: !ruby/object:Gem::Requirement
@@ -177,6 +177,7 @@ files:
177
177
  - ".project"
178
178
  - ".rvmrc"
179
179
  - CHANGELOG.md
180
+ - CONTRIBUTING.md
180
181
  - Dockerfile
181
182
  - Gemfile
182
183
  - Jenkinsfile
@@ -249,7 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
249
250
  - !ruby/object:Gem::Version
250
251
  version: '0'
251
252
  requirements: []
252
- rubygems_version: 3.0.3
253
+ rubygems_version: 3.1.2
253
254
  signing_key:
254
255
  specification_version: 4
255
256
  summary: Utility commands to build and package Conjur services as Debian packages