Notes
- New Typed Dicts with Python 3.11 flavor! Bringing the power of `Required/NotRequired` flags to make things less complicated
- `typing-extensions` is now mandatory for all packages. Yes, even on Python 3.10+.
- `Glacier` client methods `accountId` argument is now optional. I had to hardcode it, not a real fix.
- Resource methods with partial data mixins are now supported (`s3`, `glacier`, `ec2` affected)
Added
- `[builder]` Default argument values can now be extracted from `action_shape` for resource methods
Changed
- `[services]` All packages now depend on `typing-extensions`
- `[services]` `TypedDict` rendering has changed for easier debugging
- `[services]` Resource method request shape name includes action name to avoid conflicts (might be breaking if you use them directly)
- `[docs]` Generated pages are compatible with [Read the Docs](https://readthedocs.org/)
Fixed
- `[s3]` `BucketVersioning.create` and `BucketVersioning.suspend` methods no longer require `VersioningConfiguration` (reported by takeda in 138)
- `[glacier]` Client methods no longer require `accountId` and default value is set to `'-'`
- `[builder]` Targets extracted from `action_shape` support nested arguments
- `[services]` All `pyright` reported issues addressed
- `[docs]` Added breadcrumbs to Examples page