Skip to content

v2.1.12

Choose a tag to compare

@github-actions github-actions released this 24 Jul 21:28
26d0025

Version 2.1.12

Changes to Existing Features

  • Application Integrations:
    • Enhanced parameter handling in the create_notification, delete_notifications, and record_action_feedback methods. The body is now explicitly extracted from kwargs and passed as data, while other parameters are passed as params. This improvement increases the reliability of API interactions.

Internal

  • Dependencies:
    • Updated boto3 from 1.43.36 to 1.43.55 in both requirements.txt and docs/requirements.txt.
    • Updated sphinx-jinja2-compat from 0.1.1 to 0.4.1 in docs/requirements.txt.

Diagram of Method Changes

graph TD;
    A[Previous Method Implementation] --> B[create_notification];
    A --> C[delete_notifications];
    A --> D[record_action_feedback];
    B --> E[Corrected Parameter Handling];
    C --> F[Corrected Parameter Handling];
    D --> G[Corrected Parameter Handling];

This update ensures that the methods in the ApplicationIntegrations class handle request bodies and parameters correctly, improving the reliability of API interactions.