Prep release 4.1.1 (#5869)

This commit is contained in:
Bert Blommers 2023-01-23 16:13:26 -01:00 committed by GitHub
parent 64a5dcde31
commit 1928d9e37d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 77 additions and 26 deletions

View File

@ -2,6 +2,47 @@ Moto Changelog
==============
4.1.1
-----
Docker Digest for 4.1.1: <autopopulateddigest>
New Methods:
* APIGateway:
* get_export()
* EC2:
* describe_security_group_rules()
* Glue:
* delete_registry()
* get_registry()
* get_schema()
* list_registries()
* update_schema()
* Sagemaker:
* describe_pipeline()
* describe_pipeline_definition_for_execution()
* describe_pipeline_execution()
* list_pipeline_executions()
* list_pipeline_parameters_for_execution()
* start_pipeline()
Miscellaneous:
* APIGateway: put_integration() now supports the connectionType-parameter
* Batch: register_job_definition() now supports type="multinode"
* EC2: describe_launch_template_versions() now supports $Latest and $Default versions
* ECS: list_services() now throws correct error when providing unknown cluster
* ECS: start_task() now supports the tags-parameter
* Events: put_events() now supports sending events to an eventbus in another region/account
* KMS: list_aliases() now returns the TargetKeyId-attribute
* S3: put_bucket_logging() now actually logs incoming requests, when enabled
* SES: Fixed a bug where the service was not region-aware, i.e. all resources were shared across regions
* SES: improved parser support for email templates
* SSM: put_parameter() now validates the value of the Type-parameter
* RDS: create_db_instance() now supports the PreferredMaintenanceWindow and PreferredBackupWindow-parameters
4.1.0
-----
Docker Digest for 4.1.0: _sha256:1c38613f7273054650d08f3cb3ce118753296d08ffbfee8c96400c89a529c9ca_

View File

@ -1734,7 +1734,7 @@
## ec2
<details>
<summary>33% implemented</summary>
<summary>34% implemented</summary>
- [ ] accept_address_transfer
- [ ] accept_reserved_instances_exchange_quote
@ -2037,7 +2037,7 @@
- [ ] describe_scheduled_instance_availability
- [ ] describe_scheduled_instances
- [ ] describe_security_group_references
- [ ] describe_security_group_rules
- [X] describe_security_group_rules
- [X] describe_security_groups
- [ ] describe_snapshot_attribute
- [ ] describe_snapshot_tier_status
@ -3080,7 +3080,7 @@
## glue
<details>
<summary>18% implemented</summary>
<summary>20% implemented</summary>
- [X] batch_create_partition
- [ ] batch_delete_connection
@ -3138,7 +3138,7 @@
- [ ] delete_ml_transform
- [ ] delete_partition
- [ ] delete_partition_index
- [ ] delete_registry
- [X] delete_registry
- [ ] delete_resource_policy
- [X] delete_schema
- [ ] delete_schema_versions
@ -3187,10 +3187,10 @@
- [ ] get_partition_indexes
- [X] get_partitions
- [ ] get_plan
- [ ] get_registry
- [X] get_registry
- [ ] get_resource_policies
- [ ] get_resource_policy
- [ ] get_schema
- [X] get_schema
- [X] get_schema_by_definition
- [X] get_schema_version
- [ ] get_schema_versions_diff
@ -3226,7 +3226,7 @@
- [ ] list_dev_endpoints
- [X] list_jobs
- [ ] list_ml_transforms
- [ ] list_registries
- [X] list_registries
- [ ] list_schema_versions
- [ ] list_schemas
- [ ] list_sessions
@ -3278,7 +3278,7 @@
- [ ] update_ml_transform
- [ ] update_partition
- [ ] update_registry
- [ ] update_schema
- [X] update_schema
- [ ] update_source_control_from_job
- [ ] update_table
- [ ] update_trigger
@ -5246,10 +5246,11 @@
## resource-groups
<details>
<summary>68% implemented</summary>
<summary>61% implemented</summary>
- [X] create_group
- [X] delete_group
- [ ] get_account_settings
- [X] get_group
- [X] get_group_configuration
- [ ] get_group_query
@ -5262,6 +5263,7 @@
- [X] tag
- [ ] ungroup_resources
- [X] untag
- [ ] update_account_settings
- [X] update_group
- [X] update_group_query
</details>
@ -5597,7 +5599,7 @@
## sagemaker
<details>
<summary>15% implemented</summary>
<summary>17% implemented</summary>
- [ ] add_association
- [X] add_tags
@ -5744,9 +5746,9 @@
- [ ] describe_monitoring_schedule
- [ ] describe_notebook_instance
- [X] describe_notebook_instance_lifecycle_config
- [ ] describe_pipeline
- [ ] describe_pipeline_definition_for_execution
- [ ] describe_pipeline_execution
- [X] describe_pipeline
- [X] describe_pipeline_definition_for_execution
- [X] describe_pipeline_execution
- [X] describe_processing_job
- [ ] describe_project
- [ ] describe_space
@ -5821,8 +5823,8 @@
- [ ] list_notebook_instance_lifecycle_configs
- [ ] list_notebook_instances
- [ ] list_pipeline_execution_steps
- [ ] list_pipeline_executions
- [ ] list_pipeline_parameters_for_execution
- [X] list_pipeline_executions
- [X] list_pipeline_parameters_for_execution
- [X] list_pipelines
- [X] list_processing_jobs
- [ ] list_projects
@ -5851,7 +5853,7 @@
- [ ] start_inference_experiment
- [ ] start_monitoring_schedule
- [X] start_notebook_instance
- [ ] start_pipeline_execution
- [X] start_pipeline_execution
- [ ] stop_auto_ml_job
- [ ] stop_compilation_job
- [ ] stop_edge_deployment_stage
@ -6644,6 +6646,7 @@
- chime-sdk-meetings
- chime-sdk-messaging
- chime-sdk-voice
- cleanrooms
- cloud9
- cloudcontrol
- clouddirectory
@ -6724,6 +6727,7 @@
- kafka
- kafkaconnect
- kendra
- kendra-ranking
- keyspaces
- kinesis-video-media
- kinesis-video-signaling

View File

@ -336,7 +336,7 @@ ec2
- [ ] describe_scheduled_instance_availability
- [ ] describe_scheduled_instances
- [ ] describe_security_group_references
- [ ] describe_security_group_rules
- [X] describe_security_group_rules
- [X] describe_security_groups
- [ ] describe_snapshot_attribute
- [ ] describe_snapshot_tier_status

View File

@ -58,6 +58,10 @@ ecs
- [X] describe_task_definition
- [X] describe_task_sets
- [X] describe_tasks
Only include=TAGS is currently supported.
- [ ] discover_poll_endpoint
- [ ] execute_command
- [ ] get_task_protection

View File

@ -85,7 +85,7 @@ glue
- [ ] delete_ml_transform
- [ ] delete_partition
- [ ] delete_partition_index
- [ ] delete_registry
- [X] delete_registry
- [ ] delete_resource_policy
- [X] delete_schema
- [ ] delete_schema_versions
@ -147,10 +147,10 @@ glue
- [ ] get_plan
- [ ] get_registry
- [X] get_registry
- [ ] get_resource_policies
- [ ] get_resource_policy
- [ ] get_schema
- [X] get_schema
- [X] get_schema_by_definition
- [X] get_schema_version
- [ ] get_schema_versions_diff
@ -186,7 +186,7 @@ glue
- [ ] list_dev_endpoints
- [X] list_jobs
- [ ] list_ml_transforms
- [ ] list_registries
- [X] list_registries
- [ ] list_schema_versions
- [ ] list_schemas
- [ ] list_sessions
@ -238,7 +238,11 @@ glue
- [ ] update_ml_transform
- [ ] update_partition
- [ ] update_registry
- [ ] update_schema
- [X] update_schema
The SchemaVersionNumber-argument is not yet implemented
- [ ] update_source_control_from_job
- [ ] update_table
- [ ] update_trigger

View File

@ -27,6 +27,7 @@ resource-groups
- [X] create_group
- [X] delete_group
- [ ] get_account_settings
- [X] get_group
- [X] get_group_configuration
- [ ] get_group_query
@ -43,6 +44,7 @@ resource-groups
- [X] tag
- [ ] ungroup_resources
- [X] untag
- [ ] update_account_settings
- [X] update_group
- [X] update_group_query

View File

@ -102,10 +102,6 @@ s3
- [X] put_bucket_lifecycle
- [ ] put_bucket_lifecycle_configuration
- [X] put_bucket_logging
The logging functionality itself is not yet implemented - we only store the configuration for now.
- [ ] put_bucket_metrics_configuration
- [ ] put_bucket_notification
- [X] put_bucket_notification_configuration