Skip to content

Commit a37333e

Browse files
authored
Merge pull request #575 from rstudio/v0.12.2-rc
Release pointblank 0.12.2
2 parents 58301b6 + ca9abb3 commit a37333e

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Type: Package
22
Package: pointblank
3-
Version: 0.12.1.9000
3+
Version: 0.12.2
44
Title: Data Validation and Organization of Metadata for Local and Remote Tables
55
Description: Validate data in data frames, 'tibble' objects, 'Spark'
66
'DataFrames', and database tables. Validation pipelines can be made using

NEWS.md

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
1-
# pointblank (development version)
1+
# pointblank 0.12.2
22

3-
## New features
3+
This release provides a few minor improvements along with many bug fixes.
44

5-
- New argument `extract_tbl_checked` in `interrogate()`. When `FALSE`, the `$tbl_checked` column from the validation set will be dropped before returning the agent. This may be helpful in reducing object size for large agents. (#554)
5+
- New argument `extract_tbl_checked` added to `interrogate()`. When `FALSE`, the `$tbl_checked` column from the validation set will be dropped before returning the agent. This may be helpful in reducing object size for large agents (#542). (#554)
66

7-
- New argument `na_rm` in `snip_list()`. When `TRUE`, `NA` values will not be included in the list of items in the snippet. (#556)
7+
- The new argument `na_rm` in `snip_list()` suppresses any `NA` values so that they won't included in the snippet's list of items (#547). (#556)
88

9-
## Minor improvements and bug fixes
9+
- Improved readability of error messages rendered as tooltips in the agent report. (#543)
1010

11-
- Improved readability of error messages rendered as tooltip to the agent report. (#543)
11+
- `col_vals_expr()` shows used columns in the agent report when interrogated. (#570)
1212

13-
- `col_vals_expr()` shows used columns in the agent report when interrogated (#570)
13+
- Improved the matching of rows between `agent$validation_step` and the rows of the agent report (#563). (#565)
1414

15-
- Functions accepting `...` now use `rlang::list2()`, enabling dynamic dots. For example, a multiagent can now be constructed from a `list()` of agents using `create_multiagent(!!!list_of_agents)`. (#553)
15+
- Functions accepting `...` now use `rlang::list2()`, enabling dynamic dots. For example, a multiagent can now be constructed from a `list()` of agents using `create_multiagent(!!!list_of_agents)` (#552). (#553)
1616

17-
- Fixed bug with non-standard column names in some validation functions (#555)
17+
- Fixed bug with non-standard column names in some validation functions (#545, #546). (#555)
1818

1919
- Fixed a regression in `col_vals_*()` functions, where `vars("col")` was evaluating to the string `"col"`. Behavior of `vars("col")` is now aligned back with `vars(col)` - both evaluate to the column name `col`. (#535)
2020

21-
- Problems arising from comparing `columns` to a `value` of different class (for example, comparing a datetime column to a date value `Sys.Date()` instead of another datetime value `Sys.time()`) are now signalled appropriately at `interrogate()`. (#539)
21+
- Problems arising from comparing `columns` to a `value` of different class (for example, comparing a datetime column to a date value `Sys.Date()` instead of another datetime value `Sys.time()`) are now signalled appropriately at `interrogate()` (#536, #537). (#539)
2222

2323
- Fixed bug in `has_columns()` failing to detect non-existing columns when supplied as a character vector. (#540)
2424

25+
- Replace uses of `crayon::make_style()` with `cli::make_ansi_style()`, removing the `crayon` dependency. (#559, thanks @olivroy!)
26+
27+
- Use `rlang::check_installed()` to perform checks of optional package installs. (#559, @olivroy)
28+
29+
- Modernized CI workflows with dedicated linting action. (#560, @olivroy)
30+
31+
- Avoid unwanted equation formatting in agent report arising from arbitrary `"$"` characters (#561). (#562)
32+
2533
# pointblank 0.12.1
2634

2735
- Ensured that the column string is a symbol before constructing the expression for the `col_vals_*()` functions.

0 commit comments

Comments
 (0)