File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1- export { v0_1 as current } from './v0.1'
2- export const other = [ ]
1+ import { v0_1 } from './v0.1'
2+
3+ export { v0_2 as current } from './v0.2'
4+ export const other = [ v0_1 ]
Original file line number Diff line number Diff line change 1+ import { VersionInfo } from '@start9labs/start-sdk'
2+
3+ export const v0_2 = VersionInfo . of ( {
4+ version : '0.2:1.0' ,
5+ releaseNotes : 'Update grafana to 12.2.1 and prometheus to v3.7.1.' ,
6+ migrations : {
7+ up : async ( { effects } ) => { } ,
8+ down : async ( { effects } ) => { } ,
9+ } ,
10+ } )
Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ export const manifest = setupManifest({
2626 grafana : {
2727 arch : architectures ,
2828 source : {
29- dockerTag : 'grafana/grafana:12.2.0 ' ,
29+ dockerTag : 'grafana/grafana:12.2.1 ' ,
3030 } ,
3131 } as SDKImageInputSpec ,
3232 prometheus : {
3333 arch : architectures ,
3434 source : {
35- dockerTag : 'prom/prometheus:v3.5.0 ' ,
35+ dockerTag : 'prom/prometheus:v3.7.1 ' ,
3636 } ,
3737 } as SDKImageInputSpec ,
3838 'json-exporter' : {
You can’t perform that action at this time.
0 commit comments