diff --git a/.changes/1.36.3.json b/.changes/1.36.3.json new file mode 100644 index 0000000000..d22f6cd12a --- /dev/null +++ b/.changes/1.36.3.json @@ -0,0 +1,42 @@ +[ + { + "category": "``batch``", + "description": "[``botocore``] Documentation-only update: clarified the description of the shareDecaySeconds parameter of the FairsharePolicy data type, clarified the description of the priority parameter of the JobQueueDetail data type.", + "type": "api-change" + }, + { + "category": "``cognito-idp``", + "description": "[``botocore``] corrects the dual-stack endpoint configuration for cognitoidp", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] Added DeleteContactFlowVersion API and the CAMPAIGN flow type", + "type": "api-change" + }, + { + "category": "``emr-serverless``", + "description": "[``botocore``] Increasing entryPoint in SparkSubmit to accept longer script paths. New limit is 4kb.", + "type": "api-change" + }, + { + "category": "``iotsitewise``", + "description": "[``botocore``] AWS IoT SiteWise now supports ingestion and querying of Null (all data types) and NaN (double type) values of bad or uncertain data quality. New partial error handling prevents data loss during ingestion. Enabled by default for new customers; existing customers can opt-in.", + "type": "api-change" + }, + { + "category": "``logs``", + "description": "[``botocore``] Documentation-only update to address doc errors", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "[``botocore``] Added `DigitGroupingStyle` in ThousandsSeparator to allow grouping by `LAKH`( Indian Grouping system ) currency. Support LAKH and `CRORE` currency types in Column Formatting.", + "type": "api-change" + }, + { + "category": "``sns``", + "description": "[``botocore``] This release adds support for the topic attribute FifoThroughputScope for SNS FIFO topics. For details, see the documentation history in the Amazon Simple Notification Service Developer Guide.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3c5061a1b4..4893c1ceee 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -23,13 +23,13 @@ jobs: uses: "actions/checkout@d632683dd7b4114ad314bca15554477dd762a938" - name: "Run CodeQL init" - uses: "github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd" + uses: "github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c" with: config-file: "./.github/codeql.yml" languages: "python" - name: "Run CodeQL autobuild" - uses: "github/codeql-action/autobuild@662472033e021d55d94146f66f6058822b0b39fd" + uses: "github/codeql-action/autobuild@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c" - name: "Run CodeQL analyze" - uses: "github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd" + uses: "github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c" diff --git a/.github/workflows/stale_issue.yml b/.github/workflows/stale_issue.yml index 0f6aab7452..04631c1264 100644 --- a/.github/workflows/stale_issue.yml +++ b/.github/workflows/stale_issue.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest name: Stale issue job steps: - - uses: aws-actions/stale-issue-cleanup@413d85a1603df4f0a8158f5f3c8204ab1691313e + - uses: aws-actions/stale-issue-cleanup@c452909aaa3fd1be240576cb41c6dd7bcb95cc10 with: issue-types: issues stale-issue-message: Greetings! It looks like this issue hasn’t been diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 56e8def23b..8f1e6ec1ea 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.36.3 +====== + +* api-change:``batch``: [``botocore``] Documentation-only update: clarified the description of the shareDecaySeconds parameter of the FairsharePolicy data type, clarified the description of the priority parameter of the JobQueueDetail data type. +* api-change:``cognito-idp``: [``botocore``] corrects the dual-stack endpoint configuration for cognitoidp +* api-change:``connect``: [``botocore``] Added DeleteContactFlowVersion API and the CAMPAIGN flow type +* api-change:``emr-serverless``: [``botocore``] Increasing entryPoint in SparkSubmit to accept longer script paths. New limit is 4kb. +* api-change:``iotsitewise``: [``botocore``] AWS IoT SiteWise now supports ingestion and querying of Null (all data types) and NaN (double type) values of bad or uncertain data quality. New partial error handling prevents data loss during ingestion. Enabled by default for new customers; existing customers can opt-in. +* api-change:``logs``: [``botocore``] Documentation-only update to address doc errors +* api-change:``quicksight``: [``botocore``] Added `DigitGroupingStyle` in ThousandsSeparator to allow grouping by `LAKH`( Indian Grouping system ) currency. Support LAKH and `CRORE` currency types in Column Formatting. +* api-change:``sns``: [``botocore``] This release adds support for the topic attribute FifoThroughputScope for SNS FIFO topics. For details, see the documentation history in the Amazon Simple Notification Service Developer Guide. + + 1.36.2 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 5bb58861e7..b701c1eb02 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.36.2' +__version__ = '1.36.3' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 68481190be..d3011af3cc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.36.2,<1.37.0 + botocore>=1.36.3,<1.37.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.11.0,<0.12.0 diff --git a/setup.py b/setup.py index 59daedb22f..3bd324e97f 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.36.2,<1.37.0', + 'botocore>=1.36.3,<1.37.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.11.0,<0.12.0', ]