Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for 0.1.4 release #225

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@
^connectapi\.Rcheck$
^connectapi.*\.tar\.gz$
^connectapi.*\.tgz$
\.orig$
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/issue_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Bug report or feature request
about: Describe a bug you've seen or make a case for a new feature
---

Please briefly describe your problem and what output you expect. If you have a question, please don't use this form. Instead, ask on <https://stackoverflow.com/> or <https://community.rstudio.com/>.
Please briefly describe your problem and what output you expect. If you have a question, please don't use this form. Instead, ask on <https://stackoverflow.com/> or <https://forum.posit.co/>.

Please include a minimal reproducible example (AKA a reprex). If you've never heard of a [reprex](http://reprex.tidyverse.org/) before, start by reading <https://www.tidyverse.org/help/#reprex>.

Expand Down
30 changes: 15 additions & 15 deletions .github/SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,31 @@ Before filing an issue, there are a few places to explore and pieces to put toge

## Make a reprex

Start by making a minimal **repr**oducible **ex**ample using the [reprex](https://reprex.tidyverse.org/) package.
If you haven't heard of or used reprex before, you're in for a treat!
Seriously, reprex will make all of your R-question-asking endeavors easier (which is a pretty insane ROI for the five to ten minutes it'll take you to learn what it's all about).
Start by making a minimal **repr**oducible **ex**ample using the [reprex](https://reprex.tidyverse.org/) package.
If you haven't heard of or used reprex before, you're in for a treat!
Seriously, reprex will make all of your R-question-asking endeavors easier (which is a pretty insane ROI for the five to ten minutes it'll take you to learn what it's all about).
For additional reprex pointers, check out the [Get help!](https://www.tidyverse.org/help/) section of the tidyverse site.

## Where to ask?

Armed with your reprex, the next step is to figure out [where to ask](https://www.tidyverse.org/help/#where-to-ask).
Armed with your reprex, the next step is to figure out [where to ask](https://www.tidyverse.org/help/#where-to-ask).

* If it's a question: start with [community.rstudio.com](https://community.rstudio.com/), and/or StackOverflow. There are more people there to answer questions.
* If it's a question: start with [forum.posit.co](https://forum.posit.co/), and/or StackOverflow. There are more people there to answer questions.

* If it's a bug: you're in the right place, [file an issue](https://github.com/rstudio/connectapi/issues/new).

* If you're not sure: let the community help you figure it out!
If your problem _is_ a bug or a feature request, you can easily return here and report it.
* If it's a bug: you're in the right place, [file an issue](https://github.com/rstudio/connectapi/issues/new).

Before opening a new issue, be sure to [search issues and pull requests](https://github.com/rstudio/connectapi/issues) to make sure the bug hasn't been reported and/or already fixed in the development version.
By default, the search will be pre-populated with `is:issue is:open`.
You can [edit the qualifiers](https://help.github.com/articles/searching-issues-and-pull-requests/) (e.g. `is:pr`, `is:closed`) as needed.
* If you're not sure: let the community help you figure it out!
If your problem _is_ a bug or a feature request, you can easily return here and report it.

Before opening a new issue, be sure to [search issues and pull requests](https://github.com/rstudio/connectapi/issues) to make sure the bug hasn't been reported and/or already fixed in the development version.
By default, the search will be pre-populated with `is:issue is:open`.
You can [edit the qualifiers](https://help.github.com/articles/searching-issues-and-pull-requests/) (e.g. `is:pr`, `is:closed`) as needed.
For example, you'd simply remove `is:open` to search _all_ issues in the repo, open or closed.

## What happens next?

To be as efficient as possible, development of tidyverse packages tends to be very bursty, so you shouldn't worry if you don't get an immediate response.
Typically we don't look at a repo until a sufficient quantity of issues accumulates, then there’s a burst of intense activity as we focus our efforts.
That makes development more efficient because it avoids expensive context switching between problems, at the cost of taking longer to get back to you.
This process makes a good reprex particularly important because it might be multiple months between your initial report and when we start working on it.
Typically we don't look at a repo until a sufficient quantity of issues accumulates, then there’s a burst of intense activity as we focus our efforts.
That makes development more efficient because it avoids expensive context switching between problems, at the cost of taking longer to get back to you.
This process makes a good reprex particularly important because it might be multiple months between your initial report and when we start working on it.
If we can’t reproduce the bug, we can’t fix it!
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: connectapi
Title: Utilities for Interacting with the 'Posit Connect' Server API
Version: 0.1.3.9000
Version: 0.1.4
Authors@R:
c(person(given = "Sean",
family = "Lopp",
Expand Down
10 changes: 5 additions & 5 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# connectapi (development version)
# connectapi 0.1.4

- Now correctly provides methods for `tbl_connect`, rather than `tbl_lazy`,
preventing problems when also using dplyr (#177).
- BREAKING: The functions `Connect$download_bundle()` and
`Connect$bundle_delete()` have been removed. Use `Content$bundle_download()`
and `Content$bundle_delete()` instead.
- `Content$tag_delete()` removes the tag from the target content item rather
than removing the tag entirely. (#194)
- Correctly provides methods for `tbl_connect` rather than `tbl_lazy`,
preventing problems when also using dbplyr (#177).
- Fix issue with `NULL` or `length 1` job outputs ([#193](https://github.com/rstudio/connectapi/issues/193))

# connectapi 0.1.3.1
Expand Down Expand Up @@ -126,7 +126,7 @@

# connectapi 0.1.0.9017

BREAKING:
BREAKING:
* Switch from `RSTUDIO_CONNECT_*` variables to `CONNECT_*` variables
* Rename a handful of functions:
- `connect$activate_bundle` to `connect$content_deploy`
Expand All @@ -144,7 +144,7 @@ BREAKING:
- `cache_apps`
- `tag_page`

OTHER:
OTHER:
* Add some endpoints:
- `content`
- `audit_logs`
Expand Down
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Please pay careful attention to the lifecycle badges of the various functions
and warnings present when you are using experimental features.

**Also, [please share
feedback!!](https://community.rstudio.com/c/r-admin/posit-connect/27) We love
feedback!!](https://forum.posit.co/c/r-admin/posit-connect/27) We love
hearing how the Posit Connect Server API is helpful and what additional
endpoints would be useful!!**

Expand Down Expand Up @@ -217,7 +217,7 @@ If you get this error message, our recommendation would be:

Please feel free to open an Issue if you think there is a bug, or ask a
free-form question on [Posit
Community](https://community.rstudio.com/c/r-admin/posit-connect/27)
Community](https://forum.posit.co/c/r-admin/posit-connect/27)

**Other ideas for FAQs or Common Issues?**

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Please pay careful attention to the lifecycle badges of the various
functions and warnings present when you are using experimental features.

**Also, [please share
feedback!!](https://community.rstudio.com/c/r-admin/posit-connect/27) We
feedback!!](https://forum.posit.co/c/r-admin/posit-connect/27) We
love hearing how the Posit Connect Server API is helpful and what
additional endpoints would be useful!!**

Expand Down Expand Up @@ -220,7 +220,7 @@ If you get this error message, our recommendation would be:

Please feel free to open an Issue if you think there is a bug, or ask a
free-form question on [Posit
Community](https://community.rstudio.com/c/r-admin/posit-connect/27)
Community](https://forum.posit.co/c/r-admin/posit-connect/27)

**Other ideas for FAQs or Common Issues?**

Expand Down
Loading