File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -82572,7 +82572,9 @@ var STABLE_TAG_NAME_REFS = {
8257282572 // `branch-off-yy.mm` is a surprising name, but is the pattern identified in the documentation.
8257382573 //
8257482574 // See: https://github.com/NixOS/release-wiki/pull/90
82575- "24.11": "tags/branch-off-24.11"
82575+ "24.11": "tags/branch-off-24.11",
82576+ // It appears that https://github.com/NixOS/release-wiki/pull/90 was not followed for 25.05
82577+ "25.05": "tags/25.05"
8257682578};
8257782579var FlakeHubMirrorAction = class {
8257882580 constructor() {
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ const STABLE_TAG_NAME_REFS: { [key: string]: string } = {
3636 //
3737 // See: https://github.com/NixOS/release-wiki/pull/90
3838 "24.11" : "tags/branch-off-24.11" ,
39+ // It appears that https://github.com/NixOS/release-wiki/pull/90 was not followed for 25.05
40+ "25.05" : "tags/25.05" ,
3941} ;
4042
4143class FlakeHubMirrorAction {
@@ -88,7 +90,7 @@ export async function getRollingMinor(
8890 if ( STABLE_TAG_NAME_REFS [ versionPart ] ) {
8991 expectedRef = STABLE_TAG_NAME_REFS [ versionPart ] ;
9092 } else {
91- // See: https://github.com/NixOS/release-wiki/pull/90
93+ // See: https://github.com/NixOS/release-wiki/pull/90 which is still current policy
9294 expectedRef = `tags/branch-off-${ versionPart } ` ;
9395 }
9496
You can’t perform that action at this time.
0 commit comments