Skip to content

Commit

Permalink
docs: Add news fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Feb 10, 2025
1 parent 93a238a commit 574e5d7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions changes/3628.feat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update `ForgetImageById` to perform soft delete and added `PurgeImageById` API for hard delete.
19 changes: 19 additions & 0 deletions docs/manager/graphql-reference/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1829,6 +1829,12 @@ type Mutations {
forget_image_by_id(image_id: String!): ForgetImageById
forget_image(architecture: String = "x86_64", reference: String!): ForgetImage

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

Check notice on line 1833 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"""
purge_image(architecture: String = "x86_64", reference: String!): PurgeImage

Check notice on line 1836 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"""
untag_image_from_registry(image_id: String!): UntagImageFromRegistry
alias_image(alias: String!, architecture: String = "x86_64", target: String!): AliasImage
Expand Down Expand Up @@ -2354,6 +2360,19 @@ type ForgetImage {
image: ImageNode
}

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

Check notice on line 2364 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
ok: Boolean
msg: String
image: ImageNode
}

type PurgeImage {

Check failure on line 2370 in docs/manager/graphql-reference/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New types must include a description with a version number in the format "Added in XX.XX.X." or "Added in XX.X.X.", Type 'PurgeImage' was added

New types must include a description with a version number in the format "Added in XX.XX.X." or "Added in XX.X.X."
ok: Boolean
msg: String
image: ImageNode
}

"""Added in 24.03.1"""
type UntagImageFromRegistry {
ok: Boolean
Expand Down

0 comments on commit 574e5d7

Please sign in to comment.