Bumpsyargs-parser,browser-sync,webpack andyargs. These dependencies needed to be updated together.
Updatesyargs-parser from 4.2.1 to 21.1.1
Release notes
Sourced fromyargs-parser's releases.
yargs-parser: v21.1.1
21.1.1 (2022-08-04)
Bug Fixes
yargs-parser: v21.1.0
21.1.0 (2022-08-03)
Features
- allow the browser build to be imported (#443) (a89259f)
Bug Fixes
- halt-at-non-option: prevent known args from being parsed when "unknown-options-as-args" is enabled (#438) (c474bc1)
- node version check now uses process.versions.node (#450) (d07bcdb)
- parse options ending with 3+ hyphens (#434) (4f1060b)
yargs-parser: v21.0.1
21.0.1 (2022-02-27)
Bug Fixes
yargs-parser yargs-parser-v21.0.0
⚠ BREAKING CHANGES
- drops support for 10 (#421)
Bug Fixes
Code Refactoring
yargs-parser yargs-parser-v20.2.9
... (truncated)
Changelog
Sourced fromyargs-parser's changelog.
21.1.1 (2022-08-04)
Bug Fixes
21.1.0 (2022-08-03)
Features
- allow the browser build to be imported (#443) (a89259f)
Bug Fixes
- halt-at-non-option: prevent known args from being parsed when "unknown-options-as-args" is enabled (#438) (c474bc1)
- node version check now uses process.versions.node (#450) (d07bcdb)
- parse options ending with 3+ hyphens (#434) (4f1060b)
21.0.1 (2022-02-27)
Bug Fixes
21.0.0 (2021-11-15)
⚠ BREAKING CHANGES
- drops support for 10 (#421)
Bug Fixes
Code Refactoring
20.2.9 (2021-06-20)
Bug Fixes
... (truncated)
Commits
3aba24c chore(main): release yargs-parser 21.1.1 (#455)d69f9c3 fix(typescript): ignore .cts files during publish (#454)90067a0 chore(main): release yargs-parser 21.1.0 (#446)d07bcdb fix: node version check now uses process.versions.node (#450)c0c6079 chore(deps): update dependency puppeteer to v16 (#451)a89259f feat: allow the browser build to be imported (#443)c474bc1 fix(halt-at-non-option): prevent known args from being parsed when "unknown-o...fd30238 chore(deps): update dependency serve to v14 (#449)a072f9a chore(deps): update dependency puppeteer to v15 (#444)4f1060b fix: parse options ending with 3+ hyphens (#434)- Additional commits viewable incompare view
Maintainer changes
This version was pushed to npm byoss-bot, a new releaser for yargs-parser since your current version.
Updatesbrowser-sync from 2.23.6 to 2.27.10
Release notes
Sourced frombrowser-sync's releases.
2.27.9
What's Changed
A bug prevented the help output from displaying - it was introduced when the CLI parseryargs was updated, and is now fixed :)
Full Changelog:BrowserSync/browser-sync@v2.27.8...v2.27.9
2.27.8
This release upgrades Socket.io (client+server) to the latest versions - solving the following issues, and silencing security warning :)
PR:
Resolved Issues:
Thanks to@lachieh for the original PR, which helped me land this fix
addedsnippet: boolean option
This release adds a feature to addressBrowserSync/browser-sync#1882
Sometimes you don't want Browsersync to auto-inject it's connection snippet into your HTML - now you can disable it globally via either a CLI param or the newsnippet option :)
browser-sync. --no-snippet
or in any Browsersync configuration
constconfig={snippet:false,};the original request was related to Eleventy usage, so here's how that would look
eleventyConfig.setBrowserSyncConfig({snippet:false,});
... (truncated)
Commits
Updateswebpack from 3.10.0 to 5.74.0
Release notes
Sourced fromwebpack's releases.
v5.74.0
Features
- add
resolve.extensionAlias option which allows to alias extensions- This is useful when you are forced to add the
.js extension to imports when the file really has a.ts extension (typescript +"type": "module")
- add support for ES2022 features like static blocks
- add Tree Shaking support for
ProvidePlugin
Bugfixes
- fix persistent cache when some build dependencies are on a different windows drive
- make order of evaluation of side-effect-free modules deterministic between concatenated and non-concatenated modules
- remove left-over from debugging in TLA/async modules runtime code
- remove unneeded extra 1s timestamp offset during watching when files are actually untouched
- This sometimes caused an additional second build which are not really needed
- fix
shareScope option forModuleFederationPlugin - set
"use-credentials" also for same origin scripts
Performance
- Improve memory usage and performance of aggregating needed files/directories for watching
- This affects rebuild performance
Extensibility
- export
HarmonyImportDependency for plugins
v5.73.0
Features
- add options for default
dynamicImportMode and prefetch and preload - add support for
import { createRequire } from "module" in source code
Bugfixes
- fix code generation of e. g.
return"field"in Module - fix performance of large JSON modules
- fix performance of async modules evaluation
Developer Experience
- export
PathData in typings - improve error messages with more details
v5.72.1
Bugfixes
- fix
__webpack_nonce__ with HMR - fix
in operator in some cases
... (truncated)
Commits
Updatesyargs from 11.0.0 to 17.5.1
Release notes
Sourced fromyargs's releases.
yargs yargs-v16.2.1
Bug Fixes
Changelog
Sourced fromyargs's changelog.
17.5.1 (2022-05-16)
Bug Fixes
- add missing entries to published files (#2185) (5685382)
- address bug when strict and async middleware used together (#2164) (cbc2eb7)
- completion: correct zsh installation instructions (22e9af2)
- handle multiple node_modules folders determining mainFilename for ESM (#2123) (e0823dd)
- lang: add missing terms to Russian translation (#2181) (1c331f2)
- prevent infinite loop with empty locale (#2179) (b672e70)
- veriadic arguments override array provided in config (the same as multiple dash arguments). (4dac5b8)
17.5.0 (2022-05-11)
Features
- add browser.d.ts and check for existence of Error.captureStackTrace() (#2144) (6192990)
Bug Fixes
- completion: support for default flags (db35423)
- import yargs/yargs in esm projects (#2151) (95aed1c)
17.4.1 (2022-04-09)
Bug Fixes
17.4.0 (2022-03-19)
Features
- completion: choices will now work for all possible aliases of an option and not just the default long option (30edd50)
- completion: positional arguments completion (#2090) (00e4ebb)
Bug Fixes
- completion: changed the check for option arguments to match options that begin with '-', instead of '--', to include short options (30edd50)
- completion: fix for completions that contain non-leading hyphens (30edd50)
- failed command usage string is missing arg descriptions and optional args (#2105) (d6e342d)
... (truncated)
Commits
0251511 chore(main): release 17.5.1 (#2187)22e9af2 fix(completion): correct zsh installation instructionscbc2eb7 fix: address bug when strict and async middleware used together (#2164)8912078 refactor: use prototype (#2165)1c331f2 fix(lang): add missing terms to Russian translation (#2181)2109bd6 refactor: make isDefaulted private (#2188)b672e70 fix: prevent infinite loop with empty locale (#2179)4dac5b8 fix: passed arguments should take precedence over values in config (#2100)e0823dd fix: handle multiple node_modules folders determining mainFilename for ESM (#...b42e0ca test: remove console.log (#2157)- Additional commits viewable incompare view
Maintainer changes
This version was pushed to npm byoss-bot, a new releaser for yargs since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase will rebase this PR@dependabot recreate will recreate this PR, overwriting any edits that have been made to it@dependabot merge will merge this PR after your CI passes on it@dependabot squash and merge will squash and merge this PR after your CI passes on it@dependabot cancel merge will cancel a previously requested merge and block automerging@dependabot reopen will reopen this PR if it is closed@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labels will set the current labels as the default for future PRs for this repo and language@dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language@dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language@dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from theSecurity Alerts page.
Uh oh!
There was an error while loading.Please reload this page.
Bumpsyargs-parser,browser-sync,webpack andyargs. These dependencies needed to be updated together.
Updates
yargs-parserfrom 4.2.1 to 21.1.1Release notes
Sourced fromyargs-parser's releases.
... (truncated)
Changelog
Sourced fromyargs-parser's changelog.
... (truncated)
Commits
3aba24cchore(main): release yargs-parser 21.1.1 (#455)d69f9c3fix(typescript): ignore .cts files during publish (#454)90067a0chore(main): release yargs-parser 21.1.0 (#446)d07bcdbfix: node version check now uses process.versions.node (#450)c0c6079chore(deps): update dependency puppeteer to v16 (#451)a89259ffeat: allow the browser build to be imported (#443)c474bc1fix(halt-at-non-option): prevent known args from being parsed when "unknown-o...fd30238chore(deps): update dependency serve to v14 (#449)a072f9achore(deps): update dependency puppeteer to v15 (#444)4f1060bfix: parse options ending with 3+ hyphens (#434)Maintainer changes
This version was pushed to npm byoss-bot, a new releaser for yargs-parser since your current version.
Updates
browser-syncfrom 2.23.6 to 2.27.10Release notes
Sourced frombrowser-sync's releases.
... (truncated)
Commits
f6965a6v2.27.10e6c7bedUpdated portscanner to 2.2.0 (#1960)6a587ecfix readme's91258aeMerge branch 'browser-sync-1946-esbuild'f48d6b4👋 app veyor30c24dcMerge pull request#19479d24de5drop webpack from UI7a00341build client with esbuildc30868av2.27.99b5fcdcfix(cli): Where's the command help? fixes#1929 (#1945)Updates
webpackfrom 3.10.0 to 5.74.0Release notes
Sourced fromwebpack's releases.
... (truncated)
Commits
8f87b505.74.03e1f244Merge pull request#16071 from devinan/patch-1c7e14e2Merge pull request#15910 from ludofischer/fix-message7b63346Merge pull request#15627 from webpack/feat/issue-12441402d152Merge pull request#15642 from webpack/set-use-credentials-without-origin-checkfcb0e35Merge pull request#15996 from webdiscus/main6dc6a19Merge pull request#16031 from evantd/main52351a6Merge pull request#16033 from varunsh-coder/token-perms555915bMerge pull request#16065 from webpack/fix/issue-16054d4cab5bMerge pull request#16077 from webpack/fix-schemeUpdates
yargsfrom 11.0.0 to 17.5.1Release notes
Sourced fromyargs's releases.
Changelog
Sourced fromyargs's changelog.
... (truncated)
Commits
0251511chore(main): release 17.5.1 (#2187)22e9af2fix(completion): correct zsh installation instructionscbc2eb7fix: address bug when strict and async middleware used together (#2164)8912078refactor: use prototype (#2165)1c331f2fix(lang): add missing terms to Russian translation (#2181)2109bd6refactor: make isDefaulted private (#2188)b672e70fix: prevent infinite loop with empty locale (#2179)4dac5b8fix: passed arguments should take precedence over values in config (#2100)e0823ddfix: handle multiple node_modules folders determining mainFilename for ESM (#...b42e0catest: remove console.log (#2157)Maintainer changes
This version was pushed to npm byoss-bot, a new releaser for yargs since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and languageYou can disable automated security fix PRs for this repo from theSecurity Alerts page.