Skip to content

Commit c468c00

Browse files
committed
fix merge conflicts
2 parents 5418330 + 0b64a07 commit c468c00

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+775
-993
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ node_modules/**/*
22
build/**/*
33
server/**/*
44
**/__tests__/*
5-
scripts/**/*
5+
scripts/**/*
6+
service-worker.js

.github/dependabot.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,6 @@ updates:
1515
commit-message:
1616
prefix: "yarn"
1717
include: "scope"
18-
groups:
19-
prod-dependencies:
20-
applies-to: version-updates
21-
dependency-type: "production"
22-
update-types:
23-
- "patch"
24-
- "minor"
25-
dev-dependencies:
26-
dependency-type: "development"
27-
update-types:
28-
- "patch"
29-
- "minor"
3018

3119
# Server
3220
- package-ecosystem: "gomod"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ yarn-error.log*
1616
# builds
1717
build
1818
server/src/main
19+
server/src/server
1920

2021
# misc
2122
.DS_Store

nginx.conf

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ server {
1919

2020
gzip on;
2121
gzip_vary on;
22-
gzip_types text/plain text/css text/javascript application/javascript application/json;
22+
gzip_comp_level 6;
23+
gzip_types text/plain text/css text/xml application/json application/javascript application/rss+xml application/atom+xml image/svg+xml;
2324
gzip_proxied no-cache no-store private expired auth;
2425
gzip_min_length 1024;
2526
gzip_disable "MSIE [1-6]\.";
@@ -43,9 +44,16 @@ server {
4344
expires 0;
4445
}
4546

46-
location ~* \.(js|jpg|jpeg|gif|png|svg|css|json)$ {
47-
# Cache media files for 28 days
48-
add_header Cache-Control "max-age=2419200, public";
47+
location ~* \.(js|json)$ {
48+
# Cache JS and JSON files for 3 days
49+
expires 3d;
50+
add_header Cache-Control "public, must-revalidate";
51+
}
52+
53+
location ~* \.(jpg|jpeg|gif|png|svg|css)$ {
54+
# Cache other media files for 14 days
55+
expires 14d;
56+
add_header Cache-Control "public";
4957
}
5058

5159
location ~* \.(ico|mp3)$ {

package.json

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"url": "https://github.com/inovex/scrumlr.io/issues",
77
"email": "[email protected]"
88
},
9-
"version": "3.6.0",
9+
"version": "3.7.1",
1010
"private": true,
1111
"license": "MIT",
1212
"dependencies": {
@@ -22,7 +22,7 @@
2222
"classnames": "^2.5.1",
2323
"file-saver": "^2.0.5",
2424
"i18next": "^23.10.1",
25-
"i18next-browser-languagedetector": "^7.2.0",
25+
"i18next-browser-languagedetector": "^7.2.1",
2626
"js-cookie": "^3.0.5",
2727
"marked": "12.0.1",
2828
"plausible-tracker": "^0.3.8",
@@ -44,34 +44,28 @@
4444
"sockette": "^2.0.6",
4545
"underscore": "^1.13.6",
4646
"use-long-press": "^3.2.0",
47-
"use-sound": "^4.0.1",
48-
"workbox-core": "^7.0.0",
49-
"workbox-precaching": "^7.0.0",
50-
"workbox-routing": "^7.0.0"
47+
"use-sound": "^4.0.1"
5148
},
5249
"devDependencies": {
5350
"@testing-library/dom": "^9.3.4",
5451
"@testing-library/jest-dom": "^6.4.2",
55-
"@testing-library/react": "^14.2.1",
52+
"@testing-library/react": "^14.2.2",
5653
"@testing-library/user-event": "^14.5.2",
5754
"@types/classnames": "^2.3.1",
5855
"@types/file-saver": "^2.0.7",
5956
"@types/history": "^5.0.0",
6057
"@types/i18next-fs-backend": "^1.1.5",
6158
"@types/jest": "^29.5.12",
6259
"@types/js-cookie": "^3.0.6",
63-
"@types/node": "^20.11.27",
60+
"@types/node": "^20.12.4",
6461
"@types/qrcode.react": "^1.0.5",
6562
"@types/react": "^18.2.65",
66-
"@types/react-dom": "^18.2.22",
63+
"@types/react-dom": "^18.2.24",
6764
"@types/react-helmet": "^6.1.11",
6865
"@types/redux-mock-store": "^1.0.6",
6966
"@types/smoothscroll-polyfill": "^0.3.4",
7067
"@types/underscore": "^1.11.15",
7168
"@types/uuid": "^9.0.8",
72-
"@types/workbox-core": "^5.0.0",
73-
"@types/workbox-precaching": "^5.0.0",
74-
"@types/workbox-routing": "^5.0.0",
7569
"@typescript-eslint/eslint-plugin": "^5.62.0",
7670
"@typescript-eslint/parser": "^5.62.0",
7771
"cross-env": "^7.0.3",
@@ -86,7 +80,7 @@
8680
"eslint-plugin-jsx-a11y": "6.8.0",
8781
"eslint-plugin-only-warn": "^1.1.0",
8882
"eslint-plugin-prettier": "^5.1.3",
89-
"eslint-plugin-react": "7.34.0",
83+
"eslint-plugin-react": "7.34.1",
9084
"eslint-plugin-react-hooks": "4.6.0",
9185
"hash-files": "^1.1.1",
9286
"husky": "^9.0.11",
@@ -98,9 +92,9 @@
9892
"react-scripts": "^5.0.1",
9993
"redux-mock-store": "^1.5.4",
10094
"resize-observer-polyfill": "^1.5.1",
101-
"sass": "^1.72.0",
95+
"sass": "^1.74.1",
10296
"ts-jest": "^29.1.2",
103-
"typescript": "^5.4.2"
97+
"typescript": "^5.4.4"
10498
},
10599
"scripts": {
106100
"start": "react-scripts start",

public/icons/1024.png

-53 KB
Binary file not shown.

public/icons/1024_maskable.png

-48.1 KB
Binary file not shown.

public/icons/150.png

-4.73 KB
Binary file not shown.

public/icons/152.png

-4.75 KB
Binary file not shown.

public/icons/16.png

-404 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)