Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency pino-pretty to v11 #1835

Merged
merged 1 commit into from
Mar 21, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 20, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pino-pretty ^10.3.1 -> ^11.0.0 age adoption passing confidence

Release Notes

pinojs/pino-pretty (pino-pretty)

v11.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: pinojs/pino-pretty@v10.3.1...v11.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Copy link

coderabbitai bot commented Mar 20, 2024

Important

Auto Review Skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share

Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit-tests for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit tests for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit tests.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • The JSON schema for the configuration file is available here.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/coderabbit-overrides.v2.json

CodeRabbit Discord Community

Join our Discord Community to get help, request features, and share feedback.

Copy link

@codecov codecov bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes appear to be routine package updates, which is a good practice. The pino-pretty package was updated from version 10.3.1 to 11.0.0. These updates help to make sure that the application uses the latest, most secure versions of the packages. The changes don't seem to cause any apparent issues.

@@ -17,6 +17,6 @@
"license": "ISC",
"dependencies": {
"pino": "^8.18.0",
"pino-pretty": "^10.3.1"
"pino-pretty": "^11.0.0"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line updates the pino-pretty package in the package.json file. Please ensure that all features using this package have been thoroughly tested with the new version to ensure it doesn't introduce any breaking changes.

@@ -131,8 +131,8 @@ importers:
specifier: ^8.18.0
version: 8.19.0
pino-pretty:
specifier: ^10.3.1
version: 10.3.1
specifier: ^11.0.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pino-pretty package version has also been updated in the pnpm-lock.yaml file. This ensures consistency across the version mentioned in the package.json and the actual installed version.

@@ -2092,8 +2092,8 @@ packages:
split2: 4.2.0
dev: false

/pino-pretty@10.3.1:
resolution: {integrity: sha512-az8JbIYeN/1iLj2t0jR9DV48/LQ3RC6hZPpapKPkb84Q+yTidMCpgWxIT3N0flnBDilyBQ1luWNpOeJptjdp/g==}
/pino-pretty@11.0.0:
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line updates the SHA512 integrity check for the new version of pino-pretty. It's excellent that this was updated, it ensures that the downloaded package hasn't been tampered with.

Copy link

@codecov codecov bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes show an upgraded version of the pino-pretty package, both in the package.json file and in the lock file. While updating the package versions is good for getting improvements and security patches, it's important to test the application after making these changes to ensure that it doesn't break. In general, the changes look good.

@@ -17,6 +17,6 @@
"license": "ISC",
"dependencies": {
"pino": "^8.18.0",
"pino-pretty": "^10.3.1"
"pino-pretty": "^11.0.0"
Copy link

@codecov codecov bot Mar 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The upgrade to pino-pretty v11.0.0 has breaking changes. Check all dependencies for compatibility, with particular attention to the logging format since that's what this module specializes in.

@@ -131,8 +131,8 @@ importers:
specifier: ^8.18.0
version: 8.19.0
pino-pretty:
specifier: ^10.3.1
version: 10.3.1
specifier: ^11.0.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version specifier for the pino-pretty package has been updated in the lock file as well. Please ensure the application's compatibility with this new version.

@@ -2092,8 +2092,8 @@ packages:
split2: 4.2.0
dev: false

/pino-pretty@10.3.1:
resolution: {integrity: sha512-az8JbIYeN/1iLj2t0jR9DV48/LQ3RC6hZPpapKPkb84Q+yTidMCpgWxIT3N0flnBDilyBQ1luWNpOeJptjdp/g==}
/pino-pretty@11.0.0:
Copy link

@codecov codecov bot Mar 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You've updated the integrity hash here. This is a generally good practice as it offers a form of data integrity guarantee. Although, it is recommended to verify this integrity hash with the source repository.

Copy link

socket-security bot commented Mar 20, 2024

Removed dependencies detected. Learn more about Socket for GitHub ↗︎

🚮 Removed packages: npm/pino-pretty@10.3.1

View full report↗︎

Copy link

deepsource-io bot commented Mar 20, 2024

Here's the code health analysis summary for commits 27d7ecb..e42c533. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource JavaScript LogoJavaScript✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

Copy link

codecov bot commented Mar 20, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 41.76%. Comparing base (27d7ecb) to head (e42c533).

✅ All tests successful. No failed tests found ☺️

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1835   +/-   ##
=======================================
  Coverage   41.76%   41.76%           
=======================================
  Files          83       83           
  Lines       10273    10273           
  Branches      169      168    -1     
=======================================
  Hits         4291     4291           
  Misses       5982     5982           
Flag Coverage Δ
core 100.00% <ø> (ø)
database 14.03% <ø> (ø)
gateway 47.09% <ø> (ø)
lobby 32.86% <ø> (ø)
login 23.27% <ø> (ø)
patch 87.28% <ø> (ø)
persona 28.72% <ø> (ø)
shard 61.32% <ø> (ø)
transactions 52.74% <ø> (ø)

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/pino-pretty-11.x branch from 661c669 to e42c533 Compare March 21, 2024 00:49
Copy link

@codecov codecov bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CodecovAI submitted a new review for e42c533

specifier: ^10.3.1
version: 10.3.1
specifier: ^11.0.0
version: 11.0.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's great that the version upgrade was also reflected in the pnpm-lock.yaml file, which ensures consistency across environments. It is still necessary to ensure that this change is tested adequately.

Copy link

@codecov codecov bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CodecovAI submitted a new review for e42c533

specifier: ^10.3.1
version: 10.3.1
specifier: ^11.0.0
version: 11.0.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change in version is correctly reflected in pnpm-lock.yaml as well. This is good as it helps ensure the same version of the package is installed.

@drazisil drazisil merged commit 56937ba into main Mar 21, 2024
14 checks passed
@drazisil drazisil deleted the renovate/pino-pretty-11.x branch March 21, 2024 23:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant