@@ -377,7 +377,7 @@ describe("fetchLatestVersion", () => {
377377 if ( urlStr . includes ( "/manifests/nightly" ) ) {
378378 return new Response (
379379 JSON . stringify ( {
380- annotations : { version : "0.0.0-nightly .1740393600" } ,
380+ annotations : { version : "0.0.0-dev .1740393600" } ,
381381 } ) ,
382382 { status : 200 }
383383 ) ;
@@ -386,7 +386,7 @@ describe("fetchLatestVersion", () => {
386386 } ) ;
387387
388388 const version = await fetchLatestVersion ( "curl" , "nightly" ) ;
389- expect ( version ) . toBe ( "0.0.0-nightly .1740393600" ) ;
389+ expect ( version ) . toBe ( "0.0.0-dev .1740393600" ) ;
390390 } ) ;
391391
392392 test ( "uses GHCR manifest when channel is nightly (npm method)" , async ( ) => {
@@ -399,7 +399,7 @@ describe("fetchLatestVersion", () => {
399399 if ( urlStr . includes ( "/manifests/nightly" ) ) {
400400 return new Response (
401401 JSON . stringify ( {
402- annotations : { version : "0.0.0-nightly .1740393600" } ,
402+ annotations : { version : "0.0.0-dev .1740393600" } ,
403403 } ) ,
404404 { status : 200 }
405405 ) ;
@@ -408,7 +408,7 @@ describe("fetchLatestVersion", () => {
408408 } ) ;
409409
410410 const version = await fetchLatestVersion ( "npm" , "nightly" ) ;
411- expect ( version ) . toBe ( "0.0.0-nightly .1740393600" ) ;
411+ expect ( version ) . toBe ( "0.0.0-dev .1740393600" ) ;
412412 } ) ;
413413
414414 test ( "defaults to stable channel (uses GitHub) when channel omitted" , async ( ) => {
@@ -1074,8 +1074,8 @@ describe("startCleanupOldBinary", () => {
10741074
10751075describe ( "isNightlyVersion" , ( ) => {
10761076 test ( "returns true for nightly version strings" , ( ) => {
1077- expect ( isNightlyVersion ( "0.0.0-nightly .1740000000" ) ) . toBe ( true ) ;
1078- expect ( isNightlyVersion ( "0.0.0-nightly .1" ) ) . toBe ( true ) ;
1077+ expect ( isNightlyVersion ( "0.0.0-dev .1740000000" ) ) . toBe ( true ) ;
1078+ expect ( isNightlyVersion ( "0.0.0-dev .1" ) ) . toBe ( true ) ;
10791079 } ) ;
10801080
10811081 test ( "returns false for stable version strings" , ( ) => {
@@ -1104,7 +1104,7 @@ describe("fetchLatestNightlyVersion", () => {
11041104 JSON . stringify ( {
11051105 schemaVersion : 2 ,
11061106 layers : [ ] ,
1107- annotations : { version : "0.0.0-nightly .1740000000" } ,
1107+ annotations : { version : "0.0.0-dev .1740000000" } ,
11081108 } ) ,
11091109 {
11101110 status : 200 ,
@@ -1118,7 +1118,7 @@ describe("fetchLatestNightlyVersion", () => {
11181118 } ) ;
11191119
11201120 const version = await fetchLatestNightlyVersion ( ) ;
1121- expect ( version ) . toBe ( "0.0.0-nightly .1740000000" ) ;
1121+ expect ( version ) . toBe ( "0.0.0-dev .1740000000" ) ;
11221122 expect ( callCount ) . toBe ( 2 ) ; // token + manifest
11231123 } ) ;
11241124
@@ -1219,7 +1219,7 @@ describe("executeUpgrade with curl method (nightly)", () => {
12191219 annotations : { "org.opencontainers.image.title" : title } ,
12201220 } ,
12211221 ] ,
1222- annotations : { version : "0.0.0-nightly .1740000000" } ,
1222+ annotations : { version : "0.0.0-dev .1740000000" } ,
12231223 } ) ,
12241224 { status : 200 }
12251225 ) ;
@@ -1231,7 +1231,7 @@ describe("executeUpgrade with curl method (nightly)", () => {
12311231 return new Response ( "Not Found" , { status : 404 } ) ;
12321232 } ) ;
12331233
1234- const result = await executeUpgrade ( "curl" , "0.0.0-nightly .1740000000" ) ;
1234+ const result = await executeUpgrade ( "curl" , "0.0.0-dev .1740000000" ) ;
12351235
12361236 expect ( result ) . not . toBeNull ( ) ;
12371237 expect ( result ) . toHaveProperty ( "tempBinaryPath" ) ;
0 commit comments