Skip to content

Commit a86ea07

Browse files
authored
Merge pull request #247 from PuerkitoBio/wip-deprecate
Deprecate NewDocument and NewDocumentFromResponse. Closes #173 .
2 parents 61aa197 + b4912d2 commit a86ea07

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Please note that because of the net/html dependency, goquery requires Go1.1+.
3737

3838
**Note that goquery's API is now stable, and will not break.**
3939

40+
* **2018-03-24 (v1.4.0)** : Deprecate `NewDocument(url)` and `NewDocumentFromResponse(response)`.
4041
* **2018-01-28 (v1.3.0)** : Add `ToEnd` constant to `Slice` until the end of the selection (thanks to @davidjwilkins for raising the issue).
4142
* **2018-01-11 (v1.2.0)** : Add `AddBack*` and deprecate `AndSelf` (thanks to @davidjwilkins).
4243
* **2017-02-12 (v1.1.0)** : Add `SetHtml` and `SetText` (thanks to @glebtv).

type.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ func NewDocumentFromNode(root *html.Node) *Document {
3131
// NewDocument is a Document constructor that takes a string URL as argument.
3232
// It loads the specified document, parses it, and stores the root Document
3333
// node, ready to be manipulated.
34+
//
35+
// Deprecated: Use the net/http standard library package to make the request
36+
// and validate the response before calling goquery.NewDocumentFromReader
37+
// with the response's body.
3438
func NewDocument(url string) (*Document, error) {
3539
// Load the URL
3640
res, e := http.Get(url)
@@ -40,10 +44,10 @@ func NewDocument(url string) (*Document, error) {
4044
return NewDocumentFromResponse(res)
4145
}
4246

43-
// NewDocumentFromReader returns a Document from a generic reader.
47+
// NewDocumentFromReader returns a Document from an io.Reader.
4448
// It returns an error as second value if the reader's data cannot be parsed
45-
// as html. It does *not* check if the reader is also an io.Closer, so the
46-
// provided reader is never closed by this call, it is the responsibility
49+
// as html. It does not check if the reader is also an io.Closer, the
50+
// provided reader is never closed by this call. It is the responsibility
4751
// of the caller to close it if required.
4852
func NewDocumentFromReader(r io.Reader) (*Document, error) {
4953
root, e := html.Parse(r)
@@ -56,6 +60,8 @@ func NewDocumentFromReader(r io.Reader) (*Document, error) {
5660
// NewDocumentFromResponse is another Document constructor that takes an http response as argument.
5761
// It loads the specified response's document, parses it, and stores the root Document
5862
// node, ready to be manipulated. The response's body is closed on return.
63+
//
64+
// Deprecated: Use goquery.NewDocumentFromReader with the response's body.
5965
func NewDocumentFromResponse(res *http.Response) (*Document, error) {
6066
if res == nil {
6167
return nil, errors.New("Response is nil")

0 commit comments

Comments
 (0)