Compare commits

...

6 Commits

Author SHA1 Message Date
Kayne Ruse cba3686045 Updated dependencies 2025-09-18 10:43:24 +10:00
Kayne Ruse 215b5a9341 Bump dependencies 2025-09-10 14:06:28 +10:00
dependabot[bot] 9b2d03bdaf Bump nodemailer from 7.0.5 to 7.0.6
Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 7.0.5 to 7.0.6.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodemailer/nodemailer/compare/v7.0.5...v7.0.6)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-version: 7.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-10 13:03:04 +10:00
dependabot[bot] 82aa61a36d 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 12:59:32 +10:00
Kayne Ruse 79f987b8b6 Experimenting with dependabot 2025-09-09 18:56:16 +10:00
Kayne Ruse 174a56ac53 Updated dependencies 2025-07-26 03:57:44 +10:00
4 changed files with 659 additions and 519 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"
+638 -508
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -1,6 +1,6 @@
{
"name": "auth-server",
"version": "1.8.7",
"version": "1.8.10",
"description": "An API centric auth server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js",
"scripts": {
@@ -19,19 +19,19 @@
},
"homepage": "https://github.com/krgamestudios/auth-server#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.3.0",
"node-cron": "^3.0.3",
"mariadb": "^3.4.5",
"node-cron": "^4.2.1",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.13",
"sequelize": "^6.37.3"
"nodemailer": "^7.0.6",
"sequelize": "^6.37.7"
},
"devDependencies": {
"nodemon": "^3.1.0"
"nodemon": "^3.1.10"
}
}
+1 -1
View File
@@ -33,7 +33,7 @@ app.use('/admin', require('./admin'));
app.use('/auth', require('./auth'));
//error on access
app.get('*', (req, res) => {
app.get('/{*any}', (req, res) => {
res.redirect('https://github.com/krgamestudios/auth-server');
});