You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by gi...@apache.org on 2022/08/09 18:49:28 UTC

[incubator-sdap-nexus] branch dependabot/pip/integrations/python-client/numpy-1.22.0 updated (013a2a1 -> 51aab18)

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

github-bot pushed a change to branch dependabot/pip/integrations/python-client/numpy-1.22.0
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


 discard 013a2a1  Bump numpy from 1.17.0 to 1.22.0 in /integrations/python-client
     add 3fa3a82  fix bugs in helm chart after update for proxy feature (#170)
     add cd58f7b  Fix for null count field in return for matchup_spark request (#171)
     add 240ce1f  SDAP-371: Fix domssubset API (#172)
     add 9f29fcb  Updated matchup to ensure both time and space are account for when 'matchOnce' is true (#176)
     add 8706e29  SDAP-397: Requested matchup updates (#180)
     add cec3b3e  Fix CSV/NetCDF bug (#175)
     add a9932a9  SDAP-396: saildrone insitu (#179)
     add f72d429  Add metadata to remote coll (#173)
     add 7c76242  Fix NetCDF output (#182)
     add 112144a  Preserve insitu schema (#181)
     add e62622f  Fix matchup bugs (#165)
     add 5c96c3d  Fixed error causing timeSeriesSpark to fail (#186)
     add 1dc62e2  SDAP-390 Update NetCDF reader tool for data match-up (#178)
     add 51aab18  Bump numpy from 1.17.0 to 1.22.0 in /integrations/python-client

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   (013a2a1)
            \
             N -- N -- N   refs/heads/dependabot/pip/integrations/python-client/numpy-1.22.0 (51aab18)

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:
 CHANGELOG.md                                       |  23 ++
 analysis/tests/algorithms/test_subsetter.py        | 126 +++++++++++
 analysis/tests/redirect/test_RemoteSDAPCache.py    | 102 +++++++++
 analysis/webservice/algorithms/DataSeriesList.py   |  34 ++-
 .../webservice/algorithms/doms/BaseDomsHandler.py  |  17 +-
 .../webservice/algorithms/doms/DatasetListQuery.py |  25 ++-
 analysis/webservice/algorithms/doms/config.py      |  17 +-
 analysis/webservice/algorithms/doms/insitu.py      |  79 +++++++
 analysis/webservice/algorithms/doms/subsetter.py   | 244 ++++++++++++--------
 analysis/webservice/algorithms_spark/Matchup.py    | 135 +++++------
 analysis/webservice/apidocs/openapi.yml            |  31 ++-
 .../app_builders/HandlerArgsBuilder.py             |  12 +-
 .../nexus_tornado/app_builders/NexusAppBuilder.py  |   4 +-
 analysis/webservice/redirect/RedirectHandler.py    |   4 +-
 analysis/webservice/redirect/RemoteSDAPCache.py    |  48 ++++
 analysis/webservice/redirect/__init__.py           |   4 +-
 analysis/webservice/webapp.py                      |  27 +--
 data-access/nexustiles/model/nexusmodel.py         |  20 +-
 data-access/nexustiles/nexustiles.py               |  11 +-
 data-access/requirements.txt                       |   3 +-
 helm/templates/webapp.yml                          |   6 +-
 tools/cdms/README.md                               |  85 +++++++
 tools/cdms/cdms_reader.py                          | 250 +++++++++++++++++++++
 tools/cdms/requirements.txt                        | 205 +++++++++++++++++
 tools/doms/README.md                               |  66 ------
 tools/doms/doms_reader.py                          | 144 ------------
 26 files changed, 1265 insertions(+), 457 deletions(-)
 create mode 100644 analysis/tests/algorithms/test_subsetter.py
 create mode 100644 analysis/tests/redirect/test_RemoteSDAPCache.py
 create mode 100644 analysis/webservice/algorithms/doms/insitu.py
 create mode 100644 analysis/webservice/redirect/RemoteSDAPCache.py
 create mode 100644 tools/cdms/README.md
 create mode 100644 tools/cdms/cdms_reader.py
 create mode 100644 tools/cdms/requirements.txt
 delete mode 100644 tools/doms/README.md
 delete mode 100644 tools/doms/doms_reader.py