This is an automated email from the ASF dual-hosted git repository.

bchapuis pushed a change to branch release-0.7.2
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git


    omit e917d5b0 Release Baremaps 0.7.2
     add b10a101a Disable antialias in basemap (#756)
     add a62a1a38 Display natural layer at low zoom levels (#750)
     add b7cac3fa Remove logo (#761)
     add abb5ee7e Improve release instructions (#758)
     add ba2790e1 Group third-party dependencies by license (#759)
     add ff1de0c5 Use lowercase table names in postgresql (#768)
     add b37f1ec0 Add task to execute sql script (#769)
     add be499e3d Expose the tileset and the SQL queries in dev mode (#772)
     add 49a84c96 Expose environment variables to javascript (#776)
     add dfa1e949 Add a datasource object to the tileset (#777)
     add 78397fc6 List the derived files in the NOTICE (#771)
     add 894e959a Concat THIRD-PARTY to LICENSE in bin release (#778)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e917d5b0)
            \
             N -- N -- N   refs/heads/release-0.7.2 (894e959a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 DISCLAIMER-WIP                                     |   4 +
 LICENSE                                            |   4 +-
 NOTICE                                             |  38 +++-
 RELEASE.md                                         |  28 +--
 baremaps-benchmark/pom.xml                         |   2 +-
 baremaps-cli/pom.xml                               |  62 +++++-
 baremaps-cli/src/assembly/bin.xml                  |   8 +-
 baremaps-cli/src/assembly/src.xml                  |   1 -
 baremaps-cli/src/license/bundle.ftl                |  37 ++++
 baremaps-cli/src/license/override.ftl              |  36 ++++
 baremaps-cli/src/license/override.properties       | 209 +++++++++++++++++++++
 .../main/java/org/apache/baremaps/cli/map/Dev.java |   9 +-
 .../java/org/apache/baremaps/cli/map/Serve.java    |   6 +-
 baremaps-core/pom.xml                              |   2 +-
 .../org/apache/baremaps/config/ConfigReader.java   |   7 +
 .../storage/postgres/PostgresDataSchema.java       |  49 ++---
 .../org/apache/baremaps/utils/PostgresUtils.java   | 130 +++++++++++--
 .../baremaps/vectortile/tileset/Database.java      | 194 +++++++++++++++++++
 .../baremaps/vectortile/tileset/Tileset.java       |   6 +-
 .../java/org/apache/baremaps/workflow/Task.java    |   1 +
 .../apache/baremaps/workflow/WorkflowContext.java  |   6 +-
 .../apache/baremaps/workflow/tasks/ExecuteSql.java |   7 +-
 .../{ExecuteCommand.java => ExecuteSqlScript.java} |  20 +-
 .../baremaps/workflow/tasks/ExportVectorTiles.java |   1 +
 .../baremaps/workflow/tasks/ImportGeoPackage.java  |   2 +-
 .../workflow/tasks/ImportOpenStreetMap.java        |   2 +-
 .../baremaps/workflow/tasks/ImportShapefile.java   |   2 +-
 .../workflow/tasks/UpdateOpenStreetMap.java        |   2 +-
 ...oPackageTest.java => ExecuteSqlScriptTest.java} |   5 +-
 baremaps-core/src/test/resources/script.sql        |   5 +
 baremaps-ogcapi/pom.xml                            |   2 +-
 baremaps-server/pom.xml                            |   2 +-
 ...{TilesetResource.java => TileJSONResource.java} |   6 +-
 .../apache/baremaps/server/TilesetResource.java    |  18 +-
 basemap/layers/amenity/background.js               |   6 +
 basemap/layers/amenity/fountain.js                 |   2 +-
 basemap/layers/amenity/overlay.js                  |   6 +
 basemap/layers/building/shape.js                   |   2 +-
 basemap/layers/highway/pedestrian_area.js          |   2 +-
 basemap/layers/landuse/background.js               |  18 +-
 basemap/layers/landuse/overlay.js                  |  14 +-
 basemap/layers/landuse/simplify.sql                |  60 ++----
 basemap/layers/leisure/background.js               |   2 +-
 basemap/layers/leisure/overlay.js                  |   2 +-
 basemap/layers/man_made/bridge.js                  |   2 +-
 basemap/layers/natural/background.js               |   2 +-
 basemap/layers/natural/overlay.js                  |   2 +-
 basemap/layers/natural/tileset.js                  |   6 +-
 basemap/layers/natural/water.js                    |   2 +-
 basemap/layers/ocean/overlay.js                    |   2 +-
 basemap/layers/power/background.js                 |   2 +-
 logo.svg                                           |   1 -
 pom.xml                                            |   2 +-
 scripts/build-project.sh                           |   3 +
 54 files changed, 856 insertions(+), 195 deletions(-)
 create mode 100644 baremaps-cli/src/license/bundle.ftl
 create mode 100644 baremaps-cli/src/license/override.ftl
 create mode 100644 baremaps-cli/src/license/override.properties
 create mode 100644 
baremaps-core/src/main/java/org/apache/baremaps/vectortile/tileset/Database.java
 copy 
baremaps-core/src/main/java/org/apache/baremaps/workflow/tasks/{ExecuteCommand.java
 => ExecuteSqlScript.java} (59%)
 copy 
baremaps-core/src/test/java/org/apache/baremaps/workflow/tasks/{ImportGeoPackageTest.java
 => ExecuteSqlScriptTest.java} (85%)
 create mode 100644 baremaps-core/src/test/resources/script.sql
 copy 
baremaps-server/src/main/java/org/apache/baremaps/server/{TilesetResource.java 
=> TileJSONResource.java} (88%)
 delete mode 100644 logo.svg

Reply via email to