gatsby-plugin-newrelic 2.2.1 → 2.2.3
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/CONTRIBUTING.md +2 -2
- package/docs/CHANGELOG.md +14 -0
- package/package.json +4 -4
package/CONTRIBUTING.md
CHANGED
|
@@ -22,7 +22,7 @@ Before submitting an Issue, please search for similar ones in the
|
|
|
22
22
|
|
|
23
23
|
A [Github workflow](https://github.com/newrelic/gatsby-plugin-newrelic/blob/main/.github/workflows/release.yml) which uses NPX [semantic-release](https://semantic-release.gitbook.io/semantic-release/usage/configuration#branches) exists to assist in publishing next versions of this plugin to NPM.
|
|
24
24
|
|
|
25
|
-
> If you wish to publish a
|
|
25
|
+
> If you wish to publish a latest version to NPM follow these steps but ensure you change the tag in [package.json](package.json) to latest
|
|
26
26
|
|
|
27
27
|
1. Make your changes on a local branch from main.
|
|
28
28
|
2. After pulling down the code, run `git fetch && git pull` to ensure you have the latest code for main.
|
|
@@ -40,4 +40,4 @@ For more information about CLAs, please check out Alex Russell’s excellent pos
|
|
|
40
40
|
|
|
41
41
|
## Slack
|
|
42
42
|
|
|
43
|
-
We host a public Slack with a dedicated channel for contributors and maintainers of open source projects hosted by New Relic. If you are contributing to this project, you're welcome to request access to the #oss-contributors channel in the newrelicusers.slack.com workspace. To request access, see https://newrelicusers-
|
|
43
|
+
We host a public Slack with a dedicated channel for contributors and maintainers of open source projects hosted by New Relic. If you are contributing to this project, you're welcome to request access to the #oss-contributors channel in the newrelicusers.slack.com workspace. To request access, see https://join.slack.com/t/newrelicusers/shared_invite/zt-1ayj69rzm-~go~Eo1whIQGYnu3qi15ng.
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.2.3](https://github.com/newrelic/gatsby-plugin-newrelic/compare/v2.2.2...v2.2.3) (2023-02-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update react in peer deps to 17-18 ([d6e9c18](https://github.com/newrelic/gatsby-plugin-newrelic/commit/d6e9c18140b080d3186d875c22a1492158797516))
|
|
7
|
+
|
|
8
|
+
## [2.2.2](https://github.com/newrelic/gatsby-plugin-newrelic/compare/v2.2.1...v2.2.2) (2022-02-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* publishes a latest version ([c2e68bb](https://github.com/newrelic/gatsby-plugin-newrelic/commit/c2e68bbe191c1ee4ea7657ecd44f953bc7213a2b))
|
|
14
|
+
|
|
1
15
|
## [2.2.1](https://github.com/newrelic/gatsby-plugin-newrelic/compare/v2.2.0...v2.2.1) (2022-02-08)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-plugin-newrelic",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"description": "Gatsby plugin for implementing the New Relic Browser agent",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"homepage": "https://opensource.newrelic.com/projects/newrelic/gatsby-plugin-newrelic",
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"gatsby": "3.x || 4.x",
|
|
23
|
-
"react": "
|
|
24
|
-
"react-dom": "
|
|
23
|
+
"react": "17 - 18",
|
|
24
|
+
"react-dom": "17 - 18"
|
|
25
25
|
},
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
@@ -47,6 +47,6 @@
|
|
|
47
47
|
"private": false,
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"registry": "https://registry.npmjs.org/",
|
|
50
|
-
"tag": "
|
|
50
|
+
"tag": "latest"
|
|
51
51
|
}
|
|
52
52
|
}
|