2023-07-21 11:16:01 +00:00
|
|
|
# Changelog
|
|
|
|
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
|
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
|
|
|
|
|
## [Unreleased](https://git.rustybever.be/Chewing_Bever/lander/src/branch/dev)
|
|
|
|
|
2023-12-06 16:43:56 +00:00
|
|
|
### Added
|
2023-11-20 21:25:01 +00:00
|
|
|
|
2023-12-06 16:43:56 +00:00
|
|
|
* LNM - Lander Network Module
|
|
|
|
* Rewrite of the event loop & HTTP loop
|
|
|
|
* Fully independent library
|
|
|
|
* Numerous improvements
|
|
|
|
* Streaming of headers
|
|
|
|
* Allow custom & an arbitrary number of response headers
|
|
|
|
* Better API for adding routes
|
|
|
|
* State machine HTTP loop
|
2023-12-12 11:15:21 +00:00
|
|
|
* Automatically support HEAD requests for all GET requests
|
2023-12-12 21:22:55 +00:00
|
|
|
* Event loop uses `epoll` instead of `poll`
|
|
|
|
* Configurable multithreading using `epoll`
|
2023-12-09 09:37:10 +00:00
|
|
|
* Landerctl
|
|
|
|
* `-c` flag to use custom config file (useful for testing)
|
2023-12-22 21:07:09 +00:00
|
|
|
* LSM
|
|
|
|
* Binary tree iterators
|
2023-12-23 09:06:02 +00:00
|
|
|
* Trie iterators
|
2023-12-23 13:29:33 +00:00
|
|
|
* Store iterators
|
2023-11-20 21:25:01 +00:00
|
|
|
|
2023-11-19 12:44:16 +00:00
|
|
|
## [0.2.0](https://git.rustybever.be/Chewing_Bever/lander/src/tag/0.2.0)
|
|
|
|
|
2023-11-18 20:21:57 +00:00
|
|
|
### Added
|
|
|
|
|
2023-11-02 09:27:34 +00:00
|
|
|
* HTTP Loop
|
|
|
|
* Fully decoupled functionality from Lander-specific code
|
|
|
|
* Users can now define custom global & request-local contexts
|
|
|
|
* Introduced "response steps", allowing custom code during the response
|
|
|
|
part of a request
|
2023-11-08 20:59:47 +00:00
|
|
|
* LSM - Lander Storage Module
|
|
|
|
* Rewrite of trie codebase
|
|
|
|
* Introduced a custom data store using an in-memory trie as index and a
|
|
|
|
custom binary on-disk format
|
2023-11-12 14:00:20 +00:00
|
|
|
* Support for lookup, insert & a basic remove
|
2023-11-08 20:59:47 +00:00
|
|
|
* Lander
|
|
|
|
* Replaced old trie implementation with LSM store
|
2023-11-12 14:00:20 +00:00
|
|
|
* Add support for hosting arbitrary files
|
|
|
|
* Content type of file is set if provided when uploading file
|
|
|
|
* Support removing entries
|
2023-11-16 10:30:02 +00:00
|
|
|
* Landerctl
|
|
|
|
* Replaced old Bash script with Libcurl-based application
|
|
|
|
* Supporting posting redirects, pastes & arbitrarily large files
|
2023-10-30 20:14:06 +00:00
|
|
|
|
2023-07-27 13:02:50 +00:00
|
|
|
## [0.1.0](https://git.rustybever.be/Chewing_Bever/lander/src/tag/0.1.0)
|
|
|
|
|
2023-07-21 11:16:01 +00:00
|
|
|
### Added
|
|
|
|
|
|
|
|
* Implemented own event & HTTP loop (used Crow framework before)
|
|
|
|
* Serve redirects & pastes
|
|
|
|
* Support uploading pastes & redirects
|
2023-07-27 12:09:56 +00:00
|
|
|
* Env vars for configuring data dir and port
|