summaryrefslogtreecommitdiff
path: root/CHANGES.md
blob: 4ecfb65b6bbc80181c97146cffbe3448b8b19e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 1.0.0
* Discovery:
    - Bundle on release using embed
	- Cache in the JSON
* Errors:
    - Remove error levels for now
	- Improve the context
	- Use `errors.New` when we can
* HTTP:
    - Implement some utility functions for paths
	- Add tests
* OAuth:
    - Make ISS required
	- Only handle the token authorization callback request once
	- Add logging for token flow
* Server:
    - Add profile tests
	- Validate endpoints to have the same scheme and hostname
* General:
    - Update dependencies
	- Use one logger instance

# 0.3.0 (2023-02-01)
* Discovery:
    - Add tests with a local TLS server
    - Implement expiry/caching closer to spec
* CI:
    - Run without docker to speed up testing
    - Update docker script to support podman as well. Can be used to run the tests locally
* Python: Use Let's Connect! for the tests to disable discovery
* HTTP:
    - Always enforce HTTPS scheme
    - Limit the maximum data read from the server to 16 MB
* OpenVPN: add script-security 0 to the config to, by default, disallow arbitrary scripts from being run depending on the OpenVPN implementation. This can be overridden by a client
* CLI: Validate OAuth URL scheme and do not open the browser with xdg-open
* Client
    - validate ClientID
    - Separate cleanup from disconnect function
* Failover: Return early if we get a Pong within ping interval seconds

# 0.2.0 (2021-12-23)
* Initial release