Skip to content

Commit

Permalink
release: v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ntarocco committed Jul 25, 2023
1 parent 01ec14c commit f30a6d8
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 28 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changes

Version 1.0.0 (released 2023-07-25)

* Restrict who can create communities via role/user needs
* Fix display banner
* Make sync users/groups tasks running only on deployed envs
* Add funders/awards
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ check-manifest = ">=0.25"
invenio-app-rdm = {version = "~=12.0.0b2.dev9", extras = ["opensearch2"]}
invenio-logging = {extras = ["sentry-sdk"], version = "~=1.3.0"}
cds-rdm = {editable="True", path="./site"}
#cds-dojson = {git = "https://github.com/CERNDocumentServer/cds-dojson", ref = "rdm"}
#invenio-rdm-migrator = ">=1.0.0a10"
cds-dojson = {git = "https://github.com/CERNDocumentServer/cds-dojson", ref = "rdm"}
invenio-rdm-migrator = "==1.0.0a14"
lxml = ">=4.6.5"

ipython = "!=8.1.0"
Expand Down
80 changes: 58 additions & 22 deletions Pipfile.lock

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

6 changes: 3 additions & 3 deletions invenio.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -209,16 +209,16 @@ from cds_rdm.oidc import (
)
from urllib.parse import quote

_CERN_KEYCLOAK_URL = os.environ.get("INVENIO_CERN_KEYCLOAK_BASE_URL", "https://keycloak-qa.cern.ch/")
CERN_KEYCLOAK_BASE_URL = os.environ.get("INVENIO_CERN_KEYCLOAK_BASE_URL", "https://keycloak-qa.cern.ch/")

_keycloak_helper = KeycloakSettingsHelper(
title="CERN",
description="CERN SSO authentication",
base_url=_CERN_KEYCLOAK_URL,
base_url=CERN_KEYCLOAK_BASE_URL,
realm="cern",
app_key="CERN_APP_CREDENTIALS",
logout_url="{}auth/realms/cern/protocol/openid-connect/logout?redirect_uri={}".format(
_CERN_KEYCLOAK_URL,
CERN_KEYCLOAK_BASE_URL,
quote(os.environ.get("INVENIO_SITE_UI_URL", SITE_UI_URL))
),
)
Expand Down
2 changes: 1 addition & 1 deletion site/cds_rdm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from .ext import CDS_RDM_UI, CDS_RDM_REST

__version__ = "0.1.0"
__version__ = "1.0.0"

__all__ = (
"__version__",
Expand Down

0 comments on commit f30a6d8

Please sign in to comment.