@grafana/create-plugin 6.8.0-canary.2356.20815895884.0 → 6.8.0
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 +101 -0
- package/dist/codemods/additions/additions.js +3 -3
- package/dist/codemods/utils.js +2 -2
- package/dist/constants.js +1 -0
- package/dist/utils/utils.templates.js +4 -1
- package/package.json +3 -3
- package/src/codemods/additions/additions.ts +3 -3
- package/src/constants.ts +1 -0
- package/src/types.ts +1 -0
- package/src/utils/tests/utils.config.test.ts +25 -3
- package/src/utils/utils.config.ts +1 -0
- package/src/utils/utils.templates.ts +10 -1
- package/templates/backend/go.mod +30 -29
- package/templates/backend/go.sum +62 -62
- package/templates/backend-app/go.mod +30 -29
- package/templates/backend-app/go.sum +62 -62
- package/templates/common/.config/bundler/copyFiles.ts +23 -0
- package/templates/common/.config/docker-compose-base.yaml +1 -1
- package/templates/common/.config/rspack/BuildModeRspackPlugin.ts +4 -4
- package/templates/common/.config/rspack/{liveReloadPlugin.js → liveReloadPlugin.ts} +34 -11
- package/templates/common/.config/rspack/rspack.config.ts +8 -22
- package/templates/common/.config/webpack/BuildModeWebpackPlugin.ts +1 -1
- package/templates/common/.config/webpack/webpack.config.ts +4 -17
- package/templates/common/.cprc.json +1 -0
- package/templates/common/_package.json +46 -44
- package/templates/github/workflows/bundle-stats.yml +1 -1
- package/templates/github/workflows/ci.yml +17 -10
- package/templates/github/workflows/is-compatible.yml +2 -2
- package/templates/github/workflows/release.yml +1 -1
- package/dist/codemods/additions/scripts/bundle-grafana-ui/index.js +0 -174
- package/dist/codemods/utils.bundler-config.js +0 -19
- package/dist/codemods/utils.externals.js +0 -116
- package/src/codemods/additions/scripts/bundle-grafana-ui/README.md +0 -68
- package/src/codemods/additions/scripts/bundle-grafana-ui/index.test.ts +0 -511
- package/src/codemods/additions/scripts/bundle-grafana-ui/index.ts +0 -259
- package/src/codemods/utils.bundler-config.ts +0 -203
- package/src/codemods/utils.externals.test.ts +0 -87
- package/src/codemods/utils.externals.ts +0 -181
- package/templates/common/.config/rspack/utils.ts +0 -63
- package/templates/common/.config/webpack/constants.ts +0 -2
- /package/templates/common/.config/{rspack → bundler}/constants.ts +0 -0
- /package/templates/common/.config/{webpack → bundler}/utils.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,104 @@
|
|
|
1
|
+
# v6.8.0 (Thu Jan 29 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- chore(deps): update grafana patch dependencies to v12.3.2 [#2420](https://github.com/grafana/plugin-tools/pull/2420) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
|
|
6
|
+
- fix(deps): update dependency which to v6 [#2393](https://github.com/grafana/plugin-tools/pull/2393) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- [@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot])
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# v6.7.8 (Thu Jan 22 2026)
|
|
15
|
+
|
|
16
|
+
#### 🐛 Bug Fix
|
|
17
|
+
|
|
18
|
+
- Fix: Pin golint-ci in scaffolded plugins [#2414](https://github.com/grafana/plugin-tools/pull/2414) ([@sunker](https://github.com/sunker))
|
|
19
|
+
|
|
20
|
+
#### Authors: 1
|
|
21
|
+
|
|
22
|
+
- Erik Sundell ([@sunker](https://github.com/sunker))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# v6.7.7 (Thu Jan 22 2026)
|
|
27
|
+
|
|
28
|
+
#### 🐛 Bug Fix
|
|
29
|
+
|
|
30
|
+
- Create Plugin: Bump go version in plugin templates [#2409](https://github.com/grafana/plugin-tools/pull/2409) ([@sunker](https://github.com/sunker))
|
|
31
|
+
- chore(deps): update dependency @grafana/plugin-e2e to v3.1.4 [#2413](https://github.com/grafana/plugin-tools/pull/2413) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
|
|
32
|
+
|
|
33
|
+
#### Authors: 2
|
|
34
|
+
|
|
35
|
+
- [@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot])
|
|
36
|
+
- Erik Sundell ([@sunker](https://github.com/sunker))
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
# v6.7.6 (Tue Jan 20 2026)
|
|
41
|
+
|
|
42
|
+
#### 🐛 Bug Fix
|
|
43
|
+
|
|
44
|
+
- Create Plugin: Bump plugin-e2e [#2407](https://github.com/grafana/plugin-tools/pull/2407) ([@sunker](https://github.com/sunker))
|
|
45
|
+
|
|
46
|
+
#### Authors: 1
|
|
47
|
+
|
|
48
|
+
- Erik Sundell ([@sunker](https://github.com/sunker))
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
# v6.7.5 (Wed Jan 14 2026)
|
|
53
|
+
|
|
54
|
+
#### 🐛 Bug Fix
|
|
55
|
+
|
|
56
|
+
- chore(deps): update create-plugin template github actions [#2389](https://github.com/grafana/plugin-tools/pull/2389) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
|
|
57
|
+
- chore(deps): update dependency @grafana/plugin-e2e to v3.1.2 [#2386](https://github.com/grafana/plugin-tools/pull/2386) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
|
|
58
|
+
- chore(deps): update grafana patch dependencies [#2375](https://github.com/grafana/plugin-tools/pull/2375) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
|
|
59
|
+
|
|
60
|
+
#### Authors: 1
|
|
61
|
+
|
|
62
|
+
- [@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot])
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
# v6.7.4 (Mon Jan 12 2026)
|
|
67
|
+
|
|
68
|
+
#### 🐛 Bug Fix
|
|
69
|
+
|
|
70
|
+
- chore: cleanup bundler duplicates [#2379](https://github.com/grafana/plugin-tools/pull/2379) ([@jackw](https://github.com/jackw))
|
|
71
|
+
|
|
72
|
+
#### Authors: 1
|
|
73
|
+
|
|
74
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
# v6.7.3 (Thu Jan 08 2026)
|
|
79
|
+
|
|
80
|
+
#### 🐛 Bug Fix
|
|
81
|
+
|
|
82
|
+
- fix: remove unused Compiler type import from Webpack plugin [#2370](https://github.com/grafana/plugin-tools/pull/2370) ([@MattIPv4](https://github.com/MattIPv4))
|
|
83
|
+
|
|
84
|
+
#### Authors: 1
|
|
85
|
+
|
|
86
|
+
- Matt Cowley ([@MattIPv4](https://github.com/MattIPv4))
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
# v6.7.2 (Thu Jan 08 2026)
|
|
91
|
+
|
|
92
|
+
#### 🐛 Bug Fix
|
|
93
|
+
|
|
94
|
+
- feat: bump all dev deps to latest [#2359](https://github.com/grafana/plugin-tools/pull/2359) ([@jackw](https://github.com/jackw))
|
|
95
|
+
|
|
96
|
+
#### Authors: 1
|
|
97
|
+
|
|
98
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
1
102
|
# v6.7.1 (Thu Jan 08 2026)
|
|
2
103
|
|
|
3
104
|
#### 🐛 Bug Fix
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
var defaultAdditions = [
|
|
2
2
|
{
|
|
3
|
-
name: "
|
|
4
|
-
description: "
|
|
5
|
-
scriptPath: import.meta.resolve("./scripts/
|
|
3
|
+
name: "example-addition",
|
|
4
|
+
description: "Adds an example addition to the plugin",
|
|
5
|
+
scriptPath: import.meta.resolve("./scripts/example-addition.js")
|
|
6
6
|
}
|
|
7
7
|
];
|
|
8
8
|
|
package/dist/codemods/utils.js
CHANGED
|
@@ -205,6 +205,6 @@ function sortObjectByKeys(obj) {
|
|
|
205
205
|
return Object.keys(obj).sort().reduce((acc, key) => ({ ...acc, [key]: obj[key] }), {});
|
|
206
206
|
}
|
|
207
207
|
const migrationsDebug = debug.extend("migrations");
|
|
208
|
-
|
|
208
|
+
debug.extend("additions");
|
|
209
209
|
|
|
210
|
-
export { addDependenciesToPackageJson,
|
|
210
|
+
export { addDependenciesToPackageJson, flushChanges, formatFiles, installNPMDependencies, isVersionGreater, migrationsDebug, printChanges, readJsonFile, removeDependenciesFromPackageJson };
|
package/dist/constants.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EXTRA_TEMPLATE_VARIABLES, PLUGIN_TYPES, TEMPLATE_PATHS, EXPORT_PATH_PREFIX } from '../constants.js';
|
|
1
|
+
import { DEFAULT_FEATURE_FLAGS, EXTRA_TEMPLATE_VARIABLES, PLUGIN_TYPES, TEMPLATE_PATHS, EXPORT_PATH_PREFIX } from '../constants.js';
|
|
2
2
|
import { isFile, getExportFileName, filterOutCommonFiles, isFileStartingWith } from './utils.files.js';
|
|
3
3
|
import { getPackageManagerFromUserAgent, getPackageManagerInstallCmd, getPackageManagerWithFallback } from './utils.packageManager.js';
|
|
4
4
|
import { normalizeId, renderHandlebarsTemplate } from './utils.handlebars.js';
|
|
@@ -56,6 +56,7 @@ function renderTemplateFromFile(templateFile, data) {
|
|
|
56
56
|
function getTemplateData(cliArgs) {
|
|
57
57
|
const { features } = getConfig();
|
|
58
58
|
const currentVersion = CURRENT_APP_VERSION;
|
|
59
|
+
const bundleGrafanaUI = features.bundleGrafanaUI ?? DEFAULT_FEATURE_FLAGS.bundleGrafanaUI;
|
|
59
60
|
const isAppType = (pluginType) => pluginType === PLUGIN_TYPES.app || pluginType === PLUGIN_TYPES.scenes;
|
|
60
61
|
const isNPM = (packageManagerName) => packageManagerName === "npm";
|
|
61
62
|
const frontendBundler = features.useExperimentalRspack ? "rspack" : "webpack";
|
|
@@ -76,6 +77,7 @@ function getTemplateData(cliArgs) {
|
|
|
76
77
|
isAppType: isAppType(cliArgs.pluginType),
|
|
77
78
|
isNPM: isNPM(packageManagerName),
|
|
78
79
|
version: currentVersion,
|
|
80
|
+
bundleGrafanaUI,
|
|
79
81
|
scenesVersion: "^6.10.4",
|
|
80
82
|
useExperimentalRspack: Boolean(features.useExperimentalRspack),
|
|
81
83
|
frontendBundler
|
|
@@ -96,6 +98,7 @@ function getTemplateData(cliArgs) {
|
|
|
96
98
|
isAppType: isAppType(pluginJson.type),
|
|
97
99
|
isNPM: isNPM(packageManagerName),
|
|
98
100
|
version: currentVersion,
|
|
101
|
+
bundleGrafanaUI,
|
|
99
102
|
scenesVersion: "^6.10.4",
|
|
100
103
|
pluginExecutable: pluginJson.executable,
|
|
101
104
|
useExperimentalRspack: Boolean(features.useExperimentalRspack),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "6.8.0
|
|
3
|
+
"version": "6.8.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"semver": "^7.3.5",
|
|
40
40
|
"title-case": "^4.3.0",
|
|
41
41
|
"valibot": "^1.2.0",
|
|
42
|
-
"which": "^
|
|
42
|
+
"which": "^6.0.0",
|
|
43
43
|
"yaml": "^2.7.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=20"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "4f96f3406fbb433ffc7fb247fe470f962a3f08b8"
|
|
59
59
|
}
|
|
@@ -2,8 +2,8 @@ import { Codemod } from '../types.js';
|
|
|
2
2
|
|
|
3
3
|
export default [
|
|
4
4
|
{
|
|
5
|
-
name: '
|
|
6
|
-
description: '
|
|
7
|
-
scriptPath: import.meta.resolve('./scripts/
|
|
5
|
+
name: 'example-addition',
|
|
6
|
+
description: 'Adds an example addition to the plugin',
|
|
7
|
+
scriptPath: import.meta.resolve('./scripts/example-addition.js'),
|
|
8
8
|
},
|
|
9
9
|
] satisfies Codemod[];
|
package/src/constants.ts
CHANGED
package/src/types.ts
CHANGED
|
@@ -46,13 +46,13 @@ describe('getConfig', () => {
|
|
|
46
46
|
|
|
47
47
|
it('should override default feature flags via cli args', async () => {
|
|
48
48
|
mocks.argv = {
|
|
49
|
-
'feature-flags': '
|
|
49
|
+
'feature-flags': 'bundleGrafanaUI',
|
|
50
50
|
};
|
|
51
51
|
const config = getConfig(tmpDir);
|
|
52
52
|
|
|
53
53
|
expect(config).toEqual({
|
|
54
54
|
version: CURRENT_APP_VERSION,
|
|
55
|
-
features: { ...DEFAULT_FEATURE_FLAGS,
|
|
55
|
+
features: { ...DEFAULT_FEATURE_FLAGS, bundleGrafanaUI: true },
|
|
56
56
|
});
|
|
57
57
|
});
|
|
58
58
|
});
|
|
@@ -94,7 +94,7 @@ describe('getConfig', () => {
|
|
|
94
94
|
const userConfigPath = path.join(tmpDir, '.cprc.json');
|
|
95
95
|
const userConfig: UserConfig = {
|
|
96
96
|
features: {
|
|
97
|
-
|
|
97
|
+
bundleGrafanaUI: true,
|
|
98
98
|
},
|
|
99
99
|
};
|
|
100
100
|
|
|
@@ -107,5 +107,27 @@ describe('getConfig', () => {
|
|
|
107
107
|
features: userConfig.features,
|
|
108
108
|
});
|
|
109
109
|
});
|
|
110
|
+
|
|
111
|
+
it('should give back the correct config when config files exist', async () => {
|
|
112
|
+
const rootConfigPath = path.join(tmpDir, '.config', '.cprc.json');
|
|
113
|
+
const userConfigPath = path.join(tmpDir, '.cprc.json');
|
|
114
|
+
const rootConfig: CreatePluginConfig = {
|
|
115
|
+
version: '1.0.0',
|
|
116
|
+
features: {},
|
|
117
|
+
};
|
|
118
|
+
const userConfig: UserConfig = {
|
|
119
|
+
features: {
|
|
120
|
+
bundleGrafanaUI: false,
|
|
121
|
+
},
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
await fs.mkdir(path.dirname(rootConfigPath), { recursive: true });
|
|
125
|
+
await fs.writeFile(rootConfigPath, JSON.stringify(rootConfig));
|
|
126
|
+
await fs.writeFile(userConfigPath, JSON.stringify(userConfig));
|
|
127
|
+
|
|
128
|
+
const config = getConfig(tmpDir);
|
|
129
|
+
|
|
130
|
+
expect(config).toEqual({ ...rootConfig, ...userConfig });
|
|
131
|
+
});
|
|
110
132
|
});
|
|
111
133
|
});
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_FEATURE_FLAGS,
|
|
3
|
+
EXPORT_PATH_PREFIX,
|
|
4
|
+
EXTRA_TEMPLATE_VARIABLES,
|
|
5
|
+
PLUGIN_TYPES,
|
|
6
|
+
TEMPLATE_PATHS,
|
|
7
|
+
} from '../constants.js';
|
|
2
8
|
import { GenerateCliArgs, TemplateData } from '../types.js';
|
|
3
9
|
import { filterOutCommonFiles, isFile, isFileStartingWith } from './utils.files.js';
|
|
4
10
|
import {
|
|
@@ -89,6 +95,7 @@ export function renderTemplateFromFile(templateFile: string, data?: any) {
|
|
|
89
95
|
export function getTemplateData(cliArgs?: GenerateCliArgs): TemplateData {
|
|
90
96
|
const { features } = getConfig();
|
|
91
97
|
const currentVersion = CURRENT_APP_VERSION;
|
|
98
|
+
const bundleGrafanaUI = features.bundleGrafanaUI ?? DEFAULT_FEATURE_FLAGS.bundleGrafanaUI;
|
|
92
99
|
const isAppType = (pluginType: string) => pluginType === PLUGIN_TYPES.app || pluginType === PLUGIN_TYPES.scenes;
|
|
93
100
|
const isNPM = (packageManagerName: string) => packageManagerName === 'npm';
|
|
94
101
|
const frontendBundler = features.useExperimentalRspack ? 'rspack' : 'webpack';
|
|
@@ -113,6 +120,7 @@ export function getTemplateData(cliArgs?: GenerateCliArgs): TemplateData {
|
|
|
113
120
|
isAppType: isAppType(cliArgs.pluginType),
|
|
114
121
|
isNPM: isNPM(packageManagerName),
|
|
115
122
|
version: currentVersion,
|
|
123
|
+
bundleGrafanaUI,
|
|
116
124
|
scenesVersion: '^6.10.4',
|
|
117
125
|
useExperimentalRspack: Boolean(features.useExperimentalRspack),
|
|
118
126
|
frontendBundler,
|
|
@@ -136,6 +144,7 @@ export function getTemplateData(cliArgs?: GenerateCliArgs): TemplateData {
|
|
|
136
144
|
isAppType: isAppType(pluginJson.type),
|
|
137
145
|
isNPM: isNPM(packageManagerName),
|
|
138
146
|
version: currentVersion,
|
|
147
|
+
bundleGrafanaUI,
|
|
139
148
|
scenesVersion: '^6.10.4',
|
|
140
149
|
pluginExecutable: pluginJson.executable,
|
|
141
150
|
useExperimentalRspack: Boolean(features.useExperimentalRspack),
|
package/templates/backend/go.mod
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
module github.com/{{ kebabCase orgName }}/{{ kebabCase pluginName }}
|
|
2
2
|
|
|
3
|
-
go 1.24.6
|
|
4
3
|
|
|
5
|
-
|
|
4
|
+
go 1.25.5
|
|
5
|
+
|
|
6
|
+
require github.com/grafana/grafana-plugin-sdk-go v0.285.0
|
|
6
7
|
|
|
7
8
|
require (
|
|
8
9
|
github.com/BurntSushi/toml v1.5.0 // indirect
|
|
9
|
-
github.com/apache/arrow-go/v18 v18.
|
|
10
|
+
github.com/apache/arrow-go/v18 v18.5.0 // indirect
|
|
10
11
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
11
12
|
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
|
|
12
13
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
@@ -19,20 +20,20 @@ require (
|
|
|
19
20
|
github.com/gogo/googleapis v1.4.1 // indirect
|
|
20
21
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
21
22
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
22
|
-
github.com/google/flatbuffers v25.
|
|
23
|
+
github.com/google/flatbuffers v25.9.23+incompatible // indirect
|
|
23
24
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
24
25
|
github.com/google/uuid v1.6.0 // indirect
|
|
25
26
|
github.com/grafana/otel-profiling-go v0.5.1 // indirect
|
|
26
27
|
github.com/grafana/pyroscope-go/godeltaprof v0.1.9 // indirect
|
|
27
28
|
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0 // indirect
|
|
28
29
|
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3 // indirect
|
|
29
|
-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.
|
|
30
|
+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect
|
|
30
31
|
github.com/hashicorp/go-hclog v1.6.3 // indirect
|
|
31
32
|
github.com/hashicorp/go-plugin v1.7.0 // indirect
|
|
32
33
|
github.com/hashicorp/yamux v0.1.2 // indirect
|
|
33
|
-
github.com/jaegertracing/jaeger-idl v0.
|
|
34
|
+
github.com/jaegertracing/jaeger-idl v0.6.0 // indirect
|
|
34
35
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
35
|
-
github.com/klauspost/compress v1.18.
|
|
36
|
+
github.com/klauspost/compress v1.18.2 // indirect
|
|
36
37
|
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
|
37
38
|
github.com/magefile/mage v1.15.0 // indirect
|
|
38
39
|
github.com/mattetti/filebuffer v1.0.1 // indirect
|
|
@@ -48,7 +49,7 @@ require (
|
|
|
48
49
|
github.com/pierrec/lz4/v4 v4.1.22 // indirect
|
|
49
50
|
github.com/prometheus/client_golang v1.23.2 // indirect
|
|
50
51
|
github.com/prometheus/client_model v0.6.2 // indirect
|
|
51
|
-
github.com/prometheus/common v0.67.
|
|
52
|
+
github.com/prometheus/common v0.67.4 // indirect
|
|
52
53
|
github.com/prometheus/procfs v0.16.1 // indirect
|
|
53
54
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
54
55
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
@@ -57,30 +58,30 @@ require (
|
|
|
57
58
|
github.com/unknwon/log v0.0.0-20150304194804-e617c87089d3 // indirect
|
|
58
59
|
github.com/urfave/cli v1.22.17 // indirect
|
|
59
60
|
github.com/zeebo/xxh3 v1.0.2 // indirect
|
|
60
|
-
go.opentelemetry.io/auto/sdk v1.1
|
|
61
|
-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.
|
|
62
|
-
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.
|
|
63
|
-
go.opentelemetry.io/contrib/propagators/jaeger v1.
|
|
64
|
-
go.opentelemetry.io/contrib/samplers/jaegerremote v0.
|
|
65
|
-
go.opentelemetry.io/otel v1.
|
|
66
|
-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.
|
|
67
|
-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.
|
|
68
|
-
go.opentelemetry.io/otel/metric v1.
|
|
69
|
-
go.opentelemetry.io/otel/sdk v1.
|
|
70
|
-
go.opentelemetry.io/otel/trace v1.
|
|
71
|
-
go.opentelemetry.io/proto/otlp v1.
|
|
61
|
+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
|
|
62
|
+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0 // indirect
|
|
63
|
+
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.64.0 // indirect
|
|
64
|
+
go.opentelemetry.io/contrib/propagators/jaeger v1.39.0 // indirect
|
|
65
|
+
go.opentelemetry.io/contrib/samplers/jaegerremote v0.33.0 // indirect
|
|
66
|
+
go.opentelemetry.io/otel v1.39.0 // indirect
|
|
67
|
+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 // indirect
|
|
68
|
+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0 // indirect
|
|
69
|
+
go.opentelemetry.io/otel/metric v1.39.0 // indirect
|
|
70
|
+
go.opentelemetry.io/otel/sdk v1.39.0 // indirect
|
|
71
|
+
go.opentelemetry.io/otel/trace v1.39.0 // indirect
|
|
72
|
+
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
|
|
72
73
|
go.yaml.in/yaml/v2 v2.4.3 // indirect
|
|
73
74
|
golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9 // indirect
|
|
74
|
-
golang.org/x/mod v0.
|
|
75
|
-
golang.org/x/net v0.
|
|
76
|
-
golang.org/x/sync v0.
|
|
77
|
-
golang.org/x/sys v0.
|
|
78
|
-
golang.org/x/telemetry v0.0.0-
|
|
79
|
-
golang.org/x/text v0.
|
|
80
|
-
golang.org/x/tools v0.
|
|
75
|
+
golang.org/x/mod v0.30.0 // indirect
|
|
76
|
+
golang.org/x/net v0.48.0 // indirect
|
|
77
|
+
golang.org/x/sync v0.19.0 // indirect
|
|
78
|
+
golang.org/x/sys v0.40.0 // indirect
|
|
79
|
+
golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 // indirect
|
|
80
|
+
golang.org/x/text v0.32.0 // indirect
|
|
81
|
+
golang.org/x/tools v0.39.0 // indirect
|
|
81
82
|
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
|
|
82
83
|
google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79 // indirect
|
|
83
|
-
google.golang.org/grpc v1.
|
|
84
|
-
google.golang.org/protobuf v1.36.
|
|
84
|
+
google.golang.org/grpc v1.78.0 // indirect
|
|
85
|
+
google.golang.org/protobuf v1.36.11 // indirect
|
|
85
86
|
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
|
|
86
87
|
)
|