omniauth-identity icon indicating copy to clipboard operation
omniauth-identity copied to clipboard

A simple login and password strategy for OmniAuth.

Results 9 omniauth-identity issues
Sort by recently updated
recently updated
newest added

Updates the requirements on [mongoid](https://github.com/mongodb/mongoid) to permit the latest version. Release notes Sourced from mongoid's releases. 8.0.1 Mongoid 8.0 is a feature release with the following significant new functionality: MONGOID-4627...

dependencies

Updates the requirements on [rack-test](https://github.com/rack/rack-test) to permit the latest version. Changelog Sourced from rack-test's changelog. 2.0.0 / 2022-06-24 Breaking changes: Digest authentication support is now deprecated, as it relies on...

dependencies

So, here is the deal, client_side_validation gem requires params to be nested in order to work fully out of the box with uniqueness validation. Also that's proper Rails convention to...

enhancement

With an integration test that looks like ``` ruby it 'should make a new user' do lambda do visit register_path fill_in 'first_name', :with => 'bob' fill_in 'last_name', :with => 'hope'...

documentation

In Rack 3.0.0.beta1, `Request[]` [was deprecated](https://github.com/rack/rack/blob/main/CHANGELOG.md#300beta1---2022-08-08) and prints the following message to the console when used: > Request#[] is deprecated and will be removed in a future version of Rack....

Updates the requirements on [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) to permit the latest version. Release notes Sourced from sqlite3's releases. 2.0.0 / 2024-04-17 This is a major release which contains some breaking changes, primarily...

dependencies

Updates the requirements on [mongoid](https://github.com/mongodb/mongoid) to permit the latest version. Release notes Sourced from mongoid's releases. Mongoid 9.0 is a new major update to the Mongoid ODM. It includes many...

dependencies

The registration_path must include the SCRIPT_NAME when it exists to allow requests to be seen as properly `on_path?` and to be routed to the correct rack app. Additionally, the private...

Rack sets SCRIPT_NAME when a path is mapped to an app. So, a rack app built like below will route all requests starting with `/myapp` to MyApp and everything else...