@grafana/create-plugin 5.12.1 → 5.12.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,15 @@
1
+ # v5.12.2 (Fri Dec 20 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Create Plugin: Fix incorrect interpolation for anonymous auth variable [#1425](https://github.com/grafana/plugin-tools/pull/1425) ([@sunker](https://github.com/sunker))
6
+
7
+ #### Authors: 1
8
+
9
+ - Erik Sundell ([@sunker](https://github.com/sunker))
10
+
11
+ ---
12
+
1
13
  # v5.12.1 (Thu Dec 19 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "5.12.1",
3
+ "version": "5.12.2",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -86,5 +86,5 @@
86
86
  "engines": {
87
87
  "node": ">=20"
88
88
  },
89
- "gitHead": "4ab1966bea18043ca8e76bac1f3e6b5ef06da141"
89
+ "gitHead": "6d6ae829a07dcf71fc6584131314a35f5ade42fe"
90
90
  }
@@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise
3
3
 
4
4
  FROM grafana/${grafana_image}:${grafana_version}
5
5
 
6
+ ARG anonymous_auth_enabled=true
6
7
  ARG development=false
7
8
  ARG TARGETARCH
8
9
 
@@ -16,7 +17,7 @@ ENV DEV "${development}"
16
17
  # Make it as simple as possible to access the grafana instance for development purposes
17
18
  # Do NOT enable these settings in a public facing / production grafana instance
18
19
  ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin"
19
- ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}"
20
+ ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}"
20
21
  ENV GF_AUTH_BASIC_ENABLED "false"
21
22
  # Set development mode so plugins can be loaded without the need to sign
22
23
  ENV GF_DEFAULT_APP_MODE "development"