Skip to content

Commit

Permalink
fix: Update milestone
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Jan 8, 2025
1 parent 135da68 commit 978b571
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/ai/backend/manager/api/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1849,10 +1849,10 @@ type Mutations {
id: String!
): DeleteContainerRegistryNode

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

"""Added in 25.01.0."""
"""Added in 25.1.0."""
disassociate_container_registry_with_group(group_id: String!, registry_id: String!): DisassociateContainerRegistryWithGroup
create_container_registry(hostname: String!, props: CreateContainerRegistryInput!): CreateContainerRegistry
modify_container_registry(hostname: String!, props: ModifyContainerRegistryInput!): ModifyContainerRegistry
Expand Down Expand Up @@ -2587,13 +2587,13 @@ type DeleteContainerRegistryNode {
container_registry: ContainerRegistryNode
}

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

"""Added in 25.01.0."""
"""Added in 25.1.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 @@ -340,10 +340,10 @@ class Mutations(graphene.ObjectType):
)

associate_container_registry_with_group = AssociateContainerRegistryWithGroup.Field(
description="Added in 25.01.0."
description="Added in 25.1.0."
)
disassociate_container_registry_with_group = DisassociateContainerRegistryWithGroup.Field(
description="Added in 25.01.0."
description="Added in 25.1.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.01.0."""
"""Added in 25.1.0."""

allowed_roles = (UserRole.SUPERADMIN,)

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


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

allowed_roles = (UserRole.SUPERADMIN,)

Expand Down

0 comments on commit 978b571

Please sign in to comment.