Wykres commitów

1361 Commity (db72c13f2f798d072103d31468c93e328ec7fdb8)

Autor SHA1 Wiadomość Data
Andrew Mirsky db72c13f2f
Merge remote-tracking branch 'origin/plugin_shadows' into plugin_shadows 2025-08-07 19:03:38 -04:00
Andrew Mirsky 2eed8c848f
Merge branch '0.11.3-rc.1' into plugin_shadows 2025-08-07 19:02:30 -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 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 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 17a268b2f5
Update amqtt/contrib/shadows/plugin.py
Co-authored-by: Marius Kriegerowski <marius.kriegerowski@gmail.com>
2025-08-02 14:10:28 -04:00
Andrew Mirsky 0e5554cef2
strenum for python 3.10 2025-07-31 22:44:04 -04:00
Andrew Mirsky b761a56608
adding shadow plugin documentation 2025-07-31 22:40:20 -04:00
Andrew Mirsky 075fec9aec
Merge branch '0.11.3-rc.1' into plugin_shadows 2025-07-30 15:08:29 -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 1197e18296
adding get/update message broadcast
cleaning up shadow message generation using dataclasses
adding json schema tests for shadow messages being receieved.
2025-07-30 06:50:20 -04:00
Andrew Mirsky 70d701d0fa
adding tests for shadow states and correcting use cases 2025-07-28 14:48:28 -04:00
Andrew Mirsky 25d212ef0a
adding shadow model 2025-07-28 12:52:41 -04:00
Andrew Mirsky bcaa4bb2f9
states and calculations for shadow plugin 2025-07-27 19:03:08 -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
Andrew Mirsky 9c0b10ea2a
update uv.lock with correct version number 2025-07-10 11:41:00 -04:00
Andrew Mirsky 75a743dda3
update uv.lock with correct version number 2025-07-10 11:40:40 -04:00
Andrew Mirsky 0cb83ca200
another version that needs updating 2025-07-10 11:38:50 -04:00
Andrew Mirsky 98778416dc
structure needed as the basis for several 0.11.3 improvements 2025-07-10 11:23:56 -04:00
Andrew Mirsky 5548897b3f
change version numbers for release of 0.11.2 2025-07-09 12:27:22 -04:00
Andrew Mirsky 7f30c631a4
Merge pull request #257 from ajmirsky/dashboard_test_amqttio
add cpu, mem and broker version to dashboard
2025-07-08 14:51:44 -04:00
Andrew Mirsky 681815397b
adding broker version into display 2025-07-08 14:46:12 -04:00
Andrew Mirsky fab7c36d86
adding memory and cpu display to test.amqtt.io dashboard 2025-07-08 11:29:42 -04:00
Andrew Mirsky 57597dfea4
Merge pull request #252 from ajmirsky/plugin_config_error_case_checking
updated samples; plugin config consistency (yaml and python dict)
2025-07-07 12:18:36 -04:00