[DOCS] Update Maven coordinates to Sedona 1.9.0 / geotools-wrapper 1.9.0-33.5#2860
Merged
jiayuasu merged 1 commit intoapache:masterfrom Apr 26, 2026
Merged
Conversation
…9.0-33.5
The maven-coordinates page renders {{ sedona.current_version }} and
{{ sedona.current_geotools }} from mkdocs.yml. Those keys were not bumped
when 1.9.0 shipped, so the published docs still showed 1.8.0 / 1.8.0-33.1.
jiayuasu
added a commit
that referenced
this pull request
Apr 26, 2026
jiayuasu
added a commit
to jiayuasu/sedona
that referenced
this pull request
May 2, 2026
…t Sedona to 1.9.0 Two related fixes that this PR series exposed: 1. .github/workflows/docker-build.yml only triggered on changes to docker/** or the workflow file itself. But the dockerfile bakes docs/usecases/*.ipynb / *.py / data into the image, so notebook-only PRs (apache#2879, apache#2889) silently bypassed the docker build + the test-notebooks.sh harness in CI. Adds 'docs/usecases/**' to the trigger paths so any change that affects what ships in the image also runs the build. 2. Drop the 'sedona: 1.8.0' matrix leg. The new notebooks (00, 01, 05) use 1.9-only APIs (ST_BingTileAt, clip_by_rect, GeoParquet 1.1 covering metadata). The 'latest' leg already covers what's current. The matrix legs build local images via `--load`, never push to a registry, so dropping 1.8.0 has no effect on published artifacts. 3. Bump dockerfile default ARGs sedona_version 1.8.0 -> 1.9.0 and geotools_wrapper_version 1.8.1-33.1 -> 1.9.0-33.5 so a plain `docker build -f docker/sedona-docker.dockerfile .` produces an image that runs the new notebooks. Matches the Maven coordinates already updated in the docs by apache#2860.
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
{{ sedona.current_version }}and{{ sedona.current_geotools }}frommkdocs.yml. These two keys were not bumped when 1.9.0 shipped, so the published page still shows1.8.0/1.8.0-33.1.sedona.current_versionto1.9.0andsedona.current_geotoolsto1.9.0-33.5so the page reflects the current release.Test plan
mkdocs serve) and confirm the Maven Coordinates page renders the correct versions.