Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: VOICEVOX/voicevox_core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: qryxip/voicevox_core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: chore-use-renovate-for-all-deps
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.

Commits on Sep 27, 2024

  1. Copy the full SHA
    90aaa65 View commit details

Commits on Sep 28, 2024

  1. Add a comment

    #839 (comment)
    
    Co-authored-by: Hiroshiba <hihokaruta@gmail.com>
    qryxip and Hiroshiba authored Sep 28, 2024
    Copy the full SHA
    ad28d7f View commit details
  2. [skip ci] Add a comment

    #839 (comment)
    
    Co-authored-by: Hiroshiba <hihokaruta@gmail.com>
    qryxip and Hiroshiba authored Sep 28, 2024
    Copy the full SHA
    1656a41 View commit details
  3. Add a comment

    qryxip committed Sep 28, 2024
    Copy the full SHA
    23adf42 View commit details
  4. Copy the full SHA
    5847231 View commit details
  5. Copy the full SHA
    9d20232 View commit details
  6. Revert "JSON5としてフォーマット"

    This reverts commit 9d20232.
    qryxip committed Sep 28, 2024
    Copy the full SHA
    927d714 View commit details
  7. Copy the full SHA
    a5ef979 View commit details
  8. 末尾カンマだけ入れる

    qryxip committed Sep 28, 2024
    Copy the full SHA
    432e572 View commit details
  9. Revert "末尾カンマだけ入れる"

    This reverts commit 432e572.
    qryxip committed Sep 28, 2024
    Copy the full SHA
    322dcd7 View commit details
  10. Copy the full SHA
    392662b View commit details
  11. Copy the full SHA
    cf101d9 View commit details
  12. Copy the full SHA
    10ba553 View commit details
  13. Copy the full SHA
    701d7fd View commit details
  14. Copy the full SHA
    0185235 View commit details
  15. Copy the full SHA
    7574139 View commit details
  16. Copy the full SHA
    13904f6 View commit details
  17. Revert "fixup! Docker版でrenovate.json5を読んでみる"

    This reverts commit 701d7fd.
    qryxip committed Sep 28, 2024
    Copy the full SHA
    3e47acf View commit details
  18. Revert "Docker版でrenovate.json5を読んでみる"

    This reverts commit 10ba553.
    qryxip committed Sep 28, 2024
    Copy the full SHA
    79521af View commit details
  19. Copy the full SHA
    84c641e View commit details
  20. Copy the full SHA
    6b8b92d View commit details
  21. Revert "末尾カンマについての注意事項"

    This reverts commit 84c641e.
    qryxip committed Sep 28, 2024
    Copy the full SHA
    53e35e5 View commit details
Showing with 90 additions and 41 deletions.
  1. +0 −41 renovate.json
  2. +90 −0 renovate.json5
41 changes: 0 additions & 41 deletions renovate.json

This file was deleted.

90 changes: 90 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
{
$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",
},
],
}