Skip to content

Commit cd48714

Browse files
committed
Merge remote-tracking branch 'great-expectations/develop' into develop
2 parents 160b4a9 + 264b4e0 commit cd48714

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export default {
2-
release_version: 'great_expectations, version 1.5.11',
2+
release_version: 'great_expectations, version 1.6.0',
33
min_python: '3.9',
44
max_python: '3.12'
55
}

docs/docusaurus/docs/oss/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ When we deprecate public functionality, we will
1515

1616
Before we completely remove the functionality in a new major release, there will be at least one minor release that contains the deprecation so that you can smoothly transition.
1717

18+
### 1.6.0
19+
* [FEATURE] Make GX Context workspace aware ([#11369](https://github.com/great-expectations/great_expectations/pull/11369))
20+
* [BUGFIX] Fix handling of mixed case table names when computing column metadata ([#11365](https://github.com/great-expectations/great_expectations/pull/11365))
21+
* [BUGFIX] Make handling of quoted schema and table names more robust ([#11367](https://github.com/great-expectations/great_expectations/pull/11367))
22+
* [BUGFIX] Enable reading multiple pages of S3 directory by popping ContinuationToken from query_options once it is used in a S3 request ([#11361](https://github.com/great-expectations/great_expectations/pull/11361)) (thanks @pawel99k)
23+
* [DOCS] Update docs to reflect that custom docker images should use stable agent ([#11353](https://github.com/great-expectations/great_expectations/pull/11353))
24+
* [MAINTENANCE] Test `unexpected_rows` ([#11368](https://github.com/great-expectations/great_expectations/pull/11368))
25+
* [MAINTENANCE] Plumb in GX_CLOUD_WORKSPACE_ID into cloud-test ci step. ([#11373](https://github.com/great-expectations/great_expectations/pull/11373))
26+
* [MAINTENANCE] Add `workspace_id` to `store_backend` dict ([#11371](https://github.com/great-expectations/great_expectations/pull/11371))
27+
1828
### 1.5.11
1929
* [FEATURE] Checkpoint actions notify on severity ([#11347](https://github.com/great-expectations/great_expectations/pull/11347))
2030
* [FEATURE] Add handling for severity to ExpectationConfiguration serialization ([#11343](https://github.com/great-expectations/great_expectations/pull/11343))

docs/docusaurus/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ module.exports = {
318318
lastVersion: 'current',
319319
versions: {
320320
current: {
321-
label: '1.5.11',
321+
label: '1.6.0',
322322
},
323323
['0.18']: {
324324
label: '0.18.21',

great_expectations/datasource/fluent/data_connector/s3_data_connector.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ def list_s3_keys( # noqa: C901 # too complex
246246
logger.debug(f"Fetching objects from S3 with query options: {query_options}")
247247

248248
s3_objects_info: dict = s3.list_objects_v2(**query_options)
249+
query_options.pop("ContinuationToken", None)
249250

250251
if not any(key in s3_objects_info for key in ["Contents", "CommonPrefixes"]):
251252
raise ValueError("S3 query may not have been configured correctly.") # noqa: TRY003 # FIXME CoP
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.11
1+
1.6.0

0 commit comments

Comments
 (0)