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

bedrock

Package Overview
Dependencies
Maintainers
3
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bedrock - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

10

CHANGELOG.md

@@ -5,2 +5,9 @@ # bedrock ChangeLog

## [1.1.1] - 2016-02-22
### Fixed
- Check `config.loggers` properties are Objects before accsesing
sub-properties. Fixes older configs that set other non-Object meta-data
along with loggers.
## [1.1.0] - 2016-02-11

@@ -171,3 +178,4 @@

[Unreleased]: https://github.com/digitalbazaar/bedrock/compare/1.1.0...HEAD
[Unreleased]: https://github.com/digitalbazaar/bedrock/compare/1.1.1...HEAD
[1.1.1]: https://github.com/digitalbazaar/bedrock/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/digitalbazaar/bedrock/compare/1.0.10...1.1.0

@@ -174,0 +182,0 @@ [1.0.10]: https://github.com/digitalbazaar/bedrock/compare/1.0.9...1.0.10

3

lib/loggers.js

@@ -98,3 +98,4 @@ /*

var filenames = Object.keys(config.loggers).filter(function(name) {
return ('filename' in config.loggers[name]);
var logger = config.loggers[name];
return (brUtil.isObject(logger) && 'filename' in logger);
}).map(function(name) {

@@ -101,0 +102,0 @@ return config.loggers[name].filename;

{
"name": "bedrock",
"version": "1.1.0",
"version": "1.1.1",
"description": "A core foundation for rich Web applications.",

@@ -5,0 +5,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc