Updates changelog
parent
e2daf22ad7
commit
08c20fa2b9
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -13,10 +13,27 @@ All notable changes to this project will be documented in this file.
|
|||
- gitlab: https://gitlab.com/lindeas/jilo-web/-/compare/v0.3...HEAD
|
||||
|
||||
### Added
|
||||
- Added proper pagination
|
||||
- Added agents managemet pages
|
||||
- Added javascript-based feedback messages
|
||||
- Added description to each page
|
||||
- Added CSRF checks
|
||||
- Added validator class for all forms
|
||||
- Added rate limiting to all pages
|
||||
- Added authentication rate limiting to login and registration
|
||||
- Added unit tests
|
||||
- Added integration/feature tests
|
||||
|
||||
### Changed
|
||||
- Made the config editing in-place with AJAX
|
||||
- Redesigned the help page
|
||||
- Moved graphs and latest data to their own pages
|
||||
- Moved live config.js to its own page
|
||||
- Redesigned the messages system and renamed them to feedback messages
|
||||
|
||||
### Fixed
|
||||
- Fixed logs search
|
||||
- Removed hardcoded messages, changed to feedback messages
|
||||
|
||||
---
|
||||
|
||||
|
|
|
@ -12,9 +12,8 @@ class TestCase extends PHPUnit\Framework\TestCase
|
|||
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
|
||||
$_SERVER['HTTP_USER_AGENT'] = 'PHPUnit Test Browser';
|
||||
|
||||
// Include common app files
|
||||
require_once dirname(__DIR__, 2) . '/app/includes/config.php';
|
||||
require_once dirname(__DIR__, 2) . '/app/includes/functions.php';
|
||||
// Include common app files (if there are any, we don't have for now)
|
||||
//require_once dirname(__DIR__, 2) . '/app/includes/config.php';
|
||||
|
||||
// Clean up any existing session
|
||||
if (session_status() === PHP_SESSION_ACTIVE) {
|
||||
|
|
Loading…
Reference in New Issue