Bump the npm_and_yarn group across 2 directories with 32 updates
Type: Pull Request
State: Closed
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 1
(4 days ago)
(4 days ago)
(4 days ago)
dependencies javascript
Bumps the npm_and_yarn group with 1 update in the /Chapter01/Activity1.01 directory: vite.
Bumps the npm_and_yarn group with 28 updates in the /Chapter14 directory:
Package | From | To |
---|---|---|
vue | 2.6.11 |
3.0.0 |
vue-template-compiler | 2.6.11 |
2.7.16 |
@babel/helpers | 7.9.2 |
7.28.3 |
@babel/runtime | 7.9.2 |
7.28.3 |
@babel/traverse | 7.9.5 |
7.28.3 |
brace-expansion | 1.1.11 |
1.1.12 |
browserify-sign | 4.0.4 |
4.2.3 |
cipher-base | 1.0.4 |
1.0.6 |
decode-uri-component | 0.2.0 |
0.2.2 |
elliptic | 6.5.2 |
6.6.1 |
engine.io | 3.4.0 |
3.4.2 |
eventsource | 1.0.7 |
1.1.2 |
express | 4.17.1 |
4.21.2 |
flat | 4.1.0 |
4.1.1 |
follow-redirects | 1.11.0 |
1.15.11 |
minimatch | 3.0.4 |
3.1.2 |
pbkdf2 | 3.0.17 |
3.1.3 |
qs | 6.5.2 |
6.5.3 |
semver | 5.7.1 |
5.7.2 |
sha.js | 2.4.11 |
2.4.12 |
shell-quote | 1.7.2 |
1.8.3 |
socket.io-parser | 3.3.0 |
3.3.4 |
socket.io | 2.3.0 |
2.5.1 |
terser | 4.6.11 |
4.8.1 |
thenify | 3.3.0 |
3.3.1 |
webpack-dev-middleware | 3.7.2 |
3.7.3 |
webpack-dev-server | 3.10.3 |
3.11.3 |
word-wrap | 1.2.3 |
1.2.5 |
Updates vite
from 2.9.18 to 7.1.4
Release notes
Sourced from vite's releases.
v7.1.4
Please refer to CHANGELOG.md for details.
v7.1.3
Please refer to CHANGELOG.md for details.
v7.1.2
Please refer to CHANGELOG.md for details.
v7.1.1
Please refer to CHANGELOG.md for details.
create-vite@7.1.1
Please refer to CHANGELOG.md for details.
plugin-legacy@7.1.0
Please refer to CHANGELOG.md for details.
create-vite@7.1.0
Please refer to CHANGELOG.md for details.
v7.1.0
Please refer to CHANGELOG.md for details.
v7.1.0-beta.1
Please refer to CHANGELOG.md for details.
v7.1.0-beta.0
Please refer to CHANGELOG.md for details.
v7.0.6
Please refer to CHANGELOG.md for details.
v7.0.5
Please refer to CHANGELOG.md for details.
v7.0.4
Please refer to CHANGELOG.md for details.
v7.0.3
Please refer to CHANGELOG.md for details.
create-vite@7.0.3
Please refer to CHANGELOG.md for details.
v7.0.2
Please refer to CHANGELOG.md for details.
create-vite@7.0.2
Please refer to CHANGELOG.md for details.
... (truncated)
Changelog
Sourced from vite's changelog.
7.1.4 (2025-09-01)
Bug Fixes
- add missing awaits (#20697) (79d10ed)
- deps: update all non-major dependencies (#20676) (5a274b2)
- deps: update all non-major dependencies (#20709) (0401feb)
- pass rollup watch options when building in watch mode (#20674) (f367453)
Miscellaneous Chores
Code Refactoring
7.1.3 (2025-08-19)
Features
- cli: add Node.js version warning for unsupported versions (#20638) (a1be1bf)
- generate code frame for parse errors thrown by terser (#20642) (a9ba017)
- support long lines in
generateCodeFrame
(#20640) (1559577)Bug Fixes
- deps: update all non-major dependencies (#20634) (4851cab)
- optimizer: incorrect incompatible error (#20439) (446fe83)
- support multiline new URL(..., import.meta.url) expressions (#20644) (9ccf142)
Performance Improvements
Miscellaneous Chores
Code Refactoring
- replace startsWith with strict equality (#20603) (42816de)
- use
import
in worker threads (#20641) (530687a)Tests
7.1.2 (2025-08-12)
Bug Fixes
... (truncated)
Commits
bcc3144
release: v7.1.40401feb
fix(deps): update all non-major dependencies (#20709)537fcf9
chore: remove unused constants entry from rolldown.config.ts (#20710)79d10ed
fix: add missing awaits (#20697)8099582
refactor: remove unnecessaryminify
parameter fromfinalizeCss
(#20701)f367453
fix: pass rollup watch options when building in watch mode (#20674)5a274b2
fix(deps): update all non-major dependencies (#20676)e090b7d
release: v7.1.39ccf142
fix: support multiline new URL(..., import.meta.url) expressions (#20644)731d3e6
test: removecheckNodeVersion
test (#20647)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite since your current version.
Updates vue
from 2.6.11 to 3.0.0
Changelog
Sourced from vue's changelog.
3.0.0 (2020-09-18)
3.0.0-rc.13 (2020-09-18)
Bug Fixes
- hmr: make hmr working with class components (#2144) (422f05e)
- reactivity: avoid length mutating array methods causing infinite updates (#2138) (f316a33), closes #2137
- suspense: should discard unmount effects of invalidated pending branch (5bfcad1)
- types: component instance inference without props (#2145) (57bdaa2)
Code Refactoring
- watch APIs default to trigger pre-flush (49bb447), closes vuejs/vue-next#1706
Features
- runtime-core: support using inject() inside props default functions (58c31e3)
- watch: support dot-delimited path in watch option (1c9a0b3)
BREAKING CHANGES
- watch APIs now default to use
flush: 'pre'
instead offlush: 'post'
. This change affectswatch
,watchEffect
, thewatch
component option, andthis.$watch
. See (49bb447) for more details.3.0.0-rc.12 (2020-09-16)
Bug Fixes
- reactivity: effect should only recursively self trigger with explicit options (3810de7), closes #2125
- runtime-core: ensure root stable fragments inherit elements for moving (bebd44f), closes #2134
- runtime-core: should still do full traverse of stable fragment children in dev + hmr (dd40ad8)
- runtime-core/async-component: fix error component when there are no error handlers (c7b4a37), closes #2129
- types/tsx: optional props from Mixin/Extends are treated as required (#2048) (89e9ab8)
Features
3.0.0-rc.11 (2020-09-15)
... (truncated)
Commits
- See full diff in compare view
Updates vue-template-compiler
from 2.6.11 to 2.7.16
Release notes
Sourced from vue-template-compiler's releases.
v2.7.16 "Swan Song"
This is the final release for Vue 2.
Vue 2 will reach End of Life on December 31st, 2023. For more details, please read this blog post.
Please refer to CHANGELOG.md for details.
v2.7.16-beta.2
Please refer to CHANGELOG.md for details.
v2.7.16-beta.1
Please refer to CHANGELOG.md for details.
v2.7.15
Please refer to CHANGELOG.md for details.
v2.7.14
Please refer to CHANGELOG.md for details.
v2.7.13
Please refer to CHANGELOG.md for details.
v2.7.12
Please refer to CHANGELOG.md for details.
v2.7.11
Please refer to CHANGELOG.md for details.
v2.7.10
Please refer to CHANGELOG.md for details.
v2.7.9
Please refer to CHANGELOG.md for details.
v2.7.8
Please refer to CHANGELOG.md for details.
v2.7.7
Please refer to CHANGELOG.md for details.
v2.7.6
Please refer to CHANGELOG.md for details.
v2.7.5
Please refer to CHANGELOG.md for details.
v2.7.4
Please refer to CHANGELOG.md for details.
v2.7.3
... (truncated)
Changelog
Sourced from vue-template-compiler's changelog.
2.7.16 Swan Song (2023-12-24)
Bug Fixes
2.7.16-beta.2 (2023-12-14)
Bug Fixes
- account for nested render calls (db9c566), closes #13131
- types: export more types for v3 alignment (jsx / component options) (895669f), closes #13078 #13128
2.7.16-beta.1 (2023-12-08)
Bug Fixes
- compiler-sfc: check template
ref
usage, (#12985) (83d9535), closes #12984- compiler-sfc: fix rewriteDefault edge cases (25f97a5), closes #13060 #12892 #12906
- keep-alive: fix keep-alive memory leak (2632249), closes #12827
- keep-alive: fix memory leak without breaking transition tests (e0747f4)
- props: should not unwrap props that are raw refs (08382f0), closes #12930
- shallowReactive: should track value if already reactive when set in shallowReactive (0ad8e8d)
- style: always set new styles (f5ef882), closes #12901 #12946
- types: fix shallowRef's return type (#12979) (a174c29), closes #12978
- types: fix type augmentation and compiler-sfc types w/moduleResolution: bundler (#13107) (de0b97b), closes #13106
- types: provide types for built-in components (3650c12), closes #13002
- types: type VNodeChildren should allow type number (#13067) (24fcf69), closes #12973
- utils: unwrap refs when stringifying values in template (ae3e4b1), closes #12884 #12888
- watch: new property addition should trigger deep watcher with getter (6d857f5), closes #12967 #12972
2.7.15 (2023-10-23)
Bug Fixes
- compiler-sfc: add semicolon after
defineProps
statement (#12879) (51fef2c)- compiler-sfc: fix macro usage in multi-variable declaration (#12873) (d27c128)
- compiler-sfc: Optimize the value of emitIdentifier (#12851) (bb59751)
- compiler-sfc: Resolve object expression parsing errors in
v-on
(#12862) (b8c8b3f)- lifecycle: scope might changed when call hook (#13070) (74ca5a1)
... (truncated)
Commits
13f4e7d
release: v2.7.1656ce7f8
fix(lifecycle): esnure component effect scopes are disconnected305e4ae
release: v2.7.16-beta.23e1037e
chore: bump vitest to 1.0.4db9c566
fix: account for nested render calls895669f
fix(types): export more types for v3 alignment (jsx / component options)73bdf14
release: v2.7.16-beta.1e0747f4
fix(keep-alive): fix memory leak without breaking transition tests2632249
fix(keep-alive): fix keep-alive memory leak3650c12
fix(types): provide types for built-in components- Additional commits viewable in compare view
Updates @babel/helpers
from 7.9.2 to 7.28.3
Release notes
Sourced from @babel/helpers
's releases.
v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
,babel-plugin-transform-class-static-block
,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo
):bug: Bug Fix
babel-parser
:nail_care: Polish
babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
- #17363 Do not save last yield in call in temp var (
@nicolo-ribaudo
):memo: Documentation
:house: Internal
:microscope: Output optimization
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
Committers: 5
- Babel Bot (
@babel-bot
)- Huáng Jùnliàng (
@JLHwung
)- Jam Balaya (
@JamBalaya56562
)- Nicolò Ribaudo (
@nicolo-ribaudo
)- easrng (
@easrng
)v7.28.2 (2025-07-24)
Thanks
@souhailaS
for your first PR!:bug: Bug Fix
babel-types
- #17445 [babel 7] Make
operator
param int.tsTypeOperator
optional (@nicolo-ribaudo
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17441 fix:
regeneratorDefine
compatibility with es5 strict mode (@liuxingbaoyu
)Committers: 4
- Babel Bot (
@babel-bot
)- Nicolò Ribaudo (
@nicolo-ribaudo
)- SOUHAILA SERBOUT (
@souhailaS
)@liuxingbaoyu
v7.28.1 (2025-07-12)
... (truncated)
Changelog
Sourced from @babel/helpers
's changelog.
v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
,babel-plugin-transform-class-static-block
,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo
):bug: Bug Fix
babel-parser
:nail_care: Polish
babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
- #17363 Do not save last yield in call in temp var (
@nicolo-ribaudo
):memo: Documentation
:house: Internal
:microscope: Output optimization
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
v7.28.2 (2025-07-24)
:bug: Bug Fix
babel-types
- #17445 [babel 7] Make
operator
param int.tsTypeOperator
optional (@nicolo-ribaudo
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17441 fix:
regeneratorDefine
compatibility with es5 strict mode (@liuxingbaoyu
)v7.28.1 (2025-07-12)
:bug: Bug Fix
babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
- #17426 fix:
regenerator
correctly handlesthrow
outside oftry
(@liuxingbaoyu
):memo: Documentation
:leftwards_arrow_with_hook: Revert
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
,babel-types
v7.28.0 (2025-07-02)
:rocket: New Feature
babel-node
- #17147 Support top level await in node repl (
@liuxingbaoyu
)babel-types
... (truncated)
Commits
ef155f5
v7.28.3741cbd2
chore: fix various typos across codebase (#17476)cac0ff4
v7.28.2f743094
fix:regeneratorDefine
compatibility with es5 strict mode (#17441)baa4cb8
v7.27.6fdbf1b3
fix:finally
causes unexpected return value (#17366)7d06930
v7.27.45b9468d
Reduceregenerator
size more (#17287)cb78b5b
[babel 8] Do not replace globalregeneratorRuntime
references in regenerato...49c0dbb
Fix iterator compatibility ofregeneratorValues
(#17335)- Additional commits viewable in compare view
Updates @babel/runtime
from 7.9.2 to 7.28.3
Release notes
Sourced from @babel/runtime
's releases.
v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
,babel-plugin-transform-class-static-block
,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo
):bug: Bug Fix
babel-parser
:nail_care: Polish
babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
- #17363 Do not save last yield in call in temp var (
@nicolo-ribaudo
):memo: Documentation
:house: Internal
:microscope: Output optimization
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
Committers: 5
- Babel Bot (
@babel-bot
)- Huáng Jùnliàng (
@JLHwung
)- Jam Balaya (
@JamBalaya56562
)- Nicolò Ribaudo (
@nicolo-ribaudo
)- easrng (
@easrng
)v7.28.2 (2025-07-24)
Thanks
@souhailaS
for your first PR!:bug: Bug Fix
babel-types
- #17445 [babel 7] Make
operator
param int.tsTypeOperator
optional (@nicolo-ribaudo
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17441 fix:
regeneratorDefine
compatibility with es5 strict mode (@liuxingbaoyu
)Committers: 4
- Babel Bot (
@babel-bot
)- Nicolò Ribaudo (
@nicolo-ribaudo
)- SOUHAILA SERBOUT (
@souhailaS
)@liuxingbaoyu
v7.28.1 (2025-07-12)
... (truncated)
Changelog
Sourced from @babel/runtime
's changelog.
v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
,babel-plugin-transform-class-static-block
,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo
):bug: Bug Fix
babel-parser
:nail_care: Polish
babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
- #17363 Do not save last yield in call in temp var (
@nicolo-ribaudo
):memo: Documentation
:house: Internal
:microscope: Output optimization
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
v7.28.2 (2025-07-24)
:bug: Bug Fix
babel-types
- #17445 [babel 7] Make
operator
param int.tsTypeOperator
optional (@nicolo-ribaudo
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17441 fix:
regeneratorDefine
compatibility with es5 strict mode (@liuxingbaoyu
)v7.28.1 (2025-07-12)
:bug: Bug Fix
babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
- #17426 fix:
regenerator
correctly handlesthrow
outside oftry
(@liuxingbaoyu
):memo: Documentation
:leftwards_arrow_with_hook: Revert
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
,babel-types
v7.28.0 (2025-07-02)
:rocket: New Feature
babel-node
- #17147 Support top level await in node repl (
@liuxingbaoyu
)babel-types
... (truncated)
Commits
ef155f5
v7.28.3cac0ff4
v7.28.2f68ac51
chore: Avoid CITGM errors (#17382)baa4cb8
v7.27.67d06930
v7.27.45b9468d
Reduceregenerator
size more (#17287)cb78b5b
[babel 8] Do not replace globalregeneratorRuntime
references in regenerato...a0690e3
SplitregeneratorRuntime
into multiple helpers (#17238)da5e371
v7.27.3eebd3a0
v7.27.1- Additional commits viewable in compare view
Updates @babel/traverse
from 7.9.5 to 7.28.3
Release notes
Sourced from @babel/traverse
's releases.
v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
,babel-plugin-transform-class-static-block
,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo
):bug: Bug Fix
babel-parser
:nail_care: Polish
babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
- #17363 Do not save last yield in call in temp var (
@nicolo-ribaudo
):memo: Documentation
:house: Internal
:microscope: Output optimization
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
Committers: 5
- Babel Bot (
@babel-bot
)- Huáng Jùnliàng (
@JLHwung
)- Jam Balaya (
@JamBalaya56562
)- Nicolò Ribaudo (
@nicolo-ribaudo
)- easrng (
@easrng
)v7.28.2 (2025-07-24)
Thanks
@souhailaS
for your first PR!:bug: Bug Fix
babel-types
- #17445 [babel 7] Make
operator
param int.tsTypeOperator
optional (@nicolo-ribaudo
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17441 fix:
regeneratorDefine
compatibility with es5 strict mode (@liuxingbaoyu
)Committers: 4
- Babel Bot (
@babel-bot
)- Nicolò Ribaudo (
@nicolo-ribaudo
)- SOUHAILA SERBOUT (
@souhailaS
)@liuxingbaoyu
v7.28.1 (2025-07-12)
... (truncated)
Changelog
Sourced from @babel/traverse
's changelog.
v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
,babel-plugin-transform-class-static-block
,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo
):bug: Bug Fix
babel-parser
:nail_care: Polish
babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
- #17363 Do not save last yield in call in temp var (
@nicolo-ribaudo
):memo: Documentation
:house: Internal
:microscope: Output optimization
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
v7.28.2 (2025-07-24)
:bug: Bug Fix
babel-types
- #17445 [babel 7] Make
operator
param int.tsTypeOperator
optional (@nicolo-ribaudo
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17441 fix:
regeneratorDefine
compatibility with es5 strict mode (@liuxingbaoyu
)v7.28.1 (2025-07-12)
:bug: Bug Fix
babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
- #17426 fix:
regenerator
correctly handlesthrow
outside oftry
(@liuxingbaoyu
):memo: Documentation
:leftwards_arrow_with_hook: Revert
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
,babel-types
v7.28.0 (2025-07-02)
:rocket: New Feature
babel-node
- #17147 Support top level await in node repl (
@liuxingbaoyu
)babel-types
... (truncated)
Commits
ef155f5
v7.28.3741cbd2
chore: fix various typos across codebase (#17476)5051613
Type-check.d.ts
file withstrict: true
(#17461)ccc5fae
v7.28.04b4e7e2
Create babel-helper-globals (#17297)cf5ae03
LVal coverage updates (Part 2) (#17391)6ca9df4
Accept bigints int.bigIntLiteral
factory (#17378)75f0140
Parse discard binding (#17163)4ce7dfd
v7.27.76c8faf1
add generateUidBasedOnNode test cases (#17381)- Additional commits viewable in compare view
Updates brace-expansion
from 1.1.11 to 1.1.12
Release notes
Sourced from brace-expansion's releases.
v1.1.12
- pkg: publish on tag 1.x c460dbd
- fmt ccb8ac6
- Fix potential ReDoS Vulnerability or Inefficient Regular Expression (#65) c3c73c8
https://github.com/juliangruber/brace-expansion/compare/v1.1.11...v1.1.12
Commits
44f33b4
1.1.12c460dbd
pkg: publish on tag 1.xccb8ac6
fmt-
Pull Request Statistics
Commits:
1Files Changed:
7Additions:
+1028Deletions:
-476
Package Dependencies
Technical Details
ID: | 6754863 |
UUID: | 2795465822 |
Node ID: | PR_kwDOPoDs486mn2xe |
Host: | GitHub |
Repository: | ibiscum/Frontend-Development-Projects-with-Vue.js-3 |
Merge State: | Dirty |