bcrypt4 4.0.1 → 4.0.2

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: f047f5112b97ed1980e7b7e7c1140e566b1e6f2a
4
- data.tar.gz: abb0bf8bf3b3f878beec39d70c801d6b4e00cd9f
3
+ metadata.gz: b7e2ef2aa50440cba6c84645825a7e81228860da
4
+ data.tar.gz: b38c2eb8d1621b3fda32aafe8bde141274273a16
5
5
  SHA512:
6
- metadata.gz: 77934b714f53ab848b2eee8005c3e2ee31cf2497df4d7be6276429af2a40c6d3271e438912d4834ade7fa823cfc291eed652e032bf9924275a510c3259ba50c4
7
- data.tar.gz: 95f638c06e1a2dd150bef70e0e99ca2015db32dceff66a715171b11768159c656733d717929765853a11e0925adb700b554acf115d1dedef8de6114b7a8fb8d8
6
+ metadata.gz: 0445b23872a9b8a23ead7994e8fad4c3e29dd90af0ec9d5650af83af58cc1e16d825319fc69ee33eaf1959320d9ac8f4b874cc100c828a7bee101b6aeb9130ea
7
+ data.tar.gz: 394317a40d9594829a830af1720a7267705f60f652bb2a91c900caf3d711f5815ddd82ee231a81c379d001629e5ef062b4be59196773452020b7158965cdcb8c
data/.gitignore CHANGED
@@ -1,10 +1,13 @@
1
- doc
2
- pkg
3
- tmp
1
+ /doc
2
+ /pkg
3
+ /tmp
4
+ /vendor
5
+
4
6
  *.o
5
7
  *.bundle
6
8
  *.so
7
9
  *.jar
10
+ *.gem
11
+
8
12
  .DS_Store
9
13
  .rbenv-gemsets
10
- *.gem
data/.travis.yml CHANGED
@@ -1,4 +1,7 @@
1
1
  language: ruby
2
+ before_install:
3
+ # jruby-head does not have bundler.
4
+ - which bundle || gem install bundler
2
5
  rvm:
3
6
  - 1.8.7
4
7
  - 1.9.2
@@ -7,10 +10,21 @@ rvm:
7
10
  - 2.1.0
8
11
  - 2.2.0
9
12
  - 2.3.0
13
+ - 2.4.1
10
14
  - ruby-head
11
15
  - jruby-18mode
12
16
  - jruby-19mode
13
17
  - jruby-head
14
- - rbx-2
18
+ - rbx
15
19
  - ree
16
20
  script: bundle exec rake
21
+ matrix:
22
+ allow_failures:
23
+ - rvm: rbx
24
+ #known issue with jruby 2y hashs
25
+ - rvm: jruby-18mode
26
+ - rvm: jruby-19mode
27
+ - rvm: jruby-head
28
+ # known issue with json dependency
29
+ - rvm: 2.4.1
30
+ fast_finish: true
data/CHANGELOG CHANGED
@@ -88,3 +88,6 @@
88
88
 
89
89
  4.0.1 Jul 14 2017
90
90
  - Add post-install note about fork
91
+
92
+ 4.0.2 Jul 20 2017
93
+ - Add note about forthcoming gem which sets min requirements of 1.9.3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bcrypt4 (4.0.0)
4
+ bcrypt4 (4.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  An easy way to keep your users' passwords secure.
4
4
 
5
- * http://github.com/codahale/bcrypt-ruby/tree/master
5
+ * http://github.com/dissolve/bcrypt-ruby/tree/master
6
6
 
7
- [![Build Status](https://travis-ci.org/codahale/bcrypt-ruby.png?branch=master)](https://travis-ci.org/codahale/bcrypt-ruby)
7
+ [![Build Status](https://travis-ci.org/dissolve/bcrypt-ruby.png?branch=master)](https://travis-ci.org/dissolve/bcrypt-ruby)
8
8
 
9
9
  ## Why you should use `bcrypt()`
10
10
 
@@ -30,6 +30,7 @@ re-hash those passwords. This vulnerability only affected the JRuby gem.
30
30
  The bcrypt gem is available on the following ruby platforms:
31
31
 
32
32
  * JRuby
33
+ ** NOTE: due to the reliance on JBCrypt for this library, there is a known issue with bcrypt '2y' format and this will not interoperate with other implementations for '2y' hashes (pull requests welcome).
33
34
  * RubyInstaller 1.8, 1.9, 2.0, 2.1, and 2.2 builds on win32
34
35
  * Any 1.8, 1.9, 2.0, 2.1, 2.2, or 2.3 Ruby on a BSD/OS X/Linux system with a compiler
35
36
 
data/Rakefile CHANGED
@@ -1,3 +1,4 @@
1
+ require "bundler/gem_tasks"
1
2
  require 'rspec/core/rake_task'
2
3
  require 'rubygems/package_task'
3
4
  require 'rake/extensiontask'
data/bcrypt4.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'bcrypt4'
3
- s.version = '4.0.1'
3
+ s.version = '4.0.2'
4
4
 
5
5
  s.summary = "OpenBSD's bcrypt() password hashing algorithm."
6
6
  s.description = <<-EOF
@@ -29,7 +29,8 @@ Gem::Specification.new do |s|
29
29
 
30
30
  s.post_install_message = %q{
31
31
 
32
- The 'bcrypt' gem has had a long running issue that has prevented interop with other implementations of bcrypt. The maintainer seems to be waiting on some specific implementation support before fixing this issue (raised 2 years ago). The 'bcrypt4' gem was created to simply fix that issue. I am no longer waiting for the original maintainer.
32
+ This is the last version of the bcrypt4 library that will support any format of ruby lower than 1.9.3
33
+ If you are still using 1.9.2 or older, do not update past 4.0.2
33
34
 
34
35
  }
35
36
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bcrypt4
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1
4
+ version: 4.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Coda Hale
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-17 00:00:00.000000000 Z
11
+ date: 2017-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -103,11 +103,9 @@ homepage: https://github.com/dissolve/bcrypt-ruby
103
103
  licenses:
104
104
  - MIT
105
105
  metadata: {}
106
- post_install_message: |2+
107
-
108
-
109
- The 'bcrypt' gem has had a long running issue that has prevented interop with other implementations of bcrypt. The maintainer seems to be waiting on some specific implementation support before fixing this issue (raised 2 years ago). The 'bcrypt4' gem was created to simply fix that issue. I am no longer waiting for the original maintainer.
110
-
106
+ post_install_message: "\n\n This is the last version of the bcrypt4 library that
107
+ will support any format of ruby lower than 1.9.3 \n If you are still using 1.9.2
108
+ or older, do not update past 4.0.2\n\n"
111
109
  rdoc_options:
112
110
  - "--title"
113
111
  - bcrypt-ruby