Skip to content

Commit

Permalink
misc: 25.03.1 -> 25.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Feb 21, 2025
1 parent 7b5e4b4 commit 997c040
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/manager/graphql-reference/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1906,8 +1906,8 @@ type Mutations {
"""Added in 24.03.0"""
forget_image_by_id(image_id: String!): ForgetImageById

"""Deprecated since 25.03.1. Use `forget_image_by_id` instead."""
forget_image(architecture: String = "x86_64", reference: String!): ForgetImage @deprecated(reason: "Deprecated since 25.03.1. Use `forget_image_by_id` instead.")
"""Deprecated since 25.3.1. Use `forget_image_by_id` instead."""
forget_image(architecture: String = "x86_64", reference: String!): ForgetImage @deprecated(reason: "Deprecated since 25.3.1. Use `forget_image_by_id` instead.")

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'Mutations.forget_image' has description 'Deprecated since 25.3.1. Use `forget_image_by_id` instead.'

Field 'Mutations.forget_image' has description 'Deprecated since 25.3.1. Use `forget_image_by_id` instead.'

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'Mutations.forget_image' is deprecated

Field 'Mutations.forget_image' is deprecated

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'Mutations.forget_image' has deprecation reason 'Deprecated since 25.3.1. Use `forget_image_by_id` instead.'

Field 'Mutations.forget_image' has deprecation reason 'Deprecated since 25.3.1. Use `forget_image_by_id` instead.'

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

Check notice on line 1913 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'
Expand Down Expand Up @@ -2459,7 +2459,7 @@ type ForgetImageById {
image: ImageNode
}

"""Deprecated since 25.03.1. Use `forget_image_by_id` instead."""
"""Deprecated since 25.3.1. Use `forget_image_by_id` instead."""
type ForgetImage {

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Object type 'ForgetImage' has description 'Deprecated since 25.3.1. Use `forget_image_by_id` instead.'

Object type 'ForgetImage' has description 'Deprecated since 25.3.1. Use `forget_image_by_id` instead.'
ok: Boolean
msg: String
Expand Down
2 changes: 1 addition & 1 deletion src/ai/backend/manager/models/gql.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ class Mutations(graphene.ObjectType):
modify_image = ModifyImage.Field()
forget_image_by_id = ForgetImageById.Field(description="Added in 24.03.0")
forget_image = ForgetImage.Field(
deprecation_reason="Deprecated since 25.03.1. Use `forget_image_by_id` instead."
deprecation_reason="Deprecated since 25.3.1. Use `forget_image_by_id` instead."
)
purge_image_by_id = PurgeImageById.Field(description="Added in 25.3.1")
untag_image_from_registry = UntagImageFromRegistry.Field(description="Added in 24.03.1")
Expand Down
2 changes: 1 addition & 1 deletion src/ai/backend/manager/models/gql_models/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ async def mutate(

class ForgetImage(graphene.Mutation):
"""
Deprecated since 25.03.1. Use `forget_image_by_id` instead.
Deprecated since 25.3.1. Use `forget_image_by_id` instead.
"""

allowed_roles = (
Expand Down

0 comments on commit 997c040

Please sign in to comment.