snakeia-server 1.2.3 → 1.2.4
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 +1 -1
- package/README.md +10 -4
- package/config/default.json +1 -1
- package/package.json +4 -4
package/.drone.yml
CHANGED
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.
|
|
11
|
+
* Version 1.2.4 (12/6/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.2.
|
|
77
|
+
"version": "1.2.4", // 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,9 @@ You can create another configuration file in the **config** directory named **lo
|
|
|
123
123
|
|
|
124
124
|
## Changelog
|
|
125
125
|
|
|
126
|
+
* Version 1.2.4 (12/6/2025):
|
|
127
|
+
- Update dependencies
|
|
128
|
+
|
|
126
129
|
* Version 1.2.3 (11/2/2025):
|
|
127
130
|
- Update to Node 24 LTS
|
|
128
131
|
- Update dependencies
|
|
@@ -213,7 +216,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
|
|
|
213
216
|
|
|
214
217
|
## À propos de ce serveur
|
|
215
218
|
|
|
216
|
-
* Version 1.2.
|
|
219
|
+
* Version 1.2.4 (06/12/2025)
|
|
217
220
|
* Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
|
|
218
221
|
* Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
|
|
219
222
|
|
|
@@ -279,7 +282,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
279
282
|
````
|
|
280
283
|
{
|
|
281
284
|
"ServerConfig": {
|
|
282
|
-
"version": "1.2.
|
|
285
|
+
"version": "1.2.4", // La version du serveur
|
|
283
286
|
"port": 3000, // Le port sur lequel lancer le server
|
|
284
287
|
"proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
|
|
285
288
|
"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 +331,9 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
328
331
|
|
|
329
332
|
## Journal des changements
|
|
330
333
|
|
|
334
|
+
* Version 1.2.4 (06/12/2025) :
|
|
335
|
+
- Mise à jour des dépendances
|
|
336
|
+
|
|
331
337
|
* Version 1.2.3 (02/11/2025) :
|
|
332
338
|
- Mise à jour vers Node 24 LTS
|
|
333
339
|
- Mise à jour des dépendances
|
package/config/default.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snakeia-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"scripts": {
|
|
@@ -18,16 +18,16 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://github.com/Eliastik/snakeia-server#readme",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"body-parser": "^2.2.
|
|
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
|
|
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.
|
|
30
|
+
"jsonwebtoken": "^9.0.3",
|
|
31
31
|
"node-fetch": "^3.3.2",
|
|
32
32
|
"seedrandom": "^3.0.5",
|
|
33
33
|
"snakeia": "^3.0.1",
|