conjur-rack 4.0.0 → 4.2.0

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: e7a94d29090dcdb5515723b50f1f0217be932a96574e9d46c9f7e84abd3a3cb3
4
- data.tar.gz: 3a011098248a61fa80a92e3085f07f71e18b8748867e3c44cc6c174dc922e69f
3
+ metadata.gz: 33926eb7f5c4c1edf9c99546e27529da6f780729b4c5c03c7eb0e295e5b6cc8b
4
+ data.tar.gz: 53ff915f32f31540ff9cecf6f3e997228c1fb7c6d6a29a83657300cd5d3d8cb8
5
5
  SHA512:
6
- metadata.gz: a11e49c31d758257c79b508dc3f30c500310962e2420d4c31adf7b83a706f44618ea11350a53e5fdda8dc0a1173082cbf84dea8616493e3733730e42c31714cc
7
- data.tar.gz: ce37831b5f5eb108a1637db47bfd73b823eec4bde8e55a3ceafcedccd98dba7f53a8007578931fec18021fd36e174fffd991cc8caf0327622fcdfe3638ba44a5
6
+ metadata.gz: 27072705fa94f7f2631cb8b91d467765775677eac13029a5299262a0f6c4cc6041cce9b28cea11c0633ba199d4fe835a4a8a58e0f00372eec610745528bb5efc
7
+ data.tar.gz: 4a68ea033fe50ce77245baf98bc38ecf83fdcb130488a2d449d2062a59add1d037de0249a4ab0e73e8d68d14889c9229c36746f6b1802ad6ac54bf2eed6d9103
@@ -1,5 +1,9 @@
1
1
  # unreleased version
2
2
 
3
+ # v4.2.0
4
+
5
+ * Bump `slosilo` to v2.2 in order to be FIPS compliant
6
+
3
7
  # v4.0.0
4
8
 
5
9
  * Bump `rack` to v2, `bundler` to v1.16 in gemspec
@@ -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 Workflow
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!
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Kevin Gilpin
1
+ Copyright (c) 2020 CyberArk Software Ltd. All rights reserved.
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -22,8 +22,6 @@ TODO: Write usage instructions here
22
22
 
23
23
  ## Contributing
24
24
 
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
25
+ We welcome contributions of all kinds to this repository. For instructions on
26
+ how to get started and descriptions of our development workflows, please see our
27
+ [contributing guide](CONTRIBUTING.md).
@@ -18,9 +18,9 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency "slosilo", "~> 2.1"
21
+ spec.add_dependency "slosilo", "~> 2.2"
22
22
  spec.add_dependency "conjur-api", "< 6"
23
- spec.add_dependency "rack", '~> 2'
23
+ spec.add_dependency "rack", "~> 2"
24
24
 
25
25
  spec.add_development_dependency "bundler", "~> 1.16"
26
26
  spec.add_development_dependency "rake"
@@ -1,5 +1,5 @@
1
1
  module Conjur
2
2
  module Rack
3
- VERSION = "4.0.0"
3
+ VERSION = "4.2.0"
4
4
  end
5
5
  end
data/test.sh CHANGED
@@ -9,4 +9,4 @@ docker run --rm \
9
9
  -w /usr/src/app \
10
10
  -e CONJUR_ENV=ci \
11
11
  $TEST_IMAGE \
12
- bash -c "gem install bundler && bundle update && bundle exec rake spec"
12
+ bash -c "gem update --system && gem uninstall -i /usr/local/lib/ruby/gems/2.3.0 bundler && gem install bundler -v 1.16.0 && bundle update && bundle exec rake spec"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-06 00:00:00.000000000 Z
11
+ date: 2020-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: slosilo
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '2.1'
19
+ version: '2.2'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '2.1'
26
+ version: '2.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: conjur-api
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -146,6 +146,7 @@ files:
146
146
  - ".gitignore"
147
147
  - ".project"
148
148
  - CHANGELOG.md
149
+ - CONTRIBUTING.md
149
150
  - Gemfile
150
151
  - Jenkinsfile
151
152
  - LICENSE.txt
@@ -183,8 +184,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
184
  - !ruby/object:Gem::Version
184
185
  version: '0'
185
186
  requirements: []
186
- rubyforge_project:
187
- rubygems_version: 2.7.6
187
+ rubygems_version: 3.1.2
188
188
  signing_key:
189
189
  specification_version: 4
190
190
  summary: Rack authenticator and basic User struct