Skip to content

Commit

Permalink
release updates
Browse files Browse the repository at this point in the history
  • Loading branch information
longshuicy committed Jul 22, 2024
1 parent 82f7be6 commit b5b6762
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 14 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [v2.0.0-beta.3] - 2024-07-29

### Added

- License management
- Release dataset with versions
- Enable and disable user account through Keycloak
- Jupyterhub integration
- Interface for creating and editing matching criteria for triggering extractors
- Interface for editing metadata definitions
- My dataset tab listing all the datasets created by the user
- Drag and drop upload multiple files
- Footer with links to documentation, source code, and contact information
- Documentation through MKDocs

### Changed

- Allow public datasets and files to be searchable
- List all the extractors with the ability to enable/disable the extractors
- Filter listeners based on their support for file or dataset
- Helm chart updated to support custom existing secret

### Fixed

- Clowder registration link on the top bar
- Case-insensitive search
- Download count immediately increments after download

## [v2.0.0-beta.2] - 2024-02-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion backend/app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Settings(BaseSettings):
API_V2_STR: str = "/api/v2"
admin_email: str = "[email protected]"
frontend_url: str = "http://localhost:3000"
version: str = "2.0.0-beta.2"
version: str = "2.0.0-beta.3"

# Unique secret for hashing API keys. Generate with `openssl rand -hex 32`
local_auth_secret = "clowder_secret_key"
Expand Down
2 changes: 1 addition & 1 deletion backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
description="A cloud native data management framework to support any research domain. Clowder was "
"developed to help researchers and scientists in data intensive domains manage raw data, complex "
"metadata, and automatic data pipelines. ",
version="2.0.0-beta.2",
version="2.0.0-beta.3",
contact={"name": "Clowder", "url": "https://clowderframework.org/"},
license_info={
"name": "Apache 2.0",
Expand Down
4 changes: 2 additions & 2 deletions deployments/kubernetes/charts/clowder2/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ description: >
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.9.1
version: 1.9.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2.0.0-beta.2"
appVersion: "2.0.0-beta.3"

# List of people that maintain this helm chart.
maintainers:
Expand Down
4 changes: 2 additions & 2 deletions deployments/kubernetes/charts/clowder2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ hostname: { your hostname. E.g. clowder2.software-dev.ncsa.illinois.edu }
frontend:
image:
repository: clowder/clowder2-frontend
tag: 2.0.0-beta.2
tag: 2.0.0-beta.3
pullPolicy: Always

backend:
image:
repository: clowder/clowder2-backend
tag: 2.0.0-beta.2
tag: 2.0.0-beta.3
pullPolicy: Always

geoserver:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
- /var/run/docker.sock:/var/run/docker.sock

backend:
image: 'clowder/clowder2-backend:2.0.0-beta.2'
image: 'clowder/clowder2-backend:2.0.0-beta.3'
restart: unless-stopped
build:
context: ./backend
Expand Down Expand Up @@ -77,7 +77,7 @@ services:
- "traefik.http.routers.backend.priority=5"

frontend:
image: "clowder/clowder2-frontend:2.0.0-beta.2"
image: "clowder/clowder2-frontend:2.0.0-beta.3"
restart: unless-stopped
build:
context: ./frontend
Expand Down
2 changes: 1 addition & 1 deletion frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clowder-frontend",
"version": "2.0.0-beta.2",
"version": "2.0.0-beta.3",
"description": "",
"engines": {
"npm": ">=8.11",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const hostname =

// TODO when add auth piece remove this env
const apikey = process.env.APIKEY || "";
config["appVersion"] = "v2.0.0-beta.2";
config["appVersion"] = "v2.0.0-beta.3";
config["mailingList"] = "[email protected]";
config["slackChannel"] =
"https://join.slack.com/t/clowder-software/shared_invite/enQtMzQzOTg0Nzk3OTUzLTYwZDlkZDI0NGI4YmI0ZjE5MTZiYmZhZTIyNWE1YzM0NWMwMzIxODNhZTA1Y2E3MTQzOTg1YThiNzkwOWQwYWE";
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/openapi/v2/core/OpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Config = {

export const OpenAPI: Config = {
BASE: '',
VERSION: '2.0.0-beta.2',
VERSION: '2.0.0-beta.3',
WITH_CREDENTIALS: false,
CREDENTIALS: 'include',
TOKEN: undefined,
Expand Down
4 changes: 2 additions & 2 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "2.0.0-beta.2"
"version": "2.0.0-beta.3"
},
"paths": {
"/api/v2/users": {
Expand Down Expand Up @@ -13972,7 +13972,7 @@
"version": {
"title": "Version",
"type": "string",
"default": "2.0.0-beta.2"
"default": "2.0.0-beta.3"
}
}
},
Expand Down

0 comments on commit b5b6762

Please sign in to comment.