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

chore(deps): update all non-major dependencies #692

Merged
merged 2 commits into from
Dec 4, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@swc/core (source) 1.3.99 -> 1.3.100 age adoption passing confidence devDependencies patch
@testing-library/jest-dom 6.1.4 -> 6.1.5 age adoption passing confidence devDependencies patch
@types/react (source) 18.2.39 -> 18.2.41 age adoption passing confidence devDependencies patch
eslint (source) 8.54.0 -> 8.55.0 age adoption passing confidence devDependencies minor
eslint-config-prettier 9.0.0 -> 9.1.0 age adoption passing confidence devDependencies minor
github.com/deckarep/golang-set/v2 v2.4.0 -> v2.5.0 age adoption passing confidence require minor
github.com/swaggest/jsonschema-go v0.3.62 -> v0.3.64 age adoption passing confidence require patch
lint-staged 15.1.0 -> 15.2.0 age adoption passing confidence devDependencies minor
maven 3.9.5 -> 3.9.6 age adoption passing confidence patch
modernc.org/sqlite v1.23.1 -> v1.27.0 age adoption passing confidence require minor
node 21.2.0 -> 21.3.0 age adoption passing confidence minor
postcss (source) 8.4.31 -> 8.4.32 age adoption passing confidence devDependencies patch
react-router-dom (source) 6.20.0 -> 6.20.1 age adoption passing confidence dependencies patch
ch.qos.logback:logback-core (source) 1.4.13 -> 1.4.14 age adoption passing confidence compile patch
ch.qos.logback:logback-classic (source) 1.4.13 -> 1.4.14 age adoption passing confidence compile patch
com.squareup:kotlinpoet-jvm 1.15.1 -> 1.15.2 age adoption passing confidence compile patch

Release Notes

swc-project/swc (@​swc/core)

v1.3.100

Compare Source

Bug Fixes
Miscellaneous Tasks
Build
testing-library/jest-dom (@​testing-library/jest-dom)

v6.1.5

Compare Source

Bug Fixes
eslint/eslint (eslint)

v8.55.0

Compare Source

Features

  • 8c9e6c1 feat: importNamePattern option in no-restricted-imports (#​17721) (Tanuj Kanti)

Documentation

  • 83ece2a docs: fix typo --rules -> --rule (#​17806) (OKURA Masafumi)
  • fffca5c docs: remove "Open in Playground" buttons for removed rules (#​17791) (Francesco Trotta)
  • a6d9442 docs: fix correct/incorrect examples of rules (#​17789) (Tanuj Kanti)
  • 383e999 docs: update and fix examples for no-unused-vars (#​17788) (Tanuj Kanti)
  • 5a8efd5 docs: add specific stylistic rule for each deprecated rule (#​17778) (Etienne)

Chores

prettier/eslint-config-prettier (eslint-config-prettier)

v9.1.0

Compare Source

  • Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@​gurgunday)!
  • Changed: All the [formatting rules that were deprecated in ESLint 8.53.0][deprecated-8.53.0] are now excluded if you set the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable.
deckarep/golang-set (github.com/deckarep/golang-set/v2)

v2.5.0: - Adds generic Sorted method to easily get elements into a sorted slice.

Compare Source

What's Changed

  • Add Sorted method - easily get elements of a set into a sorted slice.
  • Move to own file that can be build tagged
  • Also test go 1.21

Full Changelog

swaggest/jsonschema-go (github.com/swaggest/jsonschema-go)

v0.3.64

Compare Source

What's Changed

Full Changelog: swaggest/jsonschema-go@v0.3.63...v0.3.64

v0.3.63

Compare Source

What's Changed

Full Changelog: swaggest/jsonschema-go@v0.3.62...v0.3.63

okonet/lint-staged (lint-staged)

v15.2.0

Compare Source

Minor Changes
  • #​1371 f3378be Thanks @​iiroj! - Using the --no-stash flag no longer discards all unstaged changes to partially staged files, which resulted in inadvertent data loss. This fix is available with a new flag --no-hide-partially-staged that is automatically enabled when --no-stash is used.
Patch Changes
apache/maven (maven)

v3.9.6: 3.9.6

Compare Source

Release Notes - Maven - Version 3.9.6

Improvement

  • [MNG-7939] - Allow to exclude plugins from validation

Dependency upgrade

  • [MNG-7913] - Upgrade Sisu version to 0.9.0.M2
  • [MNG-7934] - Upgrade Resolver version to 1.9.18
  • [MNG-7942] - Upgrade to parent POM 41
  • [MNG-7943] - Upgrade default plugin bindings
cznic/sqlite (modernc.org/sqlite)

v1.27.0

Compare Source

v1.26.0

Compare Source

v1.25.0

Compare Source

v1.24.0

Compare Source

nodejs/node (node)

v21.3.0: 2023-11-30, Version 21.3.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
New --disable-warning flag

This version adds a new --disable-warning option that allows users to disable specific warnings either by code
(i.e. DEP0025) or type (i.e. DeprecationWarning, ExperimentalWarning).

This option works alongside existing --warnings and --no-warnings.

For example, the following script will not emit DEP0025 require('node:sys') when executed with
node --disable-warning=DEP0025:

import sys from 'node:sys';

Contributed by Ethan-Arrowood in #​50661

Update Root Certificates to NSS 3.95

This is the certdata.txt from NSS 3.95, released on 2023-11-16.

This is the version of NSS that will ship in Firefox 121 on
2023-12-19.

Certificates added:

  • TrustAsia Global Root CA G3
  • TrustAsia Global Root CA G4
  • CommScope Public Trust ECC Root-01
  • CommScope Public Trust ECC Root-02
  • CommScope Public Trust RSA Root-01
  • CommScope Public Trust RSA Root-02

Certificates removed:

  • Autoridad de Certificacion Firmaprofesional CIF A626340
Fast fs.writeFileSync with UTF-8 Strings

Enhanced writeFileSync functionality by implementing a highly efficient fast path primarily in C++ for UTF8-encoded string data.
Additionally, optimized the appendFileSync method by leveraging the improved writeFileSync functionality.
For simplicity and performance considerations, the current implementation supports only string data,
as benchmark results raise concerns about the efficacy of using Buffer for this purpose.
Future optimizations and expansions may be explored, but for now, the focus is on maximizing efficiency for string data operations.

Contributed by CanadaHonk in #​49884.

Other Notable Changes
  • [c7a7493ca2] - (SEMVER-MINOR) module: bootstrap module loaders in shadow realm (Chengzhong Wu) #​48655
  • [bc3f7b5401] - (SEMVER-MINOR) module: remove useCustomLoadersIfPresent flag (Chengzhong Wu) #​48655
  • [aadff07e59] - (SEMVER-MINOR) src: create per isolate proxy env template (Chengzhong Wu) #​48655
  • [91aa9dd23a] - (SEMVER-MINOR) src: create fs_dir per isolate properties (Chengzhong Wu) #​48655
  • [5c5834190a] - (SEMVER-MINOR) src: create worker per isolate properties (Chengzhong Wu) #​48655
  • [4a1ce45181] - (SEMVER-MINOR) src: make process binding data weak (Chengzhong Wu) #​48655
Commits
postcss/postcss (postcss)

v8.4.32

Compare Source

  • Fixed postcss().process() types (by Andrew Ferreira).
remix-run/react-router (react-router-dom)

v6.20.1

Compare Source

Patch Changes
square/kotlinpoet (com.squareup:kotlinpoet-jvm)

v1.15.2

Compare Source

Thanks to @​evant for contributing to this release.

  • New: Kotlin 1.9.21.
  • New: KSP 1.9.21-1.0.15.
  • New: KSP: more accurately represent function types (#​1742).

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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
Contributor Author

renovate bot commented Dec 4, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@alecthomas alecthomas merged commit 36e122f into main Dec 4, 2023
@alecthomas alecthomas deleted the renovate/all-minor-patch branch December 4, 2023 04:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Archived in project
Development

Successfully merging this pull request may close these issues.

1 participant