@grafana/react-detect 0.6.4 → 0.7.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -12
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,4 +1,13 @@
1
- # v0.6.4 (Wed Apr 22 2026)
1
+ # Changelog
2
+
3
+ ## [0.7.1](https://github.com/grafana/plugin-tools/compare/@grafana/react-detect@0.7.0...@grafana/react-detect@0.7.1) (2026-06-11)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * pin dependencies for better security ([#2714](https://github.com/grafana/plugin-tools/issues/2714)) ([0041842](https://github.com/grafana/plugin-tools/commit/0041842c22cef6d6906ab04ea077e79434f31eea))
9
+
10
+ ## v0.6.4 (Wed Apr 22 2026)
2
11
 
3
12
  #### 🐛 Bug Fix
4
13
 
@@ -10,7 +19,7 @@
10
19
 
11
20
  ---
12
21
 
13
- # v0.6.3 (Tue Apr 07 2026)
22
+ ## v0.6.3 (Tue Apr 07 2026)
14
23
 
15
24
  #### 🐛 Bug Fix
16
25
 
@@ -22,7 +31,7 @@
22
31
 
23
32
  ---
24
33
 
25
- # v0.6.2 (Wed Apr 01 2026)
34
+ ## v0.6.2 (Wed Apr 01 2026)
26
35
 
27
36
  #### 🐛 Bug Fix
28
37
 
@@ -34,7 +43,7 @@
34
43
 
35
44
  ---
36
45
 
37
- # v0.6.1 (Tue Feb 17 2026)
46
+ ## v0.6.1 (Tue Feb 17 2026)
38
47
 
39
48
  #### 🐛 Bug Fix
40
49
 
@@ -46,7 +55,7 @@
46
55
 
47
56
  ---
48
57
 
49
- # v0.6.0 (Fri Feb 13 2026)
58
+ ## v0.6.0 (Fri Feb 13 2026)
50
59
 
51
60
  #### 🚀 Enhancement
52
61
 
@@ -58,7 +67,7 @@
58
67
 
59
68
  ---
60
69
 
61
- # v0.5.2 (Fri Feb 06 2026)
70
+ ## v0.5.2 (Fri Feb 06 2026)
62
71
 
63
72
  #### 🐛 Bug Fix
64
73
 
@@ -70,7 +79,7 @@
70
79
 
71
80
  ---
72
81
 
73
- # v0.5.1 (Fri Jan 23 2026)
82
+ ## v0.5.1 (Fri Jan 23 2026)
74
83
 
75
84
  #### 🐛 Bug Fix
76
85
 
@@ -82,7 +91,7 @@
82
91
 
83
92
  ---
84
93
 
85
- # v0.5.0 (Mon Jan 19 2026)
94
+ ## v0.5.0 (Mon Jan 19 2026)
86
95
 
87
96
  #### 🚀 Enhancement
88
97
 
@@ -94,7 +103,7 @@
94
103
 
95
104
  ---
96
105
 
97
- # v0.4.0 (Thu Jan 15 2026)
106
+ ## v0.4.0 (Thu Jan 15 2026)
98
107
 
99
108
  #### 🚀 Enhancement
100
109
 
@@ -106,7 +115,7 @@
106
115
 
107
116
  ---
108
117
 
109
- # v0.3.0 (Thu Jan 15 2026)
118
+ ## v0.3.0 (Thu Jan 15 2026)
110
119
 
111
120
  #### 🚀 Enhancement
112
121
 
@@ -118,7 +127,7 @@
118
127
 
119
128
  ---
120
129
 
121
- # v0.2.1 (Thu Jan 08 2026)
130
+ ## v0.2.1 (Thu Jan 08 2026)
122
131
 
123
132
  #### 🐛 Bug Fix
124
133
 
@@ -130,7 +139,7 @@
130
139
 
131
140
  ---
132
141
 
133
- # v0.2.0 (Thu Jan 08 2026)
142
+ ## v0.2.0 (Thu Jan 08 2026)
134
143
 
135
144
  #### 🚀 Enhancement
136
145
 
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@grafana/react-detect",
3
3
  "description": "Run various checks to detect if a Grafana plugin is compatible with React.",
4
- "version": "0.6.4",
4
+ "version": "0.7.1",
5
5
  "repository": {
6
+ "type": "git",
6
7
  "directory": "packages/react-detect",
7
8
  "url": "https://github.com/grafana/plugin-tools"
8
9
  },
@@ -26,13 +27,13 @@
26
27
  "typecheck": "tsc --noEmit"
27
28
  },
28
29
  "dependencies": {
29
- "@typescript-eslint/parser": "^8.46.2",
30
- "@typescript-eslint/typescript-estree": "^8.46.2",
31
- "fast-glob": "^3.3.2",
32
- "minimist": "^1.2.8",
33
- "pm-detect": "0.4.0",
34
- "snyk-nodejs-lockfile-parser": "^2.4.4",
35
- "source-map": "^0.7.4"
30
+ "@typescript-eslint/parser": "8.54.0",
31
+ "@typescript-eslint/typescript-estree": "8.54.0",
32
+ "fast-glob": "3.3.3",
33
+ "minimist": "1.2.8",
34
+ "pm-detect": "0.5.0",
35
+ "snyk-nodejs-lockfile-parser": "2.4.4",
36
+ "source-map": "0.7.6"
36
37
  },
37
38
  "devDependencies": {
38
39
  "@libs/output": "1.0.3",
@@ -40,6 +41,5 @@
40
41
  },
41
42
  "engines": {
42
43
  "node": ">=20"
43
- },
44
- "gitHead": "8aacee07bed65b29ca15c30285870965112c8228"
44
+ }
45
45
  }