Skip to content

Commit 2ec13db

Browse files
authored
Merge pull request #355 from clowder-framework/fix-enabled-superadmin
Fix enabled superadmin
2 parents 86ba0e3 + 9b6e762 commit 2ec13db

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

.github/workflows/swagger.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
- uses: actions/checkout@v2
2424

2525
- name: openapi-lint
26-
uses: mhiew/redoc-lint-github-action@v2
26+
uses: mbowman100/swagger-validator-action@master
2727
with:
28-
args: 'public/swagger.yml --skip-rule operation-operationId'
28+
files: public/swagger.yml

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
## 1.20.2 - 2022-04-30
9+
10+
### Fixed
11+
- swagger lint action
12+
13+
### Changed
14+
- Changed `Enabled By SuperAdmin` to read `Enabled by Server Admin` [#344](https://github.com/clowder-framework/clowder/issues/344)
15+
816
## 1.20.1 - 2022-04-04
917

1018
### Fixed

app/views/spaces/updateExtractors.scala.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ <h1>Space Extractors</h1>
3535
<th>Name</th>
3636
<th>Description</th>
3737
<th>Process Triggers</th>
38-
<th class="text-center" title="Extractors marked for execution in all spaces">Enabled By SuperAdmin</th>
39-
<th class="text-center" title="Follow selection in 'Enabled By SuperAdmin' column">Use Default</th>
38+
<th class="text-center" title="Extractors marked for execution in all spaces">Enabled by Server Admin</th>
39+
<th class="text-center" title="Follow selection in 'Enabled by Server Admin' column">Use Default</th>
4040
<th class="text-center" title="Always trigger execution in this space">Enable in Space</th>
4141
<th class="text-center" title="Never trigger execution in this space">Disable in Space</th>
4242
</tr>

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

0 commit comments

Comments
 (0)