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 devDependencies #1624

Merged
merged 2 commits into from
Jan 29, 2024
Merged

Update devDependencies #1624

merged 2 commits into from
Jan 29, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 28, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.23.7 -> 7.23.9 age adoption passing confidence
@babel/eslint-parser (source) 7.23.3 -> 7.23.9 age adoption passing confidence
@babel/plugin-proposal-decorators (source) 7.23.7 -> 7.23.9 age adoption passing confidence
@babel/runtime (source) 7.23.7 -> 7.23.9 age adoption passing confidence
@codemirror/view 6.23.0 -> 6.23.1 age adoption passing confidence
@glimmer/compiler (source) 0.87.1 -> 0.88.0 age adoption passing confidence
@glimmer/interfaces (source) 0.87.1 -> 0.88.0 age adoption passing confidence
@glimmer/reference (source) 0.87.1 -> 0.88.0 age adoption passing confidence
@glimmer/syntax (source) 0.87.1 -> 0.88.0 age adoption passing confidence
@glimmer/util (source) ^0.87.1 -> ^0.88.0 age adoption passing confidence
@lezer/generator 1.5.1 -> 1.6.0 age adoption passing confidence
@types/node (source) 20.10.7 -> 20.11.7 age adoption passing confidence
@types/uuid (source) 9.0.7 -> 9.0.8 age adoption passing confidence
autoprefixer 10.4.16 -> 10.4.17 age adoption passing confidence
ember-cli (source) ~5.5.0 -> ~5.6.0 age adoption passing confidence
ember-cli-browserstack 2.0.1 -> 2.1.0 age adoption passing confidence
ember-page-title (source) 8.1.0 -> 8.2.1 age adoption passing confidence
ember-primitives 0.10.1 -> 0.10.2 age adoption passing confidence
ember-resources 6.4.3 -> 6.5.1 age adoption passing confidence
ember-source (source) 5.5.0 -> 5.6.0 age adoption passing confidence
esbuild 0.19.11 -> 0.19.12 age adoption passing confidence
esbuild-loader 4.0.2 -> 4.0.3 age adoption passing confidence
eslint-plugin-n 16.6.1 -> 16.6.2 age adoption passing confidence
eslint-plugin-prettier 5.1.2 -> 5.1.3 age adoption passing confidence
prettier (source) 3.1.1 -> 3.2.4 age adoption passing confidence
rollup (source) 4.9.4 -> 4.9.6 age adoption passing confidence
type-fest 4.9.0 -> 4.10.1 age adoption passing confidence
vite (source) 5.0.11 -> 5.0.12 age adoption passing confidence
vitest (source) 1.1.3 -> 1.2.2 age adoption passing confidence
webpack 5.89.0 -> 5.90.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

babel/babel (@​babel/core)

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
codemirror/view (@​codemirror/view)

v6.23.1

Compare Source

Bug fixes

Fix a bug that caused Tooltip.above to not take effect for tooltips that were already present when the tooltip plugin is initialized.

Automatically reposition tooltips when their size changes.

glimmerjs/glimmer-vm (@​glimmer/compiler)

v0.88.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
🏠 Internal
Committers: 2
tildeio/glimmer (@​glimmer/util)

v0.88.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
🏠 Internal
Committers: 2
lezer-parser/generator (@​lezer/generator)

v1.6.0

Compare Source

Bug fixes

Fix an issue where the generator could output invalid JavaScript when a specialization used a string that started with a number.

Adjust TypeScript output to compile with recent tsc versions. Add a test for zero-length node mounts

New features

Support an exportName option to the Rollup plugin.

postcss/autoprefixer (autoprefixer)

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.
ember-cli/ember-cli (ember-cli)

v5.6.0

Compare Source

Blueprint Changes
Changelog

Thank you to all who took the time to contribute!

kategengler/ember-cli-browserstack (ember-cli-browserstack)

v2.1.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Committers: 1

v2.0.2

Compare Source

ember-cli/ember-page-title (ember-page-title)

v8.2.0: Release 8.2.0

Compare Source

🚀 Enhancement
🏠 Internal
Committers: 1
emberjs/ember.js (ember-source)

v5.6.0

Compare Source

  • #​20595 [BUGFIX] An addon re-export should always be a JavaScript file
  • #​20603 [BUGFIX] Internal templates should be strictMode
  • #​20605 [BUGFIX] Move babel-plugin-ember-template-compilation to dependencies
  • #​20570 [CLEANUP] Remove all traces of named outlets code
evanw/esbuild (esbuild)

v0.19.12

Compare Source

  • The "preserve" JSX mode now preserves JSX text verbatim (#​3605)

    The JSX specification deliberately doesn't specify how JSX text is supposed to be interpreted and there is no canonical way to interpret JSX text. Two most popular interpretations are Babel and TypeScript. Yes they are different (esbuild deliberately follows TypeScript by the way).

    Previously esbuild normalized text to the TypeScript interpretation when the "preserve" JSX mode is active. However, "preserve" should arguably reproduce the original JSX text verbatim so that whatever JSX transform runs after esbuild is free to interpret it however it wants. So with this release, esbuild will now pass JSX text through unmodified:

    // Original code
    let el =
      <a href={'/'} title='&apos;&quot;'> some text
        {foo}
          more text </a>
    
    // Old output (with --loader=jsx --jsx=preserve)
    let el = <a href="/" title={`'"`}>
      {" some text"}
      {foo}
      {"more text "}
    </a>;
    
    // New output (with --loader=jsx --jsx=preserve)
    let el = <a href={"/"} title='&apos;&quot;'> some text
        {foo}
          more text </a>;
  • Allow JSX elements as JSX attribute values

    JSX has an obscure feature where you can use JSX elements in attribute position without surrounding them with {...}. It looks like this:

    let el = <div data-ab=<><a/><b/></>/>;

    I think I originally didn't implement it even though it's part of the JSX specification because it previously didn't work in TypeScript (and potentially also in Babel?). However, support for it was silently added in TypeScript 4.8 without me noticing and Babel has also since fixed their bugs regarding this feature. So I'm adding it to esbuild too now that I know it's widely supported.

    Keep in mind that there is some ongoing discussion about removing this feature from JSX. I agree that the syntax seems out of place (it does away with the elegance of "JSX is basically just XML with {...} escapes" for something arguably harder to read, which doesn't seem like a good trade-off), but it's in the specification and TypeScript and Babel both implement it so I'm going to have esbuild implement it too. However, I reserve the right to remove it from esbuild if it's ever removed from the specification in the future. So use it with caution.

  • Fix a bug with TypeScript type parsing (#​3574)

    This release fixes a bug with esbuild's TypeScript parser where a conditional type containing a union type that ends with an infer type that ends with a constraint could fail to parse. This was caused by the "don't parse a conditional type" flag not getting passed through the union type parser. Here's an example of valid TypeScript code that previously failed to parse correctly:

    type InferUnion<T> = T extends { a: infer U extends number } | infer U extends number ? U : never
privatenumber/esbuild-loader (esbuild-loader)

v4.0.3

Compare Source

Bug Fixes
Reverts
eslint-community/eslint-plugin-n (eslint-plugin-n)

v16.6.2

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.1.3

Compare Source

Patch Changes
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

rollup/rollup (rollup)

v4.9.6

Compare Source

2024-01-21

Bug Fixes
  • Detect side effects when an element that was pushed into an array is modified via the array (#​5352)
Pull Requests

v4.9.5

Compare Source

2024-01-12

Bug Fixes
  • Fix issue where on Windows, Rollup would not load due to problems with the MSVC executable (#​5335)
Pull Requests
sindresorhus/type-fest (type-fest)

v4.10.1

Compare Source

  • Fix support for exactOptionalPropertyTypes: true tsconfig (#​804) a54e313

v4.10.0

Compare Source

  • Get: Fix handling of readonly array (#​799) 4a38651
  • SharedUnionFieldsDeep: Skip if input type is not a union type (#​798) 6f1db93
  • DelimiterCasedPropertiesDeep: Don't recurse into intersection type that include primitive value (#​789) eb96609
  • Merge: Don't turn undefined into optional key (#​787) 0aec247
vitejs/vite (vite)

v5.0.12

Compare Source

Please refer to CHANGELOG.md for details.

vitest-dev/vitest (vitest)

v1.2.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.2.0

Compare Source

   🚀 Features

Configuration

📅 Schedule: Branch creation - "after 9pm on sunday" (UTC), 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.

Copy link

stackblitz bot commented Jan 28, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

changeset-bot bot commented Jan 28, 2024

⚠️ No Changeset found

Latest commit: 9bd0f4b

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

github-actions bot commented Jan 28, 2024

@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 533de17 to 7d54a59 Compare January 28, 2024 23:09
Copy link
Contributor Author

renovate bot commented Jan 29, 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.

@NullVoxPopuli NullVoxPopuli merged commit 77c99c2 into main Jan 29, 2024
8 checks passed
@NullVoxPopuli NullVoxPopuli deleted the renovate/devdependencies branch January 29, 2024 22:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant