Skip to content

Bump h2gis from 1.5.0 to 2.0.0#74

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/maven/org.orbisgis-h2gis-2.0.0
Closed

Bump h2gis from 1.5.0 to 2.0.0#74
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/maven/org.orbisgis-h2gis-2.0.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Jan 27, 2022

Bumps h2gis from 1.5.0 to 2.0.0.

Release notes

Sourced from h2gis's releases.

v2.0.0

This release introduces several major changes in H2GIS synchronized with the new H2 2.X series. Besides many dozens of fixed bugs, performance improvements, more adherence to a standard SQL syntax and new data type (e.g JSON), the H2GIS geometry encoding and syntax declaration is now aligned with the PostGIS one.

The geometry encoding to store the value in H2 is the EWKB (extended well-known binary) format. The EWKB format is not an OGC standard, but a PostGIS specific format that includes the spatial reference system (SRID) identifier. Its textual representation using the WKT (well-known text) uses the pattern :

'SRID=4326;POINT(0 0)'

H2 supports POINT, LINESTRING, POLYGON, MULTIPOINT, MULTILINESTRING, MULTIPOLYGON, and GEOMETRYCOLLECTION geometries with the following coordinate dimension 2D (XY), Z (XYZ), M (XYM), and ZM (XYZM).

H2 provides the same syntax as PostGIS to build a table with a geometry data type.

e.g
CREATE TABLE mygeometrytable (ID INTEGER, GEOM GEOMETRY);
CREATE TABLE mygeometrytable (ID INTEGER, GEOM GEOMETRY(POINT));
CREATE TABLE mygeometrytable (ID INTEGER, GEOM GEOMETRY(POINT, 4326));
CREATE TABLE mygeometrytable (ID INTEGER, GEOM GEOMETRY(POINTZ, 4326));
CREATE TABLE mygeometrytable (ID INTEGER, GEOM GEOMETRY(POINTZM, 4326));
CREATE TABLE mygeometrytable (ID INTEGER, GEOM GEOMETRY(POINTM, 4326));

Note that

  • all databases created by H2 1.4.200 and older versions won't be compatible.
  • H2GIS needs at least JAVA 11

Please check the H2 change log since 2.X series here https://github.com/h2database/h2database/releases

Changelog for v2.0.0

  • Add changelog, contributing, header markdown files.
  • Fix SHPRead function to support null value (#1132)
  • Remove encoding argument on GeoJSONWrite / GeoJSONRead (#1130)
  • Improve TSVRead function (#1129)
  • AscRead and GeoJson read functions supports gz file (#1122 #1127)
  • Improve FileDriver (Shp and Dbf) to limit the number of columns (#1008)
  • Align create table geometry with PostGIS (#921)
  • Add ST_SVF function (#885)
  • Add ST_Point function (#848)
  • Add support to create index on a linked file (shp or dbf file) (#720)
  • Upgrade Java to 11
  • Upgrade H2 to 2.0.202
  • Upgrade to JTS 1.18.2
  • Add new function ST_VariableBuffer
  • Add new function ST_SubDivide (#1152)
  • Update H2 from 2.0.202 to 2.0.204

... (truncated)

Changelog

Sourced from h2gis's changelog.

Changelog for v2.0.0

  • Add changelog, contributing, header markdown files.
  • Upgrade Java to 11
  • Upgrade H2 to 2.0.202
  • Upgrade to JTS 1.18.2
  • Add new function ST_VariableBuffer
  • Add new function ST_SubDivide
  • Update H2 from 2.0.202 to 2.0.204
  • Added a workaround due to the new column type name returned for geometry data type eg GEOMETRY(POINT) instead of only GEOMETRY
  • Update H2 from 2.0.204 to 2.0.206
  • Add a new module to run sql script tests (disable by default)
  • Update ST_Force3D, ST_Force4D and ST_Force3DM to be inline with PostGIS
  • Update ST_UpdateZ to force the dimension when the z value is updated.
  • Upate H2 from 2.0.206 to 2.1.210 to fix a memory issue and improve Geometry dimension check (#1233 and #1243)
  • Fix ST_MenSize to avoid expensive conversion (#1247)
  • Add method to create a datasource object
  • Update the dependencies Poly2Tri and java-network-analyzer
  • Restore transaction with batch setAutoCommit to false
Commits

Dependabot compatibility score

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Bumps [h2gis](https://github.com/orbisgis/H2GIS) from 1.5.0 to 2.0.0.
- [Release notes](https://github.com/orbisgis/H2GIS/releases)
- [Changelog](https://github.com/orbisgis/h2gis/blob/v2.0.0/docs/CHANGELOG.md)
- [Commits](orbisgis/h2gis@v1.5.0...v2.0.0)

---
updated-dependencies:
- dependency-name: org.orbisgis:h2gis
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 27, 2022
@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Jul 12, 2022

Superseded by #139.

@dependabot dependabot bot closed this Jul 12, 2022
@dependabot dependabot bot deleted the dependabot/maven/org.orbisgis-h2gis-2.0.0 branch July 12, 2022 01:43
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants