gatsby-link 2.0.3 → 2.0.7

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/.babelrc CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "presets": [
3
- ["../../.babel-preset.js", { "browser": true }]
3
+ ["babel-preset-gatsby-package", { "browser": true }]
4
4
  ]
5
5
  }
6
6
 
package/CHANGELOG.md CHANGED
@@ -3,6 +3,32 @@
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
+ <a name="2.0.7"></a>
7
+
8
+ ## [2.0.7](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/compare/gatsby-link@2.0.6...gatsby-link@2.0.7) (2018-11-29)
9
+
10
+ **Note:** Version bump only for package gatsby-link
11
+
12
+ <a name="2.0.6"></a>
13
+
14
+ ## [2.0.6](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/compare/gatsby-link@2.0.5...gatsby-link@2.0.6) (2018-10-29)
15
+
16
+ **Note:** Version bump only for package gatsby-link
17
+
18
+ <a name="2.0.5"></a>
19
+
20
+ ## [2.0.5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/compare/gatsby-link@2.0.4...gatsby-link@2.0.5) (2018-10-24)
21
+
22
+ **Note:** Version bump only for package gatsby-link
23
+
24
+ <a name="2.0.4"></a>
25
+
26
+ ## [2.0.4](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/compare/gatsby-link@2.0.3...gatsby-link@2.0.4) (2018-10-03)
27
+
28
+ ### Bug Fixes
29
+
30
+ - navigateTo deprecation message ([#8745](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/issues/8745)) ([3c824f3](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/commit/3c824f3))
31
+
6
32
  <a name="2.0.3"></a>
7
33
 
8
34
  ## [2.0.3](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/compare/gatsby-link@2.0.2...gatsby-link@2.0.3) (2018-10-01)
package/index.js CHANGED
@@ -208,7 +208,7 @@ var replace = function replace(to) {
208
208
  exports.replace = replace;
209
209
 
210
210
  var navigateTo = function navigateTo(to) {
211
- console.warn("The \"navigateTo\" method is now deprecated and will be removed in Gatsby v3. Please use \"push\" instead.");
211
+ console.warn("The \"navigateTo\" method is now deprecated and will be removed in Gatsby v3. Please use \"navigate\" instead.");
212
212
  return push(to);
213
213
  };
214
214
 
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.0.3",
4
+ "version": "2.0.7",
5
5
  "author": "Kyle Mathews <mathews.kyle@gmail.com>",
6
6
  "bugs": {
7
7
  "url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -10,14 +10,14 @@
10
10
  "@babel/runtime": "^7.0.0",
11
11
  "@reach/router": "^1.1.1",
12
12
  "@types/reach__router": "^1.0.0",
13
- "prop-types": "^15.6.1",
14
- "ric": "^1.3.0"
13
+ "prop-types": "^15.6.1"
15
14
  },
16
15
  "devDependencies": {
17
16
  "@babel/cli": "^7.0.0",
18
17
  "@babel/core": "^7.0.0",
18
+ "babel-preset-gatsby-package": "^0.1.3",
19
19
  "cross-env": "^5.1.4",
20
- "react-testing-library": "^4.1.7"
20
+ "react-testing-library": "^5.0.0"
21
21
  },
22
22
  "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link#readme",
23
23
  "keywords": [
@@ -35,5 +35,5 @@
35
35
  "watch": "babel -w src --out-dir . --ignore **/__tests__"
36
36
  },
37
37
  "types": "index.d.ts",
38
- "gitHead": "32f503d63b29eae4a517ebc6bdbe1c7e7d8a75c4"
38
+ "gitHead": "a3e548956009fecbcbd5e55f11e7803cbf5253d0"
39
39
  }