Skip to content

Commit

Permalink
misc: Update milestone
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Feb 19, 2025
1 parent 5ff3fc6 commit fcae57e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/manager/graphql-reference/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ type ImageNode implements Node {
labels: [KVPair]
size_bytes: BigInt

"""Added in 25.3.0."""
"""Added in 25.3.1."""
status: String

Check notice on line 403 in docs/manager/graphql-reference/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'status' was added to object type 'ImageNode'

Field 'status' was added to object type 'ImageNode'
resource_limits: [ResourceLimit]
supported_accelerators: [String]
Expand Down Expand Up @@ -876,7 +876,7 @@ type Image {
aliases: [String]
size_bytes: BigInt

"""Added in 25.3.0."""
"""Added in 25.3.1."""
status: String

Check notice on line 880 in docs/manager/graphql-reference/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'status' was added to object type 'Image'

Field 'status' was added to object type 'Image'
resource_limits: [ResourceLimit]
supported_accelerators: [String]
Expand Down
4 changes: 2 additions & 2 deletions src/ai/backend/manager/models/gql_models/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class Image(graphene.ObjectType):
labels = graphene.List(KVPair)
aliases = graphene.List(graphene.String)
size_bytes = BigInt()
status = graphene.String(description="Added in 25.3.0.")
status = graphene.String(description="Added in 25.3.1.")
resource_limits = graphene.List(ResourceLimit)
supported_accelerators = graphene.List(graphene.String)
installed = graphene.Boolean()
Expand Down Expand Up @@ -408,7 +408,7 @@ class Meta:
digest = graphene.String()
labels = graphene.List(KVPair)
size_bytes = BigInt()
status = graphene.String(description="Added in 25.3.0.")
status = graphene.String(description="Added in 25.3.1.")
resource_limits = graphene.List(ResourceLimit)
supported_accelerators = graphene.List(graphene.String)
aliases = graphene.List(
Expand Down

0 comments on commit fcae57e

Please sign in to comment.