Skip to content

Commit ceb07da

Browse files
committed
Merge branch 'develop' into 277-Dataset-Thumbnail-404-Not-Found---Broken-Link-after-File-Deletion
2 parents c134f83 + 73e52ef commit ceb07da

File tree

14 files changed

+32
-88
lines changed

14 files changed

+32
-88
lines changed

.github/workflows/docker.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
- clowder
3737
- mongo-init
3838
- monitor
39-
- check
4039
include:
4140
- name: clowder
4241
FOLDER: "."
@@ -50,10 +49,6 @@ jobs:
5049
FOLDER: scripts/monitor
5150
IMAGE: monitor
5251
README: ""
53-
- name: check
54-
FOLDER: scripts/check
55-
IMAGE: check
56-
README: ""
5752
steps:
5853
- uses: actions/checkout@v2
5954

CHANGELOG.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
## Unreleased
88

99
### Fixed
10-
- Can add dataset to spaces - fixed error when no spaces would load. [#274](https://github.com/clowder-framework/clowder/issues/274)
10+
- Upgraded extractor parameters jsonform to version `2.2.5`.
11+
- Fix the broken link after file deletion within a folder. [#277](https://github.com/clowder-framework/clowder/issues/277)
12+
13+
### Changed
14+
- now building mongo-init and monitor docker containers with python 3.8
15+
16+
### Removed
17+
- check image is now part of [ncsa/checks](https://github.com/ncsa/checks/)
18+
19+
## 1.19.0 - 2021-10-05
20+
**_Important:_** This update requires a MongoDB update schema due to the new ability of showing summary statistics at the
21+
space level. Make sure to start the application with -DMONGOUPDATE=1.
22+
23+
### Fixed
24+
- Adding dataset to space. Space list on dataset page would be empty - fixed error when no spaces would load. [#274](https://github.com/clowder-framework/clowder/issues/274)
1125
- Typos "success" when returning status from API and "occurred" when logging to console.
1226
- If a dataset had multiple folders the layout would be wrong.
13-
- Fix the broken link after file deletion within a folder. [#277](https://github.com/clowder-framework/clowder/issues/277)
27+
- Collections created using api route are now indexed upon creation. [#257](https://github.com/clowder-framework/clowder/issues/257)
1428

1529
### Added
16-
- Adding mime type for geojson
17-
- Add "when" parameter in a few GET API endpoints to enable pagination [#266](https://github.com/clowder-framework/clowder/issues/266)
18-
- Show statistics of spaces (bytes, users. etc) [#119](https://github.com/clowder-framework/clowder/issues/119)
19-
20-
### Changed
21-
- Add "id" in GET metadata.jsonld endpoints [#278](https://github.com/clowder-framework/clowder/issues/278)
30+
- Mime type for geojson
31+
- "when" parameter in a few GET API endpoints to enable pagination [#266](https://github.com/clowder-framework/clowder/issues/266)
32+
- Show space statistics (bytes, users. etc) [#119](https://github.com/clowder-framework/clowder/issues/119)
33+
- "id" in GET metadata.jsonld endpoints [#278](https://github.com/clowder-framework/clowder/issues/278)
34+
- 'POST /api/files/uploadToDataset' now allows folder_id for uploading file to folder. [#232](https://github.com/clowder-framework/clowder/issues/232)
2235

2336
## 1.18.1 - 2021-08-16
2437

@@ -35,7 +48,6 @@ If any files are returned, you should check to see if these files affected and a
3548
- Updated swagger documentation
3649
- Return 404 not found when calling file/dataset/space api endpoints with an invalid ID [#251](https://github.com/clowder-framework/clowder/issues/251)
3750
- Line breaks in welcome message breaks swagger build [#187](https://github.com/clowder-framework/clowder/issues/187)
38-
- Collections created using api route are now indexed upon creation. [#257](https://github.com/clowder-framework/clowder/issues/257)
3951

4052
### Changed
4153
- Added more information when writing files to make sure files are written correctly
@@ -58,9 +70,6 @@ If any files are returned, you should check to see if these files affected and a
5870
- If using S3 storage in docker, it was not reflected correctly in the docker-compose file.
5971
- Docker image for mongo-init now based on python:3.7-slim to reduce size.
6072

61-
### Added
62-
- Endpoint '/api/files/uploadToDataset' now allows folder_id for uploading file to folder. [#232](https://github.com/clowder-framework/clowder/issues/232)
63-
6473
## 1.17.0 - 2021-04-29
6574

6675
### Fixed

app/views/extractions/submitDatasetExtraction.scala.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ <h1>Submit dataset for extraction</h1>
2727
</tr>
2828
</thead>
2929
<tbody>
30-
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.1.5/deps/underscore.js"></script>
31-
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.1.5/lib/jsonform.min.js"></script>
30+
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.2.5/deps/underscore.js"></script>
31+
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.2.5/lib/jsonform.min.js"></script>
3232
@for(e <- extractors) {
3333
<tr>
3434
<td>

app/views/extractions/submitFileExtraction.scala.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ <h1>Submit file for extraction</h1>
6464
</tr>
6565
</thead>
6666
<tbody>
67-
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.1.5/deps/underscore.js"></script>
68-
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.1.5/lib/jsonform.min.js"></script>
67+
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.2.5/deps/underscore.js"></script>
68+
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.2.5/lib/jsonform.min.js"></script>
6969
@for(e <- extractors) {
7070
<tr>
7171
<td>

app/views/extractions/submitSelectedExtraction.scala.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ <h1>Submit marked files for extraction</h1>
3232
</tr>
3333
</thead>
3434
<tbody>
35-
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.1.5/deps/underscore.js"></script>
36-
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.1.5/lib/jsonform.min.js"></script>
35+
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.2.5/deps/underscore.js"></script>
36+
<script src="https://cdn.jsdelivr.net/npm/jsonform@@2.2.5/lib/jsonform.min.js"></script>
3737
@for(e <- extractors) {
3838
<tr>
3939
<td>

doc/src/sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Luigi Marini'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.18.1'
25+
release = '1.19.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import NativePackagerKeys._
1313
object ApplicationBuild extends Build {
1414

1515
val appName = "clowder"
16-
val version = "1.18.1"
16+
val version = "1.19.0"
1717
val jvm = "1.7"
1818

1919
def appVersion: String = {

public/swagger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ info:
99
Clowder is a customizable and scalable data management system to support any
1010
data format and multiple research domains. It is under active development
1111
and deployed for a variety of research projects.
12-
version: 1.18.1
12+
version: 1.19.0
1313
termsOfService: https://clowder.ncsa.illinois.edu/clowder/tos
1414
contact:
1515
name: Clowder

scripts/check/Dockerfile

Lines changed: 0 additions & 22 deletions
This file was deleted.

scripts/check/check_mongodb

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)