Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
7.23.7
->7.23.9
7.23.3
->7.23.9
7.23.7
->7.23.9
7.23.7
->7.23.9
6.23.0
->6.23.1
0.87.1
->0.88.0
0.87.1
->0.88.0
0.87.1
->0.88.0
0.87.1
->0.88.0
^0.87.1
->^0.88.0
1.5.1
->1.6.0
20.10.7
->20.11.7
9.0.7
->9.0.8
10.4.16
->10.4.17
~5.5.0
->~5.6.0
2.0.1
->2.1.0
8.1.0
->8.2.1
0.10.1
->0.10.2
6.4.3
->6.5.1
5.5.0
->5.6.0
0.19.11
->0.19.12
4.0.2
->4.0.3
16.6.1
->16.6.2
5.1.2
->5.1.3
3.1.1
->3.2.4
4.9.4
->4.9.6
4.9.0
->4.10.1
5.0.11
->5.0.12
1.1.3
->1.2.2
5.89.0
->5.90.0
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
systemjs
re-traverses helpers (@liuxingbaoyu)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
core-js@3
imports (@nicolo-ribaudo)babel-traverse
getTypeAnnotation
when using TS+inference (@liuxingbaoyu)no-use-before-define
for class ref in fields (@nicolo-ribaudo)🏠 Internal
babel-core
,babel-parser
,babel-template
eslint-parser
to cts (@liuxingbaoyu)babel-types
@babel/types
props that are not produced by the parser (@liuxingbaoyu)🏃♀️ Performance
babel-parser
🔬 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
using
(@liuxingbaoyu)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
@glimmer/syntax
🐛 Bug Fix
@glimmer/destroyable
🏠 Internal
Committers: 2
tildeio/glimmer (@glimmer/util)
v0.88.0
Compare Source
🚀 Enhancement
@glimmer/syntax
🐛 Bug Fix
@glimmer/destroyable
🏠 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
user-select: contain
prefixes.ember-cli/ember-cli (ember-cli)
v5.6.0
Compare Source
Blueprint Changes
ember new
diffember addon
diffChangelog
ember serve
@sportsheadThank 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.0Compare Source
🚀 Enhancement
🏠 Internal
Committers: 1
emberjs/ember.js (ember-source)
v5.6.0
Compare Source
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:
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: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:
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
5fc2198
)prettier/eslint-plugin-prettier (eslint-plugin-prettier)
v5.1.3
Compare Source
Patch Changes
985b33c
Thanks @JounQin! - chore: addpackage.json
intoexports
mapprettier/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.v3.2.3
Compare Source
diff
Throw errors for invalid code (#15881 by @fisker, @Josh-Cena, @auvred)
Fix parser inference (#15927 by @fisker)
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:
Fix formatting error on optional call expression and member chain (#15920 by @sosukesuzuki)
v3.2.1
Compare Source
diff
Fix formatting error on member chain (#15915 by @sosukesuzuki)
v3.2.0
Compare Source
diff
🔗 Release Notes
rollup/rollup (rollup)
v4.9.6
Compare Source
2024-01-21
Bug Fixes
Pull Requests
v4.9.5
Compare Source
2024-01-12
Bug Fixes
Pull Requests
sindresorhus/type-fest (type-fest)
v4.10.1
Compare Source
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
coverage/.tmp
files after run - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5008 (d53b8)toThrow(asymmetricMatcher)
failure message - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5000 (a199a)VITEST_POOL_ID
- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5002 (7d0a4)ignoreSourceErrors
in run mode - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5044 (6dae3)useFakeTimers
to fakerequestIdleCallback
on non browser - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5028 (a9a48)import.meta.resolve
- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5045 (cf564)View changes on GitHub
v1.2.1
Compare Source
🐞 Bug Fixes
thresholds.autoUpdate
to work with arrow function configuration files - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4959 (4b411)AsymmetricMatcher
- by @hi-ogawa and @sheremet-va in https://github.com/vitest-dev/vitest/issues/4942 (06bae)await vi.hoisted
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/4962 (dcf2e)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.
This PR has been generated by Mend Renovate. View repository job log here.