Skip to content

Commit 5e0e979

Browse files
committed
Updated version and changelog for 1.22.0 release.
1 parent e880142 commit 5e0e979

File tree

5 files changed

+16
-22
lines changed

5 files changed

+16
-22
lines changed

CHANGELOG.md

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,30 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## Unreleased
9-
10-
### Fixed
11-
12-
- Search results are checked to verify nothing has been put in trash before display [#377](https://github.com/clowder-framework/clowder/issues/377)
13-
14-
## Unreleased
8+
## 1.22.0 - 2023-09-12
159

1610
### Added
1711
- Users can be marked as ReadOnly [#405](https://github.com/clowder-framework/clowder/issues/405)
18-
- Added Trash button to delete section [#347](https://github.com/clowder-framework/clowder/issues/347)
19-
- Add "when" parameter in a few GET API endpoints to enable pagination [#266](https://github.com/clowder-framework/clowder/issues/266)
12+
- Delete button to delete section [#347](https://github.com/clowder-framework/clowder/issues/347)
13+
- When parameter on API endpoints to enable pagination [#266](https://github.com/clowder-framework/clowder/issues/266)
2014
- Extractors can now specify an extractor_key and an owner (email address) when sending a
2115
registration or heartbeat to Clowder that will restrict use of that extractor to them.
22-
- Added a dropdown menu to select all spaces, your spaces and also the spaces you have access to. [#374](https://github.com/clowder-framework/clowder/issues/374)
23-
- Add SMTP_FROM in docker-compose yml file. [#417](https://github.com/clowder-framework/clowder/issues/417)
16+
- Added a dropdown menu to space listing to select all spaces, your spaces and also the spaces you have access to. [#374](https://github.com/clowder-framework/clowder/issues/374)
17+
- Support for SMTP_FROM in docker-compose yml file. [#417](https://github.com/clowder-framework/clowder/issues/417)
2418
- Keycloak provider with secure social [#419](https://github.com/clowder-framework/clowder/issues/419)
2519
- Documentation on how to do easy testing of pull requests
26-
- Previewer source URL in the documentation to point to the Clowder GitHub repo. [#395](https://github.com/clowder-framework/clowder/issues/395)
27-
- Added a citation.cff file
28-
- Add sections endpoint to file API and fix missing section routes in javascriptRoutes [#410](https://github.com/clowder-framework/clowder/pull/410)
29-
- Added Google's model viewer within viewer_three.js previewer
20+
- citation.cff
21+
- New GET sections endpoint to file API and fix missing section routes in javascriptRoutes [#410](https://github.com/clowder-framework/clowder/pull/410)
22+
- Google's model viewer within viewer_three.js previewer
3023

3124
### Fixed
3225
- Updated lastModifiesDate when updating file or metadata to a dataset, added lastModified to UI [386](https://github.com/clowder-framework/clowder/issues/386)
33-
- Disabled button while create dataset ajax call is still going on [#311](https://github.com/clowder-framework/clowder/issues/311)
26+
- Disabled button after creating new dataset [#311](https://github.com/clowder-framework/clowder/issues/311)
3427
- Changed default to 'Viewer' while inviting users to new spaces [#375](https://github.com/clowder-framework/clowder/issues/375)
35-
- Fixed bug where complex JSON metadata objects using arrays were not being indexed properly for search.
28+
- Complex extracted JSON metadata objects using arrays are now being indexed properly for search.
3629
- Fixed positioning problems related to how the 3D models appear on the screen
37-
30+
- Search results are checked to verify nothing has been put in trash before display [#377](https://github.com/clowder-framework/clowder/issues/377)
31+
- Previewer source URL in the documentation to point to the Clowder GitHub repo. [#395](https://github.com/clowder-framework/clowder/issues/395)
3832

3933
## 1.21.0 - 2022-08-23
4034

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.21.0'
25+
release = '1.22.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.21.0"
16+
val version = "1.22.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.21.0
12+
version: 1.22.0
1313
termsOfService: https://clowder.ncsa.illinois.edu/clowder/tos
1414
contact:
1515
name: Clowder

version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
VERSION="1.19.2"
3+
VERSION="1.22.0"
44

55
sed -i~ "s#^ val version = \".*\"\$# val version = \"${VERSION}\"#" project/Build.scala
66
sed -i~ "s#^ version: .*\$# version: ${VERSION}#" public/swagger.yml

0 commit comments

Comments
 (0)