-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCHANGELOG
197 lines (147 loc) · 5.51 KB
/
CHANGELOG
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# 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).
## [0.9] - 2024/04/05
### Fixed
- Fixed a critical bug in the data package server which would permit
unauthorized users to access URL's that require a valid client certificate.
### Contributors
- Big thanks to @CyberXZT for finding the security vulnerability!
- Thanks to @chcksnpr42 for helping improve documentation!
## [0.9] - 2023/01/21
### Added
- Kickban command allows admins to ban clients
- DPS endpoints that don't require client certificates
- Monitor clients receive persist data, can inject packets
- Monitor clients receive all routed packets, not just broadcast
- Relative path support for config
### Changed
- Migrated from Python OpenSSL to Cryptography
- Pinned Flask dependency to ~2.0
- Improved "correctness" of cenerated certificates
### Fixed
- SSL certs being generated in a way that Android rejects
- Packets with empty <marti/> tags get routed now
### Contributors
- @fieldmapper, @sgofferj, @skadakar, and @FarrantAlex for their help wrangling
GitHub issues
- All the patient users in `#taky` who gave helpful feedback for this release
## [0.8.4] - 2022-09-08
### Added
- Management socket + status command
- TCP Monitor socket
- Log messages from anonymous users
- max_persist_ttl option to prevent long lived COTs
- P12 bundles now have a "Friendly Name" set
### Changed
- Overhaul of config object to be a global variable
- Refactor of client objects for code reuse
### Fixed
- Allowing for a proper shutdown from SIGTERM
- Clients receiving malformed XML doesn't crash the server
- Switched to nonblocking sockets to prevent rare lockup
- Removed the server's private key from the server.p12 file
- Don't crash after PDB exit
### Contributors
- Thanks to @AdakaR for helping find both the XML and blocking socket bugs!
- Thanks to Tom for finding the private key issue!
- Thanks to Alex and Doug for helping with development!
- Thanks to @jazap for the logo!
## [0.8.3] - 2022-04-10
### Added
- Generation of iTAK compatible client certificates
### Fixed
- Internal client certificate files are now unique by UUID (#39)
### Contributors
- Thanks to @fordepowers for contributing the iTAK certificate generation!
- Thanks to @pclifaz for assisting testing of the new features!
- Thanks to @skadakar for offering heaps of help to new users in Discord!
- Thanks to @mighkel for a comprehensive writeup to improve documentation!
## [0.8.2] - 2021-09-03
### Fixed
- Routing GeoChats should work now
### Contributors
- Thanks to @skadakar for his work finding this, and testing the fix!
## [0.8.1] - 2021-06-06
### Fixed
- Routing packets with multiple sockets sharing an identifier (callsign, UID)
- Added a none check on user object
## [0.8] - 2021-05-24
### Added
- COT messages that fail to parse are logged
### Changed
- Data packages marked private do not show up in search listings
- New data packages are assumed private until the client specifies public
### Fixed
- Improvements for Windows compatibility
- Send the detail as received from the user
- Use restart for systemd scripts
- Correct the path for the DPS outside of systemd
- Stale SSL sockets and the persistence dare are occasionally pruned
### Contributors
- Thanks to @doug-fitzmaurice-rowden for submitting the client certificate
support for the data package server, and helping test the release!
## [0.7.1] - 2021-03-07
### Changed
- Removed dependency on dataclasses (to keep python 3.6 support)
## [0.7] - 2021-03-05
The system administrator's release, aimed at easing deployment of taky, and
improving CI. Officially moving from alpha to beta!
### Added
- takyctl can now generate systemd scripts
- dps now supports video URL endpoints
- Object persistence with optional redis backend!
- Preliminary unit testing
### Changed
- Greater resillience to malformed COT messages
- Added some unit tests and GitHub automation
- Code structure and documentation improvements
### Fixed
- Corrected the DPS url for client->client transfers
## [0.6] - 2021-02-26
The single threaded release! Huge fix for the SSL deadlock! The first really
usable release.
### Added
- Optional flag to allows pdb to attach to the COT server
- takyctl can optionally export the .crt/.key files for key generation
### Changed
- Code is now single threaded
### Fixed
- SSL handshake deadlock
## [0.5.3] - 2021-02-18
### Added
- COT server can optionally log COT messages from the client
### Fixed
- Correct the dps path when in a virtualenv
- Fix the followup URL for a client->client upload
## [0.5.2] - 2021-02-17
### Added
- `takyctl setup` builds configurations for deployments
### Fixed
- The configuration parser left the port undefined in some scenarios
## [0.5.1] - 2021-02-15
### Fixed
- Uploaded an sdist file to PyPi, oops
## [0.5] - 2021-02-15
The Data Package Server was introduced with this release, in a very preliminary
state!
### Added
- Preliminary Data Package Server
- Taky now operates on a config file
## [0.4] - 2021-01-23
### Added
- First release on PyPi
## [0.3] - 2021-01-23
### Added
- COT server can now run with SSL
- Using Marti to route packets
## [0.2] - 2021-01-23
### Added
- GeoChat handling
- Added rudimentary persistence for TAKClients
### Security
- XML is no longer parsed with `resolve_entities`
## [0.1] - 2021-01-18
### Added
- Initial release