Wykres commitów

1370 Commity (2637127b41f633bc8885bc786f05e3d39b0308a4)

Autor SHA1 Wiadomość Data
Andrew Mirsky 2637127b41
Merge pull request #276 from Yakifo/0.11.3-rc.1
Release 0.11.3
2025-08-12 09:39:47 -04:00
Andrew Mirsky a9f7adb3db
summarized 0.11.3 changes 2025-08-12 06:44:14 -04:00
Andrew Mirsky b4df977f6f
pre 0.11.3 release cleanup (#294)
* add warning message for client config to match client config description
2025-08-11 21:56:30 -04:00
Andrew Mirsky bfd2d86395
removing superfluous dependency, updating readthedocs build process, plugin doc cleanup 2025-08-11 20:28:27 -04:00
Andrew Mirsky 8e47ede192
code quality improvements (#293)
* add additional linting rules
2025-08-10 22:00:33 -04:00
Andrew Mirsky b4d58c9130
prepare for 0.11.3 release (#292)
* updating docs, version # and changelog for release 0.11.3
2025-08-10 18:08:52 -04:00
Andrew Mirsky 0d678dfa7c
Plugin: jwt authentication and authorization (#289)
* Yakifo/amqtt#260 : plugin to verify a jwt and its claims including test cases. and docs.
2025-08-09 15:39:31 -04:00
Andrew Mirsky 0e318671dd
Sample: broker and client communicating with mqtt over unix socket (#291)
* Yakifo/aqmtt#290 : create a sample that implements mqtt over unix socket. documentation and test case.
2025-08-09 15:37:33 -04:00
Andrew Mirsky beb8672116
Plugin: authenticate against LDAP server (#287)
* Yakifo/amqtt#261 : plugin for authenticating a user with ldap.
* adding openldap dependencies
* updating ldap custom schema to include three ACL attributes, retrieve the correct topic list and check if topic is allowed
2025-08-09 15:27:44 -04:00
Andrew Mirsky e6b0f1d002
allow timestamps to skew slightly due to manually creation 2025-08-09 15:22:38 -04:00
Andrew Mirsky f50e3b48f6
Plugin: device 'shadows' to bridge device online/offline states (#282)
* states, calculations and model for shadow plugin
* adding tests for shadow states and correcting use cases
* adding get/update message broadcast, adding json schema tests for shadow messages being received
* adding shadow plugin documentation
2025-08-09 15:01:10 -04:00
Andrew Mirsky 2fa0604547
Plugin: determine authentication based on X509 certificates (#264)
* plugin for authenticating clients based on certificates
* create ca, server and device keys and certificates. certificate auth plugin verification (non linted)
* adding documentation for the various cli scripts and the CertificateAuthPlugin
* post_init was not running on client config. cafile, keyfile, certfile are part of the connection section
* 'broker' section of client config can be empty, but connection will either be provided by the user or the default
2025-08-09 14:52:35 -04:00
Andrew Mirsky de40ca51d3
Plugin: rebuild of session persistence (#256)
* rebuild of the persistence plugin to handle storing / restoring sessions
* adding event for broker when a message is being retained
* adding retained message logic to persistence plugin and test cases
* updated documentation
* moving DataClassListJson field to common location for reuse
2025-08-09 14:15:45 -04:00
Andrew Mirsky 2a7aa11524
Merge pull request #283 from ajmirsky/issue_73
embed amqtt into an existing server
2025-08-08 21:14:12 -04:00
Andrew Mirsky 73676e981c
Merge pull request #288 from ajmirsky/plugin_naming_convention
Plugin naming convention
2025-08-06 18:00:35 -04:00
Andrew Mirsky ae6d772927
standardizing naming convention for new plugins 2025-08-06 14:08:45 -04:00
Andrew Mirsky 04591aaaab
splitting http plugin into auth (user) and topic 2025-08-06 13:38:45 -04:00
Andrew Mirsky 8ece3b58f9
Merge pull request #286 from ajmirsky/doc_cleanup
Documentation improvement for 0.11.3
2025-08-05 12:47:40 -04:00
Andrew Mirsky 8ef5852bf0
Merge pull request #285 from ajmirsky/issue_39
Yakifo/amqtt#39 : adding W0718 'broad exception caught'
2025-08-05 12:39:46 -04:00
Andrew Mirsky 66ac74f3d2
clarifying documentation for plugins and client/broker configuration 2025-08-05 11:56:05 -04:00
Andrew Mirsky 6ff7c5a87a
Yakifo/amqtt#73 : adding test case for external http server integration. comments and documentation. 2025-08-05 10:44:38 -04:00
Andrew Mirsky a0330bd980
Merge pull request #284 from ajmirsky/issue_120
Yakifo/amqtt#120 confirms : validate example is functioning
2025-08-05 07:55:46 -04:00
Andrew Mirsky 0141cddeeb
Yakifo/amqtt#73 : refinement of external websocket server 2025-08-04 19:19:51 -04:00
Andrew Mirsky c1625e264e
Yakifo/amqtt#73 : removal of wip code 2025-08-04 17:47:29 -04:00
Andrew Mirsky ad4854df00
Yakifo/amqtt#73 : working example of using aiohttp server to receive the websocket connection 2025-08-04 17:23:18 -04:00
Andrew Mirsky 76651e32f3
websockets via aiohttp 2025-08-04 16:28:51 -04:00
Andrew Mirsky 6135022bd5
Yakifo/amqtt#39 : evaluating usages of catch all Exception handling. excluding persistence plugin since it's being replaced 2025-08-04 14:43:06 -04:00
Andrew Mirsky c425056368
Yakifo/amqtt#120 confirms : validate example is functioning 2025-08-04 11:24:05 -04:00
Andrew Mirsky cdcee7cbf8
Merge pull request #281 from ajmirsky/plugin_docs
Expanded structure for plugin documentation
2025-07-30 12:01:18 -04:00
Andrew Mirsky cee49ffba2
migrate config to use the mkdocs material custom style templates. expand content. 2025-07-30 11:54:20 -04:00
Andrew Mirsky f6ccdbc51c
splitting out contrib plugin documentation into separate pages 2025-07-30 09:32:56 -04:00
Andrew Mirsky c518b9b63f
Fixes #247 : expire disconnected sessions (#279)
* Yakifo/amqtt#247 : add configuration that specifies how long sessions should be retained. also, remove sessions where we're not retaining messages (aka anonymous or clean sessions)
2025-07-26 21:39:45 -04:00
Andrew Mirsky 744827cdd5
Plugin: authentication against a relational database (#280)
* Yakifo/amqtt#259 : db schema (orm) and authentication of users plugin, initial

* expanding to include a simple admin interface

* create directory into module

* user management ui react app

* including research associated with session auth for the admin ui

* updating to handle username and acl datagrid

* multi cli optional approaches

* basic cli functions for manipulating users

* Yakifo/amqtt#259 : lint and type cleanup

* Yakifo/amqtt#259 : added tests for AuthDBPlugin as well as the UserManager. includes a command line interface for listing, adding, removing and updating users. added documentation.

* Yakifo/amqtt#259 : need to install the 'contrib' extra package for the workflows

* fixing class name change

* fixed incorrect install of optional library for ci. auth db test wasn't shutting down broker, causing subsequent tests to fail"

* test case not cleaning up after itself

* adding topic authentication to database plugin

* renamed command line script

* moved auth db ui to a different branch. added a temp directory to the temp file used for sqlite tests

* more renaming to leave space to expand to topic management

* updating dependencies

* renaming scripts

* adding topic filter and test cases

* Yakifo/amqtt#259
separate plugin for DB topic-based checking. additional topic auth testing
Yakifo/amqtt#259
updating uv.lock
fixing lint and typing errors
handling strenum for 3.10
updating documentation for topic and user auth plugins
update user and topic manager scripts, add tests and fix bugs
add tests for the user and topic mgr cli
client connection timeout should yield a connecterror

* adding 'receive' action, added along with the http plugin
2025-07-26 17:04:14 -04:00
Andrew Mirsky b7fd9e1afc
Determine auth & topic access via external http server (#262)
* initial structure of http acl

* progress

* Yakifo/amqtt#258 (in progress): a plugin which requests authentication via http

* Yakifo/amqtt#258 (in progress): a plugin which requests topic acl via http

* renaming plugin

* StrEnum support for python 3.10

* when using python 3.10, 'localhost' resolves to the wrong ip address, so we excplicitly use the loopback address. our polyfill for StrEnum in python 3.10, needs to get the value instead of its implicit converstion in other versions

* add documentation, expand functionality to handle  case including test cases

* refactoring test fixtures for HttpAuthAclPlugin

* further refactoring of test cases to eliminate duplicate code

* add comments to test code

* rename to more accurately describe user authentication and topic authorization

* config option name change

* cleaning up documentation on the Topic ACL Plugin

* simplificiation based on feedback

* updated doc

* incorporated feedback
2025-07-26 15:47:49 -04:00
Andrew Mirsky 9370ad7f9a
Structured broker and client configurations (#269)
* wip for structured configs

* updating docs to pull descriptions from structured configs

* display 'default_factory' in a field as the actual value

* finalizing the dataclass style, format and content of the documentation for the BrokerConfig.

* updated documentation for broker and client config including finalizing the griffe extension to get the output of the default_factory's of dataclasses

* all test cases working. most fixes were to make the dataclass config's backwards compatible with how the rest of the code was accessing config dictionaries

* type correction and linting fixes

* updates to support python 3.10

* fixes to handle wonky yaml files

* removing non-modified template files

* adding documentation on the custom griffe extension to render the 'default_factory' for dataclass's 'field'

* refining documentation

* removing duplicate logger
2025-07-26 12:37:25 -04:00
Andrew Mirsky ba088ac84b
test.amqtt.io dashboard cleanup (#278)
* update the configuration for the broker running at test.amqtt.io to latest format

* removing all of the MUI components from their example dashboard that are no longer needed

* separating out main grid layout into separate components and functions for readability

* updating count up display to handle bytes, kilobytes, etc
2025-07-25 12:05:33 -04:00
Andrew Mirsky 54c6b13900
Merge pull request #277 from ajmirsky/broker_script_logging
Improved broker script logging
2025-07-16 18:26:06 -04:00
Andrew Mirsky 358b1fcd39
Merge pull request #271 from ajmirsky/test_amqtt_yaml_update
update the configuration for the broker running at test.amqtt.io to l…
2025-07-16 18:23:06 -04:00
Andrew Mirsky f6be2c3141
improving amqtt script logging, silence 'transitions' module, additional info if debug is enabled 2025-07-16 18:04:08 -04:00
Andrew Mirsky 369122b86a
update the configuration for the broker running at test.amqtt.io to latest format 2025-07-14 12:28:59 -04:00
Andrew Mirsky fe64d011ec
Merge branch 'main' into 0.11.3-rc.1 2025-07-13 10:40:28 -04:00
Andrew Mirsky 8a43153cb3
Merge pull request #243 from Yakifo/0.11.2-rc
Release: 0.11.2
2025-07-13 10:22:27 -04:00
Andrew Mirsky 92305815a6
Merge pull request #266 from ajmirsky/release-0.11.2
change version numbers for release of 0.11.2
2025-07-13 10:11:14 -04:00
Andrew Mirsky fc49979389
Merge pull request #265 from ajmirsky/common_0.11.3
Structural elements for the 0.11.3 release
2025-07-10 13:24:01 -04:00
Andrew Mirsky 06cf5f6535
updating changelog for 0.11.2 release 2025-07-10 13:22:49 -04:00
Andrew Mirsky 299511707c
Merge branch 'custom_plugin_doc_updates' into release-0.11.2 2025-07-10 12:52:44 -04:00
Andrew Mirsky 2abf9faa9d
additional examples for creating custom plugins 2025-07-10 12:50:19 -04:00
Andrew Mirsky d783439ed9
Merge pull request #267 from ajmirsky/per_second_dashboard
Show messages sent/received per second on dashboard
2025-07-10 12:48:43 -04:00
Andrew Mirsky 4d6c51d8f3
display messages per second on dashboard 2025-07-10 12:47:06 -04:00
Andrew Mirsky 33ac8b8dd7
add additional documentation for custom plugins 2025-07-10 12:29:59 -04:00