Skip to content

Commit

Permalink
Merge branch 'release-1.26.133'
Browse files Browse the repository at this point in the history
* release-1.26.133:
  Bumping version to 1.26.133
  Add changelog entries from botocore
  Address admonition title accessibility issue (#3687)
  • Loading branch information
aws-sdk-python-automation committed May 11, 2023
2 parents df48e50 + e0b954f commit f755186
Show file tree
Hide file tree
Showing 8 changed files with 108 additions and 24 deletions.
52 changes: 52 additions & 0 deletions .changes/1.26.133.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
[
{
"category": "endpoints",
"description": "[``botocore``] Include params set in provide-client-param event handlers in dynamic context params for endpoint resolution.",
"type": "bugfix"
},
{
"category": "``connect``",
"description": "[``botocore``] This release updates GetMetricDataV2 API, to support metric data up-to last 35 days",
"type": "api-change"
},
{
"category": "``elasticache``",
"description": "[``botocore``] Added support to modify the cluster mode configuration for the existing ElastiCache ReplicationGroups. Customers can now modify the configuration from cluster mode disabled to cluster mode enabled.",
"type": "api-change"
},
{
"category": "``es``",
"description": "[``botocore``] This release fixes DescribePackages API error with null filter value parameter.",
"type": "api-change"
},
{
"category": "``health``",
"description": "[``botocore``] Add support for regional endpoints",
"type": "api-change"
},
{
"category": "``ivs-realtime``",
"description": "[``botocore``] Add methods for inspecting and debugging stages: ListStageSessions, GetStageSession, ListParticipants, GetParticipant, and ListParticipantEvents.",
"type": "api-change"
},
{
"category": "``omics``",
"description": "[``botocore``] This release provides support for Ready2Run and GPU workflows, an improved read set filter, the direct upload of read sets into Omics Storage, and annotation parsing for analytics stores.",
"type": "api-change"
},
{
"category": "``opensearch``",
"description": "[``botocore``] This release fixes DescribePackages API error with null filter value parameter.",
"type": "api-change"
},
{
"category": "``route53resolver``",
"description": "[``botocore``] Update FIPS endpoints for GovCloud (US) regions in SDK.",
"type": "api-change"
},
{
"category": "``support``",
"description": "[``botocore``] This release adds 2 new Support APIs, DescribeCreateCaseOptions and DescribeSupportedLanguages. You can use these new APIs to get available support languages.",
"type": "api-change"
}
]
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
CHANGELOG
=========

1.26.133
========

* bugfix:endpoints: [``botocore``] Include params set in provide-client-param event handlers in dynamic context params for endpoint resolution.
* api-change:``connect``: [``botocore``] This release updates GetMetricDataV2 API, to support metric data up-to last 35 days
* api-change:``elasticache``: [``botocore``] Added support to modify the cluster mode configuration for the existing ElastiCache ReplicationGroups. Customers can now modify the configuration from cluster mode disabled to cluster mode enabled.
* api-change:``es``: [``botocore``] This release fixes DescribePackages API error with null filter value parameter.
* api-change:``health``: [``botocore``] Add support for regional endpoints
* api-change:``ivs-realtime``: [``botocore``] Add methods for inspecting and debugging stages: ListStageSessions, GetStageSession, ListParticipants, GetParticipant, and ListParticipantEvents.
* api-change:``omics``: [``botocore``] This release provides support for Ready2Run and GPU workflows, an improved read set filter, the direct upload of read sets into Omics Storage, and annotation parsing for analytics stores.
* api-change:``opensearch``: [``botocore``] This release fixes DescribePackages API error with null filter value parameter.
* api-change:``route53resolver``: [``botocore``] Update FIPS endpoints for GovCloud (US) regions in SDK.
* api-change:``support``: [``botocore``] This release adds 2 new Support APIs, DescribeCreateCaseOptions and DescribeSupportedLanguages. You can use these new APIs to get available support languages.


1.26.132
========

Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from boto3.session import Session

__author__ = 'Amazon Web Services'
__version__ = '1.26.132'
__version__ = '1.26.133'


# The default Boto3 session; autoloaded when needed.
Expand Down
26 changes: 26 additions & 0 deletions docs/source/_static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,29 @@ h1, code, li {
.sidebar-logo{
padding: 20% 15%;
}

/* Apply furo styled admonition titles for <h3>. */
h3.admonition-title {
position: relative;
margin: 0 -0.5rem 0.5rem;
padding-left: 2.5rem;
padding-right: .5rem;
padding-top: .4rem;
padding-bottom: .4rem;
font-weight: 700;
font-size: 1.5em;
line-height: 1.25;
border-radius: unset;
background-color: var(--color-admonition-title-background);
}
/* Apply furo styled admonition icons before <h3>. */
h3.admonition-title::before {
content: "";
position: absolute;
left: 0.5rem;
width: 1.5rem;
height: 1.5rem;
background-color: var(--color-admonition-title);
mask-image: var(--icon-admonition-default);
mask-repeat: no-repeat;
}
21 changes: 0 additions & 21 deletions docs/source/_static/js/custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,18 +91,6 @@ function makeServiceLinkCurrent(serviceName) {
}
const currentPagePath = window.location.pathname.split('/');
const codeBlockSelector = 'div.highlight pre';
const boldTextSelector = 'strong';
const boldElements = document.querySelectorAll(boldTextSelector);
const headings = [
'Example',
'Examples',
'Exceptions',
'Request Syntax',
'Response Structure',
'Response Syntax',
'Structure',
'Syntax'
];
// Expands the "Available Services" sub-menu in the side-bar when viewing
// nested doc pages and highlights the corresponding service list item.
function expandSubMenu() {
Expand All @@ -121,18 +109,9 @@ function makeCodeBlocksScrollable() {
codeCell.tabIndex = 0;
});
}
// Converts implicit bold headings into actual headings with h3 tags.
function convertImplicitHeadings() {
boldElements.forEach(boldElement => {
if (headings.includes(boldElement.innerHTML)) {
boldElement.parentElement.outerHTML = `<h3>${ boldElement.innerHTML }</h3>`;
}
});
}
// Functions to run after the DOM loads.
function runAfterDOMLoads() {
expandSubMenu();
convertImplicitHeadings();
makeCodeBlocksScrollable();
}
// Run a function after the DOM loads.
Expand Down
12 changes: 12 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
import boto3.session
from boto3.docs import generate_docs

try:
from botocore.docs.translator import BotoHTML5Translator
CUSTOM_HTML_TRANSLATOR = BotoHTML5Translator
except ImportError:
CUSTOM_HTML_TRANSLATOR = None


session = boto3.session.Session(region_name='us-east-1')
generate_docs(os.path.dirname(os.path.abspath(__file__)), session)
Expand Down Expand Up @@ -296,3 +302,9 @@
#texinfo_show_urls = 'footnote'

autoclass_content = 'both'


def setup(app):
# Register our custom HTML translator.
if CUSTOM_HTML_TRANSLATOR:
app.set_translator("html", CUSTOM_HTML_TRANSLATOR)
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.29.132,<1.30.0
botocore>=1.29.133,<1.30.0
jmespath>=0.7.1,<2.0.0
s3transfer>=0.6.0,<0.7.0

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


requires = [
'botocore>=1.29.132,<1.30.0',
'botocore>=1.29.133,<1.30.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.6.0,<0.7.0',
]
Expand Down

0 comments on commit f755186

Please sign in to comment.