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

Update all non-major dependencies #134

Merged
merged 1 commit into from Dec 19, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 24, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@swc/core (source) 1.3.100 -> 1.3.101 age adoption passing confidence
@swc/core-darwin-x64 (source) 1.3.100 -> 1.3.101 age adoption passing confidence
eslint (source) 8.55.0 -> 8.56.0 age adoption passing confidence
eslint-plugin-import 2.29.0 -> 2.29.1 age adoption passing confidence
html-webpack-plugin 5.5.4 -> 5.6.0 age adoption passing confidence
prettier (source) 3.1.0 -> 3.1.1 age adoption passing confidence
tailwindcss (source) 3.3.6 -> 3.4.0 age adoption passing confidence

Release Notes

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

v1.3.101

Compare Source

Bug Fixes
Features
  • (es/ast) Add as_import_with to ObjectLit to provide easier API (#​8405) (daf6265)
Miscellaneous Tasks
Performance
Refactor
Build
eslint/eslint (eslint)

v8.56.0

Compare Source

Features
  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#​17212) (Bryan Mishkin)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#​17818) (Arka Pratim Chaudhuri)
Bug Fixes
  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#​17846) (Francesco Trotta)
  • 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#​17812) (Bryan Mishkin)
Documentation
  • 9007719 docs: update link in ways-to-extend.md (#​17839) (Amel SELMANE)
  • 3a22236 docs: Update README (GitHub Actions Bot)
  • 54c3ca6 docs: fix migration-guide example (#​17829) (Tanuj Kanti)
  • 4391b71 docs: check config comments in rule examples (#​17815) (Francesco Trotta)
  • fd28363 docs: remove mention about ESLint stylistic rules in readme (#​17810) (Zwyx)
  • 48ed5a6 docs: Update README (GitHub Actions Bot)
Chores
import-js/eslint-plugin-import (eslint-plugin-import)

v2.29.1

Compare Source

Fixed
jantimon/html-webpack-plugin (html-webpack-plugin)

v5.6.0

Compare Source

Features
  • add @rspack/core as an optional peer dependency (#​1829) (56ff3ae)
  • Added support type=systemjs-module via the scriptLoading option (#​1822) (7effc30)
Bug Fixes
5.5.4 (2023-12-06)
Bug Fixes
5.5.3 (2023-06-10)
Bug Fixes
5.5.2 (2023-06-08)
Bug Fixes
5.5.1 (2023-04-15)
Bug Fixes
  • perf: defer loading of pretty-error to improve startup time (#​1789) (988709d)
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 {};
tailwindlabs/tailwindcss (tailwindcss)

v3.4.0

Compare Source

Added
  • Add svh, lvh, and dvh values to default height/min-height/max-height theme (#​11317)
  • Add has-* variants for :has(...) pseudo-class (#​11318)
  • Add text-wrap utilities including text-balance and text-pretty (#​11320, #​12031)
  • Extend default opacity scale to include all steps of 5 (#​11832)
  • Update Preflight html styles to include shadow DOM :host pseudo-class (#​11200)
  • Increase default values for grid-rows-* utilities from 1–6 to 1–12 (#​12180)
  • Add size-* utilities (#​12287)
  • Add utilities for CSS subgrid (#​12298)
  • Add spacing scale to min-w-*, min-h-*, and max-w-* utilities (#​12300)
  • Add forced-color-adjust utilities (#​11931)
  • Add forced-colors variant (#​11694, #​12582)
  • Add appearance-auto utility (#​12404)
  • Add logical property values for float and clear utilities (#​12480)
  • Add * variant for targeting direct children (#​12551)
Changed
  • Simplify the sans font-family stack (#​11748)
  • Disable the tap highlight overlay on iOS (#​12299)
  • Improve relative precedence of rtl, ltr, forced-colors, and dark variants (#​12584)

v3.3.7

Compare Source

Fixed
  • Fix support for container query utilities with arbitrary values (#​12534)
  • Fix custom config loading in Standalone CLI (#​12616)

Configuration

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

🚦 Automerge: Enabled.

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 Update all non-major dependencies to v1.3.28 Update all non-major dependencies to v1.3.29 Jan 26, 2023
@renovate renovate bot changed the title Update all non-major dependencies to v1.3.29 Update all non-major dependencies to v1.3.30 Jan 28, 2023
@renovate renovate bot changed the title Update all non-major dependencies to v1.3.30 Update all non-major dependencies Jan 28, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c63443d to ae23084 Compare February 1, 2023 02:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a2d5095 to 19207d4 Compare February 10, 2023 21:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 7a9b992 to c8b8e59 Compare February 21, 2023 14:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e87dc8a to 42948a5 Compare February 28, 2023 05:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from f39db97 to 259910f Compare March 13, 2023 07:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from aea9ace to 75ec968 Compare March 17, 2023 08:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4c52c4f to 8f663f2 Compare October 25, 2023 15:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e4f9d7f to 93befee Compare November 5, 2023 06:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4043a24 to 1d194c6 Compare November 21, 2023 08:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from d59daad to 5aae080 Compare December 6, 2023 18:09
@noahbravo noahbravo closed this Dec 7, 2023
@renovate renovate bot changed the title Update all non-major dependencies Update all non-major dependencies - autoclosed Dec 7, 2023
@renovate renovate bot deleted the renovate/all-minor-patch branch December 7, 2023 00:23
@renovate renovate bot restored the renovate/all-minor-patch branch December 10, 2023 10:31
@renovate renovate bot changed the title Update all non-major dependencies - autoclosed Update all non-major dependencies Dec 10, 2023
@renovate renovate bot reopened this Dec 10, 2023
@renovate renovate bot changed the title Update all non-major dependencies Update dependency prettier to v3.1.1 Dec 10, 2023
@renovate renovate bot changed the title Update dependency prettier to v3.1.1 Update all non-major dependencies Dec 14, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 53d9904 to 19bc635 Compare December 19, 2023 17:27
@noahbravo noahbravo merged commit 4b8adcd into main Dec 19, 2023
@noahbravo noahbravo deleted the renovate/all-minor-patch branch December 19, 2023 19:46
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.

None yet

1 participant