snakeia-server 1.2.1 → 1.2.3

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.1
19
+ - 1.2.3
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:22-alpine
1
+ FROM node:24-alpine
2
2
  RUN addgroup -S snakeia-server && adduser -S snakeia-server -G snakeia-server && chown -R snakeia-server:snakeia-server /home/snakeia-server
3
3
  RUN apk add git
4
4
  WORKDIR /home/snakeia-server/server
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.1 (10/7/2025)
11
+ * Version 1.2.3 (11/2/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.1", // The server version
77
+ "version": "1.2.3", // 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,13 @@ You can create another configuration file in the **config** directory named **lo
123
123
 
124
124
  ## Changelog
125
125
 
126
+ * Version 1.2.3 (11/2/2025):
127
+ - Update to Node 24 LTS
128
+ - Update dependencies
129
+
130
+ * Version 1.2.2 (10/7/2025):
131
+ - Update SnakeIA to 3.0.1
132
+
126
133
  * Version 1.2.1 (10/7/2025):
127
134
  - Fixed a bug where the game could get stuck on the "Loading..." screen when restarting.
128
135
 
@@ -206,7 +213,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
206
213
 
207
214
  ## À propos de ce serveur
208
215
 
209
- * Version 1.2.1 (07/10/2025)
216
+ * Version 1.2.3 (02/11/2025)
210
217
  * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
211
218
  * Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
212
219
 
@@ -272,7 +279,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
272
279
  ````
273
280
  {
274
281
  "ServerConfig": {
275
- "version": "1.2.1", // La version du serveur
282
+ "version": "1.2.3", // La version du serveur
276
283
  "port": 3000, // Le port sur lequel lancer le server
277
284
  "proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
278
285
  "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
@@ -321,6 +328,13 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
321
328
 
322
329
  ## Journal des changements
323
330
 
331
+ * Version 1.2.3 (02/11/2025) :
332
+ - Mise à jour vers Node 24 LTS
333
+ - Mise à jour des dépendances
334
+
335
+ * Version 1.2.2 (07/10/2025):
336
+ - Mise à jour de SnakeIA vers la version 3.0.1
337
+
324
338
  * Version 1.2.1 (07/10/2025):
325
339
  - Correction d'un bug où le jeu restait bloqué sur le message "Chargement..." lorsque la partie était recommencée
326
340
 
@@ -423,4 +437,4 @@ This program is free software: you can redistribute it and/or modify it under th
423
437
 
424
438
  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
425
439
 
426
- You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
440
+ You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "ServerConfig": {
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
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.1",
3
+ "version": "1.2.3",
4
4
  "description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -24,13 +24,13 @@
24
24
  "csrf-csrf": "^4.0.3",
25
25
  "ejs": "^3.1.10",
26
26
  "express": "^5.1.0",
27
- "express-rate-limit": "^8.1.0",
27
+ "express-rate-limit": "^8.2.1",
28
28
  "html-entities": "^2.6.0",
29
- "i18n": "^0.15.2",
29
+ "i18n": "^0.15.3",
30
30
  "jsonwebtoken": "^9.0.2",
31
31
  "node-fetch": "^3.3.2",
32
32
  "seedrandom": "^3.0.5",
33
- "snakeia": "^3.0.0",
33
+ "snakeia": "^3.0.1",
34
34
  "socket.io": "^4.8.1",
35
35
  "socket.io-cookie-parser": "^1.0.0",
36
36
  "winston": "^3.18.3"