Skip to content

Commit 12848c1

Browse files
committedMar 4, 2025
Merge branch 'release-1.38.6'
* release-1.38.6: Bumping version to 1.38.6 Update changelog based on model updates Examples ds-data
2 parents 8b6c91b + 01acf78 commit 12848c1

File tree

7 files changed

+39
-8
lines changed

7 files changed

+39
-8
lines changed
 

‎.changes/1.38.6.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"category": "``elasticache``",
4+
"description": "Doc only update, listing 'valkey7' and 'valkey8' as engine options for parameter groups.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``iot-managed-integrations``",
9+
"description": "Adding managed integrations APIs for IoT Device Management to setup and control devices across different manufacturers and connectivity protocols. APIs include managedthing operations, credential and provisioning profile management, notification configuration, and OTA update.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``iotsitewise``",
14+
"description": "AWS IoT SiteWise now supports MQTT-enabled, V3 gateways. Configure data destinations for real-time ingestion into AWS IoT SiteWise or buffered ingestion using Amazon S3 storage. You can also use path filters for precise data collection from specific MQTT topics.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``rds``",
19+
"description": "Note support for Database Insights for Amazon RDS.",
20+
"type": "api-change"
21+
}
22+
]

‎CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
CHANGELOG
33
=========
44

5+
1.38.6
6+
======
7+
8+
* api-change:``elasticache``: Doc only update, listing 'valkey7' and 'valkey8' as engine options for parameter groups.
9+
* api-change:``iot-managed-integrations``: Adding managed integrations APIs for IoT Device Management to setup and control devices across different manufacturers and connectivity protocols. APIs include managedthing operations, credential and provisioning profile management, notification configuration, and OTA update.
10+
* api-change:``iotsitewise``: AWS IoT SiteWise now supports MQTT-enabled, V3 gateways. Configure data destinations for real-time ingestion into AWS IoT SiteWise or buffered ingestion using Amazon S3 storage. You can also use path filters for precise data collection from specific MQTT topics.
11+
* api-change:``rds``: Note support for Database Insights for Amazon RDS.
12+
13+
514
1.38.5
615
======
716

‎awscli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import os
2020

21-
__version__ = '1.38.5'
21+
__version__ = '1.38.6'
2222

2323
#
2424
# Get our data path to be added to botocore's search path

‎awscli/examples/ds-data/create-group.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
**To create a group for a directory**
1+
**To list the available widgets**
22

3-
The following ``create-group`` example creates a group in the specified directory. ::
3+
The following ``create-group`` example creates a group in a specified directory. ::
44

55
aws ds-data create-group \
66
--directory-id d-1234567890 \
7-
--sam-account-name 'sales'
7+
--sam-account-name "sales"
88

99
Output::
1010

1111
{
12-
"DirectoryId": "d-9067f3da7a",
12+
"DirectoryId": "d-1234567890",
1313
"SAMAccountName": "sales",
1414
"SID": "S-1-2-34-5567891234-5678912345-67891234567-8912"
1515
}

‎doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.38'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.38.5'
55+
release = '1.38.6'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.37.5
6+
botocore==1.37.6
77
docutils>=0.10,<0.17
88
s3transfer>=0.11.0,<0.12.0
99
PyYAML>=3.10,<6.1

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def find_version(*file_paths):
2424

2525

2626
install_requires = [
27-
'botocore==1.37.5',
27+
'botocore==1.37.6',
2828
'docutils>=0.10,<0.17',
2929
's3transfer>=0.11.0,<0.12.0',
3030
'PyYAML>=3.10,<6.1',

0 commit comments

Comments
 (0)
Failed to load comments.