Update all non-major dependencies (master) #7601
Merged
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.22.15
->7.22.17
29.2.5
->29.2.6
1.0.30001525
->1.0.30001529
v2.2.2
->v2.2.3
8.48.0
->8.49.0
0.30.0
->0.31.0
9.2.2
->9.3.0
Release Notes
babel/babel (@babel/core)
v7.22.17
Compare Source
🐛 Bug Fix
babel-core
babel-helper-module-transforms
,babel-plugin-transform-modules-commonjs
babel-types
ClassDeclaration["id"]
optional in babel-types (@jordanbtucker)🔬 Output optimization
babel-helper-remap-async-to-generator
,babel-helper-wrap-function
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-proposal-function-sent
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-async-to-generator
,babel-plugin-transform-block-scoping
,babel-plugin-transform-class-properties
,babel-plugin-transform-classes
,babel-plugin-transform-parameters
,babel-plugin-transform-runtime
,babel-preset-env
async
functions) (@liuxingbaoyu)vuejs/vue-jest (@vue/vue3-jest)
v29.2.6
Compare Source
What's Changed
Full Changelog: vuejs/vue-jest@v29.2.5...v29.2.6
browserslist/caniuse-lite (caniuse-lite)
v1.0.30001529
Compare Source
v1.0.30001528
Compare Source
v1.0.30001527
Compare Source
v1.0.30001526
Compare Source
coverallsapp/github-action (coverallsapp/github-action)
v2.2.3
Compare Source
eslint/eslint (eslint)
v8.49.0
Compare Source
Features
da09f4e
feat: Implement onUnreachableCodePathStart/End (#17511) (Nicholas C. Zakas)32b2327
feat: Emit deprecation warnings in RuleTester (#17527) (Nicholas C. Zakas)acb7df3
feat: add newenforce
option tolines-between-class-members
(#17462) (Nitin Kumar)Documentation
ecfb54f
docs: Update README (GitHub Actions Bot)de86b3b
docs: updateno-promise-executor-return
examples (#17529) (Nitin Kumar)032c4b1
docs: add typescript template (#17500) (James)cd7da5c
docs: Update README (GitHub Actions Bot)Chores
b7621c3
chore: remove browser test fromnpm test
(#17550) (Milos Djermanovic)cac45d0
chore: upgrade @eslint/js@8.49.0 (#17549) (Milos Djermanovic)cd39508
chore: package.json update for @eslint/js release (ESLint Jenkins)203a971
ci: bump actions/checkout from 3 to 4 (#17530) (dependabot[bot])a40fa50
chore: use eslint-plugin-jsdoc's flat config (#17516) (Milos Djermanovic)926a286
test: replace Karma with Webdriver.IO (#17126) (Christian Bromann)f591d2c
chore: Upgrade config-array (#17512) (Nicholas C. Zakas)DavidAnson/markdownlint (markdownlint)
v0.31.0
Compare Source
intlify/vue-i18n-next (vue-i18n)
v9.3.0
Compare Source
We are excited to announce the release of Vue I18n v9.3, finally !! This release includes some new features, bug fixes, improvements, and document fixes.
We had commited with 37 contributors. Thanks for your contributing ❤️
In the following, we introduce some of the new features:
🌟 Features
Node.js Dual packages (
cjs
/mjs
)We provide CommonJS and Native ESM dual module packages for Node.js. This supports both
require
andimport
for loading modules in Node.js.JIT Style Compilation
Supports JIT (Just In Time) style compilation of message formats. This mean, removes the CSP limitation and allows for use in environments such as Service worker, Web worker, and Edge.
It mean also now supports the use-case where locale messages are dynamically retrieved from the backend via the API.
For more information, please see the docs
The performance of JIT-style compilation is close to that of conventional AOT (Ahead Of Time) style compilation, and you can improve the performance to nearly 3x with combination of JIT + AOT.
Below are the compile performance benchmark results for vue-i18n:
You can clone Vue I18n and run the benchmark with
pnpm build:type && pnpm benchmark
to check.Custome message format
Starting with v9.3, Vue I18n will give message format customization as an experimental feature. This will allow for extending to the message format:
About details, please see the docs
messageCompiler
option by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1497Exports type definition and API
Export
v-t
type definitions and API$te
to support Vue I18n extending for third vendors and your Vue applications.v-t
directive type by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1511$te
as global on composition mode by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1222❗ Important Changes: 1
allowComposition
optionThe
allowComposition
option will be removed in Vue I18n v10. We have accordingly output a warning if you are using it.If you are using Vue I18n Legacy API to migrate to the Composition API, please make sure you have done so with the Vue I18n v9 version.
allowComposition
option by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1496Deprecate vue-i18n official bundle plugins
The following plugin or loader for bundler is deprecated because it can be replaced by the
unplugin-vue-i18n
.rollup-plugin-vue-i18n
vite-plugin-vue-i18n
vue-i18n-loader
These will only be taken as hot fixes in the future, and no additional functionality will be added.
⚡ Improvement Features: 15
globalThis
with bundler by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1413TranslateVNodeSymbol
by @DamianGlowala in https://github.com/intlify/vue-i18n-next/pull/1236optionalDependencies
by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1184🐛 Bug Fixes: 17
isMessageAST
more strictly by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1509rt
by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1455<i18n-t>
,<i18n-n>
and<i18n-d>
by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1416📝️ Documentations: 28
🧑🤝🧑 Contributers: 37
Full Changelog: intlify/vue-i18n@v9.2.2...v9.3.0
Configuration
📅 Schedule: Branch creation - "after 11pm on friday,before 7am on saturday" in timezone Etc/Greenwich, 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.