snakeia-server 1.1.3-3 → 1.1.3-6

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.3 (3/30/2024)
11
+ * Version 1.1.3.6 (7/25/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.3", // The server version
77
+ "version": "1.1.3.6", // 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.6 (7/25/2024) :
123
+ - Updated dependencies
124
+
125
+ * Version 1.1.3.5 (6/20/2024) :
126
+ - Updated dependencies
127
+
128
+ * Version 1.1.3.4 (6/3/2024) :
129
+ - Updated dependencies
130
+
122
131
  * Version 1.1.3.3 (3/30/2024) :
123
132
  - Updated dependencies
124
133
 
@@ -158,7 +167,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
158
167
 
159
168
  ## À propos de ce serveur
160
169
 
161
- * Version 1.1.3.3 (30/03/2024)
170
+ * Version 1.1.3.6 (25/07/2024)
162
171
  * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
163
172
  * Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
164
173
 
@@ -224,7 +233,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
224
233
  ````
225
234
  {
226
235
  "ServerConfig": {
227
- "version": "1.1.3.3", // La version du serveur
236
+ "version": "1.1.3.6", // La version du serveur
228
237
  "port": 3000, // Le port sur lequel lancer le server
229
238
  "proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
230
239
  "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
@@ -269,6 +278,15 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
269
278
 
270
279
  ## Journal des changements
271
280
 
281
+ * Version 1.1.3.6 (25/07/2024) :
282
+ - Mise à jour des dépendences
283
+
284
+ * Version 1.1.3.5 (20/06/2024) :
285
+ - Mise à jour des dépendences
286
+
287
+ * Version 1.1.3.4 (03/06/2024) :
288
+ - Mise à jour des dépendences
289
+
272
290
  * Version 1.1.3.3 (30/03/2024) :
273
291
  - Mise à jour des dépendences
274
292
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "ServerConfig": {
3
- "version": "1.1.3.3",
3
+ "version": "1.1.3.6",
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-3",
3
+ "version": "1.1.3-6",
4
4
  "description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -19,12 +19,12 @@
19
19
  "homepage": "https://github.com/Eliastik/snakeia-server#readme",
20
20
  "dependencies": {
21
21
  "body-parser": "^1.20.2",
22
- "config": "^3.3.11",
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
26
  "express": "^4.19.2",
27
- "express-rate-limit": "^7.2.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.13.1"
37
37
  }
38
38
  }