Skip to content

Commit

Permalink
build: release 3.1.0 (#2328)
Browse files Browse the repository at this point in the history
Co-authored-by: Chandrasekhar Ramakrishnan <[email protected]>
  • Loading branch information
lorenzo-cavazzi and ciyer authored Jan 25, 2023
1 parent 5319147 commit 4a7cdb4
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changes

# [3.1.0](https://github.com/SwissDataScienceCenter/renku-ui/compare/3.0.0...3.1.0) (2023-01-24)

### Features

* change text on the quickstart session button from "start" to "connect" when a session is running ([#1381](https://github.com/SwissDataScienceCenter/renku-ui/issues/1381), [#2268](https://github.com/SwissDataScienceCenter/renku-ui/issues/2268))

### Bug Fixes

* restrict visibility options to be compatible with namespace and parent project in fork dialog ([#2296](https://github.com/SwissDataScienceCenter/renku-ui/issues/2296), [#2299](https://github.com/SwissDataScienceCenter/renku-ui/issues/2299))

# [3.0.0](https://github.com/SwissDataScienceCenter/renku-ui/compare/2.16.0...3.0.0) (2023-01-17)

### Features
Expand Down
4 changes: 2 additions & 2 deletions client/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 client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "renku-ui",
"version": "3.0.0",
"version": "3.1.0",
"private": true,
"dependencies": {
"@ckeditor/ckeditor5-react": "^5.0.2",
Expand Down
4 changes: 2 additions & 2 deletions client/src/project/overview/ProjectOverview.present.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,12 @@ class OverviewCommits extends Component {
</span>
<div>
{badge}
<RefreshButton action={commits.refresh} updating={commits.fetching} message="Refresh commits" />
<RefreshButton action={commits.refresh} updating={commits.fetching}
message="Refresh commits" dataCy="refresh-commits" />
{buttonGit}
</div>
</CardHeader>
<CardBody className="p-4 pt-3 pb-3 lh-lg">
{/* <CardBody className="p-0 lh-lg"> */}
{body}
{info}
</CardBody>
Expand Down
7 changes: 6 additions & 1 deletion client/src/utils/components/buttons/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,21 @@ function ButtonWithMenu(props) {
* @param {function} props.action - function to trigger when clicking on the button
* @param {boolean} [props.updating] - pilot the spin, should be true when performing the action
* @param {boolean} [props.message] - tooltip message to trigger on hover
* @param {boolean} [props.dataCy] - add data-cy property
*/
function RefreshButton(props) {
const id = "button_" + simpleHash(props.action.toString());
const tooltip = props.message ?
(<UncontrolledTooltip key="tooltip" placement="top" target={id}>{props.message}</UncontrolledTooltip>) :
null;
let extraProps = {};
if (props.dataCy)
extraProps["data-cy"] = props.dataCy;

return (
<Fragment>
<Button key="button" className="ms-2 p-0" color="link" size="sm" id={id} onClick={() => props.action()}>
<Button key="button" className="ms-2 p-0" color="link" size="sm" id={id}
onClick={() => props.action()} {...extraProps}>
<FontAwesomeIcon icon={faSyncAlt} spin={props.updating} />
</Button>
{tooltip}
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/renku-ui/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ appVersion: '1.0'
description: A Helm chart for the Renku UI
name: renku-ui
icon: https://github.com/SwissDataScienceCenter/renku-sphinx-theme/raw/master/renku_sphinx_theme/static/favicon.png
version: 3.0.0
version: 3.1.0
4 changes: 2 additions & 2 deletions helm-chart/renku-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ client:

image:
repository: renku/renku-ui
tag: "3.0.0"
tag: "3.1.0"
pullPolicy: IfNotPresent

## Optionally specify an array of imagePullSecrets.
Expand Down Expand Up @@ -182,7 +182,7 @@ server:

image:
repository: renku/renku-ui-server
tag: "3.0.0"
tag: "3.1.0"
pullPolicy: IfNotPresent

imagePullSecrets: []
Expand Down
4 changes: 2 additions & 2 deletions server/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 server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "renku-ui-server",
"version": "3.0.0",
"version": "3.1.0",
"description": "Server for renku API",
"private": true,
"main": "dist/index.js",
Expand Down

0 comments on commit 4a7cdb4

Please sign in to comment.