v2.0 Release Notes¶
This document describes all new features and changes in the release 2.0. The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Release Overview¶
- Package renamed from
nautobot-app-graphql-observabilitytonautobot-graphql-observability. - Refactored to use official Nautobot extension points instead of monkey patches where possible.
- Added Django HTTP middleware for accurate request timing on both GraphQL endpoints.
[v2.0.0] - 2026¶
Breaking Changes¶
- Package renamed: distribution name changed from
nautobot-app-graphql-observabilitytonautobot-graphql-observability. - Module renamed: Python module changed from
nautobot_app_graphql_observabilitytonautobot_graphql_observability. - Update all references in
nautobot_config.py(PLUGINS,PLUGINS_CONFIG,GRAPHENE["MIDDLEWARE"]).
Added¶
GraphQLObservabilityDjangoMiddleware— Django HTTP middleware registered via officialNautobotAppConfig.middlewaremechanism.- Handles request timing and query logging for both
/api/graphql/and/graphql/endpoints. stash_meta_on_requestshared utility for DRF/WSGI request metadata stashing.
Changed¶
- Replaced monkey patches on
GraphQLDRFAPIView.post()andCustomGraphQLView.dispatch()with official Django middleware. - Only one monkey patch remains:
_patch_init_graphql()to work around Nautobot's middleware loading limitation (no official extension point available).