# Release Notes

## March 27th, 2026 (v1.13.0)

**Architecture**

Fix

* Improved package installer to properly handle function drops and support port and SSL configuration options.

**Module lds**

Fix

* Updated [CREATE\_H3\_ISOLINES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_h3_isolines) procedure to fix edge cases that didn't allow preview in workflows.
* Migrated [CREATE\_H3\_ISOLINES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_h3_isolines) implementation to not use Python UDFs, in line with the ongoing deprecation.
* Improved error logging when routes and responses exceed size limits.

## December 31st, 2025 (v1.12.0)

**Architecture**

New

* Due to the upcoming deprecation of Python UDFs [announced](https://aws.amazon.com/blogs/big-data/amazon-redshift-python-user-defined-functions-will-reach-end-of-support-after-june-30-2026/) by Redshift, all the functions that made use of Python code have been updated in order to use AWS lambdas. The[ installation process](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/getting-access) has been updated accordingly to also install these lambda functions.

**Module lds**

New

* Add [H3\_ISOLINE](https://docs.carto.com/data-and-analysis/sql-reference/lds#h3_isoline) function and [CREATE\_H3\_ISOLINES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_h3_isolines) procedure in order to calculate H3 isochrones from a given point by using [Traveltime](https://docs.traveltime.com/api/reference/h3) services.

## August 25th, 2025 (v1.11.2)

**Module tiler**

New

* Added option `max_categories_limit` that controls the maximum number of categories from string columns included in metadata for every tiler procedure.

**Module data**

Fix

* Enrichment procedures now use `ST_ASBINARY` for geometry comparison in replacement of `ST_EQUALS` which was creating more rows than there were contained in the input data.

## July 8th, 2025 (v1.11.1)

**Module lds**

New

* Add a debug parameter to all the procedures in order to improve debugging capabilities.

## May 14th, 2025 (v1.11.0)

**Module lds**

New

* Added [CREATE\_ROUTING\_MATRIX](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_routing_matrix) which computes route data between a set of origin and destination points and generates a table adding the distance and time of each pair of values.

## May 6th, 2025 (v1.10.0)

**Module lds**

Fix

* Added a fix to have better handling of null values in all procedures

**Module clustering**

Fix

* Added a fix to prevent the [ST\_CLUSTERKMEANS](https://docs.carto.com/data-and-analysis/sql-reference/clustering#st_clusterkmeans) procedure from throwing an error when encountering null values in Geography columns

## December 19th, 2024 (v1.9.0)

**Module lds**

Improvement

* Added a verification of AT Gateway parameters during the `SETUP` process to ensure availability of resources.

## November 27th, 2024 (v1.8.1)

**Module lds**

Fix

* Fixed an issue that produced redundant calls in [CREATE\_ROUTES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_routes) procedure.

## September 24th, 2024 (v1.8.0)

**Module tiler**

New

* Add `tile_resolution` to all [tileset](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/tiler) creation options. This new setting allows controlling the size of the tiles when rendered in a map. Higher values produce larger tiles.

**Module lds**

Fix

* Improved handling of FQNs in [CREATE\_ISOLINES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_isolines) and [CREATE\_ROUTES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_routes) procedures..

## July 2nd, 2024 (v1.7.1)

**Module import**

Fix

* Import functions in AT Gateway now raise an exception when there is an error. This replaces the previous status message.

## May 22nd, 2024 (v1.7.0)

**Module http\_request**

New

* We have a new module named “http\_request”. It allows making requests to external endpoints through the function [`HTTP_REQUEST`](https://docs.carto.com/data-and-analysis/sql-reference/http_request#http_request).

**Module import**

New

* We have a new module named “import”. It allows importing tables for a given URL containing a file in any of the formats supported by the CARTO Import API. The procedure in charge of this import is [`IMPORT_URL`](https://docs.carto.com/data-and-analysis/sql-reference/import#import_url).

## April 18th, 2024 (v1.6.1)

**Module clustering**

Fix

* Update [`ST_CLUSTERKMEANS`](https://docs.carto.com/data-and-analysis/sql-reference/clustering#st_clusterkmeans) in order to avoid generating less clusters than requested. The maximum number of clusters now will be equal to the number of different points passed.

**Module lds**

Fix

* [`GEOCODE_TABLE`](https://docs.carto.com/data-and-analysis/sql-reference/lds#geocode_table) not working properly for “`geom_column`” parameters value different from “`geom`”.

## March 21st, 2024 (v1.6.0)

**Module lds**

New

* All external functions (including those used by the procedures in the lds module) now use a single, unified endpoint. This also simplifies the manual installation of the Analytics Toolbox.
* [GEOCODE\_TABLE](https://docs.carto.com/data-and-analysis/sql-reference/lds#geocode_table) now uses async batch geocoding with TomTom, boosting the geocoding speed considerably. Also matching by rows is applied ensuring that the address that reaches the TomTom endpoints is as similar as possible as the table value.

## February 16th, 2024 (v1.5.1)

**Module lds**

Fix

* [CREATE\_ISOLINES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_isolines) fixed a problem with using input credentials for all requests.
* Fixed support for waypoints in [CREATE\_ROUTES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_routes).

## January 18th, 2024 (v1.5.0)

**Module quadbin**

New

* New [QUADBIN\_DISTANCE](https://docs.carto.com/data-and-analysis/sql-reference/quadbin#quadbin_distance) function that returns the distance (number of cells) between two quadbin cells.

Fix

* Improved precision when calculating cell indexes from latitudes close to the poles (±90º).

**Module constructors**

Fix

* Fixed a problem with the output of [ST\_BEZIERSPLINE](https://docs.carto.com/data-and-analysis/sql-reference/constructors#st_bezierspline) and [ST\_MAKEELLIPSE](https://docs.carto.com/data-and-analysis/sql-reference/constructors#st_makeellipse) functions, they now return a GEOMETRY type column instead of a VARCHAR.
* Fixed a problem with the output of [ST\_MAKEENVELOPE](https://docs.carto.com/data-and-analysis/sql-reference/constructors#st_makeenvelope) function, it now returns a GEOMETRY with SRID 4326.

**Module transformations**

Fix

* Fixed a problem with the output of [ST\_CENTERMEAN](https://docs.carto.com/data-and-analysis/sql-reference/transformations#st_centermean), [ST\_CENTERMEDIAN](https://docs.carto.com/data-and-analysis/sql-reference/transformations#st_centermedian), [ST\_CENTROID](https://docs.carto.com/data-and-analysis/sql-reference/transformations#st_centroid), [ST\_DESTINATION](https://docs.carto.com/data-and-analysis/sql-reference/transformations#st_destination) and [ST\_GREATCIRCLE](https://docs.carto.com/data-and-analysis/sql-reference/transformations#st_greatcircle) functions, they now return a GEOMETRY with SRID 4326.

**Module tiler**

Fix

* Fixed a problem with [CREATE\_SIMPLE\_TILESET](https://docs.carto.com/data-and-analysis/sql-reference/tiler#create_simple_tileset) procedure, that was crashing when the value for the “max\_tile\_size\_strategy” property was "drop\_fraction\_as\_needed" in points tables.
* Improved tile precision when creating tilesets from geometries containing points with latitudes close to the poles (±90º) using [CREATE\_SIMPLE\_TILESET](https://docs.carto.com/data-and-analysis/sql-reference/tiler#create_simple_tileset) or [CREATE\_POINT\_AGGREGATION\_TILESET](https://docs.carto.com/data-and-analysis/sql-reference/tiler#create_point_aggregation_tileset).
* Improved bounds calculation to get an approximate value when using h3 cells in the [CREATE\_SPATIAL\_INDEX\_TILESET](https://docs.carto.com/data-and-analysis/sql-reference/tiler#create_spatial_index_tileset) procedure.

**Module data**

Fix

* Fixed an issue when using AVG aggregation, that was not correctly computed when “data\_query” contained NULL values.

**Module lds**

Fix

* [GEOCODE\_TABLE](https://docs.carto.com/data-and-analysis/sql-reference/lds#geocode_table) malfunctioning for multi-line addresses with multiple rows with scape line and indentations.

## December 23, 2023 (v1.4.1)

**Module lds**

Fix

* Accept one or more AWS roles for the [SETUP](https://docs.carto.com/data-and-analysis/sql-reference/lds#setup) function

**Module tiler**

Fix

* Tiler support for non-integer numeric properties. We have corrected a problem that was causing problems when using numeric properties with decimal values.

## November 13, 2023 (v1.4.0)

**Module lds**

New

* Add [SETUP](https://docs.carto.com/data-and-analysis/sql-reference/lds#setup) procedure. This procedure allows configuring credentials and endpoints of an Analytics Toolbox installation. Find more information about this topic in [this documentation](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/getting-access).
* Replace LDS\_QUOTA\_INFO by [GET\_LDS\_QUOTA\_INFO](https://docs.carto.com/data-and-analysis/sql-reference/lds#get_lds_quota_info) function. This new function allows checking your currently consumed quota with a single query, without the need to store the result as a table.

## October 13, 2023 (v1.3.1)

**Module tiler**

Improvement

* Performance optimizations for the produres that generate tilesets:
  * [CREATE\_POINT\_AGGREGATION\_TILESET](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/tiler#create_simple_tileset)
  * [CREATE\_SIMPLE\_TILESET](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/tiler#create_simple_tileset)

**Module lds**

Improvement

* New batch service for [CREATE\_ISOLINES](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/lds#create_isolines). Used automatically by the procedure. No changes required.

## September 8, 2023 (v1.3.0)

**Module lds**

New

* Add optional parameters: `api_base_url`, `lds_token` to every function/procedure.

## August 7, 2023 (v1.2.1)

**Module lds**

Fix

* We have made the [GEOCODE\_TABLE](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/lds#geocode_table) procedure more robust for special characters contained in the address data.

## July 14, 2023 (v1.2.0)

**Module lds**

New

* We are now allowing users to send any of the parameter options supported by the isolines service provider in [CREATE\_ISOLINES](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-bigquery/sql-reference/lds#create_isolines).
* We have improved our logging of results in [GEOCODE\_TABLE](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/lds#geocode_table) so more information about processed and geocoded rows is provided to the user. Also the new option “carto\_force\_geocode” allows the re-geocoding of already geocoded rows.

Fix

* We have applied some fixes to the [CREATE\_ROUTES](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/lds#create_routes) function so the metadata column can be successfully created and informed.

**Module quadbin**

Change

* We have updated the formula used in [QUADBIN\_FROMLONGLAT](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/quadbin#quadbin_fromlonglat) so it gets standardized. In addition a new implementation of [QUADBIN\_TOCHILDREN](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/quadbin#quadbin_tochildren) has been added in order to increase performance.

\\

## June 6, 2023 (v1.1.0)

**Module lds**

New

* We have created a new procedure named [CREATE\_ROUTES](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/lds#create_routes), which calculates the routes (returned as linestrings) between a set of given origins and destinations (points) in a query. It supports different transport modes and advanced options as the other functions of the lds module.

## April 4, 2023 (v1.0.2)

**Module lds**

Change

* We have updated the [LDS module](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-redshift/sql-reference/lds) to be aligned with the new [usage quota](https://docs.carto.com/carto-user-manual/settings/understanding-your-organization-quotas#usage-quota) model, working as an annual budget and combining consumption across all supported LDS services.

## March 7, 2023 (v1.0.1)

**Module lds**

Fix

* Returning geometries with proper srid (4326) in [GEOCODE\_TABLE](https://docs.carto.com/data-and-analysis/sql-reference/lds#geocode_table), [CREATE\_ISOLINES](https://docs.carto.com/data-and-analysis/sql-reference/lds#create_isolines), [GEOCODE](https://docs.carto.com/data-and-analysis/sql-reference/lds#geocode) and [ISOLINE](https://docs.carto.com/data-and-analysis/sql-reference/lds#isoline).

## January 31, 2023 (v1.0.0)

**Module tiler**

Improvements

* Update default zoom values: geo, quadbin, h3 (12, 12, 6)
* Fix spatial index tiler with empty properties

## December 22, 2022 <a href="#december-22-2022" id="december-22-2022"></a>

### **Module lds**

Improvement

* We have added the possibility to configure more options as parameters when executing the functions to [CREATE\_ISOLINES](https://docs.carto.com/sql-reference/lds/#create_isolines). These new options, which depend on the LDS service provider, allow the user to configure more transportation modes such as truck or bike, the possibility of specifying departure or arrival times allowing the creation of reverse isolines, and other options like different routing modes.
* Added new confidence/relevance metadata to the results of the geocoding function [GEOCODE\_TABLE](https://docs.carto.com/sql-reference/lds/#geocode_table).

### **Module quadbin**

New

* Quadbin/quadkey conversion functions have been added to ease the conversion from [quadbin](https://docs.carto.com/sql-reference/quadbin/) to quadkey and from quadkey to quadbin indexes.

## November 1, 2022 <a href="#november-1-2022" id="november-1-2022"></a>

### **All modules**

Feature

* Create release workflows

Improvement

* Adapt to Semver

## October 25, 2022 <a href="#october-25-2022" id="october-25-2022"></a>

### **Module data**

Fix

* Fix enrichment procedures not working with VARCHAR variables for aggregation types `MIN`, `MAX` and `COUNT`.

## October 18, 2022 <a href="#october-18-2022" id="october-18-2022"></a>

### **Module data**

Fix

* Fix enrichment procedures returning inconsistent results for input queries containing `LIMIT`.
* Fix ST\_AREA returning NULL by using ST\_SIMPLIFY.
* Fix inconsistent values resturned because of ST\_ENVELOPE.

## October 10, 2022 <a href="#october-10-2022" id="october-10-2022"></a>

### **Module data**

Feature

* Add DATAOBS\_ENRICH\_POINTS procedure.
* Add DATAOBS\_ENRICH\_POLYGONS procedure.
* Add DATAOBS\_ENRICH\_GRID procedure.
* Add ENRICH\_GRID procedure.

## October 7, 2022 <a href="#october-7-2022" id="october-7-2022"></a>

### **Module clustering**

Feature

* Move ST\_CLUSTERKMEANS function to core.
* Move CREATE\_CLUSTERKMEANS procedure to core.

### **Module random**

Feature

* Move ST\_GENERATEPOINTS function to core.

## October 1, 2022 <a href="#october-1-2022" id="october-1-2022"></a>

### **Module lds**

Improvement

### **Module lds**

Improvement

* Rename `LDS_API_URL` to `API_BASE_URL`.

## September 21, 2022 <a href="#september-21-2022" id="september-21-2022"></a>

### **Module tiler**

Fix

* Fix CREATE\_SPATIAL\_INDEX\_TILESET returning nested UDFs error when detecting the index type.

## September 19, 2022 <a href="#september-19-2022" id="september-19-2022"></a>

### **Module statistics**

Improvement

* Add p-values in the output of GETIS\_ORD\_QUADBIN function.

### **Module tiler**

Improvement

* Set `version` field in tilers metadata compliant with AT version.

## September 7, 2022 <a href="#september-7-2022" id="september-7-2022"></a>

### **Module data**

Feature

* Add ENRICH\_POLYGONS procedure.

## September 2, 2022 <a href="#september-2-2022" id="september-2-2022"></a>

### **Module data**

Feature

* Add ENRICH\_POINTS procedure.

## August 26, 2022 <a href="#august-26-2022" id="august-26-2022"></a>

### **Module statistics**

Feature

* Add GETIS\_ORD\_QUADBIN function.

## August 19, 2022 <a href="#august-19-2022" id="august-19-2022"></a>

### **Module s2**

Fix

* Fix S2\_BOUNDARY inverted coordinates.

## August 11, 2022 <a href="#august-11-2022" id="august-11-2022"></a>

### **Module tiler**

Improvement

* Unify `extra_metadata` into `metadata` in tiler metadata.

## August 9, 2022 <a href="#august-9-2022" id="august-9-2022"></a>

### **Module statistics**

Feature

* Add P\_VALUE function.

## July 22, 2022 <a href="#july-22-2022" id="july-22-2022"></a>

### **Module lds**

Feature

* Add GEOCODE\_REVERSE\_TABLE procedure.

### **Module statistics**

Feature

* Create statistics module.
* Add MORANS\_I\_QUADBIN function.

## July 20, 2022 <a href="#july-20-2022" id="july-20-2022"></a>

### **Module clustering**

Feature

* Add CREATE\_CLUSTERKMEANS procedure.

## July 14, 2022 <a href="#july-14-2022" id="july-14-2022"></a>

### **Module quadbin**

Improvement

* Update functions volatility.
* QUADBIN\_FROMZXY accepting BIGINTs as params instead of INTs.

## July 12, 2022 <a href="#july-12-2022" id="july-12-2022"></a>

### **Module tiler**

Improvement

* Improve speed of CREATE\_SPATIAL\_INDEX\_TILESET.

## July 8, 2022 <a href="#july-8-2022" id="july-8-2022"></a>

### **Module quadbin**

Improvement

* Release SQL version of QUADBIN\_TOZXY.

## July 1, 2022 <a href="#july-1-2022" id="july-1-2022"></a>

### **Module tiler**

Improvement

* Support h3int from CREATE\_SPATIAL\_INDEX\_TILESET.

## June 27, 2022 <a href="#june-27-2022" id="june-27-2022"></a>

### **Module tiler**

Improvement

* Support quadbin from CREATE\_SPATIAL\_INDEX\_TILESET instead of quadint.

## June 24, 2022 <a href="#june-24-2022" id="june-24-2022"></a>

### **Module quadbin**

Feature

* Add QUADBIN\_BBOX function.
* Add QUADBIN\_BOUNDARY function.
* Add QUADBIN\_CENTER function.
* Add QUADBIN\_FROMGEOGPOINT function.
* Add QUADBIN\_FROMLONGLAT function.
* Add QUADBIN\_FROMZXY function.
* Add QUADBIN\_ISVALID function.
* Add QUADBIN\_KRING function.
* Add QUADBIN\_KRING\_DISTANCES function.
* Add QUADBIN\_POLYFILL function.
* Add QUADBIN\_RESOLUTION function.
* Add QUADBIN\_SIBLING function.
* Add QUADBIN\_TOCHILDREN function.
* Add QUADBIN\_TOPARENT function.
* Add QUADBIN\_TOZXY function.

## June 20, 2022 <a href="#june-20-2022" id="june-20-2022"></a>

### **Module tiler**

Feature

* Add CREATE\_SPATIAL\_INDEX\_TILESET procedure.

## June 7, 2022 <a href="#june-7-2022" id="june-7-2022"></a>

### **Module lds**

Fix

* Fix chunks in CREATE\_ISOLINES.

## June 6, 2022 <a href="#june-6-2022" id="june-6-2022"></a>

### **Module lds**

Improvement

* Check if the user has enough credits to execute CREATE\_ISOLINES.

## June 2, 2022 <a href="#june-2-2022" id="june-2-2022"></a>

### **Module lds**

Feature

* Add CREATE\_ISOLINES procedure.

## May 19, 2022 <a href="#may-19-2022" id="may-19-2022"></a>

### **Module lds**

Improvement

* Add optional `language` parameter to GEOCODE\_REVERSE function.

## May 13, 2022 <a href="#may-13-2022" id="may-13-2022"></a>

### **Module tiler**

Feature

* Add max\_simplification\_zoom and coordinates\_precision parameters.

## April 21, 2022 <a href="#april-21-2022" id="april-21-2022"></a>

### **Module tiler**

Feature

* Add max\_tile\_size\_strategy support for CREATE\_SIMPLE\_TILESET.

Fix

* Fix tile\_feature\_order not being taken into account for CREATE\_POINT\_AGGREGATION\_TILESET and CREATE\_POINT\_AGGREGATION\_TILESET.

## March 30, 2022 <a href="#march-30-2022" id="march-30-2022"></a>

### **Module tiler**

Fix

* Escape special characters in generated properties.

## March 25, 2022 <a href="#march-25-2022" id="march-25-2022"></a>

### **Module tiler**

Improvement

* Raise improper qualified tables errors.
* Limit GeoJSON precision to 6 to comply Redshift VARCHAR size limitations.
* Add ST\_Simplify to the tiler.

## March 10, 2022 <a href="#march-10-2022" id="march-10-2022"></a>

### **Module tiler**

Feature

* Add CREATE\_SIMPLE\_TILESET procedure.

## February 25, 2022 <a href="#february-25-2022" id="february-25-2022"></a>

### **Module tiler**

Feature

* Create tiler module.
* Add CREATE\_POINT\_AGGREGATION\_TILESET procedure.

## February 18, 2022 <a href="#february-18-2022" id="february-18-2022"></a>

### **Module lds**

Feature

* Add GEOCODE\_TABLE procedure.
* Add GEOCODE function.
* Add GEOCODE\_REVERSE function.
* Add ISOLINE function.
* Add LDS\_QUOTA\_INFO function.

## December 16, 2021 <a href="#december-16-2021" id="december-16-2021"></a>

### **Module transformations**

Fix

* Refactor of internal \_\_ST\_GEOMFROMGEOJSON function to avoid UDFs nestig Redshift limitations

## December 10, 2021 <a href="#december-10-2021" id="december-10-2021"></a>

### **Module constructors**

Improvement

* Deployment schema “carto” instead of “constructors”.

Removed

* Remove VERSION function.

### **Module placekey**

Improvement

* Deployment schema “carto” instead of “placekey”.
* Rename H3\_ASPLACEKEY function to PLACEKEY\_FROMH3.
* Rename PLACEKEY\_ASH3 function to PLACEKEY\_TOH3.
* Rename ISVALID function to PLACEKEY\_ISVALID.

Removed

* Remove VERSION function.

### **Module processing**

Improvement

* Deployment schema “carto” instead of “processing”.

Removed

* Remove VERSION function.

### **Module s2**

Improvement

* Deployment schema “carto” instead of “s2”.
* Rename HILBERTQUADKEY\_FROMID function to S2\_TOHILBERTQUADKEY.
* Rename ID\_FROMHILBERTQUADKEY function to S2\_FROMHILBERTQUADKEY.
* Rename ID\_FROMTOKEN function to S2\_FROMTOKEN.
* Rename ID\_FROMUINT64REPR function to S2\_FROMUINT64REPR.
* Rename LONGLAT\_ASID function to S2\_FROMLONGLAT.
* Rename RESOLUTION function to S2\_RESOLUTION.
* Rename ST\_ASID function to S2\_FROMGEOGPOINT.
* Rename ST\_ASID\_POLYFILL\_BBOX function to S2\_POLYFILL\_BBOX.
* Rename ST\_BOUNDARY function to S2\_BOUNDARY.
* Rename TOCHILDREN function to S2\_TOCHILDREN.
* Rename TOKEN\_FROMID function to S2\_TOTOKEN.
* Rename TOPARENT function to S2\_TOPARENT.
* Rename UINT64REPR\_FROMID function to S2\_TOUINT64REPR.

Removed

* Remove VERSION function.

### **Module transformations**

Improvement

* Deployment schema “carto” instead of “transformations”.

Removed

* Remove VERSION function.

### **Module clustering**

Improvement

* Deployment schema “carto” instead of “clustering”.

Removed

* Remove VERSION function.

### **Module random**

Improvement

* Deployment schema “carto” instead of “random”.
* ST\_GENERATEPOINTS now uses a spherically uniform distribution. Previously used to by uniform on projection.

Removed

* Remove VERSION function.

## October 21, 2021 <a href="#october-21-2021" id="october-21-2021"></a>

### **Module clustering**

Improvement

* ST\_CLUSTERKMEANS returning an Array.

## October 6, 2021 <a href="#october-6-2021" id="october-6-2021"></a>

### **Module processing**

Feature

* Create processing module.
* Add VERSION function.
* Add ST\_POLYGONIZE function.
* Add ST\_DELAUNAYLINES function.
* Add ST\_DELAUNAYPOLYGONS function.
* Add ST\_VORONOILINES function.
* Add ST\_VORONOIPOLYGONS function.

### **Module transformations**

Feature

* Create transformations module.
* Add VERSION function.
* Add ST\_CENTERMEAN function.
* Add ST\_CENTROID function.
* Add ST\_CENTEROFMASS function
* Add ST\_CENTERMEDIAN function
* Add ST\_GREATCIRCLE function
* Add ST\_DESTINATION function

## October 5, 2021 <a href="#october-5-2021" id="october-5-2021"></a>

### **Module clustering**

Feature

* Create clustering module.
* Add VERSION function.
* Add ST\_CLUSTERKMEANS function.

### **Module random**

Feature

* Create random module.
* Add ST\_GENERATEPOINTS function.
* Add VERSION function.

## September 23, 2021 <a href="#september-23-2021" id="september-23-2021"></a>

### **Module s2**

Feature

* Create s2 module.
* Add HILBERTQUADKEY\_FROMID function.
* Add ID\_FROMHILBERTQUADKEY function.
* Add ID\_FROMTOKEN function.
* Add ID\_FROMUINT64REPR function.
* Add LONGLAT\_ASID function.
* Add RESOLUTION function.
* Add ST\_ASID function.
* Add ST\_ASID\_POLYFILL\_BBOX function.
* Add ST\_BOUNDARY function.
* Add TOCHILDREN function.
* Add TOKEN\_FROMID function.
* Add TOPARENT function.
* Add UINT64REPR\_FROMID function.
* Add VERSION function.

## September 17, 2021 <a href="#september-17-2021" id="september-17-2021"></a>

### **Module constructors**

Feature

* Create constructors module.
* Add ST\_BEZIERSPLINE function.
* Add ST\_MAKEELLIPSE function.
* Add ST\_MAKEENVELOPE function.
* Add ST\_TILEENVELOPE function.
* Add VERSION function.

## September 7, 2021 <a href="#september-7-2021" id="september-7-2021"></a>

### **Module placekey**

Feature

* Create placekey module.
* Add H3\_ASPLACEKEY function.
* Add PLACEKEY\_ASH3 function.
* Add ISVALID function.
* Add VERSION function.
