Skip to content

Commit

Permalink
Merge release into main branch (#472)
Browse files Browse the repository at this point in the history
Co-authored-by: vdelacruzb <[email protected]>
  • Loading branch information
github-actions[bot] and vdelacruzb authored Jan 19, 2024
1 parent 793c888 commit 4532b13
Show file tree
Hide file tree
Showing 18 changed files with 61 additions and 13 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ CARTO Analytics Toolbox Core.

All notable commits to this project will be documented in this file.

## 2024-01-17

- chore(bq): increase tests timeout to 200000 (#455)
- feat(bq,sf,rs,pg|quadbin): add function QUADBIN_DISTANCE (#457)
- fix(bq|h3): fix broken reference in H3_POLYFILL_TABLE (#458, #460)
- chore(bq,sf,rs,pg): fix naming dedicated deployments for releases (#462)
- fix(sf|quadbin): QUADBIN_FROMLONGLAT not clamping latitudes and return some quadbin functions return NULL when NULL parameters (#456)
- fix(rs|constructors,transformations): adjust SRID and use native ST_GEOMFROMGEOJSON to return geometries instead of VARCHAR (#463)
- chore(pg): fix typo naming dedicated deployments for releases (#464)
- chore(bq,sf,rs,pg): make remove drop functions instead of whole schema (#466)
- fix(bq,sf,rs,pg|quadbin): improve precision of long lat conversion near the latitude limits (#461)
- feat(bq,sf|transformations): add function ST_POINTONSURFACE (#469, #470)

## 2023-08-04

- chore(bq|quadbin,h3): optimize quadbin/h3 polyfill performance (#421)
Expand Down
10 changes: 10 additions & 0 deletions clouds/bigquery/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ CARTO Analytics Toolbox Core for BigQuery.

All notable commits to this project will be documented in this file.

## [1.2.0] - 2024-01-17

- chore: increase tests timeout to 200000 (#455)
- feat(quadbin): add function QUADBIN_DISTANCE (#457)
- fix(h3): fix broken reference in H3_POLYFILL_TABLE (#458, #460)
- chore: fix naming dedicated deployments for releases (#462)
- chore: make remove drop functions instead of whole schema (#466)
- fix(quadbin): improve precision of long lat conversion near the latitude limits (#461)
- feat(transformations): add function ST_POINTONSURFACE (#469)

## [1.1.0] - 2023-08-04

- chore(quadbin,h3): optimize quadbin/h3 polyfill performance (#421)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ export default {
pointOnFeature,
multiPoint,
point
};
};
2 changes: 1 addition & 1 deletion clouds/bigquery/modules/doc/quadbin/QUADBIN_DISTANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Returns the [Chebyshev distance](https://en.wikipedia.org/wiki/Chebyshev_distanc

**Return type**

`GEOGRAPHY`
`INT64`

**Example**

Expand Down
2 changes: 1 addition & 1 deletion clouds/bigquery/modules/sql/quadbin/QUADBIN_POLYFILL.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ AS ((
__params AS (
SELECT
box.xmin AS minlon,
GREATEST(-89, LEAST(89, box.ymin)) AS minlat,
box.xmax AS maxlon,
GREATEST(-89, LEAST(89, box.ymin)) AS minlat,
GREATEST(-89, LEAST(89, box.ymax)) AS maxlat,
(1 << resolution) AS z2,
ACOS(-1) AS pi
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion clouds/bigquery/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0
8 changes: 8 additions & 0 deletions clouds/postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ CARTO Analytics Toolbox Core for Postgres.

All notable commits to this project will be documented in this file.

## [1.3.0] - 2024-01-17

- feat(quadbin): add function QUADBIN_DISTANCE (#457)
- chore: fix naming dedicated deployments for releases (#462)
- chore: fix typo naming dedicated deployments for releases (#464)
- chore: make remove drop functions instead of whole schema (#466)
- fix(quadbin): improve precision of long lat conversion near the latitude limits (#461)

## [1.2.0] - 2023-08-04

- chore(quadbin,h3): optimize quadbin/h3 polyfill performance (#418)
Expand Down
2 changes: 1 addition & 1 deletion clouds/postgres/modules/doc/quadbin/QUADBIN_DISTANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Returns the [Chebyshev distance](https://en.wikipedia.org/wiki/Chebyshev_distanc

**Return type**

`GEOGRAPHY`
`BIGINT`

**Example**

Expand Down
2 changes: 1 addition & 1 deletion clouds/postgres/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0
1.3.0
8 changes: 8 additions & 0 deletions clouds/redshift/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ CARTO Analytics Toolbox Core for Redshift.

All notable commits to this project will be documented in this file.

## [1.1.0] - 2024-01-17

- feat(quadbin): add function QUADBIN_DISTANCE (#457)
- chore: fix naming dedicated deployments for releases (#462)
- fix(constructors,transformations): adjust SRID and use native ST_GEOMFROMGEOJSON to return geometries instead of VARCHAR (#463)
- chore: make remove drop functions instead of whole schema (#466)
- fix(quadbin): improve precision of long lat conversion near the latitude limits (#461)

## [1.0.2] - 2023-07-11

- chore(quadbin): update QUADBIN_FROMLONGLAT formula (#409, #411)
Expand Down
2 changes: 1 addition & 1 deletion clouds/redshift/modules/doc/quadbin/QUADBIN_DISTANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Returns the [Chebyshev distance](https://en.wikipedia.org/wiki/Chebyshev_distanc

**Return type**

`GEOGRAPHY`
`BIGINT`

**Example**

Expand Down
2 changes: 1 addition & 1 deletion clouds/redshift/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2
1.1.0
9 changes: 9 additions & 0 deletions clouds/snowflake/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ CARTO Analytics Toolbox Core for Snowflake.

All notable commits to this project will be documented in this file.

## [1.2.0] - 2024-01-17

- feat(quadbin): add function QUADBIN_DISTANCE (#457)
- chore: fix naming dedicated deployments for releases (#462)
- fix(quadbin): QUADBIN_FROMLONGLAT not clamping latitudes and return some quadbin functions return NULL when NULL parameters (#456)
- chore: make remove drop functions instead of whole schema (#466)
- fix(quadbin): improve precision of long lat conversion near the latitude limits (#461)
- feat(transformations): add function ST_POINTONSURFACE (#470)

## [1.1.0] - 2023-05-05

- feat(h3): add H3_CENTER function (#395)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ export default {
centerMedian,
centerOfMass,
pointOnSurface
};
};
2 changes: 1 addition & 1 deletion clouds/snowflake/modules/doc/quadbin/QUADBIN_DISTANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Returns the [Chebyshev distance](https://en.wikipedia.org/wiki/Chebyshev_distanc

**Return type**

`GEOGRAPHY`
`BIGINT`

**Example**

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion clouds/snowflake/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0

0 comments on commit 4532b13

Please sign in to comment.