oauth2c 1.2.0.pre.1 → 1.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 +4 -4
- data/CHANGELOG.md +9 -2
- data/Gemfile.lock +1 -1
- data/lib/oauth2c/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62f1c5de2eca8f9b10a8a5a840a1511fdf971709cbb82019ee4778a9630b7ac9
|
|
4
|
+
data.tar.gz: 96043ef766b35cec8442d14e4ca461a7ff61783d0c792aab035be234bf62a3c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee63dfe9758149d89a90322a4346c624dcd092a368d61210bfc1a56fbb3c21c34aa4bce3a90fa08306eee00098dec555f43edcd954b75ee9bf183260ca704bf4
|
|
7
|
+
data.tar.gz: 27f007dbfc017bf322332c31d81da64b9ca04877312e79dd4a68d47dc0b65fdaa377af0baec971fe37ce2244d26e8394a054365834038b85e5a4aa345ae31a1f
|
data/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,15 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [1.2.0
|
|
8
|
-
|
|
7
|
+
## [1.2.0] - 2022-09-01
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Adds tests for ruby 3/3.1 in conjunction with 2.7
|
|
11
|
+
- Add regxml gem (this was removed from ruby in 3)
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Updates gem to support both ruby3/ruby 2.7 keyword args
|
|
15
|
+
- Anywhere using an access token will have to splat inside of ruby 3
|
|
9
16
|
|
|
10
17
|
## [1.1.2] - 2020-02-24
|
|
11
18
|
### Changed
|
data/Gemfile.lock
CHANGED
data/lib/oauth2c/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oauth2c
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.0
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Doximity
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: http
|
|
@@ -234,9 +234,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
234
234
|
version: 2.3.0
|
|
235
235
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
236
236
|
requirements:
|
|
237
|
-
- - "
|
|
237
|
+
- - ">="
|
|
238
238
|
- !ruby/object:Gem::Version
|
|
239
|
-
version:
|
|
239
|
+
version: '0'
|
|
240
240
|
requirements: []
|
|
241
241
|
rubygems_version: 3.3.11
|
|
242
242
|
signing_key:
|