Skip to content

Commit f755186

Browse files
Merge branch 'release-1.26.133'
* release-1.26.133: Bumping version to 1.26.133 Add changelog entries from botocore Address admonition title accessibility issue (#3687)
2 parents df48e50 + e0b954f commit f755186

File tree

8 files changed

+108
-24
lines changed

8 files changed

+108
-24
lines changed

.changes/1.26.133.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"category": "endpoints",
4+
"description": "[``botocore``] Include params set in provide-client-param event handlers in dynamic context params for endpoint resolution.",
5+
"type": "bugfix"
6+
},
7+
{
8+
"category": "``connect``",
9+
"description": "[``botocore``] This release updates GetMetricDataV2 API, to support metric data up-to last 35 days",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``elasticache``",
14+
"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.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``es``",
19+
"description": "[``botocore``] This release fixes DescribePackages API error with null filter value parameter.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``health``",
24+
"description": "[``botocore``] Add support for regional endpoints",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``ivs-realtime``",
29+
"description": "[``botocore``] Add methods for inspecting and debugging stages: ListStageSessions, GetStageSession, ListParticipants, GetParticipant, and ListParticipantEvents.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``omics``",
34+
"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.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``opensearch``",
39+
"description": "[``botocore``] This release fixes DescribePackages API error with null filter value parameter.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``route53resolver``",
44+
"description": "[``botocore``] Update FIPS endpoints for GovCloud (US) regions in SDK.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``support``",
49+
"description": "[``botocore``] This release adds 2 new Support APIs, DescribeCreateCaseOptions and DescribeSupportedLanguages. You can use these new APIs to get available support languages.",
50+
"type": "api-change"
51+
}
52+
]

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
CHANGELOG
33
=========
44

5+
1.26.133
6+
========
7+
8+
* bugfix:endpoints: [``botocore``] Include params set in provide-client-param event handlers in dynamic context params for endpoint resolution.
9+
* api-change:``connect``: [``botocore``] This release updates GetMetricDataV2 API, to support metric data up-to last 35 days
10+
* 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.
11+
* api-change:``es``: [``botocore``] This release fixes DescribePackages API error with null filter value parameter.
12+
* api-change:``health``: [``botocore``] Add support for regional endpoints
13+
* api-change:``ivs-realtime``: [``botocore``] Add methods for inspecting and debugging stages: ListStageSessions, GetStageSession, ListParticipants, GetParticipant, and ListParticipantEvents.
14+
* 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.
15+
* api-change:``opensearch``: [``botocore``] This release fixes DescribePackages API error with null filter value parameter.
16+
* api-change:``route53resolver``: [``botocore``] Update FIPS endpoints for GovCloud (US) regions in SDK.
17+
* 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.
18+
19+
520
1.26.132
621
========
722

boto3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from boto3.session import Session
1818

1919
__author__ = 'Amazon Web Services'
20-
__version__ = '1.26.132'
20+
__version__ = '1.26.133'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

docs/source/_static/css/custom.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,29 @@ h1, code, li {
3131
.sidebar-logo{
3232
padding: 20% 15%;
3333
}
34+
35+
/* Apply furo styled admonition titles for <h3>. */
36+
h3.admonition-title {
37+
position: relative;
38+
margin: 0 -0.5rem 0.5rem;
39+
padding-left: 2.5rem;
40+
padding-right: .5rem;
41+
padding-top: .4rem;
42+
padding-bottom: .4rem;
43+
font-weight: 700;
44+
font-size: 1.5em;
45+
line-height: 1.25;
46+
border-radius: unset;
47+
background-color: var(--color-admonition-title-background);
48+
}
49+
/* Apply furo styled admonition icons before <h3>. */
50+
h3.admonition-title::before {
51+
content: "";
52+
position: absolute;
53+
left: 0.5rem;
54+
width: 1.5rem;
55+
height: 1.5rem;
56+
background-color: var(--color-admonition-title);
57+
mask-image: var(--icon-admonition-default);
58+
mask-repeat: no-repeat;
59+
}

docs/source/_static/js/custom.js

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,6 @@ function makeServiceLinkCurrent(serviceName) {
9191
}
9292
const currentPagePath = window.location.pathname.split('/');
9393
const codeBlockSelector = 'div.highlight pre';
94-
const boldTextSelector = 'strong';
95-
const boldElements = document.querySelectorAll(boldTextSelector);
96-
const headings = [
97-
'Example',
98-
'Examples',
99-
'Exceptions',
100-
'Request Syntax',
101-
'Response Structure',
102-
'Response Syntax',
103-
'Structure',
104-
'Syntax'
105-
];
10694
// Expands the "Available Services" sub-menu in the side-bar when viewing
10795
// nested doc pages and highlights the corresponding service list item.
10896
function expandSubMenu() {
@@ -121,18 +109,9 @@ function makeCodeBlocksScrollable() {
121109
codeCell.tabIndex = 0;
122110
});
123111
}
124-
// Converts implicit bold headings into actual headings with h3 tags.
125-
function convertImplicitHeadings() {
126-
boldElements.forEach(boldElement => {
127-
if (headings.includes(boldElement.innerHTML)) {
128-
boldElement.parentElement.outerHTML = `<h3>${ boldElement.innerHTML }</h3>`;
129-
}
130-
});
131-
}
132112
// Functions to run after the DOM loads.
133113
function runAfterDOMLoads() {
134114
expandSubMenu();
135-
convertImplicitHeadings();
136115
makeCodeBlocksScrollable();
137116
}
138117
// Run a function after the DOM loads.

docs/source/conf.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
import boto3.session
2020
from boto3.docs import generate_docs
2121

22+
try:
23+
from botocore.docs.translator import BotoHTML5Translator
24+
CUSTOM_HTML_TRANSLATOR = BotoHTML5Translator
25+
except ImportError:
26+
CUSTOM_HTML_TRANSLATOR = None
27+
2228

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

298304
autoclass_content = 'both'
305+
306+
307+
def setup(app):
308+
# Register our custom HTML translator.
309+
if CUSTOM_HTML_TRANSLATOR:
310+
app.set_translator("html", CUSTOM_HTML_TRANSLATOR)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.29.132,<1.30.0
6+
botocore>=1.29.133,<1.30.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.6.0,<0.7.0
99

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
requires = [
16-
'botocore>=1.29.132,<1.30.0',
16+
'botocore>=1.29.133,<1.30.0',
1717
'jmespath>=0.7.1,<2.0.0',
1818
's3transfer>=0.6.0,<0.7.0',
1919
]

0 commit comments

Comments
 (0)