forked from etingof/snmpsim-control-plane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
53 lines (44 loc) · 2.2 KB
/
CHANGES.txt
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
Revision 0.0.4, released 16-07-2022
-----------------------------------
- Removed package postfix.
Revision 0.0.3, released 13-11-2022
-----------------------------------
- Modified Management REST API not to report tag information (esp.
the whole lot of tagged objects) on tag update calls.
- Rebuild SNMP simulator invocation script only on Lab power state
change for performance reasons. Prior to this change, invocation
script has been generated on every change in the DB. This was
causing unnecessary SNMP simulator restarts and REST API server
slowness.
- Add tox runner with some basic jobs.
- Fix SQL/ORM problem in SNMP Simulator invocation script generation that
manifested itself as extreme slowness with the increasing number of powered
on labs.
- Packaged by LeXtudio Inc.
Revision 0.0.2, released 08-02-2020
-----------------------------------
- Added SNMP simulator processes runtime metrics collection by the
`supervisor` process. Gathered information is stored in the DB
and served via newly introduced REST API endpoints.
Revision 0.0.1, released 14-01-2020
-----------------------------------
- Added `PUT /snmpsim/mgmt/v1/recordings/<recording>` endpoint which (unlike
POST) will create new or override existing recording.
- When creating new recordings, also create all directories leading to the
recording being created. When recording is deleted, try to also remove
its directory if it's empty.
- Fixed WSGI servers default config initialization.
- When failing to create/override a recording, return HTTP code 490 instead
of 404.
- Added example systemd unit files for all control panel components.
- Renamed REST API specs into `snmpsimd-mgmt` and `snmpsim-metrics` on Swagger
and moved spec files into specs folder.
- Removed SQL cascading from all management API models. That makes SNMP
simulator entities less dependent from each other when deleting some
of them what facilitates their reuse.
- Added a new feature of tagging to Management API. Every Management API object
can be tagged with zero or more tags. The REST API client can then obtain
all tagged objects at once searching by tag.
Revision 0.0.0, released 01-01-2020
-----------------------------------
Initial revision