-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Dependency updates: - update all dependencies, targeting minor versions - update major versions of: - hardhat 9 - syncpack - solhint - webpack-cli 5 - prettier-eslint, @typescript-eslint/eslint-plugin, @typescript-eslint/parser - @nomicfoundation/hardhat-ethers - node-jq - chai-as-promised - nyc - @graphql-codegen/near-operation-file-preset - syncpack linting: - integrated into ci and pre-commit - format all package.json - pin stack-trace package version due to its es module usage - removed dependency resolutions: - root: mocha - sdk-core: graphql - upgrade nodejs usage - making node22 default - testing matrix expanded to 18,20,22 - update to yarn 1.22.22 **Dependencies left not updated to new major versions** ◉ @nomicfoundation/hardhat-chai-matchers 1.0.6 → 2.0.7 - https://github.com/nomicfoundation/hardhat ◉ eslint 8.57.0 → 9.9.1 - https://github.com/eslint/eslint ◉ web3 ^1.10.4 → 4.12.1 - https://github.com/ChainSafe/web3.js ◉ @openzeppelin/contracts 4.9.6 → 5.0.2 - https://github.com/OpenZeppelin/openzeppelin-contracts ◉ ethers ^5.7.2 → 6.13.2 - https://github.com/ethers-io/ethers.js ◉ auto-bind 4.0.0 → 5.0.1 - https://github.com/sindresorhus/auto-bind ◉ node-fetch 2.7.0 → 3.3.2 - https://github.com/node-fetch/node-fetch ◉ graphql-request ^6.1.0 → 7.1.0 - https://github.com/jasonkuhrt/graphql-request ◉ @reduxjs/toolkit ^1.9.7 → 2.2.7 - https://github.com/reduxjs/redux-toolkit ◉ react-redux ^8.1.3 → 9.1.2 - https://github.com/reduxjs/react-redux
- Loading branch information
Showing
30 changed files
with
3,977 additions
and
3,108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
indent: " " # four spaces | ||
dependencyTypes: ["!peer", "!resolutions"] # let us take care of the peer dependency resolutions by hand | ||
sortAz: ["!scripts"] # we prefer to sort scripts by-hand, because sometimes it uses run-s pattern | ||
semverGroups: | ||
# Note: rule priority is top (high) to bottom (low) | ||
- label: Use looser ranges for metadata local packages | ||
dependencies: | ||
# Note: - Metadata updates often include new network configuration, which we do not want to force a new SDK | ||
# version in order for the client to be able to use. | ||
# - Probably this is better set in peerDependencies, instaed. However, that might be a breaking change to | ||
# the current developers of SDK. | ||
- "@superfluid-finance/metadata" | ||
range: "^" | ||
- label: Use exact version for prod dependencies | ||
dependencyTypes: ["prod"] | ||
range: "" | ||
- label: Use looser range by default | ||
range: "^" | ||
versionGroups: | ||
- label: Pin stack-trace to the same version, since newer version starts to use ES module | ||
dependencies: | ||
- "stack-trace" | ||
pinVersion: "0.0.10" |
Oops, something went wrong.