Skip to content

Commit 81f1eac

Browse files
authored
Release v5.16.0 (#542)
2 parents 784c2f2 + 14c0224 commit 81f1eac

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [v5.16.0](https://github.com/auth0/ruby-auth0/tree/v5.16.0) (2023-11-13)
4+
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.15.0...v5.16.0)
5+
6+
**Added**
7+
- [SDK-4546] Add orgs in client credentials support [\#540](https://github.com/auth0/ruby-auth0/pull/540) ([adamjmcgrath](https://github.com/adamjmcgrath))
8+
39
## [v5.15.0](https://github.com/auth0/ruby-auth0/tree/v5.15.0) (2023-10-30)
410
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.14.2...v5.15.0)
511

Gemfile.lock

+16-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
auth0 (5.15.0)
4+
auth0 (5.16.0)
55
addressable (~> 2.8)
66
jwt (~> 2.7)
77
rest-client (~> 2.1)
@@ -11,22 +11,23 @@ PATH
1111
GEM
1212
remote: https://rubygems.org/
1313
specs:
14-
actionpack (7.1.1)
15-
actionview (= 7.1.1)
16-
activesupport (= 7.1.1)
14+
actionpack (7.1.2)
15+
actionview (= 7.1.2)
16+
activesupport (= 7.1.2)
1717
nokogiri (>= 1.8.5)
18+
racc
1819
rack (>= 2.2.4)
1920
rack-session (>= 1.0.1)
2021
rack-test (>= 0.6.3)
2122
rails-dom-testing (~> 2.2)
2223
rails-html-sanitizer (~> 1.6)
23-
actionview (7.1.1)
24-
activesupport (= 7.1.1)
24+
actionview (7.1.2)
25+
activesupport (= 7.1.2)
2526
builder (~> 3.1)
2627
erubi (~> 1.11)
2728
rails-dom-testing (~> 2.2)
2829
rails-html-sanitizer (~> 1.6)
29-
activesupport (7.1.1)
30+
activesupport (7.1.2)
3031
base64
3132
bigdecimal
3233
concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -39,7 +40,7 @@ GEM
3940
addressable (2.8.5)
4041
public_suffix (>= 2.0.2, < 6.0)
4142
ast (2.4.2)
42-
base64 (0.1.1)
43+
base64 (0.2.0)
4344
bigdecimal (3.1.4)
4445
builder (3.2.4)
4546
coderay (1.1.3)
@@ -62,7 +63,7 @@ GEM
6263
dotenv-rails (2.8.1)
6364
dotenv (= 2.8.1)
6465
railties (>= 3.2)
65-
drb (2.1.1)
66+
drb (2.2.0)
6667
ruby2_keywords
6768
erubi (1.12.0)
6869
faker (2.23.0)
@@ -112,7 +113,7 @@ GEM
112113
mime-types-data (3.2023.1003)
113114
minitest (5.20.0)
114115
multi_json (1.15.0)
115-
mutex_m (0.1.2)
116+
mutex_m (0.2.0)
116117
nenv (0.3.0)
117118
netrc (0.11.0)
118119
nokogiri (1.15.4-aarch64-linux)
@@ -139,7 +140,7 @@ GEM
139140
psych (5.1.1.1)
140141
stringio
141142
public_suffix (5.0.3)
142-
racc (1.7.1)
143+
racc (1.7.3)
143144
rack (3.0.8)
144145
rack-session (2.0.0)
145146
rack (>= 3.0.0)
@@ -155,9 +156,9 @@ GEM
155156
rails-html-sanitizer (1.6.0)
156157
loofah (~> 2.21)
157158
nokogiri (~> 1.14)
158-
railties (7.1.1)
159-
actionpack (= 7.1.1)
160-
activesupport (= 7.1.1)
159+
railties (7.1.2)
160+
actionpack (= 7.1.2)
161+
activesupport (= 7.1.2)
161162
irb
162163
rackup (>= 1.0.0)
163164
rake (>= 12.2)
@@ -235,7 +236,7 @@ GEM
235236
concurrent-ruby (~> 1.0)
236237
unf (0.1.4)
237238
unf_ext
238-
unf_ext (0.0.8.2)
239+
unf_ext (0.0.9)
239240
unicode-display_width (2.5.0)
240241
vcr (6.2.0)
241242
webmock (3.19.1)

lib/auth0/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# current version of gem
22
module Auth0
3-
VERSION = '5.15.0'.freeze
3+
VERSION = '5.16.0'.freeze
44
end

0 commit comments

Comments
 (0)