Compare commits

...

5 Commits

Author SHA1 Message Date
Kayne Ruse 47de3e4330 Updated dependencies 2025-09-18 10:46:22 +10:00
Kayne Ruse db66d61abe Bump dependencies 2025-09-10 14:06:56 +10:00
dependabot[bot] f5fceb5c4e Bump dotenv from 17.2.1 to 17.2.2
Bumps [dotenv](https://github.com/motdotla/dotenv) from 17.2.1 to 17.2.2.
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](https://github.com/motdotla/dotenv/compare/v17.2.1...v17.2.2)

---
updated-dependencies:
- dependency-name: dotenv
  dependency-version: 17.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-10 13:04:24 +10:00
Kayne Ruse b4b490dc6f Experimenting with dependabot 2025-09-09 18:56:40 +10:00
Kayne Ruse 496048f62b Updated dependencies 2025-07-26 03:56:40 +10:00
4 changed files with 819 additions and 637 deletions
+10
View File
@@ -0,0 +1,10 @@
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
+801 -629
View File
File diff suppressed because it is too large Load Diff
+7 -7
View File
@@ -1,6 +1,6 @@
{ {
"name": "chat-server", "name": "chat-server",
"version": "1.5.1", "version": "1.5.4",
"description": "An API centric chat server. Uses Sequelize and mariaDB by default.", "description": "An API centric chat server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js", "main": "server/server.js",
"scripts": { "scripts": {
@@ -20,14 +20,14 @@
"homepage": "https://github.com/krgamestudios/chat-server#readme", "homepage": "https://github.com/krgamestudios/chat-server#readme",
"dependencies": { "dependencies": {
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^16.4.5", "dotenv": "^17.2.2",
"express": "^4.19.2", "express": "^5.1.0",
"jsonwebtoken": "^9.0.2", "jsonwebtoken": "^9.0.2",
"mariadb": "^3.3.0", "mariadb": "^3.4.5",
"sequelize": "^6.37.3", "sequelize": "^6.37.7",
"socket.io": "^4.7.5" "socket.io": "^4.8.1"
}, },
"devDependencies": { "devDependencies": {
"nodemon": "^3.1.0" "nodemon": "^3.1.10"
} }
} }
+1 -1
View File
@@ -31,7 +31,7 @@ app.use('/admin', require('./admin'));
require('./chat')(io.of('/chat')); require('./chat')(io.of('/chat'));
//error on access //error on access
app.get('*', (req, res) => { app.get('/{*any}', (req, res) => {
res.redirect('https://github.com/krgamestudios/chat-server'); res.redirect('https://github.com/krgamestudios/chat-server');
}); });