argon2id 0.8.0.rc1-x86_64-linux-musl → 0.8.0-x86_64-linux-musl
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 +4 -4
- data/CHANGELOG.md +14 -0
- data/README.md +3 -3
- data/Rakefile +1 -1
- data/argon2id.gemspec +2 -2
- data/lib/argon2id/2.6/argon2id.so +0 -0
- data/lib/argon2id/2.7/argon2id.so +0 -0
- data/lib/argon2id/3.0/argon2id.so +0 -0
- data/lib/argon2id/3.4/argon2id.so +0 -0
- data/lib/argon2id/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e2abf01b8ca506b981450301b15f0cab3ad226fd1ae2812e31d31751158258a
|
4
|
+
data.tar.gz: c48c8c990683c6ae5b743abd2f90dd8a7a79d88ac4b7e013b0fe15537a56f71c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 297c6797e2428e57ca186ceb5a5f46f18e2e07023c3fc2b94e6742f7e9882df8242b8676603cdab2e6fdffae1bac9c0346b2def790b67dac4ae5c5f06a51c62f
|
7
|
+
data.tar.gz: 96a77a949b124ad2f28319f99d850a74ff00e8f727ee7cff927ad6dfa39a784b8be43407e990a584d673b82464a892465f718d17c32d22feb6d61e272215cefe
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.8.0] - 2024-12-29
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
- Add Ruby 3.4 support to the precompiled, native gems
|
13
|
+
- Restored support for Ruby 2.6, 2.7, and 3.0 after dropping them in 0.8.0.rc1
|
14
|
+
|
15
|
+
### Changed
|
16
|
+
|
17
|
+
- Provide separate precompiled, native gems for GNU and Musl
|
18
|
+
- Require glibc 2.29+ for x86-linux-gnu and x86_64-linux-gnu (and recommend
|
19
|
+
RubyGems 3.3.22+ and Bundler 2.3.21+)
|
20
|
+
|
8
21
|
## [0.8.0.rc1] - 2024-12-16
|
9
22
|
|
10
23
|
### Added
|
@@ -128,6 +141,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
128
141
|
reference C implementation of Argon2, the password-hashing function that won
|
129
142
|
the Password Hashing Competition.
|
130
143
|
|
144
|
+
[0.8.0]: https://github.com/mudge/argon2id/releases/tag/v0.8.0
|
131
145
|
[0.8.0.rc1]: https://github.com/mudge/argon2id/releases/tag/v0.8.0.rc1
|
132
146
|
[0.7.0]: https://github.com/mudge/argon2id/releases/tag/v0.7.0
|
133
147
|
[0.6.0]: https://github.com/mudge/argon2id/releases/tag/v0.6.0
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ Ruby bindings to [Argon2][], the password-hashing function that won the 2015
|
|
5
5
|
|
6
6
|
[](https://github.com/mudge/argon2id/actions)
|
7
7
|
|
8
|
-
**Current version:** 0.8.0
|
8
|
+
**Current version:** 0.8.0
|
9
9
|
**Bundled Argon2 version:** libargon2.1 (20190702)
|
10
10
|
|
11
11
|
```ruby
|
@@ -257,7 +257,7 @@ User.find_by(name: "alice")&.authenticate("password") #=> user
|
|
257
257
|
|
258
258
|
This gem requires any of the following to run:
|
259
259
|
|
260
|
-
* [Ruby](https://www.ruby-lang.org/en/)
|
260
|
+
* [Ruby](https://www.ruby-lang.org/en/) 2.6 to 3.4
|
261
261
|
* [JRuby](https://www.jruby.org) 9.4
|
262
262
|
* [TruffleRuby](https://www.graalvm.org/ruby/) 24.1
|
263
263
|
|
@@ -274,7 +274,7 @@ Where possible, a pre-compiled native gem will be provided for the following pla
|
|
274
274
|
* `aarch64-linux`, `arm-linux`, `x86-linux`, `x86_64-linux` (requires [glibc](https://www.gnu.org/software/libc/) 2.29+, RubyGems 3.3.22+ and Bundler 2.3.21+)
|
275
275
|
* [musl](https://musl.libc.org/)-based systems such as [Alpine](https://alpinelinux.org) are supported with Bundler 2.5.6+
|
276
276
|
* macOS `x86_64-darwin` and `arm64-darwin`
|
277
|
-
* Windows `x64-mingw-ucrt`
|
277
|
+
* Windows `x64-mingw32` and `x64-mingw-ucrt`
|
278
278
|
* Java: any platform running JRuby 9.4 or higher
|
279
279
|
|
280
280
|
### Verifying the gems
|
data/Rakefile
CHANGED
@@ -20,7 +20,7 @@ cross_platforms = %w[
|
|
20
20
|
x86_64-linux-musl
|
21
21
|
].freeze
|
22
22
|
|
23
|
-
ENV["RUBY_CC_VERSION"] = %w[3.4.0 3.3.5 3.2.0 3.1.0].join(":")
|
23
|
+
ENV["RUBY_CC_VERSION"] = %w[3.4.0 3.3.5 3.2.0 3.1.0 3.0.0 2.7.0 2.6.0].join(":")
|
24
24
|
|
25
25
|
gemspec = Gem::Specification.load("argon2id.gemspec")
|
26
26
|
|
data/argon2id.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
"source_code_uri" => "https://github.com/mudge/argon2id",
|
19
19
|
"rubygems_mfa_required" => "true"
|
20
20
|
}
|
21
|
-
s.required_ruby_version = ">=
|
21
|
+
s.required_ruby_version = ">= 2.6.0"
|
22
22
|
s.extensions = ["ext/argon2id/extconf.rb"]
|
23
23
|
s.files = [
|
24
24
|
"CHANGELOG.md",
|
@@ -54,6 +54,6 @@ Gem::Specification.new do |s|
|
|
54
54
|
s.rdoc_options = ["--main", "README.md"]
|
55
55
|
|
56
56
|
s.add_development_dependency("rake-compiler", "~> 1.2")
|
57
|
-
s.add_development_dependency("rake-compiler-dock", "~> 1.7
|
57
|
+
s.add_development_dependency("rake-compiler-dock", "~> 1.7")
|
58
58
|
s.add_development_dependency("minitest", "~> 5.25")
|
59
59
|
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/argon2id/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: argon2id
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.0
|
4
|
+
version: 0.8.0
|
5
5
|
platform: x86_64-linux-musl
|
6
6
|
authors:
|
7
7
|
- Paul Mucur
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.7
|
33
|
+
version: '1.7'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.7
|
40
|
+
version: '1.7'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: minitest
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,6 +83,9 @@ files:
|
|
83
83
|
- ext/argon2id/libargon2/thread.c
|
84
84
|
- ext/argon2id/libargon2/thread.h
|
85
85
|
- lib/argon2id.rb
|
86
|
+
- lib/argon2id/2.6/argon2id.so
|
87
|
+
- lib/argon2id/2.7/argon2id.so
|
88
|
+
- lib/argon2id/3.0/argon2id.so
|
86
89
|
- lib/argon2id/3.1/argon2id.so
|
87
90
|
- lib/argon2id/3.2/argon2id.so
|
88
91
|
- lib/argon2id/3.3/argon2id.so
|
@@ -112,15 +115,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
112
115
|
requirements:
|
113
116
|
- - ">="
|
114
117
|
- !ruby/object:Gem::Version
|
115
|
-
version: '
|
118
|
+
version: '2.6'
|
116
119
|
- - "<"
|
117
120
|
- !ruby/object:Gem::Version
|
118
121
|
version: 3.5.dev
|
119
122
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
120
123
|
requirements:
|
121
|
-
- - ">"
|
122
|
-
- !ruby/object:Gem::Version
|
123
|
-
version: 1.3.1
|
124
124
|
- - ">="
|
125
125
|
- !ruby/object:Gem::Version
|
126
126
|
version: 3.3.22
|