Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 3.4.3 #4

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Build extension package
run: |
make -j8 PYTHON=$EDBDIR/python3 EDBFLAGS=--no-devmode PG_CONFIG=/usr/bin/pg_config
unzip -l postgis--3.4.2.zip
unzip -l postgis--3.4.3.zip

- name: Install extension package
run: |
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name = "postgis"
version = "3.4.2"
version = "3.4.3"
files = ["postgis.edgeql"]
postgres_files = "pg"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ from inside an edgedb development venv.

To build, install, and test into a dev env:
- ``make``
- ``edb load-ext postgis--3.4.2.zip``
- ``edb load-ext postgis--3.4.3.zip``
- ``edb test tests/test_edgeql_postgis.py``
2 changes: 1 addition & 1 deletion postgis
Submodule postgis updated 77 files
+1 −0 .github/workflows/ci.yml
+3 −1 .gitlab-ci.yml
+7 −7 .woodpecker/docs-localized.yml.in
+146 −304 .woodpecker/docs.yml
+11 −9 .woodpecker/regress.yml
+2 −0 .woodpecker/tools.yml
+18 −4 .woodpecker/update-docs-localized.sh
+1 −1 HOWTO_RELEASE
+36 −2 NEWS
+3 −3 README.postgis
+1 −1 Version.config
+6 −6 ci/winnie/winnie_common.sh
+4 −1 deps/flatgeobuf/Makefile.in
+1 −0 doc/introduction.xml
+1 −1 doc/reference_accessor.xml
+1 −0 doc/reference_processing.xml
+1 −1 doc/reference_srs.xml
+27 −0 doc/release_notes.xml
+2 −0 extensions/address_standardizer/Makefile.in
+2 −1 extensions/address_standardizer/expected/test-debug_standardize_address.out
+6 −0 extensions/address_standardizer/expected/test-standardize_address_1.out
+2 −2 extensions/address_standardizer/pagc_std_api.h
+2 −1 extensions/address_standardizer/test-debug_standardize_address.sql.in
+1 −0 extensions/address_standardizer/test-standardize_address_1.sql.in
+2 −1 extensions/address_standardizer/us_lex.sql
+3 −0 extensions/postgis/Makefile.in
+2 −0 extensions/postgis_raster/Makefile.in
+2 −0 extensions/postgis_sfcgal/Makefile.in
+2 −0 extensions/postgis_tiger_geocoder/Makefile.in
+2 −0 extensions/postgis_topology/Makefile.in
+3 −1 extensions/upgrade-paths-rules.mk
+7 −1 extensions/upgradeable_versions.mk
+15 −0 liblwgeom/cunit/cu_algorithm.c
+7 −5 liblwgeom/cunit/cu_geodetic.c
+5 −0 liblwgeom/cunit/cu_misc.c
+5 −0 liblwgeom/cunit/cu_print.c
+12 −0 liblwgeom/cunit/cu_split.c
+50 −11 liblwgeom/cunit/cu_tree.c
+1 −1 liblwgeom/gserialized2.c
+10 −1 liblwgeom/liblwgeom_internal.h
+147 −146 liblwgeom/lwgeodetic.c
+1 −1 liblwgeom/lwgeodetic.h
+18 −18 liblwgeom/lwgeodetic_tree.c
+5 −5 liblwgeom/lwgeom_geos_split.c
+42 −11 liblwgeom/lwgeom_topo.c
+7 −1 liblwgeom/lwprint.c
+7 −0 liblwgeom/measures3d.c
+5 −1 liblwgeom/ptarray.c
+44 −15 libpgcommon/lwgeom_pg.c
+1 −0 loader/shp2pgsql-core.c
+1 −4 postgis/geography_measurement.c
+44 −8 postgis/gserialized_estimate.c
+11 −4 postgis/lwgeom_geos.c
+1 −1 postgis/lwgeom_ogc.c
+2 −0 postgis/lwgeom_spheroid.c
+8 −1 postgis/postgis.sql.in
+1 −1 raster/rt_pg/rtpg_pixel.c
+5 −4 regress/core/geography_centroid.sql
+10 −10 regress/core/geography_centroid_expected
+1 −1 regress/core/geography_expected
+0 −4 regress/core/relate.sql
+0 −4 regress/core/relate_expected
+7 −1 regress/core/tests.mk.in
+1 −3 sfcgal/sfcgal.sql.in
+132 −74 topology/sql/manage/ValidateTopology.sql.in
+38 −0 topology/test/regress/populate_topology_layer.sql
+12 −0 topology/test/regress/populate_topology_layer_expected
+36 −0 topology/test/regress/st_changeedgegeom.sql
+1 −0 topology/test/regress/st_changeedgegeom_expected
+7 −0 topology/test/regress/topogeo_addpoint.sql
+2 −0 topology/test/regress/topogeo_addpoint_expected
+14 −0 topology/test/regress/validatetopology.sql
+6 −0 topology/test/regress/validatetopology_expected
+2 −0 topology/test/tests.mk
+1 −1 topology/topology.sql.in
+7 −2 utils/check_all_upgrades.sh
+18 −12 utils/check_tests_enabled.sh
6 changes: 3 additions & 3 deletions postgis.edgeql
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
#


create extension package postgis version '3.4.2' {
create extension package postgis version '3.4.3' {
set ext_module := "ext::postgis";
set sql_extensions := ["postgis >=3.4.2,<4.0.0"];
set sql_extensions := ["postgis >=3.4.0,<4.0.0"];

set sql_setup_script := $$
-- Make it possible to have `!=`, `?!=`, and `not in` for geometry
Expand Down Expand Up @@ -3739,4 +3739,4 @@ create extension package postgis version '3.4.2' {
using sql function 'st_coverageunion';
};

};
};
2 changes: 1 addition & 1 deletion scripts/gen_ext_postgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def parse_postgis_extension(
for fpath in root.glob('postgis*.sql'):
name = fpath.name
# We might scan more postgis extension files
if name in {'postgis--3.4.2.sql'}:
if name in {'postgis--3.4.3.sql'}:
with open(fpath, mode='rt') as f:
sql_query = ''.join(
line for line in f.readlines()
Expand Down
6 changes: 3 additions & 3 deletions scripts/postgis.template.edgeql
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
#


create extension package postgis version '3.4.2' {
create extension package postgis version '3.4.3' {
set ext_module := "ext::postgis";
set sql_extensions := ["postgis >=3.4.2,<4.0.0"];
set sql_extensions := ["postgis >=3.4.3,<4.0.0"];

set sql_setup_script := $$
-- Make it possible to have `!=`, `?!=`, and `not in` for geometry
Expand Down Expand Up @@ -295,4 +295,4 @@ create extension package postgis version '3.4.2' {
### REFLECT: FUNCTIONS

### REFLECT: AGGREGATES
};
};
2 changes: 1 addition & 1 deletion tests/test_edgeql_postgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def get_setup_script(cls):
with open(os.path.join(root, 'edb/lib/ext/postgis.edgeql')) as f:
contents = f.read()
to_add = '''
drop extension package postgis version '3.4.2';
drop extension package postgis version '3.4.3';
''' + contents
splice = '__internal_testmode := true;'
res = res.replace(splice, splice + to_add)
Expand Down
Loading