Skip to content

Commit 01ba0ba

Browse files
Bump solc from 0.8.29 to 0.8.30 (#1140)
* Bump solc from 0.8.29 to 0.8.30 Bumps [solc](https://github.com/ethereum/solc-js) from 0.8.29 to 0.8.30. - [Commits](argotorg/solc-js@v0.8.29...v0.8.30) --- updated-dependencies: - dependency-name: solc dependency-version: 0.8.30 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * passing tests --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Klaus <klahott@gmail.com>
1 parent 6844ee2 commit 01ba0ba

21 files changed

+74
-73
lines changed

package-lock.json

Lines changed: 17 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -83,31 +83,31 @@
8383
"node": ">=18"
8484
},
8585
"devDependencies": {
86-
"@babel/code-frame": "^7.26.2",
86+
"@babel/code-frame": "^7.27.1",
8787
"@eslint/eslintrc": "^3.3.1",
88-
"@eslint/js": "^9.25.1",
88+
"@eslint/js": "^9.26.0",
8989
"@types/jest": "^29.5.14",
9090
"@types/semver": "^7.7.0",
91-
"@typescript-eslint/eslint-plugin": "^8.31.0",
92-
"@typescript-eslint/parser": "^8.31.0",
91+
"@typescript-eslint/eslint-plugin": "^8.32.0",
92+
"@typescript-eslint/parser": "^8.32.0",
9393
"c8": "^10.1.3",
9494
"cross-env": "^7.0.3",
95-
"eslint": "^9.25.1",
96-
"eslint-config-prettier": "^10.1.2",
97-
"esm-utils": "^4.3.0",
98-
"globals": "^16.0.0",
95+
"eslint": "^9.26.0",
96+
"eslint-config-prettier": "^10.1.5",
97+
"esm-utils": "^4.4.2",
98+
"globals": "^16.1.0",
9999
"jest": "^29.7.0",
100100
"jest-light-runner": "^0.7.8",
101101
"jest-snapshot-serializer-ansi": "^2.2.1",
102102
"jest-snapshot-serializer-raw": "^2.0.0",
103103
"jest-watch-typeahead": "^2.2.2",
104104
"lines-and-columns": "^2.0.4",
105105
"prettier": "^3.5.3",
106-
"solc": "^0.8.29",
106+
"solc": "^0.8.30",
107107
"ts-loader": "^9.5.2",
108108
"ts-node": "^10.9.2",
109109
"typescript": "^5.8.3",
110-
"webpack": "^5.99.7",
110+
"webpack": "^5.99.8",
111111
"webpack-cli": "^6.0.1"
112112
},
113113
"dependencies": {

tests/format/HexLiteral/HexLiteral.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.29;
2+
pragma solidity 0.8.30;
33

44
contract HexLiteral {
55
bytes8 hex1 = hex'DeadBeef';

tests/format/HexLiteral/__snapshots__/format.test.js.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ singleQuote: false
88
| printWidth
99
=====================================input======================================
1010
// SPDX-License-Identifier: MIT
11-
pragma solidity 0.8.29;
11+
pragma solidity 0.8.30;
1212
1313
contract HexLiteral {
1414
bytes8 hex1 = hex'DeadBeef';
@@ -17,7 +17,7 @@ contract HexLiteral {
1717
1818
=====================================output=====================================
1919
// SPDX-License-Identifier: MIT
20-
pragma solidity 0.8.29;
20+
pragma solidity 0.8.30;
2121
2222
contract HexLiteral {
2323
bytes8 hex1 = hex"DeadBeef";
@@ -35,7 +35,7 @@ singleQuote: true
3535
| printWidth
3636
=====================================input======================================
3737
// SPDX-License-Identifier: MIT
38-
pragma solidity 0.8.29;
38+
pragma solidity 0.8.30;
3939
4040
contract HexLiteral {
4141
bytes8 hex1 = hex'DeadBeef';
@@ -44,7 +44,7 @@ contract HexLiteral {
4444
4545
=====================================output=====================================
4646
// SPDX-License-Identifier: MIT
47-
pragma solidity 0.8.29;
47+
pragma solidity 0.8.30;
4848
4949
contract HexLiteral {
5050
bytes8 hex1 = hex'DeadBeef';

tests/format/ModifierInvocations/ModifierInvocations.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.29;
2+
pragma solidity 0.8.30;
33

44
contract ModifierDefinitions {
55
// We enforce the use of parentheses in modifiers without parameters.

tests/format/ModifierInvocations/__snapshots__/format.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ printWidth: 80
77
| printWidth
88
=====================================input======================================
99
// SPDX-License-Identifier: MIT
10-
pragma solidity 0.8.29;
10+
pragma solidity 0.8.30;
1111
1212
contract ModifierDefinitions {
1313
// We enforce the use of parentheses in modifiers without parameters.
@@ -26,7 +26,7 @@ contract ModifierInvocations is ModifierDefinitions {
2626
2727
=====================================output=====================================
2828
// SPDX-License-Identifier: MIT
29-
pragma solidity 0.8.29;
29+
pragma solidity 0.8.30;
3030
3131
contract ModifierDefinitions {
3232
// We enforce the use of parentheses in modifiers without parameters.

tests/format/NumberLiteral/NumberLiteral.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.29;
2+
pragma solidity 0.8.30;
33

44
contract NumberLiteral {
55
function numbers()public {

tests/format/NumberLiteral/__snapshots__/format.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ printWidth: 80
77
| printWidth
88
=====================================input======================================
99
// SPDX-License-Identifier: MIT
10-
pragma solidity 0.8.29;
10+
pragma solidity 0.8.30;
1111
1212
contract NumberLiteral {
1313
function numbers()public {
@@ -22,7 +22,7 @@ contract NumberLiteral {
2222
2323
=====================================output=====================================
2424
// SPDX-License-Identifier: MIT
25-
pragma solidity 0.8.29;
25+
pragma solidity 0.8.30;
2626
2727
contract NumberLiteral {
2828
function numbers() public {

tests/format/Parentheses/AddNoParentheses.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.29;
2+
pragma solidity 0.8.30;
33

44
contract AddNoParentheses {
55
function addAdd(uint256 a, uint256 b, uint256 c)

tests/format/Parentheses/BitAndNoParentheses.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.29;
2+
pragma solidity 0.8.30;
33

44
contract BitAndNoParentheses {
55
function bitAndAdd(uint256 a, uint256 b, uint256 c)

0 commit comments

Comments
 (0)