Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

chore(deps): update minor and patch #229

Merged
merged 2 commits into from
Feb 1, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/cli (source) 7.23.4 -> 7.23.9 age adoption passing confidence
@babel/core (source) 7.23.7 -> 7.23.9 age adoption passing confidence
@babel/parser (source) 7.23.6 -> 7.23.9 age adoption passing confidence
@babel/preset-env (source) 7.23.7 -> 7.23.9 age adoption passing confidence
@babel/traverse (source) 7.23.7 -> 7.23.9 age adoption passing confidence
@commitlint/cli (source) 18.4.3 -> 18.6.0 age adoption passing confidence
@commitlint/config-conventional (source) 18.4.3 -> 18.6.0 age adoption passing confidence
@qlik/eslint-config 0.6.6 -> 0.7.4 age adoption passing confidence
@qlik/prettier-config 0.4.5 -> 0.4.7 age adoption passing confidence
picasso-plugin-q 2.2.5 -> 2.2.7 age adoption passing confidence
picasso-plugin-q >=2.2.5 -> >=2.2.7 age adoption passing confidence
picasso.js (source) 2.2.5 -> 2.2.7 age adoption passing confidence
picasso.js (source) >=2.2.5 -> >=2.2.7 age adoption passing confidence
prettier (source) 3.1.1 -> 3.2.4 age adoption passing confidence
qlik-chart-modules 0.59.0 -> 0.63.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/cli)

v7.23.9

Compare Source

🐛 Bug Fix
  • babel-helper-transform-fixture-test-runner, babel-plugin-transform-function-name, babel-plugin-transform-modules-systemjs, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-runtime, babel-preset-env
  • babel-traverse
  • Other
🏠 Internal
🏃‍♀️ Performance
🔬 Output optimization
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-new-target, babel-plugin-transform-parameters, babel-plugin-transform-private-methods, babel-preset-env
  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
babel/babel (@​babel/parser)

v7.23.9

Compare Source

v7.23.9 (2024-01-25)

🐛 Bug Fix
  • babel-helper-transform-fixture-test-runner, babel-plugin-transform-function-name, babel-plugin-transform-modules-systemjs, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-runtime, babel-preset-env
  • babel-traverse
  • Other
🏠 Internal
🏃‍♀️ Performance
🔬 Output optimization
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-new-target, babel-plugin-transform-parameters, babel-plugin-transform-private-methods, babel-preset-env
  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
Committers: 4
conventional-changelog/commitlint (@​commitlint/cli)

v18.6.0

Compare Source

Note: Version bump only for package @​commitlint/cli

v18.5.0

Compare Source

Features

18.4.4 (2024-01-04)

Note: Version bump only for package @​commitlint/cli

18.4.3 (2023-11-21)

Note: Version bump only for package @​commitlint/cli

18.4.2 (2023-11-16)

Note: Version bump only for package @​commitlint/cli

18.4.1 (2023-11-12)

Note: Version bump only for package @​commitlint/cli

v18.4.4

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v18.6.0

Compare Source

Features

v18.5.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

18.4.4 (2024-01-04)

Note: Version bump only for package @​commitlint/config-conventional

18.4.3 (2023-11-21)

Note: Version bump only for package @​commitlint/config-conventional

18.4.2 (2023-11-16)

Note: Version bump only for package @​commitlint/config-conventional

v18.4.4

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

qlik-oss/dev-tools-js (@​qlik/eslint-config)

v0.7.4

Compare Source

Patch Changes

v0.7.3

Compare Source

Patch Changes
  • 366848a: Add eslint-import-resolver-typescript for resolving paths configuration from tsconfig

v0.7.2

Compare Source

Patch Changes
  • a81b753: chore: update npm dependencies

v0.7.1

Compare Source

Patch Changes
  • df0de11: chore: update npm dependencies

v0.7.0

Compare Source

Minor Changes
  • 35141b9: Turn off playwright/no-networkidle rule for playwright config
Patch Changes
  • a9babba: Fix playwright matchers to match only js and ts files

v0.6.7

Compare Source

Patch Changes
  • 6388835: chore: update npm dependencies
qlik-oss/picasso.js (picasso-plugin-q)

v2.2.7

Compare Source

Bug Fixes
  • use correct transformation properties in dom- and svg-renderer (#​824) (a91fd0b)

v2.2.6

Compare Source

Bug Fixes
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


Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 February 1, 2024 01:31
@renovate renovate bot added the renovate label Feb 1, 2024
@renovate renovate bot enabled auto-merge (rebase) February 1, 2024 01:31
Copy link
Contributor Author

renovate bot commented Feb 1, 2024

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.

@renovate renovate bot merged commit 94c7c04 into master Feb 1, 2024
4 checks passed
@renovate renovate bot deleted the renovate/minor-and-patch branch February 1, 2024 07:22
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant