Skip to content

chore(deps): update geojson-pydantic requirement from >=2.0.0 to >=2.1.1#249

Open
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/geojson-pydantic-gte-2.1.1
Open

chore(deps): update geojson-pydantic requirement from >=2.0.0 to >=2.1.1#249
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/geojson-pydantic-gte-2.1.1

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

Updates the requirements on geojson-pydantic to permit the latest version.

Release notes

Sourced from geojson-pydantic's releases.

2.1.1

What's Changed

New Contributors

Full Changelog: developmentseed/geojson-pydantic@2.1.0...2.1.1

Changelog

Sourced from geojson-pydantic's changelog.

[2.1.1] - 2026-04-07

[2.1.0] - 2025-10-08

  • add .create() method to Geometry objects to create them without type key

    from geojson_pydantic import Point
    Point.create(coordinates=(0,0))
    >> Point(bbox=None, type='Point', coordinates=Position2D(longitude=0.0, latitude=0.0))

  • add python 3.14 support

[2.0.0] - 2025-05-05

  • remove custom __iter__, __getitem__ and __len__ methods from GeometryCollection class breaking change

    from geojson_pydantic.geometries import GeometryCollection, Point, MultiPoint
    geoms = GeometryCollection(
    type="GeometryCollection",
    geometries=[
    Point(type="Point", coordinates=(102.0, 0.5)),
    MultiPoint(type="MultiPoint", coordinates=[(100.0, 0.0), (101.0, 1.0)]),
    ],
    )
    ########
    Before
    for geom in geom:       # iter
    pass
    assert len(geoms) == 2  # len
    _ = geoms[0]            # getitem
    
    Now
    for geom in geom.iter():   # iter
    pass
    assert geoms.length == 2  # len
    _ = geoms.geometries[0]   # getitem

... (truncated)

Commits
  • 402ec8b Bump version: 2.1.0 → 2.1.1
  • 01ad63d update changelog
  • 0829967 update dependabot config
  • 742975e Merge pull request #185 from developmentseed/chore/switch-to-uv
  • 9642f63 chore: switch to uv
  • 73ed7d3 Merge pull request #184 from psobolewskiPhD/clear_ring_warning
  • 15627a8 style: run pre-commit
  • 4e063d6 fix codecov action
  • 7841dde Merge pull request #182 from developmentseed/dependabot/github_actions/action...
  • 8338493 Merge pull request #181 from developmentseed/dependabot/github_actions/codeco...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [geojson-pydantic](https://github.com/developmentseed/geojson-pydantic) to permit the latest version.
- [Release notes](https://github.com/developmentseed/geojson-pydantic/releases)
- [Changelog](https://github.com/developmentseed/geojson-pydantic/blob/main/CHANGELOG.md)
- [Commits](developmentseed/geojson-pydantic@2.0.0...2.1.1)

---
updated-dependencies:
- dependency-name: geojson-pydantic
  dependency-version: 2.1.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Apr 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants