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 #56

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 22, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/icons-material (source) 5.14.18 -> 5.15.0 age adoption passing confidence
@mui/material (source) 5.14.18 -> 5.15.0 age adoption passing confidence
@types/react (source) 18.2.38 -> 18.2.45 age adoption passing confidence
@types/react-dom (source) 18.2.16 -> 18.2.17 age adoption passing confidence
eslint (source) 8.54.0 -> 8.55.0 age adoption passing confidence
lint-staged 15.1.0 -> 15.2.0 age adoption passing confidence
markdownlint-cli 0.37.0 -> 0.38.0 age adoption passing confidence
prettier (source) 3.1.0 -> 3.1.1 age adoption passing confidence
prettier-plugin-packagejson 2.4.6 -> 2.4.7 age adoption passing confidence
typescript (source) 5.3.2 -> 5.3.3 age adoption passing confidence
vite (source) 4.5.0 -> 4.5.1 age adoption passing confidence
vite-plugin-pwa 0.17.0 -> 0.17.4 age adoption passing confidence

Release Notes

mui/material-ui (@​mui/icons-material)

v5.15.0

Compare Source

Dec 11, 2023

A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:

@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
  • ​[base-ui] useControllableReducer warns when controlled props become uncontrolled (and vice versa) (#​39096) @​mj12albert
@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​abreel, @​alexfauquette, @​anle9650, @​blakenetz, @​danilo-leal, @​EloB, @​lhilgert9, @​mbrookes, @​mikailaread, @​mj12albert, @​mnajdova, @​sai6855, @​siriwatknp, @​zanivan, @​ZeeshanTamboli

v5.14.19

Compare Source

Nov 29, 2023

A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:

@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​avikalpg, @​brijeshb42, @​cherniavskii, @​danilo-leal, @​DarhkVoyd, @​dhaub-exelixis, @​DiegoAndai, @​flaviendelangle, @​islandryu, @​joserodolfofreitas, @​lhilgert9, @​mj12albert, @​mnajdova, @​oliviertassinari, @​sadik-malik, @​sai6855, @​zanivan, @​ZeeshanTamboli

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

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
igorshubovych/markdownlint-cli (markdownlint-cli)

v0.38.0: 0.38.0

Compare Source

  • Update markdownlint dependency to 0.32.1
    • Remove deprecated MD002/MD006
    • Remove rule aliases for "header"
    • Add MD054/link-image-style
    • Use micromark in MD005/MD007/MD030
    • Improve MD022/MD026/MD034/MD037/MD038/MD045/MD051
  • Remove support for end-of-life Node version 16
  • Update all dependencies via Dependabot
prettier/prettier (prettier)

v3.1.1

Compare Source

diff

Fix config file search (#​15363 by @​fisker)

Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.

├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
// Prettier 3.1.0
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/test.js/.prettierrc

// Prettier 3.1.1
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/.prettierrc
Skip explicitly passed symbolic links with --no-error-on-unmatched-pattern (#​15533 by @​sanmai-NL)

Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.

In Prettier 3.1.1, you can use --no-error-on-unmatched-pattern to simply skip symbolic links.

Consistently use tabs in ternaries when useTabs is true (#​15662 by @​auvred)
// Input
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;

// Prettier 3.1.0
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;

// Prettier 3.1.1
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
		? ddddddddddddddd
		: eeeeeeeeeeeeeee
			? fffffffffffffff
			: gggggggggggggggg;
Improve config file search (#​15663 by @​fisker)

The Prettier config file search performance has been improved by more effective cache strategy.

Fix unstable and ugly formatting for comments in destructuring patterns (#​15708 by @​sosukesuzuki)
// Input
const {
  foo,
  // bar
  // baz
}: Foo = expr;

// Prettier 3.1.0
const {
  foo1,
} // bar
// baz
: Foo = expr;

// Prettier 3.1.0 second output
const {
  foo1, // bar
} // baz
: Foo = expr;

// Prettier 3.1.1
const {
  foo1,
  // bar
  // baz
}: Foo = expr;
Support "Import Attributes" (#​15718 by @​fisker)

TypeScript 5.3 supports the latest updates to the import attributes proposal.

import something from "./something.json" with { type: "json" };
Fix false claim in docs that cursorOffset is incompatible with rangeStart/rangeEnd (#​15750 by @​ExplodingCabbage)

The cursorOffset option has in fact been compatible with rangeStart/rangeEnd for over 5 years, thanks to work by @​ds300. However, Prettier's documentation (including the CLI --help text) continued to claim otherwise, falsely. The documentation is now fixed.

Keep curly braces and from keyword in empty import statements (#​15756 by @​fisker)
// Input
import { } from 'foo';
import { /* comment */ } from 'bar';

// Prettier 3.1.0
import {} from "foo";
import /* comment */ "bar";

// Prettier 3.1.1
import {} from "foo";
import {} from /* comment */ "bar";
Keep empty import attributes and assertions (#​15757 by @​fisker)
// Input
import foo from "foo" with {};
import bar from "bar" assert {};

// Prettier 3.1.0
import foo from "foo";
import bar from "bar";

// Prettier 3.1.1
import foo from "foo" with {};
import bar from "bar" assert {};
matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)

v2.4.7

Compare Source

Bug Fixes
  • deps: update dependency synckit to v0.8.6 (7637443)
Microsoft/TypeScript (typescript)

v5.3.3: TypeScript 5.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitejs/vite (vite)

v4.5.1

Compare Source

Please refer to CHANGELOG.md for details.

vite-pwa/vite-plugin-pwa (vite-plugin-pwa)

v0.17.4

Compare Source

   🚀 Features
    View changes on GitHub

v0.17.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

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.

👻 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.

@renovate renovate bot changed the title chore(deps): update dependency @types/react-dom to v18.2.17 chore(deps): update all non-major dependencies Nov 25, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 25b5001 to 0622b7e Compare November 27, 2023 22:38
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Nov 29, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 50f5999 to cbeefbc Compare December 6, 2023 19:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d0161fa to f447eb5 Compare December 12, 2023 18:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f447eb5 to b470a5e Compare December 13, 2023 01:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants