Skip to content

Commit

Permalink
Release v5.1.2 (hotfix)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinejaussoin authored May 24, 2023
1 parent ebddee6 commit 2e15b32
Show file tree
Hide file tree
Showing 11 changed files with 211 additions and 208 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Alpha Build'

on:
push:
branches: [v511/updates]
branches: [v512/palette-bug]

jobs:
frontend:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ This will run a demo version, which you can turn into a fully licenced version b

## Versions History

### Version 5.1.2 (hotfix)

- Fix odd bug crashing the side-panel in certain circumstances

### Version 5.1.1

- Add blog pages to the marketing website
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/backend",
"version": "5.1.1",
"version": "5.1.2",
"license": "GNU GPLv3",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/docs",
"version": "5.1.1",
"version": "5.1.2",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
14 changes: 7 additions & 7 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/frontend",
"version": "5.1.1",
"version": "5.1.2",
"license": "GNU GPLv3",
"private": true,
"dependencies": {
Expand All @@ -9,14 +9,14 @@
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@esbuild-plugins/node-modules-polyfill": "0.2.2",
"@hello-pangea/dnd": "16.2.0",
"@mui/base": "5.0.0-beta.1",
"@mui/base": "5.0.0-beta.2",
"@mui/icons-material": "5.11.16",
"@mui/material": "5.13.1",
"@mui/styles": "5.13.1",
"@mui/system": "5.13.1",
"@mui/material": "5.13.2",
"@mui/styles": "5.13.2",
"@mui/system": "5.13.2",
"@mui/x-data-grid": "6.5.0",
"@rollup/plugin-inject": "5.0.3",
"@sentry/browser": "7.52.1",
"@sentry/browser": "7.53.0",
"@stripe/react-stripe-js": "2.1.0",
"@stripe/stripe-js": "1.53.0",
"@testing-library/jest-dom": "5.16.5",
Expand All @@ -27,7 +27,7 @@
"@types/emoji-mart": "3.0.9",
"@types/lodash": "4.14.194",
"@types/md5": "2.3.2",
"@types/node": "20.2.1",
"@types/node": "20.2.3",
"@types/react": "18.2.6",
"@types/react-color": "3.0.6",
"@types/react-copy-to-clipboard": "5.0.4",
Expand Down
46 changes: 23 additions & 23 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@ import { FullScreenLoader } from 'components/loaders/FullScreenLoader';

function App() {
return (
<RecoilRoot>
<Suspense fallback={<FullScreenLoader />}>
<Helmet>
<meta property="og:title" content="Retrospected.com" />
<meta
property="og:description"
content="Real-time Agile Retrospective Board for development teams"
/>
<meta property="og:url" content="https://app.retrospected.com" />
</Helmet>
<SnackbarProvider
maxSnack={3}
autoHideDuration={3000}
anchorOrigin={{
vertical: 'top',
horizontal: 'center',
}}
>
<ThemeProvider theme={theme}>
<ThemeProvider theme={theme}>
<RecoilRoot>
<Suspense fallback={<FullScreenLoader />}>
<Helmet>
<meta property="og:title" content="Retrospected.com" />
<meta
property="og:description"
content="Real-time Agile Retrospective Board for development teams"
/>
<meta property="og:url" content="https://app.retrospected.com" />
</Helmet>
<SnackbarProvider
maxSnack={3}
autoHideDuration={3000}
anchorOrigin={{
vertical: 'top',
horizontal: 'center',
}}
>
<ConfirmProvider>
<BrowserRouter>
<AuthProvider>
Expand All @@ -53,10 +53,10 @@ function App() {
</AuthProvider>
</BrowserRouter>
</ConfirmProvider>
</ThemeProvider>
</SnackbarProvider>
</Suspense>
</RecoilRoot>
</SnackbarProvider>
</Suspense>
</RecoilRoot>
</ThemeProvider>
);
}

Expand Down
1 change: 0 additions & 1 deletion frontend/src/components/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const StyledBadge = withStyles((theme) =>
badge: {
backgroundColor: '#44b700',
color: '#44b700',
boxShadow: `0 0 0 2px ${theme.palette.background.paper}`,
'&::after': {
position: 'absolute',
top: 0,
Expand Down
Loading

0 comments on commit 2e15b32

Please sign in to comment.