From 41d16258364160a061317eac124716eae973d64f Mon Sep 17 00:00:00 2001 From: bmribler <39579120+bmribler@users.noreply.github.com> Date: Fri, 25 Jul 2025 14:28:49 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fa72f93..098476b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # HDF REST API -The HDF REST API is an interface to HDF5 data stored on network-based architectures. The HDF REST API has provisions to support CRUD (create, read, update and delete) operations on the full spectrum of HDF5 objects including: groups, links, datasets, attributes, and committed data types. See for background on the design principles that guided the development of the RESTful HDF5 interface. +The HDF REST API is an interface to HDF5 data stored on network-based architectures. The HDF REST API has provisions to support CRUD (create, read, update and delete) operations on the full spectrum of HDF5 objects including: groups, links, datasets, attributes, and committed data types. See [RESTful_HDF5.pdf](https://support.hdfgroup.org/archive/support/pubs/papers/index.html) for background on the design principles that guided the development of the RESTful HDF5 interface. This repository provides documentation on what operations are supported by the HDF REST API and some guidelines as to how to effectively use these. @@ -14,12 +14,12 @@ Not all implementations support all the REST operations documented here. When a There are also various packages and libraries that utilize the REST API as a client. These include: -* Python SDK - h5pyd: -* C/Fortran HDF5 REST VOL: -* R SDK - restfulSE: +* [Python SDK - h5pyd](https://github.com/HDFGroup/h5pyd) +* [C/Fortran HDF5 REST VOL](https://bitbucket.hdfgroup.org/users/jhenderson/repos/rest-vol/browse) +* [R SDK - restfulSE](https://github.com/vjcitn/restfulSE) The following diagram illustrates the various resources and operations of the HDF REST API: -![RESTful HDF Diagram](./RESTful_HDF5.png) \ No newline at end of file +![RESTful HDF Diagram](./RESTful_HDF5.png) From 89b4f43a26fc31e78d289953f9cde0501a702533 Mon Sep 17 00:00:00 2001 From: Binh-Minh Date: Mon, 28 Jul 2025 15:40:35 -0400 Subject: [PATCH 2/2] Updated Node version to fix test failure --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index b7d2f6a..98665a4 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -15,6 +15,6 @@ jobs: - name: Use Node.js uses: actions/setup-node@v2 with: - node-version: 12 + node-version: 16 - run: npm install -g ibm-openapi-validator - run: lint-openapi openapi.yaml