Skip to content

Commit

Permalink
Security patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Øyvind Hatland committed Oct 17, 2023
1 parent c20adfc commit a3df3ef
Show file tree
Hide file tree
Showing 4 changed files with 179 additions and 231 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Docker Image CI
on:
push:
tags:
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
build-image-for-amd:
Expand All @@ -29,6 +29,7 @@ jobs:
with:
context: .
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
Expand Down
17 changes: 17 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,23 @@
"react": "18",
"react-dom": "18"
}
},
"overrides": {
"yargs-parser@>=16.0.0 <18.1.1": ">=18.1.1",
"flat@<5.0.1": ">=5.0.1",
"ejs@<3.1.7": ">=3.1.7",
"vm2@<3.9.18": ">=3.9.18",
"tough-cookie@<4.1.3": ">=4.1.3",
"protobufjs@>=6.10.0 <6.11.4": ">=6.11.4",
"word-wrap@<1.2.4": ">=1.2.4",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"minimatch@<3.0.5": ">=3.0.5",
"graphql@>=16.3.0 <16.8.1": ">=16.8.1",
"debug@>=3.2.0 <3.2.7": ">=3.2.7",
"get-func-name@<2.0.1": ">=2.0.1",
"postcss@<8.4.31": ">=8.4.31"
}
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/captable/contracts/tokens/ERC721Token.sol
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ contract ERC721Token is
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable) returns (bool) {
function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable, ERC721URIStorage) returns (bool) {
return super.supportsInterface(interfaceId);
}

Expand Down
Loading

0 comments on commit a3df3ef

Please sign in to comment.