Skip to content

Commit

Permalink
Bump CUE dep (and resolve formatting fight from ns fmt vs VSCode fo…
Browse files Browse the repository at this point in the history
…rmatters).
  • Loading branch information
n-g committed Jan 26, 2025
1 parent 8ee0c5a commit db48440
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion internal/testdata/service/post/service.cue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ service: fn.#Service & {

instantiate: {
main: datastore.#Exports.Database & {
name: "main"
name: "main"
schemaFile: inputs.#FromFile & {
path: "schema.txt"
}
Expand Down
2 changes: 1 addition & 1 deletion internal/versions/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"api_version": 139,
"api_version": 140,
"minimum_api_version": 40,
"cache_version": 1
}
2 changes: 1 addition & 1 deletion library/oss/localstack/templates/server.cue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package templates
image: *"localstack/localstack@sha256:4ebb75b927bcfc9a79c77075734e51ce6031054b776eed2defcb3c0dfa4cf699" | string
ingress: *false | bool
dataVolumeSize: *"10GiB" | string
dataVolume: *{
dataVolume: *{
id: "localstack-server-data"
size: dataVolumeSize
} | {
Expand Down
2 changes: 1 addition & 1 deletion library/oss/postgres/templates/server.cue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package templates
spec: {
image: *"postgres:14.0@sha256:db927beee892dd02fbe963559f29a7867708747934812a80f83bff406a0d54fd" | string
dataVolumeSize: *"10GiB" | string
dataVolume: *{
dataVolume: *{
id: "postgres-server-data"
size: dataVolumeSize
} | {
Expand Down
2 changes: 1 addition & 1 deletion ns-workspace.cue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module: "namespacelabs.dev/foundation"
requirements: {
api: 81
api: 140
toolsVersion: 4
}
prebuilts: {
Expand Down
2 changes: 1 addition & 1 deletion std/fn/foundation.cue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ _#Node: {
#Extension: {
_#Node

hasInitializerIn?: #Framework | [...#Framework]
hasInitializerIn?: #Framework | [...#Framework]
hasPostInitializerIn?: #Framework
initializeBefore: [...inputs.#Package]
initializeAfter: [...inputs.#Package]
Expand Down
3 changes: 1 addition & 2 deletions std/monitoring/prometheus/extension.cue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import (
"namespacelabs.dev/foundation/std/fn:inputs"
)

extension: fn.#Extension & {
}
extension: fn.#Extension & {}

$promServer: inputs.#Server & {
packageName: "namespacelabs.dev/foundation/std/monitoring/prometheus/server"
Expand Down
2 changes: 1 addition & 1 deletion std/monitoring/tracing/extension.cue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ extension: fn.#Extension & {
}

instantiate: {
serverInfo: info.#Exports.ServerInfo
serverInfo: info.#Exports.ServerInfo
"interceptors": interceptors.#Exports.InterceptorRegistration & {
name: "otel-tracing"
}
Expand Down
3 changes: 1 addition & 2 deletions universe/networking/tailscale/extension.cue
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import (
"namespacelabs.dev/foundation/std/fn"
)

extension: fn.#Extension & {
}
extension: fn.#Extension & {}

configure: fn.#Configure & {
sidecar: tailscaled: {
Expand Down

0 comments on commit db48440

Please sign in to comment.