Skip to content

Commit 6b9b20a

Browse files
authored
Merge pull request #215 from auth0/release-4.10.0
Release 4.10.0
2 parents 143fcbd + 7ffda58 commit 6b9b20a

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

CHANGELOG.md

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

3+
## [v4.10.0](https://github.com/auth0/ruby-auth0/tree/v4.10.0) (2020-04-23)
4+
5+
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.9.0...v4.10.0)
6+
7+
**Added**
8+
9+
- Added support for name\_filter parameter \[SDK-1607\] [\#214](https://github.com/auth0/ruby-auth0/pull/214) ([Widcket](https://github.com/Widcket))
10+
- Pass client\_id, audience at Auth0::Api::V2::ClientGrants\#client\_grants [\#209](https://github.com/auth0/ruby-auth0/pull/209) ([hkdnet](https://github.com/hkdnet))
11+
- Add rubocop-rails [\#200](https://github.com/auth0/ruby-auth0/pull/200) ([tknzk](https://github.com/tknzk))
12+
13+
**Security**
14+
15+
- Update rack requirement from ~\> 1.6.4 to ~\> 2.1.2 [\#206](https://github.com/auth0/ruby-auth0/pull/206) ([dependabot[bot]](https://github.com/apps/dependabot))
16+
- Update rake requirement from ~\> 10.4 to ~\> 13.0 [\#207](https://github.com/auth0/ruby-auth0/pull/207) ([dependabot[bot]](https://github.com/apps/dependabot))
17+
- Update dependencies and CI script [\#210](https://github.com/auth0/ruby-auth0/pull/210) ([lbalmaceda](https://github.com/lbalmaceda))
18+
319
## [v4.9.0](https://github.com/auth0/ruby-auth0/tree/v4.9.0) (2019-09-25)
420
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.8.0...v4.9.0)
521

Gemfile.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
auth0 (4.9.0)
4+
auth0 (4.10.0)
55
rest-client (~> 2.0.0)
66

77
GEM
@@ -86,7 +86,7 @@ GEM
8686
listen (3.2.1)
8787
rb-fsevent (~> 0.10, >= 0.10.3)
8888
rb-inotify (~> 0.9, >= 0.9.10)
89-
loofah (2.4.0)
89+
loofah (2.5.0)
9090
crass (~> 1.0.2)
9191
nokogiri (>= 1.5.9)
9292
lumberjack (1.2.4)
@@ -105,15 +105,15 @@ GEM
105105
nenv (~> 0.1)
106106
shellany (~> 0.0)
107107
parallel (1.19.1)
108-
parser (2.7.0.5)
108+
parser (2.7.1.1)
109109
ast (~> 2.4.0)
110110
pry (0.10.4)
111111
coderay (~> 1.1.0)
112112
method_source (~> 0.8.1)
113113
slop (~> 3.4)
114114
pry-nav (0.2.4)
115115
pry (>= 0.9.10, < 0.11.0)
116-
public_suffix (4.0.3)
116+
public_suffix (4.0.4)
117117
rack (2.1.2)
118118
rack-test (0.8.3)
119119
rack (>= 1.0, < 3)
@@ -151,15 +151,15 @@ GEM
151151
diff-lcs (>= 1.2.0, < 2.0)
152152
rspec-support (~> 3.9.0)
153153
rspec-support (3.9.2)
154-
rubocop (0.81.0)
154+
rubocop (0.82.0)
155155
jaro_winkler (~> 1.5.1)
156156
parallel (~> 1.10)
157157
parser (>= 2.7.0.1)
158158
rainbow (>= 2.2.2, < 4.0)
159159
rexml
160160
ruby-progressbar (~> 1.7)
161161
unicode-display_width (>= 1.4.0, < 2.0)
162-
rubocop-rails (2.5.0)
162+
rubocop-rails (2.5.2)
163163
activesupport
164164
rack (>= 1.1)
165165
rubocop (>= 0.72.0)
@@ -179,7 +179,7 @@ GEM
179179
thread_safe (0.3.6)
180180
tins (1.24.1)
181181
sync
182-
tzinfo (1.2.6)
182+
tzinfo (1.2.7)
183183
thread_safe (~> 0.1)
184184
unf (0.1.4)
185185
unf_ext

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 = '4.9.0'.freeze
3+
VERSION = '4.10.0'.freeze
44
end

0 commit comments

Comments
 (0)