Skip to content

Commit e11510b

Browse files
committed
Update changelog for 1.7.0
1 parent a9cfd67 commit e11510b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012-2016, Martin Angers & Contributors
1+
Copyright (c) 2012-2021, Martin Angers & Contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Syntax-wise, it is as close as possible to jQuery, with the same function names
1919

2020
## Installation
2121

22-
Please note that because of the net/html dependency, goquery requires Go1.1+.
22+
Please note that because of the net/html dependency, goquery requires Go1.1+ and is tested on Go1.7+.
2323

2424
$ go get github.com/PuerkitoBio/goquery
2525

@@ -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+
* **2021-06-14 (v1.7.0)** : Add `Single` and `SingleMatcher` functions to optimize first-match selection (thanks [@gdollardollar](https://github.com/gdollardollar)).
4041
* **2021-01-11 (v1.6.1)** : Fix panic when calling `{Prepend,Append,Set}Html` on a `Selection` that contains non-Element nodes.
4142
* **2020-10-08 (v1.6.0)** : Parse html in context of the container node for all functions that deal with html strings (`AfterHtml`, `AppendHtml`, etc.). Thanks to [@thiemok][thiemok] and [@davidjwilkins][djw] for their work on this.
4243
* **2020-02-04 (v1.5.1)** : Update module dependencies.
@@ -50,7 +51,7 @@ Please note that because of the net/html dependency, goquery requires Go1.1+.
5051
* **2016-08-28 (v1.0.1)** : Optimize performance for large documents.
5152
* **2016-07-27 (v1.0.0)** : Tag version 1.0.0.
5253
* **2016-06-15** : Invalid selector strings internally compile to a `Matcher` implementation that never matches any node (instead of a panic). So for example, `doc.Find("~")` returns an empty `*Selection` object.
53-
* **2016-02-02** : Add `NodeName` utility function similar to the DOM's `nodeName` property. It returns the tag name of the first element in a selection, and other relevant values of non-element nodes (see godoc for details). Add `OuterHtml` utility function similar to the DOM's `outerHTML` property (named `OuterHtml` in small caps for consistency with the existing `Html` method on the `Selection`).
54+
* **2016-02-02** : Add `NodeName` utility function similar to the DOM's `nodeName` property. It returns the tag name of the first element in a selection, and other relevant values of non-element nodes (see [doc][] for details). Add `OuterHtml` utility function similar to the DOM's `outerHTML` property (named `OuterHtml` in small caps for consistency with the existing `Html` method on the `Selection`).
5455
* **2015-04-20** : Add `AttrOr` helper method to return the attribute's value or a default value if absent. Thanks to [piotrkowalczuk][piotr].
5556
* **2015-02-04** : Add more manipulation functions - Prepend* - thanks again to [Andrew Stone][thatguystone].
5657
* **2014-11-28** : Add more manipulation functions - ReplaceWith*, Wrap* and Unwrap - thanks again to [Andrew Stone][thatguystone].
@@ -79,7 +80,7 @@ jQuery often has many variants for the same function (no argument, a selector st
7980

8081
Utility functions that are not in jQuery but are useful in Go are implemented as functions (that take a `*Selection` as parameter), to avoid a potential naming clash on the `*Selection`'s methods (reserved for jQuery-equivalent behaviour).
8182

82-
The complete [godoc reference documentation can be found here][doc].
83+
The complete [package reference documentation can be found here][doc].
8384

8485
Please note that Cascadia's selectors do not necessarily match all supported selectors of jQuery (Sizzle). See the [cascadia project][cascadia] for details. Invalid selector strings compile to a `Matcher` that fails to match any node. Behaviour of the various functions that take a selector string as argument follows from that fact, e.g. (where `~` is an invalid selector string):
8586

@@ -177,10 +178,10 @@ The [BSD 3-Clause license][bsd], the same as the [Go language][golic]. Cascadia'
177178
[bsd]: http://opensource.org/licenses/BSD-3-Clause
178179
[golic]: http://golang.org/LICENSE
179180
[caslic]: https://github.com/andybalholm/cascadia/blob/master/LICENSE
180-
[doc]: http://godoc.org/github.com/PuerkitoBio/goquery
181+
[doc]: https://pkg.go.dev/github.com/PuerkitoBio/goquery
181182
[index]: http://api.jquery.com/index/
182183
[gonet]: https://github.com/golang/net/
183-
[html]: http://godoc.org/golang.org/x/net/html
184+
[html]: https://pkg.go.dev/golang.org/x/net/html
184185
[wiki]: https://github.com/PuerkitoBio/goquery/wiki/Tips-and-tricks
185186
[thatguystone]: https://github.com/thatguystone
186187
[piotr]: https://github.com/piotrkowalczuk

0 commit comments

Comments
 (0)