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 all non-major dependencies #72

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 3, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config ^3.8.0 -> ^3.16.0 age adoption passing confidence
@types/mssql (source) ^9.1.5 -> ^9.1.6 age adoption passing confidence
@types/node (source) ^22.8.4 -> ^22.13.1 age adoption passing confidence
@types/nodemailer (source) ^6.4.16 -> ^6.4.17 age adoption passing confidence
@types/pg (source) ^8.11.10 -> ^8.11.11 age adoption passing confidence
axios (source) ^1.7.7 -> ^1.7.9 age adoption passing confidence
dotenv ^16.4.5 -> ^16.4.7 age adoption passing confidence
dotenv-expand ^11.0.6 -> ^11.0.7 age adoption passing confidence
eslint (source) ^9.13.0 -> ^9.19.0 age adoption passing confidence
eslint-plugin-format ^0.1.2 -> ^0.1.3 age adoption passing confidence
execa ^9.5.1 -> ^9.5.2 age adoption passing confidence
fs-extra ^11.2.0 -> ^11.3.0 age adoption passing confidence
lint-staged ^15.2.10 -> ^15.4.3 age adoption passing confidence
nodemailer (source) ^6.9.16 -> ^6.10.0 age adoption passing confidence
pg-promise ^11.10.1 -> ^11.10.2 age adoption passing confidence
pnpm (source) 9.7.1 -> 9.15.5 age adoption passing confidence
tsup (source) ^8.3.5 -> ^8.3.6 age adoption passing confidence
winston ^3.15.0 -> ^3.17.0 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v3.16.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.15.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.14.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.13.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.12.2

Compare Source

   🚀 Features
    View changes on GitHub

v3.12.1

Compare Source

No significant changes

    View changes on GitHub

v3.12.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.11.2

Compare Source

   🐞 Bug Fixes
  • perfectionist: Revert bahaviour change on import sorting since v3.10  -  by @​antfu (00c41)
    View changes on GitHub

v3.11.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.11.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.10.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.9.2

Compare Source

   🚀 Features
    View changes on GitHub

v3.9.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
axios/axios (axios)

v1.7.9

Compare Source

Reverts
Contributors to this release

v1.7.8

Compare Source

Bug Fixes
Contributors to this release
motdotla/dotenv (dotenv)

v16.4.7

Compare Source

Changed
  • Ignore .tap folder when publishing. (oops, sorry about that everyone. - @​motdotla) #​848

v16.4.6

Compare Source

Changed
  • Clean up stale dev dependencies #​847
  • Various README updates clarifying usage and alternative solutions using dotenvx
motdotla/dotenv-expand (dotenv-expand)

v11.0.7

Compare Source

Changed
  • 🐞 fix self-expanding undefined variable with default value (#​126)
eslint/eslint (eslint)

v9.19.0

Compare Source

v9.18.0

Compare Source

v9.17.0

Compare Source

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

v9.15.0

Compare Source

v9.14.0

Compare Source

antfu/eslint-plugin-format (eslint-plugin-format)

v0.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
sindresorhus/execa (execa)

v9.5.2

Compare Source

Bug fixes

jprichardson/node-fs-extra (fs-extra)

v11.3.0

Compare Source

lint-staged/lint-staged (lint-staged)

v15.4.3

Compare Source

Patch Changes
  • #​1512 cbfed1d Thanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.

v15.4.2

Compare Source

Patch Changes
  • #​1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.

v15.4.1

Compare Source

Patch Changes

v15.4.0

Compare Source

Minor Changes
  • #​1500 a8ec1dd Thanks @​iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:

    /**
     * @​filename: lint-staged.config.js
     * @​type {import('lint-staged').Configuration}
     */
    export default {
      '*': 'prettier --write',
    }

    It's also possible to use the .ts file extension for the configuration if your Node.js version supports it. The --experimental-strip-types flag was introduced in Node.js v22.6.0 and unflagged in v23.6.0, enabling Node.js to execute TypeScript files without additional configuration.

    export NODE_OPTIONS="--experimental-strip-types"
    
    npx lint-staged --config lint-staged.config.ts
Patch Changes

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

nodemailer/nodemailer (nodemailer)

v6.10.0

Compare Source

Features
Bug Fixes
  • proxy: Set error and timeout errors for proxied sockets (aa0c99c)
vitaly-t/pg-promise (pg-promise)

v11.10.2

Compare Source

  • Dependencies updated, including pg driver and pg-query-stream.
pnpm/pnpm (pnpm)

v9.15.5: pnpm 9.15.5

Compare Source

Patch Changes

  • Verify that the package name is valid when executing the publish command.
  • When running pnpm install, the preprepare and postprepare scripts of the project should be executed #​8989.
  • Quote args for scripts with shell-quote to support new lines (on POSIX only) #​8980.
  • Proxy settings should be respected, when resolving Git-hosted dependencies #​6530.
  • Replace strip-ansi with the built-in util.stripVTControlCharacters #​9009.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.4: pnpm 9.15.4

Compare Source

Patch Changes

  • Ensure that recursive pnpm update --latest <pkg> updates only the specified package, with dedupe-peer-dependents=true.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.3

Compare Source

v9.15.2: pnpm 9.15.2

Compare Source

Patch Changes

  • Fixed publish/pack error with workspace dependencies with relative paths #​8904. It was broken in v9.4.0 (398472c).
  • Use double quotes in the command suggestion by pnpm patch on Windows #​7546.
  • Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #​8906.
  • Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages.

Platinum Sponsors

Bit Bit config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Jul 3, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 58fc7d0 to 497f17e Compare July 10, 2023 18:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 253b97b to 7f7bf92 Compare July 14, 2023 16:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 1f972fc to febc238 Compare July 23, 2023 18:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from a78a59b to 0ce89da Compare August 1, 2023 08:30
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update actions/setup-node action to v3.7.0 Aug 2, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 67acff1 to 5cf329d Compare August 2, 2023 13:34
@renovate renovate bot changed the title chore(deps): update actions/setup-node action to v3.7.0 chore(deps): update all non-major dependencies Aug 2, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5cf329d to f873e26 Compare August 2, 2023 18:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bd3b3ad to b1910a2 Compare December 20, 2024 01:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2c8a20e to ac193ea Compare December 28, 2024 21:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ceac5ed to 286e1c1 Compare January 10, 2025 22:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 5946721 to def7813 Compare January 16, 2025 18:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from a00d7c3 to 55fe42c Compare January 28, 2025 05:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 350f518 to e88cb24 Compare February 2, 2025 21:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e88cb24 to 273d7fd Compare February 4, 2025 01:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants