Remove API Extractor minor-version restriction [skip chg] - #12043
Open
Jialin Huang (JialinHuang803) wants to merge 1 commit into
Open
Jialin Huang (JialinHuang803) wants to merge 1 commit into
Jialin Huang (JialinHuang803) wants to merge 1 commit into
Conversation
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Copilot started reviewing on behalf of
Jialin Huang (JialinHuang803)
September 24, 2026 08:56
View session
Contributor
There was a problem hiding this comment.
Copilot review overview
🟢 Approval recommended
No unresolved review issues remain, and the locked version is unchanged.
Review effort: Lite
Findings: None
What changed in this PR
Broadens the API Extractor catalog range while retaining the resolved version 7.58.13.
Changes:
- Changes the catalog range from
~7.58.1to^7.58.1. - Synchronizes the lockfile catalog specifier.
| File | Description |
|---|---|
pnpm-workspace.yaml |
Updates the API Extractor catalog range. |
pnpm-lock.yaml |
Synchronizes the catalog specifier without changing resolution. |
Files not reviewed (1)
- pnpm-lock.yaml: Generated file
💡 Configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
|
You can try these changes here
|
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Restore the
@microsoft/api-extractorcatalog range from~7.58.1to^7.58.1and synchronize the matching lockfile catalog specifier. The resolved version remains 7.58.13; every other lockfile entry is unchanged. No source, tests, or other dependencies change.Context
#11643 introduced the minor-version restriction. Azure/typespec-azure#5370 describes a downstream Spector harness dependency on private
ExtractorConfig._defaultConfig, removed in API Extractor 7.59.0. Azure/typespec-azure#5212 already replaced that access with publicExtractorConfig.loadFilevia a temporary JSON file, but retained the restriction.This is the upstream prerequisite for Azure/typespec-azure#5563: its Versions consistency check requires the Azure catalog to match the core submodule exactly. The downstream core pointer will be advanced separately after this PR merges. This PR does not close the Azure issue.
An upstream tracked-source search found no
_defaultConfigaccess. The programmatic API Extractor consumer inpackages/tspd/src/ref-doc/api-extractor.tsuses publicExtractorConfig.prepareandExtractor.invoke. No remaining pin-specific blocker was found in the repository, original PR discussion, or open API Extractor issues.Validation
pnpm run check-lockfile,pnpm lint, andgit diff --check.7.58.13.pnpm-workspace.yamlusing the repository formatting options, omitting unrelated plugins.pnpm-lock.yamlis excluded by.prettierignore.pnpm run check-catalogis blocked by an existing Windows path-separator issue: itspackages/typespec-vscode/package.jsonexception does not match the computed backslash path, so the existing explicit@types/vscodeversion is reported. No unrelated fix is included.pnpm formatis blocked by the unbuilt local TypeSpec Prettier plugin (packages/prettier-plugin-typespec/dist/index.js). Full builds and tests were not run for this range-only change.These checks do not validate API Extractor 7.59.0 or any newer resolved version.
[skip chg]uses the repository's supported changelog-check exemption for this development dependency range-only change.