Skip to content

Commit

Permalink
docs: Update milestone
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Jan 30, 2025
1 parent 9bb0375 commit b4f6797
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 @@ -1927,10 +1927,10 @@ type Mutations {
"""Added in 25.1.0."""
delete_endpoint_auto_scaling_rule_node(id: String!): DeleteEndpointAutoScalingRuleNode

"""Added in 25.1.0."""
"""Added in 25.2.0."""
associate_container_registry_with_group(group_id: String!, registry_id: String!): AssociateContainerRegistryWithGroup

"""Added in 25.1.0."""
"""Added in 25.2.0."""
disassociate_container_registry_with_group(group_id: String!, registry_id: String!): DisassociateContainerRegistryWithGroup

"""Deprecated since 24.09.0. use `CreateContainerRegistryNode` instead"""
Expand Down Expand Up @@ -2715,13 +2715,13 @@ type DeleteEndpointAutoScalingRuleNode {
msg: String
}

"""Added in 25.1.0."""
"""Added in 25.2.0."""
type AssociateContainerRegistryWithGroup {
ok: Boolean
msg: String
}

"""Added in 25.1.0."""
"""Added in 25.2.0."""
type DisassociateContainerRegistryWithGroup {
ok: Boolean
msg: String
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 @@ -356,10 +356,10 @@ class Mutations(graphene.ObjectType):
description="Added in 25.1.0."
)
associate_container_registry_with_group = AssociateContainerRegistryWithGroup.Field(
description="Added in 25.1.0."
description="Added in 25.2.0."
)
disassociate_container_registry_with_group = DisassociateContainerRegistryWithGroup.Field(
description="Added in 25.1.0."
description="Added in 25.2.0."
)

# Legacy mutations
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


class AssociateContainerRegistryWithGroup(graphene.Mutation):
"""Added in 25.1.0."""
"""Added in 25.2.0."""

allowed_roles = (UserRole.SUPERADMIN,)

Expand All @@ -45,7 +45,7 @@ async def mutate(


class DisassociateContainerRegistryWithGroup(graphene.Mutation):
"""Added in 25.1.0."""
"""Added in 25.2.0."""

allowed_roles = (UserRole.SUPERADMIN,)

Expand Down

0 comments on commit b4f6797

Please sign in to comment.