gatsby-link 2.9.0-next.0 → 2.10.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 +14 -0
- package/README.md +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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
|
+
# [2.10.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@2.10.0-next.1...gatsby-link@2.10.0) (2021-01-19)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **security:** update vulnerable packages, include React 17 in peerDeps ([#28545](https://github.com/gatsbyjs/gatsby/issues/28545)) ([18b5f30](https://github.com/gatsbyjs/gatsby/commit/18b5f30e367895aa5f3af46e4989b347912a0f35))
|
|
11
|
+
|
|
12
|
+
# [2.10.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@2.10.0-next.0...gatsby-link@2.10.0-next.1) (2021-01-12)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package gatsby-link
|
|
15
|
+
|
|
16
|
+
# [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@2.9.0-next.0...gatsby-link@2.10.0-next.0) (2020-12-29)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package gatsby-link
|
|
19
|
+
|
|
6
20
|
# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@2.8.0-next.0...gatsby-link@2.9.0-next.0) (2020-12-10)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package gatsby-link
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# gatsby-link
|
|
2
2
|
|
|
3
|
-
All components and utility functions from this package are now exported from [`gatsby`](/packages/gatsby) package. You should not import anything from this package directly.
|
|
3
|
+
All components and utility functions from this package are now exported from [`gatsby`](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby) package. You should not import anything from this package directly.
|
|
4
4
|
|
|
5
5
|
The [API reference](https://www.gatsbyjs.org/docs/gatsby-link/) has more documentation.
|
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": "2.
|
|
4
|
+
"version": "2.10.0",
|
|
5
5
|
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/gatsbyjs/gatsby/issues"
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"@babel/cli": "^7.12.1",
|
|
16
16
|
"@babel/core": "^7.12.3",
|
|
17
17
|
"@testing-library/react": "^9.5.0",
|
|
18
|
-
"babel-preset-gatsby-package": "^0.
|
|
18
|
+
"babel-preset-gatsby-package": "^0.11.0",
|
|
19
19
|
"cross-env": "^7.0.3"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@reach/router": "^1.3.3",
|
|
23
|
-
"react": "^16.4.2",
|
|
24
|
-
"react-dom": "^16.4.2"
|
|
23
|
+
"react": "^16.4.2 || ^17.0.0",
|
|
24
|
+
"react-dom": "^16.4.2 || ^17.0.0"
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link#readme",
|
|
27
27
|
"keywords": [
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=10.13.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "fbc58933c6a6d5d8837e36104fdb74a0cb02163d"
|
|
47
47
|
}
|