-
v0.29.1 - teal loading fix Stable
released this
2025-09-22 10:41:22 +00:00 | 284 commits to main since this release0.29.1 - 2025-09-22
This release fixes bugs related to #106
Bug Fixes
- exports now correctly to the appropriate folder - (388ff2f)
- teal loading stdlib modules on runtime checks - (145242b)
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.29.0...v0.29.1
Downloads
-
Source code (ZIP)
1 download
-
Source code (TAR.GZ)
4 downloads
-
v0.29.0 - Teal support Stable
released this
2025-09-14 11:35:29 +00:00 | 287 commits to main since this release0.29.0 - 2025-09-14
Bug Fixes
- loading stdlib and globals without exported local folder - (ec622d3)
Documentation
- updatd documentation for the new import api - (87396b8)
Features
- teal code can now be loaded and even mixed with normal lua code without additional steps - (6bf04c4)
- [breaking] removed import as require is now working safely - (bf3feac)
- teal can now run directly, and script paths are now known during runtime, and debug and jit libraries are now available - (a9edfba)
- better file IO error delegation from Rust to Lua - (c83c918)
- now importing for teal and lua works wonderfully with the standard library folder as well - (46f7043)
- added Teal types - (69bd843)
- runtime teal checks before runs - (71e76ba)
- added ability to turn off teal compile checks when running astra - (e2573e3)
- added teal examples and fixed bugs - (1b7b3fa)
Refactoring
- moved all the type definition files to their own space - (bfa7fa2)
- moved teal from global to behind Astra table - (b49be8c)
- added primitive global Astra function types - (2db0d51)
- delegated error check of globals, and cleaned up code elsewhere - (e4deeaf)
- now exports teal libraries too and the export folder standardized - (546d28f)
- renamed
astra_stdlibtoastra- (6b34330) - moved away from Astra global namespace in favor of importing needed functionality. - (1c54ce2)
Astra.dotenv_loadmoved to globaldotenv_load- (1c54ce2)Astra.regexmoved to globalregex- (1c54ce2)Astra.cryptomoved to libastra.lua.crypto- (1c54ce2)Astra.jsonmoved to libastra.lua.serializer- (1c54ce2)Astra.database_connectmoved to libastra.lua.databaseanddatabase_connectrenamed toconnect- (1c54ce2)Astra.datetimemoved to libastra.lua.datetime- (1c54ce2)Astra.httpmoved to libastra.lua.http- (1c54ce2)Astra.iomoved to libastra.lua.io- (1c54ce2)Astra.pubsubandAstra.observablemoved to libastra.lua.stores- (1c54ce2)Astra.new_templating_enginemoved to libastra.lua.jinja2andnew_templating_enginerenamed tonew_engine- (1c54ce2)Astra.validate_tablemoved to libastra.lua.validate_table- (1c54ce2)- moved the examples to the new api - (da95232)
- renamed
validate_tabletovalidationas there is plans for more validation options in the future - (da95232) - separated the teal type check from teal loader - (f42a72a)
- consistent api for jinja and database - (fb3733f)
PRs
- Teal support by @ElhamAryanpur in https://github.com/ArkForgeLabs/Astra/pull/104
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.28.1...v0.29.0
Downloads
-
Source code (ZIP)
1 download
-
Source code (TAR.GZ)
2 downloads
-
v0.28.1 - getenv fix Stable
released this
2025-09-03 18:58:40 +00:00 | 312 commits to main since this release0.28.1 - 2025-09-03
Bug Fixes
- return empty string when no reason provided for
send_close- (73271d1) - #13 - (73271d1)
- getenv not returning - (58571c9)
Documentation
- proper documentation for websockets - (5a3fcf6)
- #13 - (5a3fcf6)
- updated minor issue with websockets docs - (8488733)
Features
- send_code({1000})` - (4091039)
- can send a reasonless close frame without wrapping it in braces - (4091039)
- #13 - (4091039)
What's Changed
- WebSocket documentation updates by @khushmmehta in https://github.com/ArkForgeLabs/Astra/pull/103
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.28.0...v0.28.1
Downloads
-
Source code (ZIP)
1 download
-
Source code (TAR.GZ)
1 download
- return empty string when no reason provided for
-
v0.28.0 Stable
released this
2025-09-02 11:53:02 +00:00 | 319 commits to main since this release0.28.0 - 2025-09-02
Bug Fixes
- link to middleware.lua in middleware.md (#87) - (2a70d97)
- prelude registeration not loading the packed libs correctly - (6145502)
- prelude error when the dependency for the module has not yet been loaded - (a5df91f)
- websocket route not being recognized - (ebe4074)
- barebones websocket lua api (needs more fixing) - (3f28d3b)
- #13, #98 - (3f28d3b)
- get rid of all unwrap and extracts - (6519e66)
- #13, #98 - (6519e66)
- issues fixed with bytes and normal send structure - (5ac6273)
- returns an empty string when reason not given - (146b454)
- #13, #98 - (146b454)
Documentation
- updated middleware and sql driver - (8cf1f5a)
Features
- Middleware system documentation - (258b332)
- type detection and definition for HTTP Request params - (4d9c6e8)
- URL parameters parsing (#85) - (04be222)
- datetime format function for custom formatting - (b9d154e)
- websocket implementation (doesn't work) - (f96893d)
- #13 - (f96893d)
- broken websocket api - (e04ca74)
- #13 #98 - (e04ca74)
- the websocket recv now returns type and value - (32280f2)
- mlua functions for sending websocket messages - (75fd957)
- #13, 98 - (75fd957)
Fix
Refactoring
- minor cleanups done to the middleware example - (1874c90)
- less bloated version - (d8a0d12)
- clamped libs together and moved middleware to http - (31dff80)
- export now removes previously exported content - (3b3a842)
- update command now recommends reexporting the type definitions - (f1a5327)
- unnecessary error messages - (e06bf1a)
- renamed binary to bytes - (097e8ce)
- updated the datetime test and its formatting - (4721d6e)
Pull Requests Merged
- POC middleware system by @0riginaln0 in https://github.com/ArkForgeLabs/Astra/pull/74
- feat: URL parameters parsing by @0riginaln0 in https://github.com/ArkForgeLabs/Astra/pull/85
- fix: link to middleware.lua in middleware.md by @0riginaln0 in https://github.com/ArkForgeLabs/Astra/pull/87
- Update sql_driver.md by @0riginaln0 in https://github.com/ArkForgeLabs/Astra/pull/90
- Update astra_build.lua by @0riginaln0 in https://github.com/ArkForgeLabs/Astra/pull/94
- Modules load fix by @0riginaln0 in https://github.com/ArkForgeLabs/Astra/pull/95
- Issue #51: datetime testing added (lust) by @supawitgolf in https://github.com/ArkForgeLabs/Astra/pull/96
- issue #89: datetime format update (to ISO 8601) by @supawitgolf in https://github.com/ArkForgeLabs/Astra/pull/97
- Add Schema Validation Tests by @supawitgolf in https://github.com/ArkForgeLabs/Astra/pull/99
- HTTP server testing added by @supawitgolf in https://github.com/ArkForgeLabs/Astra/pull/101
- Websockets by @khushmmehta in https://github.com/ArkForgeLabs/Astra/pull/98
New Contributors
- @supawitgolf made their first contribution in https://github.com/ArkForgeLabs/Astra/pull/96
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.27.0...v0.28.0
Downloads
-
Source code (ZIP)
1 download
-
Source code (TAR.GZ)
0 downloads
-
released this
2025-07-18 23:44:46 +00:00 | 385 commits to main since this releaseFeatures
- [breaking] multiple of datetime creation methods was replaced by
Astra.datetime.new- (25e9c21)
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.26.0...v0.27.0
Downloads
-
Source code (ZIP)
2 downloads
-
Source code (TAR.GZ)
1 download
- [breaking] multiple of datetime creation methods was replaced by
-
released this
2025-07-17 09:22:05 +00:00 | 387 commits to main since this releaseWhat's Changed
- Data stores by @khushmmehta in https://github.com/ArkForgeLabs/Astra/pull/82
This update introduces Observable and PubSub stores to Astra. You can use these amazing utilities to introduce reactivity to your software with ease!
Bug Fixes
- delegate subcounter and enforce type preference - (6b98b67)
Documentation
Features
- implement observer pattern - (14141a4)
Miscellaneous Chores
- prefer function type for publish - (ad6e812)
Performance
- hashed tables for observee-subscriber sets #26 - (3a7ae14)
- use a hash table to store subscribers - (75f10be)
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.25.1...v0.26.0
Downloads
-
Source code (ZIP)
2 downloads
-
Source code (TAR.GZ)
3 downloads
-
released this
2025-07-16 12:12:49 +00:00 | 400 commits to main since this releaseBug Fixes
- exported modules aren't interpreted - (4c052d8)
Refactoring
- always checks for .astra folder first - (756d768)
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.25.0...v0.25.1
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
1 download
-
released this
2025-07-16 11:42:44 +00:00 | 403 commits to main since this releaseWhat's Changed
- feat: implement pubsub stores by @khushmmehta in https://github.com/ArkForgeLabs/Astra/pull/75
- Load Exported Modules by @ElhamAryanpur in https://github.com/ArkForgeLabs/Astra/pull/77
Features
- implement pubsub stores #26 - (ec958c9)
- implement pubsub stores (#75) - (cf1089b)
- the runtime now prioritizes loading the locally exported modules instead of bundled modules - (64b0869)
Miscellaneous Chores
- read the default folder or loaded folder from .luarc.json - (6761d5b)
Refactoring
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.24.1...v0.25.0
Downloads
-
Source code (ZIP)
1 download
-
Source code (TAR.GZ)
3 downloads
-
v0.24.1 - hotfix Stable
released this
2025-07-10 18:43:53 +00:00 | 410 commits to main since this releaseBug Fixes
- .luarc.json file incorrectly named - (ca2b338)
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.24.0...v0.24.1
Downloads
-
Source code (ZIP)
1 download
-
Source code (TAR.GZ)
2 downloads
-
v0.24.0 - LuaCAT export Stable
released this
2025-07-07 13:18:57 +00:00 | 412 commits to main since this releaseBug Fixes
- import using path as key instead of UUID - (d7c099a)
- imports fixed and update command now can take custom user_agent - (ebdf3f6)
Documentation
- directory with Astra API definitions for Lua autocompletion - (9956504)
- Add .luarc.json to enable autocompletion - (9d3511a)
- little clarification - (d9cea09)
- definitions refactoring for better go-to experience - (0a35c64)
- updated docs to reflect the new changes - (419b0d3)
Features
- astra now exports successfully - (c9b8d36)
- server type definitions are correct now - (e533936)
- completed type definition for the rest of the types - (27db132)
Refactoring
- cleaned up getters and setters - (26e2569)
- fused the normal and utc datetime constructors - (4b7bba2)
- the lua's type definitions for datetime - (7001d9e)
- moved the lib files back to the top level folder - (f312335)
- moved the type definitions on side of Rust code - (1c3204c)
- divided the http server into components - (d5f1749)
What's Changed
- Datetime code improvement by @ElhamAryanpur in https://github.com/ArkForgeLabs/Astra/pull/70
- docs: directory with Astra API definitions for Lua autocompletion by @0riginaln0 in https://github.com/ArkForgeLabs/Astra/pull/71
New Contributors
- @0riginaln0 made their first contribution in https://github.com/ArkForgeLabs/Astra/pull/71
Full Changelog: https://github.com/ArkForgeLabs/Astra/compare/v0.23.1...v0.24.0
Downloads
-
Source code (ZIP)
1 download
-
Source code (TAR.GZ)
2 downloads