snakeia-server 1.1.3-4 → 1.1.3-7

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.3.4 (6/3/2024)
11
+ * Version 1.1.3.7 (9/19/2024)
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.3.4", // The server version
77
+ "version": "1.1.3.7", // The server version
78
78
  "port": 3000, // The port where the server runs
79
79
  "proxyMode": false, // Set this value to true if your server is behind a proxy - defaults to false
80
80
  "enableMultithreading": true, // Enabling the use of different threads for the game engine, improves performance / requires a version of Nodejs that supports Worker Threads
@@ -119,6 +119,15 @@ You can create another configuration file in the **config** directory named **lo
119
119
 
120
120
  ## Changelog
121
121
 
122
+ * Version 1.1.3.7 (9/19/2024) :
123
+ - Updated dependencies
124
+
125
+ * Version 1.1.3.6 (7/25/2024) :
126
+ - Updated dependencies
127
+
128
+ * Version 1.1.3.5 (6/20/2024) :
129
+ - Updated dependencies
130
+
122
131
  * Version 1.1.3.4 (6/3/2024) :
123
132
  - Updated dependencies
124
133
 
@@ -161,7 +170,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
161
170
 
162
171
  ## À propos de ce serveur
163
172
 
164
- * Version 1.1.3.4 (03/06/2024)
173
+ * Version 1.1.3.7 (19/09/2024)
165
174
  * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
166
175
  * Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
167
176
 
@@ -227,7 +236,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
227
236
  ````
228
237
  {
229
238
  "ServerConfig": {
230
- "version": "1.1.3.4", // La version du serveur
239
+ "version": "1.1.3.7", // La version du serveur
231
240
  "port": 3000, // Le port sur lequel lancer le server
232
241
  "proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
233
242
  "enableMultithreading": true, // Activer l'utilisation de threads différents pour le moteur de jeu, améliore les performances / nécessite une version de Nodejs qui supporte les Worker Threads
@@ -272,6 +281,15 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
272
281
 
273
282
  ## Journal des changements
274
283
 
284
+ * Version 1.1.3.7 (19/09/2024) :
285
+ - Mise à jour des dépendences
286
+
287
+ * Version 1.1.3.6 (25/07/2024) :
288
+ - Mise à jour des dépendences
289
+
290
+ * Version 1.1.3.5 (20/06/2024) :
291
+ - Mise à jour des dépendences
292
+
275
293
  * Version 1.1.3.4 (03/06/2024) :
276
294
  - Mise à jour des dépendences
277
295
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "ServerConfig": {
3
- "version": "1.1.3.4",
3
+ "version": "1.1.3.7",
4
4
  "port": 3000,
5
5
  "proxyMode": false,
6
6
  "enableMultithreading": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snakeia-server",
3
- "version": "1.1.3-4",
3
+ "version": "1.1.3-7",
4
4
  "description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -18,13 +18,13 @@
18
18
  },
19
19
  "homepage": "https://github.com/Eliastik/snakeia-server#readme",
20
20
  "dependencies": {
21
- "body-parser": "^1.20.2",
22
- "config": "^3.3.11",
21
+ "body-parser": "^1.20.3",
22
+ "config": "^3.3.12",
23
23
  "cookie-parser": "^1.4.6",
24
24
  "csurf": "^1.11.0",
25
25
  "ejs": "^3.1.9",
26
- "express": "^4.19.2",
27
- "express-rate-limit": "^7.3.0",
26
+ "express": "^4.21.0",
27
+ "express-rate-limit": "^7.4.0",
28
28
  "html-entities": "^2.5.2",
29
29
  "i18n": "^0.15.1",
30
30
  "jsonwebtoken": "^9.0.2",
@@ -33,6 +33,6 @@
33
33
  "snakeia": "git+https://git@github.com/Eliastik/snakeia.git#2.2",
34
34
  "socket.io": "^4.7.5",
35
35
  "socket.io-cookie-parser": "^1.0.0",
36
- "winston": "^3.13.0"
36
+ "winston": "^3.14.2"
37
37
  }
38
38
  }