New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bedrock-express

Package Overview
Dependencies
Maintainers
4
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bedrock-express - npm Package Versions

134

4.0.0

Diff
mattcollier
published 4.0.0 •

Changelog

Source

4.0.0 - 2021-04-21

Changed

  • BREAKING: Set default value for jsonErrorLevel to 'full'. Deployments that cannot afford the performance penalty may adjust this value on an as needed basis.
  • BREAKING: Set default value for dumpExceptions to true.
  • BREAKING: Set default value for useSession to false. If useSession is set to true, ensure that a session storage module such as bedrock-session-mongodb is used. Otherwise, the default Express in-memory session store can cause memory leaks.
mattcollier
published 3.2.1 •

Changelog

Source

3.2.1 - 2021-03-29

Changed

  • Changed peerDependency for bedrock to allow 4.x.
mattcollier
published 3.2.0 •

Changelog

Source

3.2.0 - 2020-06-04

Added

  • Config option for httpOnly that binds express to the HTTP server instead of the HTTPS/TLS server.
davidlehn
published 3.1.0 •

Changelog

Source

3.1.0 - 2020-01-11

Changed

  • By popular request, changing default error logging mode back to 'full'.
davidlehn
published 3.0.1 •

Changelog

Source

3.0.1 - 2019-11-19

Fixed

  • Error handler signature.
davidlehn
published 3.0.0 •

Changelog

Source

3.0.0 - 2019-11-08

Added

  • eslint support.
  • BREAKING: No longer always logs full JSON errors for performance, privacy, and denial of service reasons. Added bedrock.config.express.jsonErrorLevel to control output. Defaults to 'none' when process.env.NODE_ENV === 'production', otherwise 'summary'.
    • 'none': no logging
    • 'summary': brief summary
    • 'full': full JSON error as before

Changed

  • BREAKING: Switch from async library to async/await. Requires a modern runtime.
  • BREAKING: bedrock.config.express.dumpExceptions now defaults to false when process.env.NODE_ENV === 'production', otherwise true.
dlongley
published 2.1.2 •

Changelog

Source

2.1.2 - 2019-10-03

Fixed

  • Fix cookie parser setup.
mattcollier
published 2.1.1 •

Changelog

Source

2.1.1 - 2019-05-07

Fixed

  • Attach express on bedrock.start instead of bedrock.ready. This addresses a condition where express may not be attached before the server is ready.
mattcollier
published 2.1.0 •

Changelog

Source

2.1.0 - 2018-07-06

Added

  • asyncHandler API allows middleware to be composed using async/await.
mattcollier
published 2.0.8 •

Changelog

Source

2.0.8 - 2017-10-20

Changed

  • Use a bedrock child logger.