File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,14 @@ This project does _not_ adhere to
77[ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) but contrary to it
88every new version is a new major version.
99
10- ## 174.0.0 - UNRELEASED
10+ ## 174.0.0 - 2024-04-30
1111
1212### Added
1313
1414- ` setPaneDisabled ` to disable a pane from the ` NavMenu ` .
1515- ` setPaneHidden ` to hide a pane from the ` NavMenu ` .
1616- ` preHidden ` and ` preDisabled ` properties in ` Pane ` type passed to ` App ` .
17+ - Publish timestamp for nordic-publish for non-official sources.
1718
1819#### Changed
1920
@@ -32,17 +33,17 @@ every new version is a new major version.
3233
3334### Added
3435
35- - Support for splitting M1 and x64 nrfutil sandboxes
36+ - Support for splitting M1 and x64 nrfutil sandboxes.
3637
3738## 172.0.0 - 2024-04-15
3839
3940### Fixed
4041
41- - nrf9151 and nrf9131 not have the modem trait set to true
42+ - nrf9151 and nrf9131 not have the modem trait set to true.
4243
4344### Changed
4445
45- - All ` NRF91 ` devices are now considered to have modem trait
46+ - All ` NRF91 ` devices are now considered to have modem trait.
4647
4748## 171.0.0 - 2024-04-04
4849
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ export type AppVersions = {
2121
2222export type AppVersion = {
2323 shasum ?: string ;
24+ publishTimestamp ?: string ;
2425 tarballUrl : UrlString ;
2526 nrfutilModules ?: NrfutilModules ;
2627} ;
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ interface Installed {
3434 repositoryUrl ?: UrlString ;
3535 html ?: string ;
3636 installed : {
37+ publishTimestamp ?: string ;
3738 path : string ;
3839 shasum ?: string ;
3940 } ;
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ interface LegacyAppInfo {
2424 versions ?: {
2525 [ version : string ] : {
2626 dist : {
27+ publishTimestamp ?: string ;
2728 tarball : string ;
2829 shasum : string ;
2930 } ;
@@ -372,6 +373,7 @@ const getUpdatedAppInfo = async (app: App): Promise<AppInfo> => {
372373 ...oldAppInfo . versions ,
373374 [ version ] : {
374375 tarballUrl : `${ app . sourceUrl } /${ app . filename } ` ,
376+ publishTimestamp : new Date ( ) . toISOString ( ) ,
375377 shasum : app . shasum ,
376378 nrfutilModules,
377379 } ,
You can’t perform that action at this time.
0 commit comments