Sha256: 5d7183b7b1df505fda83f9a6e1135415b6a4b485285cb7ec2308dcdd2f55ad75

Contents?: true

Size: 578 Bytes

Versions: 4

Compression:

Stored size: 578 Bytes

Contents

# Upgrading Authlogic

Supplemental instructions to complement CHANGELOG.md.

## 3.4.0

In version 3.4.0, the default crypto_provider was changed from *Sha512* to *SCrypt*.

If you never set a crypto_provider and are upgrading, your passwords will break unless you set the original:

``` ruby
c.crypto_provider = Authlogic::CryptoProviders::Sha512
```

And if you want to automatically upgrade from *Sha512* to *SCrypt* as users login:

```ruby
c.transition_from_crypto_providers = [Authlogic::CryptoProviders::Sha512]
c.crypto_provider = Authlogic::CryptoProviders::SCrypt
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
authlogic-4.1.1 UPGRADING.md
authlogic-4.1.0 UPGRADING.md
authlogic-4.0.1 UPGRADING.md
authlogic-4.0.0 UPGRADING.md