gatsby-link 4.2.0-next.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@4.1.0/packages/gatsby-link) (2021-11-02)
|
|
7
|
+
|
|
8
|
+
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.1)
|
|
9
|
+
|
|
10
|
+
**Note:** Version bump only for package gatsby-link
|
|
11
|
+
|
|
12
|
+
## [4.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@4.0.0/packages/gatsby-link) (2021-10-21)
|
|
13
|
+
|
|
14
|
+
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.0)
|
|
15
|
+
|
|
16
|
+
#### Features
|
|
17
|
+
|
|
18
|
+
- add queue to prefetch [#33530](https://github.com/gatsbyjs/gatsby/issues/33530) ([2975c4d](https://github.com/gatsbyjs/gatsby/commit/2975c4d1271e3da52b531ad2f49261c362e5ae13))
|
|
19
|
+
- handle search params in resource loader [#33209](https://github.com/gatsbyjs/gatsby/issues/33209) ([5c22948](https://github.com/gatsbyjs/gatsby/commit/5c22948094d98f3d4ea90253c80fc78d9f53cc20))
|
|
20
|
+
|
|
21
|
+
#### Chores
|
|
22
|
+
|
|
23
|
+
- update testing library (major) [#32656](https://github.com/gatsbyjs/gatsby/issues/32656) ([ab2902b](https://github.com/gatsbyjs/gatsby/commit/ab2902b06f954edab325b0c35b99813a8b567275))
|
|
24
|
+
- apply patches for v4 [#33170](https://github.com/gatsbyjs/gatsby/issues/33170) ([f8c5141](https://github.com/gatsbyjs/gatsby/commit/f8c5141bf72108a53338fd01514522ae7a1b37bf))
|
|
25
|
+
|
|
6
26
|
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@3.14.0/packages/gatsby-link) (2021-09-18)
|
|
7
27
|
|
|
8
28
|
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-link",
|
|
3
3
|
"description": "An enhanced Link component for Gatsby sites with support for resource prefetching",
|
|
4
|
-
"version": "4.2.0
|
|
4
|
+
"version": "4.2.0",
|
|
5
5
|
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/gatsbyjs/gatsby/issues"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@babel/cli": "^7.15.4",
|
|
16
16
|
"@babel/core": "^7.15.5",
|
|
17
17
|
"@testing-library/react": "^11.2.7",
|
|
18
|
-
"babel-preset-gatsby-package": "^2.2.0
|
|
18
|
+
"babel-preset-gatsby-package": "^2.2.0",
|
|
19
19
|
"cross-env": "^7.0.3"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=14.15.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "7ca9785a31b34ae3fcd1e1765c4851d313de3cec"
|
|
47
47
|
}
|