Bkeepers Dotenv Versions Save

A Ruby gem to load environment variables from `.env`.

v3.1.1

2 weeks ago

What's Changed

New Contributors

Full Changelog: https://github.com/bkeepers/dotenv/compare/v3.1.0...v3.1.1

v3.1.0

2 months ago

What's Changed

  • Fix regression with semantic-logger, allow setting custom logger by @bkeepers in https://github.com/bkeepers/dotenv/pull/494
    # config/application.rb
    
    # Set a custom dotenv logger
    Dotenv::Rails.logger = MyCustomLogger.new
    
    module YourApp
      class Application < Rails::Application
        # …
      end
    end
    

Full Changelog: https://github.com/bkeepers/dotenv/compare/v3.0.3...v3.1.0

v3.0.3

2 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/bkeepers/dotenv/compare/v3.0.2...v3.0.3

v3.0.2

3 months ago

What's Changed

Full Changelog: https://github.com/bkeepers/dotenv/compare/v3.0.1...v3.0.2

v3.0.1

3 months ago

What's Changed

Full Changelog: https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1

v3.0.0

3 months ago

See #476 for more details and to discuss this release.

Breaking Changes

Other improvements

Deprecations

New Contributors

Full Changelog: https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0.beta

v3.0.0.beta

3 months ago

Breaking Changes

Other improvements

Deprecations

New Contributors

Full Changelog: https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0.beta

v2.8.1

1 year ago

What's Changed

  • Restore support for EOL'd Ruby versions (2.5, 2.6) (#458)[https://github.com/bkeepers/dotenv/pull/458]

Full Changelog: https://github.com/bkeepers/dotenv/compare/v2.8.0...v2.8.1

v2.8.0

1 year ago

What's Changed

  • Drop support for Ruby 2.4, 2.5, and 2.6, which are EOL
  • Fix template (-t) handling of export declarations #416
  • Unescape escaped characters when value is not quoted #421
  • Add overload option for the CLI ($ dotenv --overload -f .env.local) #445

New Contributors

Full Changelog: https://github.com/bkeepers/dotenv/compare/v2.7.6...v2.8.0

v2.7.6

3 years ago

2.7.6 - July 11, 2020

  • Add a Dotenv::Railtie.overload method #403
  • Support for more Rails versions #404
  • Fix template handling of blank lines and comments #413
  • Fix for dotenv-rails Rake task environment allocation#405