Patch Changes
-
af70c87: Add a
deleted_classes: ["UserDetails"]Durable Object migration to the graphql server.#384 removed the
UserDetailsDurable Object (and its bindings) from every server, and added the
required delete-class migration to the two servers that own the class (workers-observability,
workers-builds). The graphql worker's already-deployed version still depends onUserDetails, so
wrangler deployrejected the new version withcode: 10064("New version of script does not export
class 'UserDetails' which is depended on by existing Durable Objects"), which aborted the staging and
production deploys. Adding the delete-class migration lets graphql deploy and releases the binding that
was blockingworkers-observabilityfrom applying its owndeleted_classesmigration (code: 10061).Validated on staging: graphql + observability deploy cleanly and the staging
UserDetailsnamespace is
removed.