v2.1.12
Version 2.1.12
Changes to Existing Features
- Application Integrations:
- Enhanced parameter handling in the
create_notification,delete_notifications, andrecord_action_feedbackmethods. Thebodyis now explicitly extracted fromkwargsand passed asdata, while other parameters are passed asparams. This improvement increases the reliability of API interactions.
- Enhanced parameter handling in the
Internal
- Dependencies:
- Updated
boto3from1.43.36to1.43.55in bothrequirements.txtanddocs/requirements.txt. - Updated
sphinx-jinja2-compatfrom0.1.1to0.4.1indocs/requirements.txt.
- Updated
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.