@grafana/sign-plugin 3.0.7 → 3.0.8

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
@@ -1,3 +1,15 @@
1
+ # v3.0.8 (Thu Jan 09 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Sign Plugin: Remove console.log on failed version check [#1444](https://github.com/grafana/plugin-tools/pull/1444) ([@jackw](https://github.com/jackw))
6
+
7
+ #### Authors: 1
8
+
9
+ - Jack Westbrook ([@jackw](https://github.com/jackw))
10
+
11
+ ---
12
+
1
13
  # v3.0.5 (Wed Dec 11 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -12,7 +12,6 @@ export const getCreatePluginVersion = () => {
12
12
  return version;
13
13
  }
14
14
  catch (err) {
15
- console.log('(Optional) Not able to get create-plugin version - you can ignore this message.');
16
15
  return null;
17
16
  }
18
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/sign-plugin",
3
- "version": "3.0.7",
3
+ "version": "3.0.8",
4
4
  "repository": {
5
5
  "directory": "packages/sign-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -48,5 +48,5 @@
48
48
  "engines": {
49
49
  "node": ">=20"
50
50
  },
51
- "gitHead": "18cb53472ea21d1f6dd4740de2bf528eec9d291c"
51
+ "gitHead": "fc8a246a013ff70fb639893fde5c50af101193be"
52
52
  }
@@ -13,7 +13,6 @@ export const getCreatePluginVersion = () => {
13
13
  const { version } = JSON.parse(crpcJSON);
14
14
  return version as string;
15
15
  } catch (err) {
16
- console.log('(Optional) Not able to get create-plugin version - you can ignore this message.');
17
16
  return null;
18
17
  }
19
18
  };