snakeia-server 1.1.4-1 → 1.1.4-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,7 +8,7 @@ A server for my [SnakeIA](https://github.com/Eliastik/snakeia) game, written in
8
8
 
9
9
  ## About this server
10
10
 
11
- * Version 1.1.4.1 (1/1/2025)
11
+ * Version 1.1.4.2 (6/18/2025)
12
12
  * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
13
13
  * License: GNU GPLv3 (see LICENCE.txt file)
14
14
 
@@ -74,7 +74,7 @@ You can create another configuration file in the **config** directory named **lo
74
74
  ````
75
75
  {
76
76
  "ServerConfig": {
77
- "version": "1.1.4.1", // The server version
77
+ "version": "1.1.4.2", // The server version
78
78
  "port": 3000, // The port where the server runs
79
79
  "proxyMode": false, // Sets this value to true if your server is behind a proxy - defaults to false
80
80
  "numberOfProxies": 1, // Sets the number of reverse proxies in front of the server. Default to 1. See: https://expressjs.com/en/guide/behind-proxies.html / https://express-rate-limit.mintlify.app/guides/troubleshooting-proxy-issues
@@ -120,7 +120,10 @@ You can create another configuration file in the **config** directory named **lo
120
120
 
121
121
  ## Changelog
122
122
 
123
- * Version 1.1.4.1 (1/1/2024):
123
+ * Version 1.1.4.2 (6/18/2025):
124
+ - Updated dependencies
125
+
126
+ * Version 1.1.4.1 (1/1/2025):
124
127
  - Updated dependencies
125
128
 
126
129
  * Version 1.1.4 (11/23/2024):
@@ -182,7 +185,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
182
185
 
183
186
  ## À propos de ce serveur
184
187
 
185
- * Version 1.1.4.1 (1/1/2025)
188
+ * Version 1.1.4.2 (18/06/2025)
186
189
  * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
187
190
  * Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
188
191
 
@@ -248,7 +251,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
248
251
  ````
249
252
  {
250
253
  "ServerConfig": {
251
- "version": "1.1.4.1", // La version du serveur
254
+ "version": "1.1.4.2", // La version du serveur
252
255
  "port": 3000, // Le port sur lequel lancer le server
253
256
  "proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
254
257
  "numberOfProxies": 1, // Configure le nombre de proxies devant votre serveur. Par défaut 1. Voir : https://expressjs.com/en/guide/behind-proxies.html / https://express-rate-limit.mintlify.app/guides/troubleshooting-proxy-issues
@@ -294,6 +297,9 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
294
297
 
295
298
  ## Journal des changements
296
299
 
300
+ * Version 1.1.4.2 (18/06/2025) :
301
+ - Mise à jour des dépendences
302
+
297
303
  * Version 1.1.4.1 (1/1/2025) :
298
304
  - Mise à jour des dépendences
299
305
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "ServerConfig": {
3
- "version": "1.1.4.1",
3
+ "version": "1.1.4.2",
4
4
  "port": 3000,
5
5
  "proxyMode": false,
6
6
  "numberOfProxies": 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snakeia-server",
3
- "version": "1.1.4-1",
3
+ "version": "1.1.4-2",
4
4
  "description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -18,14 +18,14 @@
18
18
  },
19
19
  "homepage": "https://github.com/Eliastik/snakeia-server#readme",
20
20
  "dependencies": {
21
- "body-parser": "^1.20.3",
22
- "config": "^3.3.12",
21
+ "body-parser": "^2.2.0",
22
+ "config": "^4.0.0",
23
23
  "cookie-parser": "^1.4.7",
24
- "csrf-csrf": "^3.1.0",
24
+ "csrf-csrf": "^4.0.3",
25
25
  "ejs": "^3.1.10",
26
- "express": "^4.21.2",
26
+ "express": "^5.1.0",
27
27
  "express-rate-limit": "^7.5.0",
28
- "html-entities": "^2.5.2",
28
+ "html-entities": "^2.6.0",
29
29
  "i18n": "^0.15.1",
30
30
  "jsonwebtoken": "^9.0.2",
31
31
  "node-fetch": "^3.3.2",