Skip to content

Commit c4a628a

Browse files
[RELEASE] 0.15.12 (#5413)
* release prep
1 parent 16ec33a commit c4a628a

File tree

5 files changed

+63
-3
lines changed

5 files changed

+63
-3
lines changed

‎.github/release_schedule.json‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"2022-06-30": "0.15.12",
32
"2022-07-07": "0.15.13",
43
"2022-07-14": "0.15.14"
54
}

‎docs/changelog.md‎

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22
title: Changelog
33
---
44

5+
### 0.15.12
6+
* [FEATURE] Add Rule Statistics to DataAssistantResult for display in Jupyter notebook (#5368)
7+
* [FEATURE] Include detailed Rule Execution statistics in jupyter notebook "repr" style output (#5375)
8+
* [FEATURE] Support datetime/date-part splitters on Amazon Redshift (#5408)
9+
* [DOCS] Capital One DataProfiler Expectations README Update (#5365) (thanks @stevensecreti)
10+
* [DOCS] Add Trino guide (#5287)
11+
* [DOCS] DOC-339 remove redundant how-to guide (#5396)
12+
* [DOCS] Capital One Data Profiler README update (#5387) (thanks @taylorfturner)
13+
* [DOCS] Add sqlalchemy-redshfit to dependencies in redshift doc (#5386)
14+
* [MAINTENANCE] Reduce output amount in Jupyter notebooks when displaying DataAssistantResult (#5362)
15+
* [MAINTENANCE] Update linter thresholds (#5367)
16+
* [MAINTENANCE] Move `_apply_global_config_overrides()` to AbstractDataContext (#5285)
17+
* [MAINTENANCE] WIP: [MAINTENANCE] stalebot configuration (#5301)
18+
* [MAINTENANCE] expect_column_values_to_be_equal_to_or_greater_than_profile_min (#5372) (thanks @stevensecreti)
19+
* [MAINTENANCE] expect_column_values_to_be_equal_to_or_less_than_profile_max (#5380) (thanks @stevensecreti)
20+
* [MAINTENANCE] Replace string formatting with f-string (#5225) (thanks @andyjessen)
21+
* [MAINTENANCE] Fix links in docs (#5340) (thanks @andyjessen)
22+
* [MAINTENANCE] Caching of `config_variables` in `DataContext` (#5376)
23+
* [MAINTENANCE] StaleBot Half DryRun (#5390)
24+
* [MAINTENANCE] StaleBot DryRun 2 (#5391)
25+
* [MAINTENANCE] file extentions applied to rel links (#5399)
26+
* [MAINTENANCE] Allow installing jinja2 version 3.1.0 and higher (#5382)
27+
* [MAINTENANCE] expect_column_values_confidence_for_data_label_to_be_less_than_or_equal_to_threshold (#5392) (thanks @stevensecreti)
28+
* [MAINTENANCE] Add warnings to internal linters if actual error count does not match threshold (#5401)
29+
* [MAINTENANCE] Ensure that changes made to env vars / config vars are recognized within subsequent calls of the same process (#5410)
30+
* [MAINTENANCE] Stack `RuleBasedProfiler` progress bars for better user experience (#5400)
31+
* [MAINTENANCE] Keep all Pandas Splitter Tests in a Dedicated Module (#5411)
32+
* [MAINTENANCE] Refactor DataContextVariables to only persist state to Store using explicit save command (#5366)
33+
* [MAINTENANCE] Refactor to put tests for splitting and sampling into modules for respective ExecutionEngine implementation (#5412)
34+
535
### 0.15.11
636
* [FEATURE] Enable NumericMetricRangeMultiBatchParameterBuilder to use evaluation dependencies (#5323)
737
* [FEATURE] Improve Trino Support (#5261) (thanks @aezomz)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
```
2-
great_expectations, version 0.15.11
2+
great_expectations, version 0.15.12
33
```

‎docs_rtd/changelog.rst‎

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,37 @@
44
Changelog
55
#########
66

7+
0.15.12
8+
-----------------
9+
* [FEATURE] Add Rule Statistics to DataAssistantResult for display in Jupyter notebook (#5368)
10+
* [FEATURE] Include detailed Rule Execution statistics in jupyter notebook "repr" style output (#5375)
11+
* [FEATURE] Support datetime/date-part splitters on Amazon Redshift (#5408)
12+
* [DOCS] Capital One DataProfiler Expectations README Update (#5365) (thanks @stevensecreti)
13+
* [DOCS] Add Trino guide (#5287)
14+
* [DOCS] DOC-339 remove redundant how-to guide (#5396)
15+
* [DOCS] Capital One Data Profiler README update (#5387) (thanks @taylorfturner)
16+
* [DOCS] Add sqlalchemy-redshfit to dependencies in redshift doc (#5386)
17+
* [MAINTENANCE] Reduce output amount in Jupyter notebooks when displaying DataAssistantResult (#5362)
18+
* [MAINTENANCE] Update linter thresholds (#5367)
19+
* [MAINTENANCE] Move `_apply_global_config_overrides()` to AbstractDataContext (#5285)
20+
* [MAINTENANCE] WIP: [MAINTENANCE] stalebot configuration (#5301)
21+
* [MAINTENANCE] expect_column_values_to_be_equal_to_or_greater_than_profile_min (#5372) (thanks @stevensecreti)
22+
* [MAINTENANCE] expect_column_values_to_be_equal_to_or_less_than_profile_max (#5380) (thanks @stevensecreti)
23+
* [MAINTENANCE] Replace string formatting with f-string (#5225) (thanks @andyjessen)
24+
* [MAINTENANCE] Fix links in docs (#5340) (thanks @andyjessen)
25+
* [MAINTENANCE] Caching of `config_variables` in `DataContext` (#5376)
26+
* [MAINTENANCE] StaleBot Half DryRun (#5390)
27+
* [MAINTENANCE] StaleBot DryRun 2 (#5391)
28+
* [MAINTENANCE] file extentions applied to rel links (#5399)
29+
* [MAINTENANCE] Allow installing jinja2 version 3.1.0 and higher (#5382)
30+
* [MAINTENANCE] expect_column_values_confidence_for_data_label_to_be_less_than_or_equal_to_threshold (#5392) (thanks @stevensecreti)
31+
* [MAINTENANCE] Add warnings to internal linters if actual error count does not match threshold (#5401)
32+
* [MAINTENANCE] Ensure that changes made to env vars / config vars are recognized within subsequent calls of the same process (#5410)
33+
* [MAINTENANCE] Stack `RuleBasedProfiler` progress bars for better user experience (#5400)
34+
* [MAINTENANCE] Keep all Pandas Splitter Tests in a Dedicated Module (#5411)
35+
* [MAINTENANCE] Refactor DataContextVariables to only persist state to Store using explicit save command (#5366)
36+
* [MAINTENANCE] Refactor to put tests for splitting and sampling into modules for respective ExecutionEngine implementation (#5412)
37+
738
0.15.11
839
-----------------
940
* [FEATURE] Enable NumericMetricRangeMultiBatchParameterBuilder to use evaluation dependencies (#5323)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.15.11
1+
0.15.12

0 commit comments

Comments
 (0)