Releases: krgamestudios/chat-server
Releases · krgamestudios/chat-server
v1.5.1 - Feeling Good
- Added database port number to configuration
- Dependency updates
Full Changelog: v1.4.0...v1.5.1
v1.4.0 - Bumping Version Numbers Just Because
Bumping every MERN-template component version number, because it's a new year.
Minor Upgrades
I've been working on a private fork of the MERN-template to produce a game called Egg Trainer (which you can see here), and I've imported a bunch of improvements from that private fork into this project and it's services. So there's no major changes in how the template works, but I have updated a lot of the libraries used in it.
Edit: A minor upgrade problem from 1.2.0 to 1.2.1 - you must run the following command in the chat server database:
SET FOREIGN_KEY_CHECKS=0;
ALTER TABLE `chatlogs` CHANGE `id` `index` INT( 11 ) NOT NULL AUTO_INCREMENT ;
ALTER TABLE `reports` CHANGE `id` `index` INT( 11 ) NOT NULL AUTO_INCREMENT ;
ALTER TABLE `reports` CHANGE `chatlogId` `chatlogIndex` INT( 11 );
SET FOREIGN_KEY_CHECKS=1;
Release Version 1.0
This socket.io chat server is ready for production! There may be more issues, but it seems stable enough, and there's no point putting it off any longer.