Skip to content

Commit

Permalink
Bugfix on email verification logic (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinejaussoin authored Oct 13, 2021
1 parent 118bad3 commit 4691ac5
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ configuration.json
.env copy
/db

*.rest
*.rest
.docusaurus
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

This is a Retrospective Idea board, powering [retrospected.com](http://www.retrospected.com).

Documentation [available here](https://docs.retrospected.com).

 

<p align="center">
Expand Down Expand Up @@ -147,6 +149,11 @@ When using the Docker deployment, your database runs from a container. But if yo

## Versions History

### Version 4.9.0

- Brand new [documentation website](https://docs.retrospected.com).
- 🐛 The Unlimited subscription domain check was not accepting valid domains such as `.ventures` or `.agency`.

### Version 4.8.0

- Upgrade to MUI 5.0 (ex Material UI)
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": "4.8.0",
"version": "4.9.0",
"license": "GNU GPLv3",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/common",
"version": "4.8.0",
"version": "4.9.0",
"license": "GNU GPLv3",
"private": true,
"main": "dist/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/frontend",
"version": "4.8.0",
"version": "4.9.0",
"license": "GNU GPLv3",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/subscribe/SubscribePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function SubscriberPage() {
useEffect(() => {
setValidDomain(false);
const domainRegex =
/^[a-zA-Z0-9][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9]{0,1}\.([a-zA-Z]{1,6}|[a-zA-Z0-9-]{1,30}\.[a-zA-Z]{2,3})$/g;
/^[a-zA-Z0-9][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9]{0,1}\.([a-zA-Z]{1,20}|[a-zA-Z0-9-]{1,30}\.[a-zA-Z]{2,3})$/g;
if (!domainRegex.test(domain)) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "retrospected",
"version": "4.8.0",
"version": "4.9.0",
"description": "An agile retrospective board - Powering www.retrospected.com",
"private": true,
"workspaces": [
Expand Down

0 comments on commit 4691ac5

Please sign in to comment.