Skip to content

Commit

Permalink
Refresh NEWS files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 15, 2024
1 parent 7b17f23 commit 6adcc1a
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 24 deletions.
9 changes: 9 additions & 0 deletions news-files-annotated/gt.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

!begin-bullets-1!

- !begin-bullet!
PDF output now defaults to a full-width floating environment using
`tabular*` (@AronGullickson, #1588). Float position can be
controlled by the `latex.tbl.pos` argument in `tab_options`. Quarto
users can alternatively use the `tbl-pos` argument to control
positioning. To use a `longtable` environment instead, use
`tab_option(latex.use_longtable = TRUE)`.

!end-bullet!
- !begin-bullet!
Improved error messages for the `text_transform()` function if
`locations` couldn't be resolved. (@olivroy, #1774)
Expand Down
29 changes: 11 additions & 18 deletions news-files-annotated/httr2.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,31 @@
!begin-bullets-1!

- !begin-bullet!
`req_perform_stream()` no longer applies the `callback` to
unsuccessful responses, instead creating a regular response. It also
now sets `last_request()` and `last_response()` (#479).
`req_body_file()` now only opens a connection when the request
actually needs data. In particular, this makes it work better with
`req_perform_parallel()` (#487).
!end-bullet!
- !begin-bullet!
`req_cache()` now defaults the `debug` argument to the
`req_cache()` no longer fails if the `rds` files are somehow
corrupted and now defaults the `debug` argument to the
`httr2_cache_debug` option to make it easier to debug caching buried
in other people's code (#486).
!end-bullet!
- !begin-bullet!
`req_oauth_password()` now only asks for your password once (#498).
!end-bullet!
- !begin-bullet!
`req_url_query()` now allows you to opt out of escaping for
multi-value parameters (#404).
!end-bullet!
- !begin-bullet!
`req_perform_parallel()` now works correctly with `req_cache()`
(#447).
(#447) and now works when downloading 0 byte files (#478)
!end-bullet!
- !begin-bullet!
`req_body_file()` now only opens a connection when the request
actually needs data. In particular, this makes it work better with
`req_perform_parallel()` (#487).
!end-bullet!
- !begin-bullet!
`req_perform_parallel()` now works when downloading 0 byte files
(#478)
`req_perform_stream()` no longer applies the `callback` to
unsuccessful responses, instead creating a regular response. It also
now sets `last_request()` and `last_response()` (#479).
!end-bullet!
- !begin-bullet!
`req_cache()` no longer fails if the `rds` files are somehow
corrupted
`req_url_query()` now allows you to opt out of escaping for
multi-value parameters (#404).
!end-bullet!

!end-bullets-1!
Expand Down
2 changes: 2 additions & 0 deletions news-files/gt.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# gt (development version)

* PDF output now defaults to a full-width floating environment using `tabular*` (@AronGullickson, #1588). Float position can be controlled by the `latex.tbl.pos` argument in `tab_options`. Quarto users can alternatively use the `tbl-pos` argument to control positioning. To use a `longtable` environment instead, use `tab_option(latex.use_longtable = TRUE)`.

* Improved error messages for the `text_transform()` function if `locations` couldn't be resolved. (@olivroy, #1774)

* `tab_row_group()` gives a more precise error message when `rows` can't be resolved correctly (#1535). (@olivroy, #1770)
Expand Down
Binary file modified news-files/hashes.rds
Binary file not shown.
10 changes: 4 additions & 6 deletions news-files/httr2.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# httr2 (development version)

* `req_body_file()` now only opens a connection when the request actually needs data. In particular, this makes it work better with `req_perform_parallel()` (#487).
* `req_cache()` no longer fails if the `rds` files are somehow corrupted and now defaults the `debug` argument to the `httr2_cache_debug` option to make it easier to debug caching buried in other people's code (#486).
* `req_oauth_password()` now only asks for your password once (#498).
* `req_perform_parallel()` now works correctly with `req_cache()` (#447) and now works when downloading 0 byte files (#478)
* `req_perform_stream()` no longer applies the `callback` to unsuccessful
responses, instead creating a regular response. It also now sets `last_request()` and `last_response()` (#479).
* `req_cache()` now defaults the `debug` argument to the `httr2_cache_debug` option to make it easier to debug caching buried in other people's code (#486).
* `req_oauth_password()` now only asks for your password once (#498).
* `req_url_query()` now allows you to opt out of escaping for multi-value parameters (#404).
* `req_perform_parallel()` now works correctly with `req_cache()` (#447).
* `req_body_file()` now only opens a connection when the request actually needs data. In particular, this makes it work better with `req_perform_parallel()` (#487).
* `req_perform_parallel()` now works when downloading 0 byte files (#478)
* `req_cache()` no longer fails if the `rds` files are somehow corrupted

# httr2 1.0.1

Expand Down
1 change: 1 addition & 0 deletions previous_updates.csv
Original file line number Diff line number Diff line change
Expand Up @@ -17474,3 +17474,4 @@ bslib,d9f6c43c17ba8501756e027fa603f6d1,"The `open` argument of `layout_sidebar()
bslib,02fa7f12fa4c07d44f4f0c61207c67de,Fixed a bug in `layout_sidebar()` that caused a spurious and confusing error message. (#1081),NA,NA,NA,NA
bslib,815a8d14d8f6c1434e9b30abf5d7d9cc,We've adjusted the sidebar design when collapsible on mobile screens to reduce the space used by the sidebar toggle button and to ensure that main and sidebar content do not scroll underneath the toggle button when the sidebar is collapsed. (#1084),NA,NA,NA,NA
bslib,437006e5dabc2e600932ea6a9a2aab3f,"The main content area of `page_sidebar()` and `page_navbar()` with a `sidebar` now have a minimum height and width to avoid squashed content in fillable layouts. The minimum height and width are controllable via Sass and CSS variables (see the pull requests for details). (#1057, #1059, #1084)",NA,NA,NA,NA
gt,d095be536bff4564a2edd84229c550de,"PDF output now defaults to a full-width floating environment using `tabular*` (@​AronGullickson, #1588). Float position can be controlled by the `latex.tbl.pos` argument in `tab_options`. Quarto users can alternatively use the `tbl-pos` argument to control positioning. To use a `longtable` environment instead, use `tab_option(latex.use_longtable = TRUE)`.",NA,NA,NA,NA
Binary file modified refresh-token.rds
Binary file not shown.

0 comments on commit 6adcc1a

Please sign in to comment.