Skip to content

Commit d970663

Browse files
committed
Version pinning for 1.0.0
1 parent 34dcf26 commit d970663

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ are alway pinned to a stable release number or commit hash.
132132
133133
| Extension | Version | `sddi-base` | `sddi` | `sddi-social` | Description |
134134
|---|---|:---:|:---:|:---:|---|
135-
| [`scheming`](https://github.com/MarijaKnezevic/ckanext-scheming) | `0dda2be` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Configure and share CKAN dataset metadata forms. |
135+
| [`scheming`](https://github.com/MarijaKnezevic/ckanext-scheming) | `c4f65c6` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Configure and share CKAN dataset metadata forms. |
136136
| [`hierarchy`](https://github.com/ckan/ckanext-hierarchy) | `v1.2.0` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Allows to organize organizations and groups in a hierarchy tree (nested groups/orgs). |
137-
| [`grouphierarchysddi`](https://github.com/tum-gis/ckanext-grouphierarchy-sddi) | `63289a8` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Extends `hierarchy` with pre-defined groups and topics of the SDDI concept. |
137+
| [`grouphierarchysddi`](https://github.com/tum-gis/ckanext-grouphierarchy-sddi) | `1.0.0` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Extends `hierarchy` with pre-defined groups and topics of the SDDI concept. |
138138
| [`relation`](https://github.com/tum-gis/ckanext-relation-sddi) | `1.0.0` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Enables to create and visualize different types of relations (*realated_to*, *depends_on*, *part_of*) between catalog entries. |
139-
| [`spatial`](https://github.com/ckan/ckanext-spatial) | `v2.0.0` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Provides the ability to search for datasets according to a given spatial extent. |
140-
| [`datesearch`](https://github.com/MarijaKnezevic/ckanext-datesearch) | `a01061a` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Provides the ability to search for datasets according to a given time frame. The search includes all datasets, in which the time of validity overlaps in at least one second with the search time frame. |
141-
| [`repeating`](https://github.com/MarijaKnezevic/ckanext-repeating) | `f09ed71` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | This extension provides a way to store repeating fields in CKAN datasets, resources, organizations and groups. |
139+
| [`spatial`](https://github.com/MarijaKnezevic/ckanext-spatial) | `d74cd14` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Provides the ability to search for datasets according to a given spatial extent. |
140+
| [`datesearch`](https://github.com/MarijaKnezevic/ckanext-datesearch) | `1.0.0` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Provides the ability to search for datasets according to a given time frame. The search includes all datasets, in which the time of validity overlaps in at least one second with the search time frame. |
141+
| [`repeating`](https://github.com/MarijaKnezevic/ckanext-repeating) | `1.0.0` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | This extension provides a way to store repeating fields in CKAN datasets, resources, organizations and groups. |
142142
| [`composite`](https://github.com/EnviDat/ckanext-composite) | `1e6d7bb` | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | The extension allows to store structured dataset metadata, single or multiple fields. Only one level of subfields is possible. The subfields can be basic text, date type or dropboxes. |
143143
| [`restricted`](https://github.com/MarijaKnezevic/ckanext-restricted) | `02e7e14` | | :heavy_check_mark: | :heavy_check_mark: | CKAN extension to restrict the accessibility to the resources of a dataset. This way the package metadata is accesible but not the data itself (resource). The resource access restriction level can be individualy defined for every package. |
144144
| [`dcat`](https://github.com/ckan/ckanext-dcat) | `v1.4.0` | | :heavy_check_mark: | :heavy_check_mark: | Allow CKAN to expose and consume metadata from other catalogs using RDF documents serialized using DCAT. |

sddi-base/Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN set -ex && \
2424
ls -lah /wheels
2525

2626
# ckanext-grouphierarchy ######################################################
27-
ARG CKANEXT_SDDI_VERSION="2.9-support"
27+
ARG CKANEXT_SDDI_VERSION="1.0.0"
2828
ENV CKANEXT_SDDI_VERSION=${CKANEXT_SDDI_VERSION}
2929

3030
RUN set -ex && \
@@ -50,7 +50,7 @@ RUN set -ex && \
5050
ls -lah /wheels
5151

5252
# ckanext-scheming ############################################################
53-
ARG CKANEXT_SCHEMING_VERSION="scheming_all_plugins"
53+
ARG CKANEXT_SCHEMING_VERSION="c4f65c6"
5454
ENV CKANEXT_SCHEMING_VERSION=${CKANEXT_SCHEMING_VERSION}
5555
ENV CKANEXT_SCHEMING_GITHUB_URL="https://github.com/MarijaKnezevic/ckanext-scheming"
5656

@@ -59,7 +59,7 @@ RUN set -ex && \
5959
git+${CKANEXT_SCHEMING_GITHUB_URL}.git@${CKANEXT_SCHEMING_VERSION}#egg=ckanext-scheming
6060

6161
# ckanext datesearch ##########################################################
62-
ARG CKANEXT_DATESEARCH_VERSION="datesearch_and_spatial"
62+
ARG CKANEXT_DATESEARCH_VERSION="1.0.0"
6363
ENV CKANEXT_DATESEARCH_VERSION=${CKANEXT_DATESEARCH_VERSION}
6464
ENV CKANEXT_DATESEARCH_VERSION_GITHUB_URL="https://github.com/MarijaKnezevic/ckanext-datesearch"
6565

@@ -68,7 +68,7 @@ RUN set -ex && \
6868
git+${CKANEXT_DATESEARCH_VERSION_GITHUB_URL}.git@${CKANEXT_DATESEARCH_VERSION}#egg=ckanext-datesearch
6969

7070
# ckanext-composite ###########################################################
71-
ARG CKANEXT_COMPOSITE_VERSION="master"
71+
ARG CKANEXT_COMPOSITE_VERSION="1e6d7bb"
7272
ENV CKANEXT_COMPOSITE_VERSION=${CKANEXT_COMPOSITE_VERSION}
7373
ENV CKANEXT_COMPOSITE_GITHUB_URL="https://github.com/EnviDat/ckanext-composite"
7474

@@ -79,7 +79,7 @@ RUN set -ex && \
7979
git+${CKANEXT_COMPOSITE_GITHUB_URL}.git@${CKANEXT_COMPOSITE_VERSION}#egg=ckanext-composite
8080

8181
# ckanext-repeating ###########################################################
82-
ARG CKANEXT_REPEATING_VERSION="master"
82+
ARG CKANEXT_REPEATING_VERSION="1.0.0"
8383
ENV CKANEXT_REPEATING_VERSION=${CKANEXT_REPEATING_VERSION}
8484
ENV CKANEXT_REPEATING_GITHUB_URL="https://github.com/MarijaKnezevic/ckanext-repeating"
8585

@@ -90,7 +90,7 @@ RUN set -ex && \
9090
# ckanext-spatial #############################################################
9191
FROM ghcr.io/keitaroinc/ckan:${CKAN_VERSION_BUILD_SPATIAL} as extbuild-spatial
9292

93-
ARG CKANEXT_SPATIAL_VERSION="scheming-spatial"
93+
ARG CKANEXT_SPATIAL_VERSION="d74cd14"
9494
ENV CKANEXT_SPATIAL_VERSION=${CKANEXT_SPATIAL_VERSION}
9595

9696
USER root

sddi/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN set -ex && \
3535
git+${CKANEXT_DCAT_GITHUB_URL}.git@${CKANEXT_DCAT_VERSION}#egg=ckanext-dcat
3636

3737
# ckanext-restricted ##########################################################
38-
ARG CKANEXT_RESTRICTED_VERSION="remove-user-create"
38+
ARG CKANEXT_RESTRICTED_VERSION="1.0.0"
3939
ENV CKANEXT_RESTRICTED_VERSION=${CKANEXT_RESTRICTED_VERSION}
4040
ENV CKANEXT_RESTRICTED_GITHUB_URL="https://github.com/MarijaKnezevic/ckanext-restricted"
4141

0 commit comments

Comments
 (0)