Skip to content

Releases: LinusU/node-application-config

🚢 3.0.0 / 2023-01-06

06 Jan 14:17
d9c829a
Compare
Choose a tag to compare

💥 Breaking Changes

  • Convert package to ESM

    Migration Guide:

    This relases changes the package from a Common JS module to an EcmaScript module, and drops support for older versions of Node.

    • The minimum version of Node.js supported is now: 14.18.0, 16.14.0, and 18.0.0
    • The package must now be imported using the native import syntax instead of with require

🚢 2.0.0 / 2019-11-16

16 Nov 18:00
21a4d6f
Compare
Choose a tag to compare

💥 Breaking Changes

  • Drop support for Node.js <8.3

    Migration Guide:

    Upgrade to Node.js 8.3.0 or newer for continued support.

  • Change API to return Promises

    Migration Guide:

    Every function that previously accepted a callback now returns a Promise instead. See the updated documentation for details.

🎉 Enhancements

  • Add TypeScript typings

🌹 Internal Changes

  • Add Travis CI integration
  • Use normal assert export