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

Release latest to PROD #1135

Merged
merged 31 commits into from
Jun 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
cb0c3fc
Updated-labels
RamidiShiva Jun 1, 2021
dea227a
Removed Reference dev
RamidiShiva Jun 1, 2021
3b3e703
Merge pull request #1087 from ChainSafe/RamidiShiva-patch-2
RamidiShiva Jun 1, 2021
0deaaf0
Update readme.md (#1083)
sweetpea22 Jun 2, 2021
60d32ca
Survey v2 for product market fit (#1082)
Tbaut Jun 2, 2021
07e5cea
Storage app skeleton (#1067)
FSM1 Jun 2, 2021
fa524e2
Update release-drafter with the new name (#1088)
Tbaut Jun 2, 2021
d07af28
Add page object pattern for ui tests (#1080)
asnaith Jun 2, 2021
6829bd7
Add PR labeler based on the branch name (#1089)
Tbaut Jun 3, 2021
030a1d7
passwordless login (#1072)
tanmoyAtb Jun 4, 2021
29488cc
Fix Bin Preview (#1093)
FSM1 Jun 7, 2021
5ddf2a5
Update pr-labeler.yml (#1099)
Tbaut Jun 8, 2021
4dbdc3a
removed redundant stage & prod release which is replaced by release d…
priom Jun 8, 2021
14a4d7f
Fix InitialScreen.tsx Error messages (#1100)
Tbaut Jun 8, 2021
0409978
Deprecate all `files/` endpoints (#1095)
FSM1 Jun 9, 2021
ad6ccd7
Files API Client in Tests (#1097)
FSM1 Jun 9, 2021
d3eb8d4
Recover files with move file modal (#1094)
tanmoyAtb Jun 10, 2021
0bef998
Update file management ui tests (#1113)
asnaith Jun 10, 2021
074dab6
Wording for backup **secret** phrase (#1116)
Tbaut Jun 10, 2021
0267f5b
CIDs overview (#1117)
FSM1 Jun 10, 2021
5594587
Put eslint at top level since it's shared by all packages (#1115)
Tbaut Jun 10, 2021
8b605db
Allow to unpin a Cid (#1110)
Tbaut Jun 10, 2021
8159c53
eslint 6.8 to make react-script happy (#1121)
Tbaut Jun 10, 2021
dd01814
Add identifier for the upload status box (#1122)
asnaith Jun 10, 2021
8c2b6be
tkey address in settings (#1112)
tanmoyAtb Jun 11, 2021
37a1618
Force refresh on buckets when deleting from bin (#1127)
RyRy79261 Jun 14, 2021
ea7807c
Copied across styling (#1125)
RyRy79261 Jun 14, 2021
e00278f
Dnd Fix destination path (#1118)
FSM1 Jun 14, 2021
d48dac6
Handle walletconnect signature request (#1124)
FSM1 Jun 14, 2021
654879b
Remove Facebook login (#1136)
FSM1 Jun 15, 2021
73eb67c
email button disabled like others (#1137)
Tbaut Jun 15, 2021
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: 3 additions & 0 deletions .github/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"Type: Feature": ['feature/*', 'feat/*']
"Type: Bug Fix": fix/*
"Type: Maintenance": ['chore/*', 'mnt/*']
10 changes: 4 additions & 6 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ tag-template: "v$RESOLVED_VERSION"
categories:
- title: "🚀 Features"
labels:
- "Feature"
- "Enhancement"
- "Type: Feature"
- title: "🐛 Bug Fixes"
labels:
- "Bug"
- "Bugfix"
- "fix"
- "Type: Bug Fix"
- title: "🧰 Maintenance"
label: "Maintenance"
label:
- "Type: Maintenance"
change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: PR Labeler
on:
pull_request:
types: [opened]

jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
- uses: TimonVS/pr-labeler-action@v3
with:
configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26 changes: 0 additions & 26 deletions .github/workflows/prod_release.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/stage_release.yml

This file was deleted.

13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,20 @@
"dependencies": {},
"devDependencies": {
"@sentry/cli": "1.60.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"chalk": "^4.1.0",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.0.5",
"wsrun": "^5.2.4"
},
"scripts": {
"postinstall": "yarn build:common && yarn wsrun -p files-ui -c compile",
"build:common": "yarn build:theme && yarn build:components && yarn build:contexts",
"build:common": "yarn build:theme && yarn build:components",
"build:contexts": "yarn wsrun -t -p @chainsafe/common-contexts -c build",
"build:components": "yarn wsrun -t -p @chainsafe/common-components -c build",
"build:theme": "yarn wsrun -t -p @chainsafe/common-theme -c build",
Expand All @@ -31,9 +36,9 @@
"build:files-ui": "yarn wsrun -p files-ui -c build",
"release:files-ui": "yarn wsrun -p files-ui -c release",
"start:files-ui": "yarn wsrun -p files-ui -c start",
"build:chainsafex": "yarn wsrun -p chainsafex -c build",
"release:chainsafex": "yarn wsrun -p chainsafex -c release",
"start:chainsafex": "yarn wsrun -p chainsafex -c start",
"build:storage-ui": "yarn wsrun -p storage-ui -c build",
"release:storage-ui": "yarn wsrun -p storage-ui -c release",
"start:storage-ui": "yarn wsrun -p storage-ui -c start",
"clean:dependencies": "rm -rf ./node_modules && rm -rf ./*/**/node_modules",
"clean:dist": "rm -rf ./*/**/dist && rm -rf ./*/**/build && rm -rf ./*/**/storybook-static",
"clean": "yarn clean:dependencies && yarn clean:dist",
Expand Down
9 changes: 0 additions & 9 deletions packages/chainsafex/.env.example

This file was deleted.

48 changes: 0 additions & 48 deletions packages/chainsafex/package.json

This file was deleted.

Binary file removed packages/chainsafex/public/ChainSafe-logo.png
Binary file not shown.
Binary file removed packages/chainsafex/public/favicon.ico
Binary file not shown.
71 changes: 0 additions & 71 deletions packages/chainsafex/src/App.tsx

This file was deleted.

21 changes: 0 additions & 21 deletions packages/chainsafex/src/Components/Layouts/AppWrapper.tsx

This file was deleted.

8 changes: 0 additions & 8 deletions packages/chainsafex/src/Components/Pages/HomePage.tsx

This file was deleted.

23 changes: 0 additions & 23 deletions packages/chainsafex/src/Components/Routes.tsx

This file was deleted.

14 changes: 0 additions & 14 deletions packages/chainsafex/src/Themes/DarkTheme.ts

This file was deleted.

21 changes: 0 additions & 21 deletions packages/chainsafex/src/Themes/LightTheme.ts

This file was deleted.

1 change: 0 additions & 1 deletion packages/chainsafex/src/Utils/Constants.ts

This file was deleted.

6 changes: 1 addition & 5 deletions packages/common-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build:storybook": "build-storybook",
"build": "rollup -c",
"start": "rollup -c -w",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix"
"lint": "eslint './{src, cypress}/**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@material-ui/styles": "^4.11.2",
Expand Down Expand Up @@ -57,11 +57,7 @@
"@types/react-blockies": "^1.4.0",
"@types/react-router-dom": "^5.1.6",
"@types/react-toast-notifications": "^2.4.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-loader": "8.1.0",
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"fork-ts-checker-webpack-plugin": "^6.0.5",
"formik": "^2.2.5",
"react": "16.14.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/common-components/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export default {
strict: true
},
plugins: [
image(),
peerDepsExternal(),
image(),
resolve(),
commonjs(),
typescript(),
Expand Down
2 changes: 1 addition & 1 deletion packages/common-components/src/FileInput/FileInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ const FileInput = ({
>
<span className={classes.itemText}>{file.name}</span>
<Button
data-testid={`file-list-close-button-${testId}`}
data-testid={`file-list-remove-button-${testId}`}
className={clsx(classes.crossIcon, classNames?.closeIcon)}
type="button"
onClick={(e) => {
Expand Down
Loading