Bump flat, @vue/cli-plugin-unit-mocha and hardhat
Bumps flat to 5.0.2 and updates ancestor dependencies flat, @vue/cli-plugin-unit-mocha and hardhat. These dependencies need to be updated together.
Updates flat from 4.1.0 to 5.0.2
Commits
e5ffd66Release 5.0.2fdb79d5Update dependencies, refresh lockfile, format with standard.e52185dTest against node 14 in CI.0189cb1Avoid arrow function syntax.f25d3a1Release 5.0.154cc7aduse standard formatting779816edrop dependencies2eea6d3Bump lodash from 4.17.15 to 4.17.19a61a554Bump acorn from 7.1.0 to 7.4.020ef0efFix prototype pollution on unflatten- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by timoxley, a new releaser for flat since your current version.
Updates @vue/cli-plugin-unit-mocha from 4.3.1 to 5.0.8
Release notes
Sourced from @vue/cli-plugin-unit-mocha's releases.
v5.0.8
:bug: Bug Fix
@vue/cli-service
- 0260e4d fix: add devServer.server.type to useHttps judgement (vuejs/vue-cli#7222)
@vue/cli-ui
- 07052c4 fix: Vue CLI UI graphql subscription server error, fixes vuejs/vue-cli#7221
v5.0.7
@vue/cli-service
- #7202, [558dea2] fix: support
devServer.serveroption, avoid deprecation warnings (@backrunner,@sodatea)- [beffe8a] fix: allow disabling progress plugin via
devServer.client.progress@vue/cli-ui
- #7210 chore: upgrade to apollo-server-express 3.x
Committers: 2
- BackRunner (
@backrunner)- Haoqun Jiang (
@sodatea)v5.0.6
Fix compatibility with the upcoming Vue 2.7 (currently in alpha) and Vue Loader 15.10 (currently in beta).
In Vue 2.7,
vue-template-compileris no longer a required peer dependency. Rather, there's a new export under the main package asvue/compiler-sfc.v5.0.5
:bug: Bug Fix
@vue/cli@vue/cli-service
- #7023 fix: windows vue.config.mjs support (
@xiaoxiangmoe)@vue/cli-plugin-e2e-cypress
- [697bb44] fix: should correctly resolve cypress bin path for Cypress 10 (Note that the project is still created with Cypress 9 by default, but you can upgrade to Cypress 10 on your own now)
Committers: 3
- Martijn Jacobs (
@maerteijn)- ZHAO Jinxiang (
@xiaoxiangmoe)@blzsaav5.0.4
:bug: Bug Fix
@vue/cli-service
- #7005 Better handling of
publicPath: 'auto'(@AndreiSoroka)@vue/cli-shared-utils,@vue/cli-ui
- 75826d6 fix: replace
node-ipcwith@achrinza/node-ipcto further secure the dependency chainCommitters: 1
- Andrei (
@AndreiSoroka)- Haoqun Jiang (
@sodatea)v5.0.3
... (truncated)
Changelog
Sourced from @vue/cli-plugin-unit-mocha's changelog.
5.0.7 (2022-07-05)
@vue/cli-service
- #7202, [558dea2] fix: support
devServer.serveroption, avoid deprecation warnings (@backrunner,@sodatea)- [beffe8a] fix: allow disabling progress plugin via
devServer.client.progress@vue/cli-ui
- #7210 chore: upgrade to apollo-server-express 3.x
Committers: 2
- BackRunner (
@backrunner)- Haoqun Jiang (
@sodatea)5.0.6 (2022-06-16)
Fix compatibility with the upcoming Vue 2.7 (currently in alpha) and Vue Loader 15.10 (currently in beta).
In Vue 2.7,
vue-template-compileris no longer a required peer dependency. Rather, there's a new export under the main package asvue/compiler-sfc.5.0.5 (2022-06-16)
:bug: Bug Fix
@vue/cli@vue/cli-service
- #7023 fix: windows vue.config.mjs support (
@xiaoxiangmoe)Committers: 3
- Martijn Jacobs (
@maerteijn)- ZHAO Jinxiang (
@xiaoxiangmoe)@blzsaa5.0.4 (2022-03-22)
:bug: Bug Fix
@vue/cli-service
- #7005 Better handling of
publicPath: 'auto'(@AndreiSoroka)@vue/cli-shared-utils,@vue/cli-ui
- 75826d6 fix: replace
node-ipcwith@achrinza/node-ipcto further secure the dependency chainCommitters: 1
... (truncated)
Commits
Updates hardhat from 2.0.8 to 2.12.5
Release notes
Sourced from hardhat's releases.
Hardhat v2.12.5
- The full return data of unrecognized custom errors is now shown in error messages
- Fixed a bug that was causing the flatten task to produce non-deterministic results
- Fixed a bug when
gasPricewas set to"auto", which is the default configuration when connecting to a JSON-RPC network. This bug was preventing the results frometh_feeHistoryfrom being used when they should.- Added an experimental environment variable flag to disable the local installation check (thanks
@arijoon!)Hardhat v2.12.4
This release fixes a small issue that was affecting our VSCode extension in some edge cases.
It also includes a non-intrusive message promoting this year's Solidity Developer Survey.
Hardhat v2.12.3
- Added a new
hardhat_metadataRPC method- Trim leading and trailing spaces in mnemonics (thanks
@winor30!)- Pending blocks now include the
bloomfield (thanks@InoMurko!)- A better error is shown if a Solidity file makes an import through its own package name (thanks
@KaanKC!)- Added a
getBuildInfoSyncfunction to thehre.artifactsobject (thanks@emretepedev!)- Fixed an edge case where Hardhat would hang if
debug_traceTransactionwas used with an OOG transaction sent to a precompileHardhat v2.12.2
- Fixed an issue when forking networks like Arbitrum Nitro that use non-standard transaction types (#2995, #3194).
- Fixed an issue that was causing build-info file names to not be deterministic.
Hardhat v2.12.1
Fixed a problem that was preventing Hardhat from being used in Alpine Linux.
@nomiclabs/hardhat-ethersv2.2.1
getContractAtdoesn't throw anymore if the given address is not a contract. We removed this check because it causedsmockto stop working.Hardhat v2.12.0
This new minor version sets the
mergehardfork as the default hardfork used by the Hardhat Network. Most users shouldn't be affected by this change.Besides that, this version fixes a couple of issues related to our compilation pipeline.
@nomiclabs/hardhat-ethersv2.2.0This version adds a new helper to the
hre.ethersobject:deployContract.// before const Foo = await ethers.getContractFactory("Foo") const foo = await Foo.deploy()// after const foo = await ethers.deployContract("Foo")
If your contract has constructor arguments, you can pass them as an array:
const foo = await ethers.deployContract("Foo", [1000, "some string"]) </tr></table>
... (truncated)
Commits
a1a36f8Version Packages3152b55Merge pull request #3494 from NomicFoundation/fix-vyper-timeouts7e81377Add changesets633f20b[vyper] Use the GITHUB_TOKEN and increase timeoutb24b994Accept extra headers in the downloader module7404d28Merge pull request #3489 from NomicFoundation/remove-trailing-whitespace240779dRemove all trailing whitespacee3fc55cSet trim_trailing_whitespace to true727740fMerge pull request #3470 from NomicFoundation/return-data-custom-error23a594aCreate warm-radios-cross.md- Additional commits viewable in compare view
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 language
You can disable automated security fix PRs for this repo from the Security Alerts page.