gatsby-link 2.10.0-next.0 → 2.11.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 CHANGED
@@ -3,6 +3,22 @@
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.11.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@2.11.0-next.0...gatsby-link@2.11.0) (2021-02-02)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **deps:** update minor and patch for gatsby-link ([#29175](https://github.com/gatsbyjs/gatsby/issues/29175)) ([7e07e2b](https://github.com/gatsbyjs/gatsby/commit/7e07e2b748c0195fc4a1e2b442c6836338d906dd))
11
+
12
+ # [2.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@2.10.0-next.1...gatsby-link@2.11.0-next.0) (2021-01-18)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **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))
17
+
18
+ # [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)
19
+
20
+ **Note:** Version bump only for package gatsby-link
21
+
6
22
  # [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)
7
23
 
8
24
  **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,27 +1,27 @@
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.10.0-next.0",
4
+ "version": "2.11.0",
5
5
  "author": "Kyle Mathews <mathews.kyle@gmail.com>",
6
6
  "bugs": {
7
7
  "url": "https://github.com/gatsbyjs/gatsby/issues"
8
8
  },
9
9
  "dependencies": {
10
10
  "@babel/runtime": "^7.12.5",
11
- "@types/reach__router": "^1.3.6",
11
+ "@types/reach__router": "^1.3.7",
12
12
  "prop-types": "^15.7.2"
13
13
  },
14
14
  "devDependencies": {
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.11.0-next.0",
18
+ "babel-preset-gatsby-package": "^0.12.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": "2059ead7ff0bcfa0897b1606cbfa559835b97f84"
46
+ "gitHead": "7797522184600284a44929cad5b27f2388eb13ee"
47
47
  }