Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bedrock/core

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bedrock/core - npm Package Compare versions

Comparing version 6.1.3 to 6.2.0

8

CHANGELOG.md
# `@bedrock/core` ChangeLog
## 6.2.0 - 2024-10-15
### Changed
- Use `serialize-error@11`. No significant changes are expected.
### Fixed
- Replace unmaintained `uid-number` package with `passwd-user`.
## 6.1.3 - 2024-03-06

@@ -4,0 +12,0 @@

@@ -49,2 +49,10 @@ # Contributing to Bedrock®

* Prefix lines with `**BREAKING**:` or `**NOTE**:` or similar as needed.
* When creating PRs, include a date template (with only the year, not the
actual month and date) following the version, like this:
`## 14.3.0 - 2024-mm-dd`. The release manager for a package will set the
month and date during the release process.
* Do not update the version in `package.json` files to match the changelog
manually, because the release software will do this automatically. Setting
it manually will cause the release software to misbehave. New repositories
should always set the version in `package.json` to `"0.0.1-0"`.

@@ -51,0 +59,0 @@ ## Code Style

6

lib/loggers/fileLogger.js

@@ -22,9 +22,7 @@ /*!

import {promises as fs} from 'node:fs';
import {passwdUser} from 'passwd-user';
import path from 'node:path';
import {promisify} from 'node:util';
import uidNumber from 'uid-number';
import winston from 'winston';
const cc = brUtil.config.main.computer();
const getUserId = promisify(uidNumber);

@@ -93,3 +91,3 @@ // config filenames

try {
uid = await getUserId(uid);
({userIdentifier: uid} = await passwdUser(uid));
} catch(e) {

@@ -96,0 +94,0 @@ throw new brUtil.BedrockError(

{
"name": "@bedrock/core",
"version": "6.1.3",
"version": "6.2.0",
"type": "module",

@@ -32,5 +32,5 @@ "description": "A core foundation for rich Web applications.",

"fast-safe-stringify": "^2.1.1",
"serialize-error": "^10.0.0",
"passwd-user": "^4.0.0",
"serialize-error": "^11.0.3",
"triple-beam": "^1.3.0",
"uid-number": "^0.0.6",
"winston": "^3.7.2",

@@ -42,6 +42,6 @@ "winston-transport": "^4.5.0"

"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^48.2.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-jsdoc": "^50.4.1",
"eslint-plugin-unicorn": "^56.0.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.1"
"jsdoc-to-markdown": "^9.0.2"
},

@@ -48,0 +48,0 @@ "engines": {

Sorry, the diff of this file is not supported yet

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