Version packages - #151
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 12, 2026 12:48
e666af3 to
85ddc4b
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 12, 2026 12:55
85ddc4b to
9de00b7
Compare
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 publish to npm yourself or setup this action to publish 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
@spatialdata/core@0.8.0
Minor Changes
#152
223e066Thanks @xinaesthete! - Report a failed feature-index scan instead of going quiet.getMatchingLoadStatereturnedundefinedfor a failedmatchingslot — exactlywhat it returns for "no scan has ever run" — and nothing else exposed the error. So
a scan that failed looked identical to one that had not started, while the render
path carried on filtering the resident batch. The panel showed whichever part of the
selection happened to be inside the memory cap and presented it as the complete
answer.
PointsMatchingLoadStategainsfailedanderror, reported for the selection thefailed scan would have covered (and only that one — a stale failure for a selection
the user has since changed is not attributed to the new one, and a retained good
batch no longer masks it).
usePointsFeatureStategainsretryFailedLoads, and thebuilt-in feature filter panel now says the load failed, says the canvas is showing
only what was already in memory, and offers Retry when the error is retryable.
Patch Changes
#150
dadcbf8Thanks @xinaesthete! - Emit theworkersandpoints-workerentries as ES modules.The lib
fileNamenamed onlyindexper format; every other entry got${entryName}.jsfrom BOTH the es and cjs passes, so the cjs output silentlyoverwrote the es one.
dist/workers.jsanddist/points-worker.jsthereforeshipped as CommonJS under a
.jsextension inside a"type": "module"package —files nothing can load.
enablePointsWorkerconstructs the worker withnew Worker(url, { type: 'module' }),so loading the published
points-worker.jsfailed withReferenceError: require is not definedand the worker never answered. That made the points worker impossibleto start outside this repo, and with it the feature-index scan: a points selection
whose rows fall beyond the memory cap could not be fetched at all, because
loadPointsMatchingFeatureCodesthrows rather than falling back to the main thread.The demo did not catch it because it imports the worker's TypeScript source by
relative path.
Every entry now names its format, and
./workersgains explicitimport/requireconditions. A packaging test asserts each
exportstarget really is in the modulesystem its extension and the package
typeimply.@spatialdata/vis@0.8.0
Minor Changes
#146
9cd27ccThanks @xinaesthete! - Export the feature-row classification alongside the points feature state.usePointsFeatureStatereturns raw engine signals —residentCodes,loadedMatchingCodes,matchingLoadState,supportsOnDemandLoad— anddescribeFeatureRowStateis what turns them into a row's rendered state: whetherit is dimmed, a short label, and a sentence explaining why. Only the former was
reachable from the package entry, so an embedder building its own feature list had
the data but not the reading of it, and had to re-derive a precedence order
(resident/rendered beat selection and scan state) that is easy to get subtly wrong
— the failure mode being a panel that greys a feature the canvas is drawing.
Adds
describeFeatureRowStateandfeatureRowOpacity, plus the typesFeatureRowState,FeatureRowStateInputandFeatureRowTone. No behaviourchange; these already backed the built-in
PointsFeatureFilterPanel.#152
223e066Thanks @xinaesthete! - Report a failed feature-index scan instead of going quiet.getMatchingLoadStatereturnedundefinedfor a failedmatchingslot — exactlywhat it returns for "no scan has ever run" — and nothing else exposed the error. So
a scan that failed looked identical to one that had not started, while the render
path carried on filtering the resident batch. The panel showed whichever part of the
selection happened to be inside the memory cap and presented it as the complete
answer.
PointsMatchingLoadStategainsfailedanderror, reported for the selection thefailed scan would have covered (and only that one — a stale failure for a selection
the user has since changed is not attributed to the new one, and a retained good
batch no longer masks it).
usePointsFeatureStategainsretryFailedLoads, and thebuilt-in feature filter panel now says the load failed, says the canvas is showing
only what was already in memory, and offers Retry when the error is retryable.
Patch Changes
dadcbf8,223e066]:@spatialdata/layers@0.8.0
Patch Changes
dadcbf8,223e066]:@spatialdata/react@0.8.0
Patch Changes
dadcbf8,223e066]:@spatialdata/avivatorish@0.8.0