4 February 2026
Composable Commerce
HTTP API
Resolved issue
CartsProject configurationLimitsGraphQL
We have fixed a bug in the setDeleteDaysAfterLastModification Shopping List update action that allowed deleteDaysAfterLastModification to be removed. The update action now behaves the same as the setDeleteDaysAfterLastModification Cart update action. If the update action does not specify deleteDaysAfterLastModification, the Shopping List uses the value from the project configuration.

Changes:

  • [API] Changed the CartsConfiguration field deleteDaysAfterLastModification to be non-optional
  • [API] Changed the ShoppingListsConfiguration field deleteDaysAfterLastModification to be non-optional
  • [GraphQL API] ShoppingListsConfiguration.deleteDaysAfterLastModification field type changed from Int to Int!
  • [GraphQL API] CartsConfiguration.deleteDaysAfterLastModification field type changed from Int to Int!

The following changes were introduced in terms of GraphQL SDL:

extend type ShoppingListsConfiguration {
  deleteDaysAfterLastModification: Int!
}

extend type CartsConfiguration {
  deleteDaysAfterLastModification: Int!
}