chore(release): 1.1.0
This commit is contained in:
44
CHANGELOG.md
44
CHANGELOG.md
@@ -1,5 +1,47 @@
|
||||
# All CHanges to LST can be found below.
|
||||
`
|
||||
|
||||
## [1.1.0](https://git.tuffraid.net/cowch/lstV2/compare/v1.2.0...v1.1.0) (2025-03-05)
|
||||
|
||||
|
||||
### 🛠️ Code Refactor
|
||||
|
||||
* **database:** updated to the schemas ([6c3199f](https://git.tuffraid.net/cowch/lstV2/commits6c3199fecc3cc5bc3ef1ffcd4effc7967d2d9042))
|
||||
* **frontend:** moved the login to its own componet ([23dc00f](https://git.tuffraid.net/cowch/lstV2/commits23dc00ff3b9db422b4b81716fd1cc25260ef2961))
|
||||
* **frontend:** moved types to global types and successfull build ([f3b92e9](https://git.tuffraid.net/cowch/lstV2/commitsf3b92e94e3d0254d89e3722ab0f08bc7ab2aa954))
|
||||
* **lst:** refactored to be back to npm from bun ([379f7b8](https://git.tuffraid.net/cowch/lstV2/commits379f7b836d17f0bd47f38ba05ef2810fa06a9336))
|
||||
* **server:** corrected the middleware to be in the correct spot to work as intended ([1af561a](https://git.tuffraid.net/cowch/lstV2/commits1af561acb1db6f055c546121b13ce49611ab1d7d))
|
||||
* **server:** moved the server files outside the src to improve static files ([89a2b3e](https://git.tuffraid.net/cowch/lstV2/commits89a2b3ea9e4c4cbcae0991fdc417b3aebec9c0f9))
|
||||
|
||||
|
||||
### 📚 Documentation
|
||||
|
||||
* **brunodocs:** added more endpoint updates to bruno ([0ddcfae](https://git.tuffraid.net/cowch/lstV2/commits0ddcfaeaa9b25f5b2f16017f84608a4c3bc3fb29))
|
||||
* **lst:** removed bruno api stuff ([2a536e5](https://git.tuffraid.net/cowch/lstV2/commits2a536e5423f883c68a3145f49f29c4e4e5e99d20))
|
||||
|
||||
|
||||
### 🐛 Bug fixes
|
||||
|
||||
* **frontend:** if the backend is off a user is not logged in modules would error ([63cd43a](https://git.tuffraid.net/cowch/lstV2/commits63cd43accae7054885a5f7185d0508796e8fe124))
|
||||
* **server:** corrected the env port in the api scaler ([9b7e60c](https://git.tuffraid.net/cowch/lstV2/commits9b7e60cad0612b8da24416c9b4ae7c4650f9b663))
|
||||
|
||||
|
||||
### 🌟 Enhancements
|
||||
|
||||
* **database:** settings added in ([44ba7d9](https://git.tuffraid.net/cowch/lstV2/commits44ba7d9feb5cc66c140f5ed0a4b2ac9cced221dc))
|
||||
* **frontend:** auth work ([5465e14](https://git.tuffraid.net/cowch/lstV2/commits5465e1491d65b8c598a024f753d4df6b2ce05ad6))
|
||||
* **frontend:** ocp added ([5b9cadb](https://git.tuffraid.net/cowch/lstV2/commits5b9cadb76e0d4ac2cc223c0f6883a2477510c4a0))
|
||||
* **frontend:** settings page added ([88f2cf0](https://git.tuffraid.net/cowch/lstV2/commits88f2cf07f59af061a94bc00539cfa07033c47560))
|
||||
* **server:** added in profile update (password only currently) ([eb41ed5](https://git.tuffraid.net/cowch/lstV2/commitseb41ed5dd0e69c5afa961cf624830442f8543d29))
|
||||
* **server:** added in service script to run a crud ([8e5903c](https://git.tuffraid.net/cowch/lstV2/commits8e5903cbf3a27e1d82fa93ba4877ac6d79479363))
|
||||
* **server:** created a logger to catch em all ([2755021](https://git.tuffraid.net/cowch/lstV2/commits275502143c16ced103cfb571259c8c06acc4878f))
|
||||
* **server:** settings and module crud added in ([2ad1dcc](https://git.tuffraid.net/cowch/lstV2/commits2ad1dcc55b699bea3c08f77f7f7ac7a21c8e9b29))
|
||||
|
||||
|
||||
### 📝 Testing Code
|
||||
|
||||
* **auth:** more auth work ([d3acdfb](https://git.tuffraid.net/cowch/lstV2/commitsd3acdfb481ee2f78f543979c2bf892ef885d7a66))
|
||||
* **front end:** cleared an error for a type missing ([99dcae9](https://git.tuffraid.net/cowch/lstV2/commits99dcae959c126e15d7e38f21cbf05b3635ebcec0))
|
||||
|
||||
## [1.2.0](https://git.tuffraid.net/cowch/lstV2/compare/v1.1.0...v1.2.0) (2025-02-25)
|
||||
|
||||
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "fullstack-app",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "fullstack-app",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.0",
|
||||
"dependencies": {
|
||||
"@dotenvx/dotenvx": "^1.38.3",
|
||||
"@hono/node-server": "^1.13.8",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "fullstack-app",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "concurrently -n \"server,frontend\" -c \"#007755,#2f6da3\" \"npm run dev:server\" \"cd frontend && npm run dev\"",
|
||||
|
||||
Reference in New Issue
Block a user