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

Merged
merged 1 commit into from
Jan 31, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 14, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@hpcc-js/wasm (source) 2.14.1 -> 2.15.3 age adoption passing confidence dependencies minor
@parcel/transformer-elm 2.10.2 -> 2.11.0 age adoption passing confidence devDependencies minor
@parcel/transformer-sass 2.10.2 -> 2.11.0 age adoption passing confidence devDependencies minor
actions/cache 704facf -> e12d46a age adoption passing confidence action digest
actions/setup-node 8f152de -> b39b52d age adoption passing confidence action digest
axe-core (source) 4.8.2 -> 4.8.3 age adoption passing confidence devDependencies patch
github/codeql-action 74483a3 -> 2f93e43 age adoption passing confidence action digest
node 20.9.0 -> 20.11.0 age adoption passing confidence minor
parcel 2.10.2 -> 2.11.0 age adoption passing confidence devDependencies minor
postcss (source) 8.4.31 -> 8.4.33 age adoption passing confidence devDependencies patch
prettier (source) 3.1.0 -> 3.2.4 age adoption passing confidence devDependencies minor
start-server-and-test 2.0.2 -> 2.0.3 age adoption passing confidence devDependencies patch
stylelint-declaration-block-no-ignored-properties 2.7.0 -> 2.8.0 age adoption passing confidence devDependencies minor
stylelint-declaration-strict-value 1.9.2 -> 1.10.4 age adoption passing confidence devDependencies minor
stylelint-high-performance-animation 1.9.0 -> 1.10.0 age adoption passing confidence devDependencies minor
stylelint-order 6.0.3 -> 6.0.4 age adoption passing confidence devDependencies patch
stylelint-scss 5.3.1 -> 5.3.2 age adoption passing confidence devDependencies patch

Release Notes

hpcc-systems/hpcc-js-wasm (@​hpcc-js/wasm)

v2.15.3

Compare Source

v2.15.2

Compare Source

v2.15.1

Compare Source

v2.15.0

Compare Source

Features
  • Add nop and nop2 layout options (f71c4f1)
Bug Fixes
  • Limit dependabot.yml to only bump security issues (b41a764)
  • Site generation was failing (c64cd0f)
2.14.1 (2023-10-12)
parcel-bundler/parcel (@​parcel/transformer-elm)

v2.11.0

Compare Source

Added
  • Dev

    • Log build phase times for dev builds Details
    • Progress messages for writing to cache Details
    • VSC Extension JSON schema Details
    • Print phase times on development builds Details
    • Publish bundle-stats-cli and parcel-query Details
Fixed
  • Dev

    • Increase threshold for showing progress bar to 500k nodes Details
    • Fix parcel-query Details
    • FIX[dev-server]: Fix html file matching from URL Details
    • Fix parcel query's inspect cache Details
    • Bug fix for exiting early when identifying requestGraph in loadGraphs Details
    • Fix HMR on .localhost domains Details
    • Modify parcel query to not require all graphs on startup Details
    • Bug fix for async Parcel-query Details
    • Remove reliance on requestTracker in loadGraphs Details
  • Core

    • Reduce redundancy in the RequestGraph's Request, Env, and Option nodes Details
    • Move registerCoreWithSerializer to its own file Details
    • Filter --expose-gc and --max-semi-space-size execArgv Node args from workers Details
    • Optimize Symbol Propagation (propagateSymbolsUp) Details
    • Convert Request Graph node types + request node requestTypes to numbers Details
    • fsFixture: ignore empty lines in fixtures Details
    • Unstable File Invalidations Details
    • Configurable watch root Details
  • Resolver

    • Add ~ and / support to the glob resolver Details
  • JavaScript

    • Bump swc Details
    • Bumping lightningcss to 1.22.1 Details
    • Fix CI Details
    • Change inline-requires to only run when optimizing Details
    • Fix tsconfig extends from node_modules Details
    • Bump some deps Details
    • Bump swc and napi-rs Details
    • Fix references to packages.atlassian.com Details
    • Fix build-ts step Details
    • Bump rimraf version to ^5.05 Details
    • Use centos image with newer Node 16 Details

v2.10.3

Compare Source

Added
  • Dev
    • Added cacheInfo to Parcel Query - Details
    • Add parcel-link and parcel-unlink dev CLIs - Details
Fixed
  • Core

    • Mark previously deferred assets as dirty for symbol prop - Details
    • Write bundle graph to cache if error occurs during bundling - Details
    • Fixing issues when import * as is used with export * - Details
    • Writing cache in chunks - Details
    • Reduce redundancy in the RequestGraph's file nodes - Details
    • Fix dependency retargeting with ambiguous reexports - Details
  • JavaScript

    • Fixing behavior for hasOwnProperty in modules exporting member with same name - Details
  • WebbExtension

    • Don't crash if WebExt has no content_scripts - Details
  • PostHTML, Pug, Stylus

    • Simplified calls to invalidateOnFileChange - Details
dequelabs/axe-core (axe-core)

v4.8.3

Compare Source

nodejs/node (node)

v20.11.0

Compare Source

v20.10.0

Compare Source

postcss/postcss (postcss)

v8.4.33

Compare Source

  • Fixed NoWorkResult behavior difference with normal mode (by Romain Menke).
  • Fixed NoWorkResult usage conditions (by @​ahmdammarr).

v8.4.32

Compare Source

  • Fixed postcss().process() types (by Andrew Ferreira).
prettier/prettier (prettier)

v3.2.4

Compare Source

diff

Fix incorrect parser inference (#​15947 by @​fisker)

Files like .eslintrc.json were incorrectly formatted as JSONC files.

// Input
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "jsonc" }

// Prettier 3.2.4
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "json" }

v3.2.3

Compare Source

diff

Throw errors for invalid code (#​15881 by @​fisker, @​Josh-Cena, @​auvred)
// Input
1++;

// Prettier 3.2.2
1++;

// Prettier 3.2.3
SyntaxError: Invalid left-hand side expression in unary operation (1:1)
> 1 | 1++;
    | ^
// Input
try {} catch (error = 1){}

// Prettier 3.2.2
try {
} catch (error) {}

// Prettier 3.2.3
SyntaxError: Catch clause variable cannot have an initializer. (1:23)
> 1 | try {} catch (error = 1){}
    |                       ^
Fix parser inference (#​15927 by @​fisker)
// Prettier 3.2.2
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "json" }

// Prettier 3.2.3
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "jsonc" }

v3.2.2

Compare Source

diff

Fix crash when parsing template literal CSS in a JSX style tag using a spread attribute (#​15896 by @​eelco)

For example this code would crash before:

<style {...spread}>{`.{}`}</style>
Fix formatting error on optional call expression and member chain (#​15920 by @​sosukesuzuki)
// Input
a(() => {}, c?.d());

// Prettier 3.2.1
TypeError: Cannot read properties of undefined (reading 'type')

// Prettier 3.2.2
a(() => {}, c?.d());

v3.2.1

Compare Source

diff

Fix formatting error on member chain (#​15915 by @​sosukesuzuki)
// Input
test().test2().test2(thing?.something);

// Prettier 3.2.0
TypeError: Cannot read properties of undefined (reading 'type')

// Prettier 3.2.1
test().test2().test2(thing?.something);

v3.2.0

Compare Source

diff

🔗 Release Notes

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 {};
bahmutov/start-server-and-test (start-server-and-test)

v2.0.3

Compare Source

Bug Fixes
kristerkari/stylelint-declaration-block-no-ignored-properties (stylelint-declaration-block-no-ignored-properties)

v2.8.0

Compare Source

  • Added: support for stylelint version 16.
AndyOGo/stylelint-declaration-strict-value (stylelint-declaration-strict-value)

v1.10.4

Compare Source

v1.10.3

Compare Source

Bug Fixes

v1.10.2

Compare Source

Bug Fixes
  • error [ERR_MODULE_NOT_FOUND]: Cannot find module 'shortcss/lib/list' (139a824)

v1.10.1

Compare Source

Bug Fixes

v1.10.0

Compare Source

Features

1.9.2 (2023-02-16)

Bug Fixes
  • eslint errors (5639937)
  • improve auto fix tests (b525d61)
  • migrate types (e1c491f)
  • uninstall deprecated stylint types (8f01fee)
  • workaround missing options validation with jest styleint preset (c25950b)

1.9.1 (2022-10-13)

Bug Fixes
kristerkari/stylelint-high-performance-animation (stylelint-high-performance-animation)

v1.10.0

Compare Source

  • Added: support for stylelint version 16.
hudochenkov/stylelint-order (stylelint-order)

v6.0.4

Compare Source

  • Added support for Stylelint 16
stylelint-scss/stylelint-scss (stylelint-scss)

v5.3.2

Compare Source

  • Fixed: function-no-unknown false negatives for functions with namespace (#​888)
  • Fixed: at-root-no-redundant check selector list for parent selectors (#​886)

Full Changelog: stylelint-scss/stylelint-scss@v5.3.1...v5.3.2


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 requested a review from a team as a code owner November 14, 2023 16:38
@renovate renovate bot added the dependencies Indicates a change to dependencies label Nov 14, 2023
@renovate renovate bot changed the title chore(deps): update github/codeql-action digest to 689fdc5 chore(deps): update all non-major dependencies Nov 15, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 3 times, most recently from f8f29e2 to c656052 Compare November 16, 2023 19:01
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 3 times, most recently from 11ddb42 to f4d0eb2 Compare November 25, 2023 10:47
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Nov 25, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 4 times, most recently from 3bafdbb to ada95a8 Compare December 8, 2023 20:05
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 5 times, most recently from 482783e to 3279e99 Compare December 13, 2023 22:13
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 6 times, most recently from 513957f to fd070f7 Compare December 23, 2023 12:08
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch from fd070f7 to 2e6e437 Compare December 26, 2023 21:31
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 4 times, most recently from 162fa8d to 3ab8b4d Compare January 5, 2024 22:27
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 7 times, most recently from 1843b08 to 83170f1 Compare January 12, 2024 23:06
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 5 times, most recently from c3fbf4d to 16be31f Compare January 17, 2024 18:01
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 2 times, most recently from 03d1fcc to b90b125 Compare January 26, 2024 16:51
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch from b90b125 to fdb7759 Compare January 29, 2024 15:59
@plyr4 plyr4 merged commit ddca147 into main Jan 31, 2024
13 checks passed
@plyr4 plyr4 deleted the renovate/all-minor-patch-digest-pin branch January 31, 2024 15:19
Copy link
Contributor

@KellyMerrick KellyMerrick left a comment

Choose a reason for hiding this comment

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

lgtm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Indicates a change to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants