Skip to content

Latest commit

 

History

History
65 lines (40 loc) · 2.15 KB

CHANGELOG.md

File metadata and controls

65 lines (40 loc) · 2.15 KB

1.0.0.pre1

0.5.0

  • attr_accessible removed from models, replaced by explicitly assigning attributes where needed. Allows us to use the same code for Rails 3.X and 4.0 apps.

  • [#28] Set HTTP verbs to be compatiable with Rails4 (@chatgris)

  • [#21] Add token_type return from TokenController (@cicloid)

0.4.3

  • [#20] Bugfix: expires_in not correctly recalculated after auth_grant refreshed (@nvh)

0.4.2

  • Fix jRuby compatibility in Opro.convert_to_lambda

0.4.1

  • jRuby compatibility
  • [#9] Bugfix: Allow developers to enable refresh tokens by setting require_refresh_within even if they were running without it previously. (@robe5)
  • [#10] Bugfix check the correct field when generating unique tokens (@carols10cents)
  • [#12] Bugfix: client app names are now changeable
  • All oPRO related html is wrapped with opro class (@carols10cents)
  • Switch from bluecloth to kramdown gem for jRuby compatibility while parsing markdown

0.4.0

  • Enable configurable authorization headers based on regex.

0.3.3

  • [#8] Fix Doc urls (@robe5)

0.3.2

  • Attempt to find user based on params[:username] from client in devise default find_user_for_auth

0.3.1

  • [#7] Bugfix: Verify access_token, refresh_token, and code are unique before attempting to save (@twinge)

0.3.0

  • Properly set attr_accessible for those apps that are requiring all attributes to be whitelisted.
  • Allow access_token to be passed in header curl -H "Authorization: token iAmAOaUthToken" http://localhost:3000
  • [#6] Implement Bearer scheme curl -H "Authorization: Bearer iAmAOaUthToken" http://localhost:3000
  • Default `config.password_exchange_enabled' to true
  • Allow multiple find_user_for_auth calls in setup to allow custom finders for facebook, etc.
  • You can now rate limit incoming client applications.
  • Allow clients to mitigate security threat (http://homakov.blogspot.com/2012/07/saferweb-most-common-oauth2.html)

0.2.0

  • Allow password exchange for access_token using config.password_exchange_enabled = true

0.1.0

  • Refresh Token Support
  • Scoped permissions support
  • Docs, Test, and ClientApp controllers can be skipped or over-ridden

0.0.1

  • Initial Release