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 18, 2025
1 parent 61dd8af commit f75988e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/manager/graphql-reference/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1907,10 +1907,10 @@ type Mutations {
forget_image_by_id(image_id: String!): ForgetImageById
forget_image(architecture: String = "x86_64", reference: String!): ForgetImage

"""Added in 25.3.0"""
"""Added in 25.3.1"""
purge_image_by_id(image_id: String!): PurgeImageById

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'purge_image_by_id' was added to object type 'Mutations'

Field 'purge_image_by_id' was added to object type 'Mutations'

"""Added in 25.3.0"""
"""Added in 25.3.1"""
purge_image(architecture: String = "x86_64", reference: String!): PurgeImage

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'purge_image' was added to object type 'Mutations'

Field 'purge_image' was added to object type 'Mutations'

"""Added in 24.03.1"""
Expand Down Expand Up @@ -2468,12 +2468,12 @@ type ForgetImage {
image: ImageNode
}

"""Added in 25.3.0."""
"""Added in 25.3.1."""
type PurgeImageById {

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'PurgeImageById' was added

Type 'PurgeImageById' was added
image: ImageNode
}

"""Added in 25.3.0."""
"""Added in 25.3.1."""
type PurgeImage {

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'PurgeImage' was added

Type 'PurgeImage' was added
image: ImageNode
}
Expand Down
4 changes: 2 additions & 2 deletions src/ai/backend/manager/models/gql.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ class Mutations(graphene.ObjectType):
modify_image = ModifyImage.Field()
forget_image_by_id = ForgetImageById.Field(description="Added in 24.03.0")
forget_image = ForgetImage.Field()
purge_image_by_id = PurgeImageById.Field(description="Added in 25.3.0")
purge_image = PurgeImage.Field(description="Added in 25.3.0")
purge_image_by_id = PurgeImageById.Field(description="Added in 25.3.1")
purge_image = PurgeImage.Field(description="Added in 25.3.1")
untag_image_from_registry = UntagImageFromRegistry.Field(description="Added in 24.03.1")
alias_image = AliasImage.Field()
dealias_image = DealiasImage.Field()
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 @@ -753,7 +753,7 @@ async def mutate(


class PurgeImage(graphene.Mutation):
"""Added in 25.3.0."""
"""Added in 25.3.1."""

allowed_roles = (
UserRole.SUPERADMIN,
Expand Down Expand Up @@ -800,7 +800,7 @@ async def mutate(


class PurgeImageById(graphene.Mutation):
"""Added in 25.3.0."""
"""Added in 25.3.1."""

allowed_roles = (
UserRole.SUPERADMIN,
Expand Down

0 comments on commit f75988e

Please sign in to comment.