Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

# IDE specific files
.vscode
.idea
*.swp
*.swo

Expand Down
25 changes: 4 additions & 21 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,14 @@
{
"extends": ["config:base", "docker:disable"],
"automerge": true,
"automergeType": "pr",
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>api3dao/renovate-config", "docker:disable"],
"packageRules": [
{
"matchPackageNames": ["chalk", "hardhat", "ora", "node", "@openzeppelin/contracts", "zod"],
"matchPackageNames": ["ora", "node", "@openzeppelin/contracts"],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you retain zod too please? We manually update it with OIS package bumps because we've had compatibility issues when the versions are mismatched, see https://github.com/api3dao/ois?tab=readme-ov-file#make-sure-only-one-zod-version-is-installed

"enabled": false
},
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"schedule": ["before 2am on monday"],
"groupName": "devDependencies (non-major)"
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch", "minor"],
"schedule": ["before 2am on monday"],
"groupName": "dependencies (non-major)"
}
],
"rangeStrategy": "bump",
"lockFileMaintenance": {
"enabled": false
},
"reviewers": ["team:airnode"],
"minimumReleaseAge": "5 days",
"internalChecksFilter": "strict",
"dependencyDashboard": false
"reviewers": ["team:airnode"]
}
Loading