Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: boto/botocore
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.34.90
Choose a base ref
...
head repository: boto/botocore
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.34.91
Choose a head ref
  • 6 commits
  • 15 files changed
  • 2 contributors

Commits on Apr 23, 2024

  1. Merge branch 'release-1.34.90' into develop

    * release-1.34.90:
      Bumping version to 1.34.90
      Update endpoints model
      Update to latest models
    aws-sdk-python-automation committed Apr 23, 2024
    Copy the full SHA
    efc1239 View commit details
  2. Add missing changelog entry (#3167)

    nateprewitt authored Apr 23, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e0998da View commit details

Commits on Apr 24, 2024

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    25e053b View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c7aa896 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5f568a4 View commit details
  4. Merge branch 'release-1.34.91'

    * release-1.34.91:
      Bumping version to 1.34.91
      Update endpoints model
      Update to latest models
      Add missing changelog entry (#3167)
    aws-sdk-python-automation committed Apr 24, 2024
    Copy the full SHA
    c5792f2 View commit details
7 changes: 6 additions & 1 deletion .changes/1.34.90.json
Original file line number Diff line number Diff line change
@@ -39,9 +39,14 @@
"description": "Fix the example ARN for ModifyActivityStreamRequest",
"type": "api-change"
},
{
"category": "``sqs``",
"description": "This release enables customers to call SQS using AWS JSON-1.0 protocol",
"type": "api-change"
},
{
"category": "``workspaces-web``",
"description": "Added InstanceType and MaxConcurrentSessions parameters on CreatePortal and UpdatePortal Operations as well as the ability to read Customer Managed Key & Additional Encryption Context parameters on supported resources (Portal, BrowserSettings, UserSettings, IPAccessSettings)",
"type": "api-change"
}
]
]
32 changes: 32 additions & 0 deletions .changes/1.34.91.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"category": "``datasync``",
"description": "This change allows users to disable and enable the schedules associated with their tasks.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "Launching capability for customers to enable or disable automatic assignment of public IPv4 addresses to their network interface",
"type": "api-change"
},
{
"category": "``emr-containers``",
"description": "EMRonEKS Service support for SecurityConfiguration enforcement for Spark Jobs.",
"type": "api-change"
},
{
"category": "``entityresolution``",
"description": "Support Batch Unique IDs Deletion.",
"type": "api-change"
},
{
"category": "``gamelift``",
"description": "Amazon GameLift releases container fleets support for public preview. Deploy Linux-based containerized game server software for hosting on Amazon GameLift.",
"type": "api-change"
},
{
"category": "``ssm``",
"description": "Add SSM DescribeInstanceProperties API to public AWS SDK.",
"type": "api-change"
}
]
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -2,6 +2,17 @@
CHANGELOG
=========

1.34.91
=======

* api-change:``datasync``: This change allows users to disable and enable the schedules associated with their tasks.
* api-change:``ec2``: Launching capability for customers to enable or disable automatic assignment of public IPv4 addresses to their network interface
* api-change:``emr-containers``: EMRonEKS Service support for SecurityConfiguration enforcement for Spark Jobs.
* api-change:``entityresolution``: Support Batch Unique IDs Deletion.
* api-change:``gamelift``: Amazon GameLift releases container fleets support for public preview. Deploy Linux-based containerized game server software for hosting on Amazon GameLift.
* api-change:``ssm``: Add SSM DescribeInstanceProperties API to public AWS SDK.


1.34.90
=======

@@ -13,6 +24,7 @@ CHANGELOG
* api-change:``ec2``: This release introduces EC2 AMI Deregistration Protection, a new AMI property that can be enabled by customers to protect an AMI against an unintended deregistration. This release also enables the AMI owners to view the AMI 'LastLaunchedTime' in DescribeImages API.
* api-change:``pi``: Clarifies how aggregation works for GetResourceMetrics in the Performance Insights API.
* api-change:``rds``: Fix the example ARN for ModifyActivityStreamRequest
* api-change:``sqs``: This release enables customers to call SQS using AWS JSON-1.0 protocol
* api-change:``workspaces-web``: Added InstanceType and MaxConcurrentSessions parameters on CreatePortal and UpdatePortal Operations as well as the ability to read Customer Managed Key & Additional Encryption Context parameters on supported resources (Portal, BrowserSettings, UserSettings, IPAccessSettings)


2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.90'
__version__ = '1.34.91'


class NullHandler(logging.Handler):
Loading