chore(release): version packages - #134
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 15, 2026 20:26
25678e1 to
35a1bfa
Compare
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VDXfibTffZaZH8fHxCk6FB
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@office-kit/xlsx@0.11.1
Patch Changes
#132
6244117Thanks @baseballyama! - fix:loadWorkbookreturned numeric character references such as&[#20219](https://github.com/office-kit/xlsx/issues/20219);as literal text instead of decoding them (#131). Decimal and hexadecimal references are now decoded in text and attributes, including the inline and shared strings openpyxl writes. A reference to a character XML does not allow (for example�) now fails the load withOpenXmlSchemaErrorinstead of being kept as literal text.#133
dcbc31aThanks @kibertoad! - fix: types were silently lost onmoduleResolution: node16/nodenextRelative imports inside the shipped
.d.tsfiles had no file extension(
from './load'), which Node's ESM rules reject. Consumers onmoduleResolution: node16ornodenextgot TS2834 insidenode_modules,where the usual
skipLibCheck: truediscarded it, so every symbol importedfrom
@office-kit/xlsx/*degraded to an error type: no autocomplete, and notype errors reported against the library's API.
The declarations now carry
.jsextensions, so all ofnode16,nodenextandbundlerresolve the full type graph withskipLibCheck: false. No runtimebehaviour, export name or type signature changed.
moduleResolution: node10remains unsupported, since the subpaths are declaredonly through
exports.