@grafana/create-plugin 4.2.1-canary.786.f9274d5.0 → 4.2.2

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,18 @@
1
+ # v4.2.1 (Thu Feb 29 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Create Plugin: Bump go version in backend plugin scaffolding [#786](https://github.com/grafana/plugin-tools/pull/786) ([@sunker](https://github.com/sunker))
6
+ - Create Plugin: Bump Glob to 10.x.x [#764](https://github.com/grafana/plugin-tools/pull/764) ([@jackw](https://github.com/jackw))
7
+ - Create Plugin: Bump find-up to 7.x.x [#765](https://github.com/grafana/plugin-tools/pull/765) ([@jackw](https://github.com/jackw))
8
+
9
+ #### Authors: 2
10
+
11
+ - Erik Sundell ([@sunker](https://github.com/sunker))
12
+ - Jack Westbrook ([@jackw](https://github.com/jackw))
13
+
14
+ ---
15
+
1
16
  # v4.2.0 (Wed Feb 21 2024)
2
17
 
3
18
  #### 🐛 Bug Fix
@@ -1,7 +1,7 @@
1
1
  import { glob } from 'glob';
2
2
  import path from 'node:path';
3
3
  import fs from 'node:fs';
4
- import mkdirp from 'mkdirp';
4
+ import { mkdirp } from 'mkdirp';
5
5
  import createDebug from 'debug';
6
6
  import { filterOutCommonFiles, isFile, isFileStartingWith } from './utils.files.js';
7
7
  import { renderHandlebarsTemplate } from './utils.handlebars.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "4.2.1-canary.786.f9274d5.0",
3
+ "version": "4.2.2",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -56,7 +56,7 @@
56
56
  "marked": "^10.0.0",
57
57
  "marked-terminal": "^6.2.0",
58
58
  "minimist": "^1.2.8",
59
- "mkdirp": "^1.0.4",
59
+ "mkdirp": "^3.0.1",
60
60
  "semver": "^7.3.5",
61
61
  "title-case": "^4.3.0",
62
62
  "which": "^3.0.0"
@@ -87,5 +87,5 @@
87
87
  "engines": {
88
88
  "node": ">=20"
89
89
  },
90
- "gitHead": "f9274d5d0421a875206d7a289ea2f3f9f7e1429a"
90
+ "gitHead": "d9a79a343bd791c961b1cd2fb0824b23d6c265c3"
91
91
  }
@@ -1,7 +1,7 @@
1
1
  import { glob } from 'glob';
2
2
  import path from 'node:path';
3
3
  import fs from 'node:fs';
4
- import mkdirp from 'mkdirp';
4
+ import { mkdirp } from 'mkdirp';
5
5
  import createDebug from 'debug';
6
6
  import { filterOutCommonFiles, isFile, isFileStartingWith } from './utils.files.js';
7
7
  import { renderHandlebarsTemplate } from './utils.handlebars.js';
@@ -1,6 +1,6 @@
1
1
  module github.com/{{ kebabCase orgName }}/{{ kebabCase pluginName }}
2
2
 
3
- go 1.19
3
+ go 1.21
4
4
 
5
5
  require github.com/grafana/grafana-plugin-sdk-go v0.156.0
6
6