Skip to content

Remove the legacy extension identifier-matching code#8049

Draft
isaacroldan wants to merge 1 commit into
deploy-split/05-active-app-version-classificationfrom
deploy-split/06-remove-legacy-matching
Draft

Remove the legacy extension identifier-matching code#8049
isaacroldan wants to merge 1 commit into
deploy-split/05-active-app-version-classificationfrom
deploy-split/06-remove-legacy-matching

Conversation

@isaacroldan

Copy link
Copy Markdown
Contributor

WHY are these changes introduced?

Fixes #0000

WHAT is this pull request doing?

How to test your changes?

Post-release steps

Checklist

  • I've considered possible cross-platform impacts (Mac, Linux, Windows)
  • I've considered possible documentation changes
  • I've considered analytics changes to measure impact
  • The change is user-facing — I've identified the correct bump type (patch for bug fixes · minor for new features · major for breaking changes) and added a changeset with pnpm changeset add

Deletes the now-unused Partners-era matching subsystem (id-matching,
id-manual-matching, identifiers-extensions, ensureDeploymentIdsPresence, the
match/select prompts, and the deploy-path breakdown helpers) now that deploy
classifies against the active app version. Relocates the still-needed
`LocalRemoteSource`/`getExtensionIds` into migrate-app-module, reshapes
`updateAppIdentifiers` to take an app API key and a flat UUID map, drops the
dead `Identifiers` types and the unused `rewriteConfiguration` helper.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Copy link
Copy Markdown
Contributor Author

@github-actions

github-actions Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Differences in type declarations

We detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:

  • Some seemingly private modules might be re-exported through public modules.
  • If the branch is behind main you might see odd diffs, rebase main into this branch.

New type declarations

We found no new type declarations in this PR

Existing type declarations

packages/cli-kit/dist/public/common/object.d.ts
@@ -38,6 +38,14 @@ export declare function mapValues<T extends object, TResult>(source: T | null |
  * @returns True if the objects are equal, false otherwise.
  */
 export declare function deepCompare(one: object, two: object): boolean;
+/**
+ * Deeply compares two values and treats arrays as order-insensitive.
+ *
+ * @param one - The first value to be compared.
+ * @param two - The second value to be compared.
+ * @returns True if the normalized values are equal, false otherwise.
+ */
+export declare function deepCompareWithOrderInsensitiveArrays(one: unknown, two: unknown): boolean;
 /**
  * Return the difference between two nested objects.
  *

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

no-changelog This PR doesn't include a changeset entry. Is an internal only change not relevant to end users.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant