Releases: vuejs/create-vue
Releases · vuejs/create-vue
2023-05-12 (v3.6.4)
Notable Changes
- Updated the
type-check
script, fixing an bug introduced in the 2023-05-05 release that thetype-check
script in many templates has no effect at all #275 - Configured
transformMode.web
invitest.config.js
to support testing JSX/TSX components (by @lakb248 in #269) - Removed
* { position: relative }
frombase.css
to avoid pollution of global style (by @btea in #271)
Full Changelog: v3.6.3...v3.6.4
How to Upgrade an Existing Project: #70 (comment)
2023-05-06 (v3.6.3)
Notable Changes
Full Changelog: v3.6.2...v3.6.3
How to Upgrade an Existing Project: #70 (comment)
2023-05-05 (v3.6.2)
Notable Changes
- The default TypeScript version is updated to
~5.0
(#255).@vue/tsconfig
is updated from 0.1.x to 0.3.x. Manually migration is required for old projects since there are breaking changes. More details available at https://github.com/vuejs/tsconfig#migrating-from-typescript--50
- Droped support for Node.js 14 as it has reached End-of-Life.
- If you plan to upgrade to Node.js 18, please note that 18.16 has a regression that breaks some users' testing setups. If you encounter similar errors, please stay with 18.15 until Node.js fixes it.
- Added Playwright VS Code extension recommendation. (by @btea in #250)
Other Contributors
Full Changelog: v3.6.1...v3.6.2
How to Upgrade an Existing Project: #70 (comment)
2023-02-28 (v3.6.1)
Notable Changes
- The default TypeScript version is updated to
~4.8
.- Holding off on 4.9 because of an annoying bug in TypeScript 4.9 that causes autocompletion issues in VS Code vuejs/language-tools#2190
- The fix has already been landed in TypeScript but not yet released microsoft/TypeScript#52686
- Feel free to update to TypeScript 4.9 to enjoy the new features as long as you know how to work around the bug or do not care about it.
tsconfig.config.json
is renamed totsconfig.node.json
, to keep consistency with Vite templates (by @tjx666 in #232)
Full Changelog: v3.6.0...v3.6.1
How to Upgrade an Existing Project: #70 (comment)
2023-02-23 (v3.6.0)
Notable Changes
- When choosing ESLint + Prettier, a separate
format
script will be added; thelint
script no longer checks or fixes stylistic issues. See https://github.com/vuejs/eslint-config-prettier#use-separate-commands-for-linting-and-formatting for a more detailed explanation. - Default Vitest configuration is extracted to a standalone config file (
vitest.config.js
orvitest.config.ts
) because it has fewer edge cases and is more scalable. ( by @btea in #227)
Other Contributors
- @luo3house made their first contribution in #203
- @MartijnCuppens made their first contribution in #210
Full Changelog: v3.5.0...v3.6.0
How to Upgrade an Existing Project: #70 (comment)