Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warning fix #15

Merged
merged 26 commits into from
Nov 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
554a573
feat(sharing-wp): updated sharing frontend
gilsonbridge Oct 6, 2020
2347932
Merge branch 'dev' into workspace-share
gilsonbridge Oct 6, 2020
8eedc60
feat(sharing-wp): updated sharing frontend
gilsonbridge Oct 7, 2020
df2af90
Merge branch 'workspace-share' of https://github.com/CashStory/worksp…
gilsonbridge Oct 7, 2020
048b6ec
fix(workspace): loading workspace issue
gilsonbridge Oct 7, 2020
3293353
refactor: remove useless parenthesis
BobCashStory Oct 7, 2020
4f45594
fix(sonar-fix): sonar issues fix
gilsonbridge Oct 12, 2020
dbf0a1d
feat(request-access): allow user to request access
gilsonbridge Oct 19, 2020
d05b4a7
feat(request-access): request ws access
gilsonbridge Oct 19, 2020
2625a64
ci: :bug: fix build ci
riderx Oct 5, 2020
128d20f
fix: fix for linters
riderx Oct 5, 2020
7129222
bump: version 1.2.8 → 1.2.9
actions-user Oct 5, 2020
4ff0d4d
Merge branch 'main' of github.com:CashStory/workspaces into main
riderx Oct 5, 2020
bea992e
feat: :sparkles: add register form
riderx Oct 6, 2020
90b3dba
feat: add register module
riderx Oct 6, 2020
06afff8
bump: version 1.2.10 → 1.3.0
actions-user Oct 6, 2020
2ad369f
feat(register): new user registration
gilsonbridge Oct 9, 2020
3871649
feat(register): new user registration
gilsonbridge Oct 14, 2020
75b1cfd
Create LICENCE
BobCashStory Oct 15, 2020
561f55c
fix: ci path dependabot
BobCashStory Oct 15, 2020
4d7b427
bump: version 1.3.0 → 1.3.1
actions-user Oct 15, 2020
08f6d51
fix: ci comitizen
BobCashStory Oct 15, 2020
b44f9ad
bump: version 1.3.1 → 1.3.2
actions-user Oct 15, 2020
c14db00
bump: version 1.3.2 → 1.4.0b0
actions-user Oct 15, 2020
f78138e
fix(design): design fix
gilsonbridge Oct 21, 2020
a409dbd
fix(commonjs-fix): commonjs warning fix
gilsonbridge Oct 26, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .cz.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.2.8"
version = "1.4.0b0"
tag_format = "$major.$minor.$patch$prerelease"
version_files = [
"info.json:version",
"package.json:version",
"package-lock.json:version",
"Dockerfile:VERSION"
]
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "daily"
2 changes: 1 addition & 1 deletion .github/workflows/bump_version_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 0
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
- name: Create bump and changelog
uses: CashStory/commitizen-action@3.0.3
uses: commitizen-tools/commitizen-action@0.3.0
with:
prerelease: 'beta'
branch: 'dev'
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/deploy_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ jobs:
id: prepare
uses: Surgo/docker-smart-tag-action@v1
with:
docker_image: cashstory/workspace
docker_image: cashstory/workspaces
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ steps.prepare.outputs.tag }}
secrets: |
Expand All @@ -55,7 +56,7 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: cashstory/workspace
repository: cashstory/workspaces
- name: Image digest
run: echo ${{ steps.prepare.outputs.tag }}

40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,46 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## 1.4.0b0 (2020-10-15)

### Feat

- **register**: new user registration api scope updated for registration
- **register**: new user registration updated UI for user registration and integrated APIs

## 1.2.3b0 (2020-10-05)

## 1.3.2 (2020-10-15)

### Fix

- ci comitizen

## 1.3.1 (2020-10-15)

### Fix

- ci path dependabot

## 1.3.0 (2020-10-06)

### Feat

- add register module
- :sparkles: add register form

## 1.2.10 (2020-10-05)

### Fix

- fix for linters

## 1.2.9 (2020-10-05)

### Fix

- :fire: remove jsonmodel in run for now

## 1.2.8 (2020-10-05)

### Fix
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
FROM node:lts-alpine

ENV VERSION 1.2.8
ENV VERSION 1.4.0b0
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="Workspace Front" \
org.label-schema.description="Frontend of cashstory" \
Expand Down
Loading