|
1 | 1 | # purrr (development version) |
2 | 2 |
|
3 | | -* Formatted strings for the progress bar could only access the global environment. `map()`, `map2()`, and `pmap()` have been updated to add `caller = .purrr_user_env` to `.progress` by default, allowing formatted strings to access to the current/parent environment (@jcolt45, #1078). |
| 3 | +## Breaking changes |
| 4 | + |
| 5 | +* All functions and arguments deprecated in purrr 0.3.0 have now been removed. This includes `%@%`, `accumulate_right()`, `at_depth()`, `cross_d()`, `cross_n()`, `reduce2_right()`, and `reduce_right()`. |
| 6 | + |
| 7 | +* All functions that were soft-deprecated in purrr 1.0.0 are now fully deprecated. They will be removed in a future release. This includes: `invoke_*()`, `lift_*()`, `cross*()`, `prepend()`, `splice()`, `rbernoulli()`, `rdunif()`, `when()`, `update_list()`, `*_raw()`, `vec_depth()`. |
| 8 | + |
| 9 | +* `map_chr()` no longer coereces from logical, integer, or double to strings. |
| 10 | + |
| 11 | +## Minor improvements and bug fixes |
4 | 12 |
|
5 | 13 | * `as_mapper.default()` optimized by removing special named argument handling for primitive functions (@mtcarsalot, #1088). |
6 | 14 |
|
|
10 | 18 |
|
11 | 19 | * `in_parallel()` now works in conjunction with string and list values supplied to the `.progress` argument of map functions (#1203). |
12 | 20 |
|
13 | | -* All functions that were soft-deprecated in purrr 1.0.0 are now fully deprecated. They will be removed in a future release. This includes: `invoke_*()`, `lift_*()`, `cross*()`, `prepend()`, `splice()`, `rbernoulli()`, `rdunif()`, `when()`, `update_list()`, `*_raw()`, `vec_depth()`. |
14 | | - |
15 | | -* `map_chr()` no longer coereces from logical, integer, or double to strings. |
16 | | - |
17 | | -* All functions and arguments deprecated in purrr 0.3.0 have now been removed. This includes `%@%`, `accumulate_right()`, `at_depth()`, `cross_d()`, `cross_n()`, `reduce2_right()`, and `reduce_right()`. |
| 21 | +* `map()`, `map2()`, and `pmap()` now automatically set the correct environment so that `format` strings to access to local variables (@jcolt45, #1078). |
18 | 22 |
|
19 | 23 | # purrr 1.1.0 |
20 | 24 |
|
|
0 commit comments