snakeia-server 1.2.3 → 1.2.5

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/.drone.yml CHANGED
@@ -16,4 +16,4 @@ steps:
16
16
  from_secret: REGISTRY_PASSWORD
17
17
  tags:
18
18
  - latest
19
- - 1.2.3
19
+ - 1.2.5
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.2.3 (11/2/2025)
11
+ * Version 1.2.5 (1/4/2026)
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.2.3", // The server version
77
+ "version": "1.2.5", // 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
@@ -123,6 +123,12 @@ You can create another configuration file in the **config** directory named **lo
123
123
 
124
124
  ## Changelog
125
125
 
126
+ * Version 1.2.5 (1/4/2026):
127
+ - Update dependencies
128
+
129
+ * Version 1.2.4 (12/6/2025):
130
+ - Update dependencies
131
+
126
132
  * Version 1.2.3 (11/2/2025):
127
133
  - Update to Node 24 LTS
128
134
  - Update dependencies
@@ -213,7 +219,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
213
219
 
214
220
  ## À propos de ce serveur
215
221
 
216
- * Version 1.2.3 (02/11/2025)
222
+ * Version 1.2.5 (04/01/2026)
217
223
  * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
218
224
  * Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
219
225
 
@@ -279,7 +285,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
279
285
  ````
280
286
  {
281
287
  "ServerConfig": {
282
- "version": "1.2.3", // La version du serveur
288
+ "version": "1.2.5", // La version du serveur
283
289
  "port": 3000, // Le port sur lequel lancer le server
284
290
  "proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
285
291
  "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
@@ -328,6 +334,12 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
328
334
 
329
335
  ## Journal des changements
330
336
 
337
+ * Version 1.2.5 (04/01/2026) :
338
+ - Mise à jour des dépendences
339
+
340
+ * Version 1.2.4 (06/12/2025) :
341
+ - Mise à jour des dépendances
342
+
331
343
  * Version 1.2.3 (02/11/2025) :
332
344
  - Mise à jour vers Node 24 LTS
333
345
  - Mise à jour des dépendances
@@ -421,7 +433,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
421
433
 
422
434
  ## Déclaration de licence
423
435
 
424
- Copyright (C) 2020-2025 Eliastik (eliastiksofts.com)
436
+ Copyright (C) 2020-2026 Eliastik (eliastiksofts.com)
425
437
 
426
438
  Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le modifier suivant les termes de la GNU General Public License telle que publiée par la Free Software Foundation ; soit la version 3 de la licence, soit (à votre gré) toute version ultérieure.
427
439
 
@@ -431,7 +443,7 @@ Vous devez avoir reçu une copie de la GNU General Public License en même temps
431
443
 
432
444
  ----
433
445
 
434
- Copyright (C) 2020-2025 Eliastik (eliastiksofts.com)
446
+ Copyright (C) 2020-2026 Eliastik (eliastiksofts.com)
435
447
 
436
448
  This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
437
449
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "ServerConfig": {
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
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.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -18,21 +18,21 @@
18
18
  },
19
19
  "homepage": "https://github.com/Eliastik/snakeia-server#readme",
20
20
  "dependencies": {
21
- "body-parser": "^2.2.0",
21
+ "body-parser": "^2.2.1",
22
22
  "config": "^4.1.1",
23
23
  "cookie-parser": "^1.4.7",
24
24
  "csrf-csrf": "^4.0.3",
25
25
  "ejs": "^3.1.10",
26
- "express": "^5.1.0",
26
+ "express": "^5.2.1",
27
27
  "express-rate-limit": "^8.2.1",
28
28
  "html-entities": "^2.6.0",
29
29
  "i18n": "^0.15.3",
30
- "jsonwebtoken": "^9.0.2",
30
+ "jsonwebtoken": "^9.0.3",
31
31
  "node-fetch": "^3.3.2",
32
32
  "seedrandom": "^3.0.5",
33
33
  "snakeia": "^3.0.1",
34
- "socket.io": "^4.8.1",
34
+ "socket.io": "^4.8.3",
35
35
  "socket.io-cookie-parser": "^1.0.0",
36
- "winston": "^3.18.3"
36
+ "winston": "^3.19.0"
37
37
  }
38
38
  }