auth0 5.6.0 → 5.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +2 -1
  3. data/.gitignore +0 -1
  4. data/.shiprc +7 -0
  5. data/CHANGELOG.md +92 -31
  6. data/Gemfile.lock +233 -0
  7. data/README.md +1 -1
  8. data/lib/auth0/api/authentication_endpoints.rb +1 -1
  9. data/lib/auth0/api/v2/attack_protection.rb +79 -0
  10. data/lib/auth0/api/v2/device_credentials.rb +8 -3
  11. data/lib/auth0/api/v2/grants.rb +2 -2
  12. data/lib/auth0/api/v2/organizations.rb +1 -1
  13. data/lib/auth0/api/v2.rb +2 -0
  14. data/lib/auth0/mixins/validation.rb +4 -4
  15. data/lib/auth0/version.rb +1 -1
  16. data/spec/lib/auth0/api/v2/actions_spec.rb +13 -13
  17. data/spec/lib/auth0/api/v2/attack_protection_spec.rb +132 -0
  18. data/spec/lib/auth0/api/v2/blacklists_spec.rb +2 -2
  19. data/spec/lib/auth0/api/v2/branding_spec.rb +4 -3
  20. data/spec/lib/auth0/api/v2/client_grants_spec.rb +8 -8
  21. data/spec/lib/auth0/api/v2/clients_spec.rb +12 -12
  22. data/spec/lib/auth0/api/v2/connections_spec.rb +10 -10
  23. data/spec/lib/auth0/api/v2/device_credentials_spec.rb +39 -10
  24. data/spec/lib/auth0/api/v2/emails_spec.rb +2 -2
  25. data/spec/lib/auth0/api/v2/grants_spec.rb +11 -11
  26. data/spec/lib/auth0/api/v2/jobs_spec.rb +18 -17
  27. data/spec/lib/auth0/api/v2/log_streams_spec.rb +3 -3
  28. data/spec/lib/auth0/api/v2/logs_spec.rb +2 -2
  29. data/spec/lib/auth0/api/v2/organizations_spec.rb +13 -13
  30. data/spec/lib/auth0/api/v2/resource_servers_spec.rb +5 -5
  31. data/spec/lib/auth0/api/v2/roles_spec.rb +22 -22
  32. data/spec/lib/auth0/api/v2/rules_spec.rb +7 -7
  33. data/spec/lib/auth0/api/v2/stats_spec.rb +1 -1
  34. data/spec/lib/auth0/api/v2/tenants_spec.rb +1 -1
  35. data/spec/lib/auth0/api/v2/tickets_spec.rb +14 -14
  36. data/spec/lib/auth0/api/v2/user_blocks_spec.rb +2 -2
  37. data/spec/lib/auth0/api/v2/users_by_email_spec.rb +2 -2
  38. data/spec/lib/auth0/api/v2/users_spec.rb +23 -23
  39. data/spec/lib/auth0/mixins/validation_spec.rb +16 -2
  40. metadata +8 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd91396b4162ecec7d480c49ad4ab50568a7a116a0bd8be32edd188621d11793
4
- data.tar.gz: d2584f0f09793611513c23334216237a8adbb923a08f1025683aa6a525e427b7
3
+ metadata.gz: a86bd11253ba07c2bf5d7440e773dbffca4e9c36a606722934aa4e3d649a6461
4
+ data.tar.gz: 752e1e0239f3c0282922b7c93c36d79ad903c0f2c0ba98731b84c43a4ac028a5
5
5
  SHA512:
6
- metadata.gz: 30fac0340e6481da011ab2d99a1c87f9d4e66557357412d1a67d2dc34f4c1b18172af80ff5a04cfcf03ca2497470e7de51f8e5b3ba292ca44b17fbbcd0ab3e0f
7
- data.tar.gz: f47a705a3223ba68fb4cd9857cb30817ff0c81981e97a9efd250e92f05b62bba37976a7ab7dd2ab666dd354822e032eb6873221f9e7d35ffaf3b59020518202c
6
+ metadata.gz: bc9f15b05b0414d83adfa88ada8e815b9d0b50782fdf68c0d8f8ade75da731ab5e564b5a2af0d122cb026ed7443c68769b76bb70fe57585e8c559356a6bcda6b
7
+ data.tar.gz: 41893dfa7b2f9223a1e54be8f981512402e51755a0e1ed38f8cd8005f53c6305ac9caf6009b984cbea2c5bff8bc4ffbbc51bb17ce6a399c78016ffc164cc186d
data/.circleci/config.yml CHANGED
@@ -27,6 +27,7 @@ jobs:
27
27
  ruby_version: << parameters.ruby_version >>
28
28
  steps:
29
29
  - checkout
30
+ - run: rm Gemfile.lock
30
31
  - restore_cache:
31
32
  key: gems-v2-{{ checksum "Gemfile.lock" }}
32
33
  - run: bundle check --path=vendor/bundle || bundle install --path=vendor/bundle
@@ -41,4 +42,4 @@ workflows:
41
42
  tests:
42
43
  jobs:
43
44
  - run-tests:
44
- <<: *matrix_ruby_versions
45
+ <<: *matrix_ruby_versions
data/.gitignore CHANGED
@@ -11,7 +11,6 @@ coverage
11
11
  *.swo
12
12
  spec/auth0.yml
13
13
  .env
14
- /Gemfile.lock
15
14
  /.yardoc/checksums
16
15
  /.yardoc/complete
17
16
  /.yardoc/object_types
data/.shiprc ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "files": {
3
+ "lib/auth0/version.rb": []
4
+ },
5
+ "prebump": "bundle install && bundle exec rake test",
6
+ "postbump": "bundle update"
7
+ }
data/CHANGELOG.md CHANGED
@@ -1,12 +1,43 @@
1
1
  # Change Log
2
2
 
3
+ ## [v5.8.0](https://github.com/auth0/ruby-auth0/tree/v5.8.0) (2022-03-25)
4
+ [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.7.0...v5.8.0)
5
+
6
+ **Added**
7
+ - Add parameters for pager to device_credentials method [\#318](https://github.com/auth0/ruby-auth0/pull/318) ([shibayu36](https://github.com/shibayu36))
8
+
9
+ **Fixed**
10
+ - Cache RS256 JWKS by url to allow for multiple Auth0 tenants per runtime [\#325](https://github.com/auth0/ruby-auth0/pull/325) ([rmm5t](https://github.com/rmm5t))
11
+ - Allow to pass nil to client_id arg of device_credentials [\#321](https://github.com/auth0/ruby-auth0/pull/321) ([shibayu36](https://github.com/shibayu36))
12
+
13
+ **Security**
14
+ - Bump nokogiri from 1.13.1 to 1.13.3 [\#320](https://github.com/auth0/ruby-auth0/pull/320) ([dependabot[bot]](https://github.com/apps/dependabot))
15
+
16
+ ## [v5.7.0](https://github.com/auth0/ruby-auth0/tree/v5.7.0) (2022-02-17)
17
+ [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.6.1...v5.7.0)
18
+
19
+ **Added**
20
+ - [SDK-3118] Add attack protection endpoints [\#316](https://github.com/auth0/ruby-auth0/pull/316) ([stevehobbsdev](https://github.com/stevehobbsdev))
21
+
22
+ **Fixed**
23
+ - [SDK-3106] Fix up tests for Ruby 3 and rspec-mocks update [\#313](https://github.com/auth0/ruby-auth0/pull/313) ([stevehobbsdev](https://github.com/stevehobbsdev))
24
+ - Fix #310: delete_organizations_member_roles should use delete_with_body instead of delete [\#311](https://github.com/auth0/ruby-auth0/pull/311) ([SanterreJo](https://github.com/SanterreJo))
25
+
26
+ ## [v5.6.1](https://github.com/auth0/ruby-auth0/tree/v5.6.1) (2021-09-14)
27
+
28
+ [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.6.0..v5.6.1)
29
+
30
+ **Fixed**
31
+
32
+ - Fix `delete_grant` API call [\#304](https://github.com/auth0/ruby-auth0/pull/304) ([danimal141](https://github.com/danimal141))
33
+
3
34
  ## [v5.6.0](https://github.com/auth0/ruby-auth0/tree/v5.6.0) (2021-09-14)
4
35
 
5
36
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.5.0..v5.6.0)
6
37
 
7
38
  **Added**
8
39
 
9
- - New Actions endpoints CH: Added review:medium. [\#293](https://github.com/auth0/ruby-auth0/pull/293) ([davidpatrick](https://github.com/davidpatrick))
40
+ - New Actions endpoints CH: Added review:medium. [\#293](https://github.com/auth0/ruby-auth0/pull/293) ([davidpatrick](https://github.com/davidpatrick))
10
41
 
11
42
  - Updates rest-client to 2.1. [\#296](https://github.com/auth0/ruby-auth0/pull/296) ([davidpatrick](https://github.com/davidpatrick))
12
43
 
@@ -80,14 +111,13 @@
80
111
 
81
112
  - Fixes create_organizations_enabled_connection [\#269](https://github.com/auth0/ruby-auth0/pull/269) ([davidpatrick](https://github.com/apps/davidpatrick))
82
113
 
83
-
84
114
  ## [v5.1.0](https://github.com/auth0/ruby-auth0/tree/v5.1.0) (2021-04-09)
85
115
 
86
116
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.0.1..v5.1.0)
87
117
 
88
118
  **Added**
89
119
 
90
- - Org idtoken validation guidance [\#267](https://github.com/auth0/ruby-auth0/pull/267) ([davidpatrick](https://github.com/davidpatrick))
120
+ - Org idtoken validation guidance [\#267](https://github.com/auth0/ruby-auth0/pull/267) ([davidpatrick](https://github.com/davidpatrick))
91
121
  - Adds Branding endpoints [\#266](https://github.com/auth0/ruby-auth0/pull/266) ([davidpatrick](https://github.com/davidpatrick))
92
122
  - Organizations feature [\#264](https://github.com/auth0/ruby-auth0/pull/264) ([davidpatrick](https://github.com/davidpatrick))
93
123
  - Add Organizations support to Authentication API Client [\#263](https://github.com/auth0/ruby-auth0/pull/263) ([davidpatrick](https://github.com/davidpatrick))
@@ -112,35 +142,43 @@
112
142
 
113
143
  ## [v5.0.0](https://github.com/auth0/ruby-auth0/tree/v5.0.0) (2020-10-22)
114
144
 
115
- This release addresses some long standing issues with the library that could only be addressed in a major. We have also removed Api/v1 endpoints and other deprecated methods.
145
+ This release addresses some long standing issues with the library that could only be addressed in a major. We have also removed Api/v1 endpoints and other deprecated methods.
116
146
 
117
147
  ### Migration from v4 to v5
118
148
 
119
149
  #### Top Level Structs
150
+
120
151
  The following top level structs were colliding with other libraries, this was addressed in [\#183](183) and have been namespaced with `::Auth0::`
152
+
121
153
  - `ApiToken` changed to `::Auth0::ApiToken`
122
154
  - `Permission` changed to `::Auth0::Permission`
123
155
  - `AccessToken` changed to `::AccessToken::AccessToken`
124
156
 
125
157
  #### Api2 Users create_user method
158
+
126
159
  This method was requiring you send in a `name`, which was optional, but didn't require `connection_name` which isn't optional. This was fixed in [\#244](244).
127
160
 
128
161
  `Auth0::Api::V2::Users.create_user(name, options = {})` has changed to `Auth0::Api::V2::Users.create_user(connection_name, options = {})`
129
162
 
130
163
  #### APIv1 End of Life
131
- APIv1 endpoints were deprecated in 4.x and now have been removed in v5. They reached end-of-life in the Public Cloud on 13 July 2020. Migration from v1 to v2 has been documented here https://auth0.com/docs/product-lifecycle/deprecations-and-migrations/migrate-to-management-api-v2
164
+
165
+ APIv1 endpoints were deprecated in 4.x and now have been removed in v5. They reached end-of-life in the Public Cloud on 13 July 2020. Migration from v1 to v2 has been documented here https://auth0.com/docs/product-lifecycle/deprecations-and-migrations/migrate-to-management-api-v2
132
166
 
133
167
  #### Catching 429 Errors
134
- In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order for backwards compatibility. This class is now inheriting `Auth0::HTTPError`. If you are catching 429 errors with `Auth0::Unsupported` then you will need to migrate to catching with `Auth0::HTTPError`.
168
+
169
+ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order for backwards compatibility. This class is now inheriting `Auth0::HTTPError`. If you are catching 429 errors with `Auth0::Unsupported` then you will need to migrate to catching with `Auth0::HTTPError`.
135
170
 
136
171
  ### Changes
172
+
137
173
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.17.1...v5.0.0)
138
174
 
139
- **Fixed**
175
+ **Fixed**
176
+
140
177
  - Don't define structs as top-level constants (breaking changes) [\#183](https://github.com/auth0/ruby-auth0/pull/183) ([makimoto](https://github.com/makimoto))
141
178
  - Fix create_user implementation (breaking changes) [\#244](https://github.com/auth0/ruby-auth0/pull/244) ([davidpatrick](https://github.com/davidpatrick))
142
179
 
143
180
  **Removed**
181
+
144
182
  - Removed Deprecations (breaking changes) [\#245](https://github.com/auth0/ruby-auth0/pull/245) ([davidpatrick](https://github.com/davidpatrick))
145
183
 
146
184
  ## [v4.17.1](https://github.com/auth0/ruby-auth0/tree/v4.17.1) (2020-10-21)
@@ -149,8 +187,7 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
149
187
 
150
188
  **Fixed**
151
189
 
152
- - Addressable dependency [\#247](https://github.com/auth0/ruby-auth0/pull/247) ([davidpatrick](https://github.com/davidpatrick))
153
-
190
+ - Addressable dependency [\#247](https://github.com/auth0/ruby-auth0/pull/247) ([davidpatrick](https://github.com/davidpatrick))
154
191
 
155
192
  ## [v4.17.0](https://github.com/auth0/ruby-auth0/tree/v4.17.0) (2020-10-19)
156
193
 
@@ -158,12 +195,11 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
158
195
 
159
196
  **Added**
160
197
 
161
- - Add pagination to user permissions [\#241](https://github.com/auth0/ruby-auth0/pull/241) ([davidpatrick](https://github.com/davidpatrick))
198
+ - Add pagination to user permissions [\#241](https://github.com/auth0/ruby-auth0/pull/241) ([davidpatrick](https://github.com/davidpatrick))
162
199
 
163
200
  **Deprecated**
164
201
 
165
- - Addressable URI Escape [\#240](https://github.com/auth0/ruby-auth0/pull/240) ([davidpatrick](https://github.com/apps/davidpatrick))
166
-
202
+ - Addressable URI Escape [\#240](https://github.com/auth0/ruby-auth0/pull/240) ([davidpatrick](https://github.com/apps/davidpatrick))
167
203
 
168
204
  ## [v4.16.0](https://github.com/auth0/ruby-auth0/tree/v4.16.0) (2020-10-02)
169
205
 
@@ -238,8 +274,8 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
238
274
 
239
275
  **Added**
240
276
 
241
- - Added support for name\_filter parameter \[SDK-1607\] [\#214](https://github.com/auth0/ruby-auth0/pull/214) ([Widcket](https://github.com/Widcket))
242
- - 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))
277
+ - Added support for name_filter parameter \[SDK-1607\] [\#214](https://github.com/auth0/ruby-auth0/pull/214) ([Widcket](https://github.com/Widcket))
278
+ - 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))
243
279
  - Add rubocop-rails [\#200](https://github.com/auth0/ruby-auth0/pull/200) ([tknzk](https://github.com/tknzk))
244
280
 
245
281
  **Security**
@@ -249,8 +285,8 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
249
285
  - Update dependencies and CI script [\#210](https://github.com/auth0/ruby-auth0/pull/210) ([lbalmaceda](https://github.com/lbalmaceda))
250
286
 
251
287
  ## [v4.9.0](https://github.com/auth0/ruby-auth0/tree/v4.9.0) (2019-09-25)
252
- [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.8.0...v4.9.0)
253
288
 
289
+ [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.8.0...v4.9.0)
254
290
 
255
291
  **Closed issues:**
256
292
 
@@ -268,12 +304,15 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
268
304
  - Add Management API Guardian enrollments endpoint [\#182](https://github.com/auth0/ruby-auth0/pull/182) ([tomgi](https://github.com/tomgi))
269
305
 
270
306
  ## [v4.8.0](https://github.com/auth0/ruby-auth0/tree/v4.8.0) (2019-08-01)
307
+
271
308
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.7.0...v4.8.0)
272
309
 
273
310
  **Closed issues**
311
+
274
312
  - Not enough information in exception when Rate Limiting is encountered [\#158](https://github.com/auth0/ruby-auth0/issues/158)
275
313
 
276
314
  **Added**
315
+
277
316
  - Add Management API Anomaly endpoints [\#179](https://github.com/auth0/ruby-auth0/pull/179) ([makoto-matsumoto](https://github.com/makoto-matsumoto))
278
317
  - Add parameters for users imports [\#177](https://github.com/auth0/ruby-auth0/pull/177) ([makoto-matsumoto](https://github.com/makoto-matsumoto))
279
318
  - Add failed job error details endpoint [\#176](https://github.com/auth0/ruby-auth0/pull/176) ([makoto-matsumoto](https://github.com/makoto-matsumoto))
@@ -283,34 +322,43 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
283
322
  - Add Gemfile.lock file [\#165](https://github.com/auth0/ruby-auth0/pull/165) ([lbalmaceda](https://github.com/lbalmaceda))
284
323
 
285
324
  **Changed**
325
+
286
326
  - Add Roles and Users endpoints integration tests [\#174](https://github.com/auth0/ruby-auth0/pull/174) ([joshcanhelp](https://github.com/joshcanhelp))
287
327
 
288
328
  **Deprecated**
329
+
289
330
  - Deprecate Auth0::Api::V2::Users.delete_users [\#181](https://github.com/auth0/ruby-auth0/pull/181) ([joshcanhelp](https://github.com/joshcanhelp))
290
331
 
291
332
  **Removed**
333
+
292
334
  - Gemspec: Drop EOL'd property rubyforge_project [\#180](https://github.com/auth0/ruby-auth0/pull/180) ([olleolleolle](https://github.com/olleolleolle))
293
335
 
294
336
  **Security**
337
+
295
338
  - Fix Yard dependency vulnerability [\#184](https://github.com/auth0/ruby-auth0/pull/184) ([joshcanhelp](https://github.com/joshcanhelp))
296
339
 
297
340
  ## [v4.7.0](https://github.com/auth0/ruby-auth0/tree/v4.7.0) (2019-03-19)
341
+
298
342
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.6.0...v4.7.0)
299
343
 
300
344
  **Closed issues**
345
+
301
346
  - No method to update/patch resource servers [\#156](https://github.com/auth0/ruby-auth0/issues/156)
302
347
  - No method to get all resource servers [\#154](https://github.com/auth0/ruby-auth0/issues/154)
303
348
 
304
349
  **Added**
350
+
305
351
  - Add Client ID to send_verification_email [\#162](https://github.com/auth0/ruby-auth0/pull/162) ([joshcanhelp](https://github.com/joshcanhelp))
306
352
  - More password change params [\#159](https://github.com/auth0/ruby-auth0/pull/159) ([nhusher](https://github.com/nhusher))
307
353
  - Add patch resource server [\#157](https://github.com/auth0/ruby-auth0/pull/157) ([philomory](https://github.com/philomory))
308
354
  - Get all resource servers [\#155](https://github.com/auth0/ruby-auth0/pull/155) ([philomory](https://github.com/philomory))
309
355
 
310
356
  ## [v4.6.0](https://github.com/auth0/ruby-auth0/tree/v4.6.0) (2018-12-17)
357
+
311
358
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.5.0...v4.6.0)
312
359
 
313
360
  **Closed issues**
361
+
314
362
  - New Release with Client Token work [\#148](https://github.com/auth0/ruby-auth0/issues/148)
315
363
  - Unable to initialize Auth0Api [\#147](https://github.com/auth0/ruby-auth0/issues/147)
316
364
  - Issues building the documentation [\#135](https://github.com/auth0/ruby-auth0/issues/135)
@@ -321,6 +369,7 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
321
369
  - Obtain APIv2 Token [\#86](https://github.com/auth0/ruby-auth0/issues/86)
322
370
 
323
371
  **Added**
372
+
324
373
  - Add refresh token method and unit tests [\#150](https://github.com/auth0/ruby-auth0/pull/150) ([joshcanhelp](https://github.com/joshcanhelp))
325
374
  - Improve telemetry; more modular Auth API [\#149](https://github.com/auth0/ruby-auth0/pull/149) ([joshcanhelp](https://github.com/joshcanhelp))
326
375
  - Add ttl_sec argument to post_email_verification request. [\#145](https://github.com/auth0/ruby-auth0/pull/145) ([digitaldawn](https://github.com/digitaldawn))
@@ -332,52 +381,57 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
332
381
  - Add Client Credentials grant [\#129](https://github.com/auth0/ruby-auth0/pull/129) ([joshcanhelp](https://github.com/joshcanhelp))
333
382
 
334
383
  **Changed**
384
+
335
385
  - Improve the test suite [\#143](https://github.com/auth0/ruby-auth0/pull/143) ([joshcanhelp](https://github.com/joshcanhelp))
336
386
 
337
387
  **Deprecated**
388
+
338
389
  - Formal deprecation of 4 auth endpoint methods; rubocop [\#151](https://github.com/auth0/ruby-auth0/pull/151) ([joshcanhelp](https://github.com/joshcanhelp))
339
390
 
340
391
  **Fixed**
392
+
341
393
  - Documentation improvements [\#139](https://github.com/auth0/ruby-auth0/pull/139) ([szemek](https://github.com/szemek))
342
394
  - Fix typos in README.md [\#137](https://github.com/auth0/ruby-auth0/pull/137) ([swetax](https://github.com/swetax))
343
395
  - Explicitly require JSON dependency [\#126](https://github.com/auth0/ruby-auth0/pull/126) ([jgaskins](https://github.com/jgaskins))
344
396
 
345
-
346
397
  ## [v4.5.0](https://github.com/auth0/ruby-auth0/tree/v4.5.0) (2018-07-27)
398
+
347
399
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.4.0...v4.5.0)
348
400
 
349
401
  **Closed issues:**
350
402
 
351
403
  - New version with updated rest-client dependency [\#93](https://github.com/auth0/ruby-auth0/issues/93)
352
404
  - Bug?: `result` from auth0/mixins/httpproxy.rb returns 'nil' [\#88](https://github.com/auth0/ruby-auth0/issues/88)
353
- - import\_users fails with EOFError [\#56](https://github.com/auth0/ruby-auth0/issues/56)
405
+ - import_users fails with EOFError [\#56](https://github.com/auth0/ruby-auth0/issues/56)
354
406
  - Using inside of a Rails API [\#55](https://github.com/auth0/ruby-auth0/issues/55)
355
407
  - Add documentation? [\#102](https://github.com/auth0/ruby-auth0/issues/102)
356
- - logout\_url does not include client\_id parameter [\#81](https://github.com/auth0/ruby-auth0/issues/81)
408
+ - logout_url does not include client_id parameter [\#81](https://github.com/auth0/ruby-auth0/issues/81)
357
409
 
358
410
  **Merged pull requests:**
359
411
 
360
- - Correctly default grant\_type to 'password' in login method [\#107](https://github.com/auth0/ruby-auth0/pull/107) ([psparrow](https://github.com/psparrow))
412
+ - Correctly default grant_type to 'password' in login method [\#107](https://github.com/auth0/ruby-auth0/pull/107) ([psparrow](https://github.com/psparrow))
361
413
  - Add additional parameters for WS-Fed URL [\#123](https://github.com/auth0/ruby-auth0/pull/123) ([joshcanhelp](https://github.com/joshcanhelp))
362
414
  - Deprecate Authentication API endpoints [\#121](https://github.com/auth0/ruby-auth0/pull/121) ([joshcanhelp](https://github.com/joshcanhelp))
363
415
  - Clean up auth endpoint tests [\#120](https://github.com/auth0/ruby-auth0/pull/120) ([joshcanhelp](https://github.com/joshcanhelp))
364
416
  - Fix docblocks for Authentication API endpoints [\#119](https://github.com/auth0/ruby-auth0/pull/119) ([joshcanhelp](https://github.com/joshcanhelp))
365
- - Add Client ID to logout\_url [\#118](https://github.com/auth0/ruby-auth0/pull/118) ([joshcanhelp](https://github.com/joshcanhelp))
417
+ - Add Client ID to logout_url [\#118](https://github.com/auth0/ruby-auth0/pull/118) ([joshcanhelp](https://github.com/joshcanhelp))
366
418
  - Add pagination and tests for Rules endpoint [\#117](https://github.com/auth0/ruby-auth0/pull/117) ([joshcanhelp](https://github.com/joshcanhelp))
367
419
  - Add pagination and tests for Client Grants [\#116](https://github.com/auth0/ruby-auth0/pull/116) ([joshcanhelp](https://github.com/joshcanhelp))
368
- - Add search\_engine parameter to Users endpoint + tests [\#115](https://github.com/auth0/ruby-auth0/pull/115) ([joshcanhelp](https://github.com/joshcanhelp))
420
+ - Add search_engine parameter to Users endpoint + tests [\#115](https://github.com/auth0/ruby-auth0/pull/115) ([joshcanhelp](https://github.com/joshcanhelp))
369
421
  - Improve README [\#114](https://github.com/auth0/ruby-auth0/pull/114) ([joshcanhelp](https://github.com/joshcanhelp))
370
422
  - Add pagination and tests to Clients and Connections endpoints [\#113](https://github.com/auth0/ruby-auth0/pull/113) ([joshcanhelp](https://github.com/joshcanhelp))
371
423
  - Use Secure RubyGems Source [\#112](https://github.com/auth0/ruby-auth0/pull/112) ([markprovan](https://github.com/markprovan))
372
424
 
373
425
  ## [v4.4.0](https://github.com/auth0/ruby-auth0/tree/v4.4.0) (2018-02-19)
426
+
374
427
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.3.0...v4.4.0)
375
428
 
376
429
  **Closed issues:**
377
430
 
378
- - Authentication Login is using `/oauth/ro`. [\#89](https://github.com/auth0/ruby-auth0/issues/89)
431
+ - Authentication Login is using `/oauth/ro`. [\#89](https://github.com/auth0/ruby-auth0/issues/89)
379
432
 
380
433
  ## [v4.3.0](https://github.com/auth0/ruby-auth0/tree/v4.3.0) (2018-02-19)
434
+
381
435
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.2.0...v4.3.0)
382
436
 
383
437
  **Merged pull requests:**
@@ -388,12 +442,13 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
388
442
  - Fix error in the readme regarding timeouts [\#90](https://github.com/auth0/ruby-auth0/pull/90) ([ksamc](https://github.com/ksamc))
389
443
 
390
444
  ## [v4.2.0](https://github.com/auth0/ruby-auth0/tree/v4.2.0) (2018-02-15)
445
+
391
446
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.1.0...v4.2.0)
392
447
 
393
448
  **Closed issues:**
394
449
 
395
450
  - Vulnerable dependency: yard [\#99](https://github.com/auth0/ruby-auth0/issues/99)
396
- - post\_password\_change results in payload validation error [\#84](https://github.com/auth0/ruby-auth0/issues/84)
451
+ - post_password_change results in payload validation error [\#84](https://github.com/auth0/ruby-auth0/issues/84)
397
452
  - Unsupported on latest ruby version \(2.4.0\) [\#83](https://github.com/auth0/ruby-auth0/issues/83)
398
453
  - Adding a resource server breaks authentication. [\#76](https://github.com/auth0/ruby-auth0/issues/76)
399
454
  - outdated dependencies in ror-api example [\#75](https://github.com/auth0/ruby-auth0/issues/75)
@@ -415,14 +470,15 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
415
470
  - updated dependencies in ror api example. Fix \#75 [\#77](https://github.com/auth0/ruby-auth0/pull/77) ([Amialc](https://github.com/Amialc))
416
471
  - Add a badge to documentation [\#74](https://github.com/auth0/ruby-auth0/pull/74) ([amingilani](https://github.com/amingilani))
417
472
  - Typo [\#73](https://github.com/auth0/ruby-auth0/pull/73) ([amingilani](https://github.com/amingilani))
418
- - Add how to generate documentation to the README.md + patch\_user [\#72](https://github.com/auth0/ruby-auth0/pull/72) ([ignaciojonas](https://github.com/ignaciojonas))
473
+ - Add how to generate documentation to the README.md + patch_user [\#72](https://github.com/auth0/ruby-auth0/pull/72) ([ignaciojonas](https://github.com/ignaciojonas))
419
474
 
420
475
  ## [v4.1.0](https://github.com/auth0/ruby-auth0/tree/v4.1.0) (2016-07-25)
476
+
421
477
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v4.0.0...v4.1.0)
422
478
 
423
479
  **Closed issues:**
424
480
 
425
- - \#post\_password\_change requires a password for ticket. [\#69](https://github.com/auth0/ruby-auth0/issues/69)
481
+ - \#post_password_change requires a password for ticket. [\#69](https://github.com/auth0/ruby-auth0/issues/69)
426
482
  - Exception messages are ruby hash string literals [\#63](https://github.com/auth0/ruby-auth0/issues/63)
427
483
  - Ruby on Rails API issue [\#61](https://github.com/auth0/ruby-auth0/issues/61)
428
484
  - Not possible to have V1 and V2 clients at the same time [\#60](https://github.com/auth0/ruby-auth0/issues/60)
@@ -438,6 +494,7 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
438
494
  - Add api v2 log endpoints to the gem [\#59](https://github.com/auth0/ruby-auth0/pull/59) ([LindseyB](https://github.com/LindseyB))
439
495
 
440
496
  ## [v4.0.0](https://github.com/auth0/ruby-auth0/tree/v4.0.0) (2016-02-12)
497
+
441
498
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v3.6.1...v4.0.0)
442
499
 
443
500
  **Closed issues:**
@@ -458,6 +515,7 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
458
515
  - Remove semi-colons in README [\#37](https://github.com/auth0/ruby-auth0/pull/37) ([l4u](https://github.com/l4u))
459
516
 
460
517
  ## [v3.6.1](https://github.com/auth0/ruby-auth0/tree/v3.6.1) (2015-07-09)
518
+
461
519
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v3.6.0...v3.6.1)
462
520
 
463
521
  **Merged pull requests:**
@@ -466,15 +524,17 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
466
524
  - email validation is broken by \_, which breaks the tests [\#35](https://github.com/auth0/ruby-auth0/pull/35) ([taylorfinnell](https://github.com/taylorfinnell))
467
525
 
468
526
  ## [v3.6.0](https://github.com/auth0/ruby-auth0/tree/v3.6.0) (2015-06-01)
527
+
469
528
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v3.5.0...v3.6.0)
470
529
 
471
530
  **Merged pull requests:**
472
531
 
473
- - Remove exclude\_fields parameter for getting users [\#34](https://github.com/auth0/ruby-auth0/pull/34) ([hzalaz](https://github.com/hzalaz))
532
+ - Remove exclude_fields parameter for getting users [\#34](https://github.com/auth0/ruby-auth0/pull/34) ([hzalaz](https://github.com/hzalaz))
474
533
  - Add connections [\#33](https://github.com/auth0/ruby-auth0/pull/33) ([taylorfinnell](https://github.com/taylorfinnell))
475
534
  - Use client header spec as per documentation [\#32](https://github.com/auth0/ruby-auth0/pull/32) ([benschwarz](https://github.com/benschwarz))
476
535
 
477
536
  ## [v3.5.0](https://github.com/auth0/ruby-auth0/tree/v3.5.0) (2015-05-21)
537
+
478
538
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v3.4.0...v3.5.0)
479
539
 
480
540
  **Merged pull requests:**
@@ -482,6 +542,7 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
482
542
  - Client information headers [\#31](https://github.com/auth0/ruby-auth0/pull/31) ([benschwarz](https://github.com/benschwarz))
483
543
 
484
544
  ## [v3.4.0](https://github.com/auth0/ruby-auth0/tree/v3.4.0) (2015-05-07)
545
+
485
546
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v3.3.0...v3.4.0)
486
547
 
487
548
  **Closed issues:**
@@ -495,6 +556,7 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
495
556
  - Fix broken link in README [\#28](https://github.com/auth0/ruby-auth0/pull/28) ([dentarg](https://github.com/dentarg))
496
557
 
497
558
  ## [v3.3.0](https://github.com/auth0/ruby-auth0/tree/v3.3.0) (2015-04-15)
559
+
498
560
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v3.2.0...v3.3.0)
499
561
 
500
562
  **Closed issues:**
@@ -510,15 +572,16 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
510
572
  - allow to pass extra parameters to delegation method [\#23](https://github.com/auth0/ruby-auth0/pull/23) ([Maxim-Filimonov](https://github.com/Maxim-Filimonov))
511
573
 
512
574
  ## [v3.2.0](https://github.com/auth0/ruby-auth0/tree/v3.2.0) (2015-04-14)
575
+
513
576
  **Merged pull requests:**
514
577
 
515
578
  - Impersonation [\#26](https://github.com/auth0/ruby-auth0/pull/26) ([dentarg](https://github.com/dentarg))
516
- - Allow to set api\_type to use with salesforce\_api [\#25](https://github.com/auth0/ruby-auth0/pull/25) ([Maxim-Filimonov](https://github.com/Maxim-Filimonov))
579
+ - Allow to set api_type to use with salesforce_api [\#25](https://github.com/auth0/ruby-auth0/pull/25) ([Maxim-Filimonov](https://github.com/Maxim-Filimonov))
517
580
  - Fixed few issues from issues list [\#22](https://github.com/auth0/ruby-auth0/pull/22) ([offtop](https://github.com/offtop))
518
581
  - Update readme.md api v2 basic usage example [\#19](https://github.com/auth0/ruby-auth0/pull/19) ([ethancrawford](https://github.com/ethancrawford))
519
582
  - fix token initialization to prevent nil token value [\#18](https://github.com/auth0/ruby-auth0/pull/18) ([ethancrawford](https://github.com/ethancrawford))
520
583
  - Make the client work for API v1 [\#13](https://github.com/auth0/ruby-auth0/pull/13) ([dentarg](https://github.com/dentarg))
521
- - Fix typo delegation signature; open\_id =\> openid [\#12](https://github.com/auth0/ruby-auth0/pull/12) ([dentarg](https://github.com/dentarg))
584
+ - Fix typo delegation signature; open_id =\> openid [\#12](https://github.com/auth0/ruby-auth0/pull/12) ([dentarg](https://github.com/dentarg))
522
585
  - Make the tests run on Travis CI [\#11](https://github.com/auth0/ruby-auth0/pull/11) ([dentarg](https://github.com/dentarg))
523
586
  - Added support for API V1 and API V2 [\#9](https://github.com/auth0/ruby-auth0/pull/9) ([offtop](https://github.com/offtop))
524
587
  - Update README.md [\#8](https://github.com/auth0/ruby-auth0/pull/8) ([pose](https://github.com/pose))
@@ -527,6 +590,4 @@ In 4.x `RateLimitEncountered` was inheriting from `Auth0::Unsupported` in order
527
590
  - Fix rspec deprecation warning [\#2](https://github.com/auth0/ruby-auth0/pull/2) ([dentarg](https://github.com/dentarg))
528
591
  - Add method to access delegation endpoint [\#1](https://github.com/auth0/ruby-auth0/pull/1) ([FrancisPlaza](https://github.com/FrancisPlaza))
529
592
 
530
-
531
-
532
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
593
+ \* _This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)_