-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into change-liberate-voicevox-core
- Loading branch information
Showing
15 changed files
with
121 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[package] | ||
name = "downloader" | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
[[bin]] | ||
name = "download" | ||
|
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
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 was deleted.
Oops, something went wrong.
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,102 @@ | ||
{ | ||
$schema: "https://docs.renovatebot.com/renovate-schema.json", | ||
extends: [ | ||
"config:recommended", | ||
], | ||
timezone: "Asia/Tokyo", | ||
separateMajorMinor: false, | ||
dependencyDashboardApproval: true, // 万が一`packageRules`の網羅性に穴ができた場合に備え | ||
packageRules: [ | ||
// `separateMajorMinor`を無効化した上で次の二つのgroupにすべてをまとめる。 | ||
// | ||
// * "major dependencies" (`renovate/major-dependencies`) | ||
// * "non-major dependencies" (`renovate/non-major-dependencies`) | ||
// | ||
// バージョン0.y.z (y≧1)のyとバージョン0.0.zのzの変更は"major dependencies"の方に含むようにする。 | ||
|
||
// メジャーバージョンの更新 | ||
{ | ||
groupName: "major dependencies", | ||
matchUpdateTypes: [ | ||
"major", | ||
], | ||
dependencyDashboardApproval: false, | ||
}, | ||
{ | ||
groupName: "major dependencies", | ||
matchUpdateTypes: [ | ||
"minor", | ||
], | ||
matchCurrentVersion: "/^v?0\\./", | ||
dependencyDashboardApproval: false, | ||
}, | ||
{ | ||
groupName: "major dependencies", | ||
matchUpdateTypes: [ | ||
"patch", | ||
], | ||
matchCurrentVersion: "/^v?0\\.0\\./", | ||
dependencyDashboardApproval: false, | ||
}, | ||
|
||
// メジャーバージョン以外の更新 | ||
{ | ||
groupName: "non-major dependencies", | ||
matchUpdateTypes: [ | ||
"minor", | ||
], | ||
matchCurrentVersion: "!/^v?0\\./", | ||
dependencyDashboardApproval: false, | ||
}, | ||
{ | ||
groupName: "non-major dependencies", | ||
matchUpdateTypes: [ | ||
"patch", | ||
], | ||
matchCurrentVersion: "!/^v?0\\.0\\./", | ||
dependencyDashboardApproval: false, | ||
}, | ||
|
||
// GHAのrunnerに対しては無効化する | ||
{ | ||
matchDatasources: [ | ||
"github-runners", | ||
], | ||
matchPackageNames: [ | ||
"windows", | ||
"macos", | ||
"ubuntu", | ||
], | ||
enabled: false, | ||
}, | ||
], | ||
cargo: { | ||
rangeStrategy: "bump", | ||
}, | ||
customManagers: [ | ||
{ | ||
customType: "regex", | ||
fileMatch: [ | ||
"^rust-toolchain$", | ||
], | ||
matchStrings: [ | ||
"(?<currentValue>\\d+\\.\\d+\\.\\d+)", | ||
], | ||
depNameTemplate: "Rust", | ||
packageNameTemplate: "rust-lang/rust", | ||
datasourceTemplate: "github-tags", | ||
}, | ||
{ | ||
customType: "regex", | ||
fileMatch: [ | ||
"^Cargo.toml$", | ||
], | ||
matchStrings: [ | ||
"rust-version = \"(?<currentValue>\\d+\\.\\d+\\.\\d+)\"", | ||
], | ||
depNameTemplate: "Rust", | ||
packageNameTemplate: "rust-lang/rust", | ||
datasourceTemplate: "github-tags", | ||
}, | ||
], | ||
} |