@lobehub/lobehub 2.0.0-next.30 → 2.0.0-next.31
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
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.31](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.30...v2.0.0-next.31)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-11-05**</sup>
|
|
8
|
+
|
|
9
|
+
<br/>
|
|
10
|
+
|
|
11
|
+
<details>
|
|
12
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
13
|
+
|
|
14
|
+
</details>
|
|
15
|
+
|
|
16
|
+
<div align="right">
|
|
17
|
+
|
|
18
|
+
[](#readme-top)
|
|
19
|
+
|
|
20
|
+
</div>
|
|
21
|
+
|
|
5
22
|
## [Version 2.0.0-next.30](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.29...v2.0.0-next.30)
|
|
6
23
|
|
|
7
24
|
<sup>Released on **2025-11-05**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/lobehub",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.31",
|
|
4
4
|
"description": "LobeHub - an open-source,comprehensive AI Agent framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"framework",
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"glob": "^11.0.3",
|
|
361
361
|
"happy-dom": "^20.0.10",
|
|
362
362
|
"husky": "^9.1.7",
|
|
363
|
-
"import-in-the-middle": "^
|
|
363
|
+
"import-in-the-middle": "^2.0.0",
|
|
364
364
|
"just-diff": "^6.0.2",
|
|
365
365
|
"lint-staged": "^16.2.6",
|
|
366
366
|
"lodash": "^4.17.21",
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
"remark-frontmatter": "^5.0.0",
|
|
377
377
|
"remark-mdx": "^3.1.1",
|
|
378
378
|
"remark-parse": "^11.0.0",
|
|
379
|
-
"require-in-the-middle": "^
|
|
379
|
+
"require-in-the-middle": "^8.0.1",
|
|
380
380
|
"semantic-release": "^21.1.2",
|
|
381
381
|
"serwist": "^9.2.1",
|
|
382
382
|
"stylelint": "^15.11.0",
|
|
@@ -18,8 +18,6 @@
|
|
|
18
18
|
"@opentelemetry/sdk-node": "^0.207.0",
|
|
19
19
|
"@opentelemetry/sdk-trace-node": "^2.0.1",
|
|
20
20
|
"@opentelemetry/semantic-conventions": "^1.36.0",
|
|
21
|
-
"@vercel/otel": "^1.13.0"
|
|
22
|
-
"import-in-the-middle": "^1.14.2",
|
|
23
|
-
"require-in-the-middle": "^7.5.2"
|
|
21
|
+
"@vercel/otel": "^1.13.0"
|
|
24
22
|
}
|
|
25
23
|
}
|
|
@@ -9,9 +9,7 @@ import { PeriodicExportingMetricReader } from '@opentelemetry/sdk-metrics';
|
|
|
9
9
|
import { NodeSDK } from '@opentelemetry/sdk-node';
|
|
10
10
|
import { ATTR_SERVICE_NAME, ATTR_SERVICE_VERSION } from '@opentelemetry/semantic-conventions';
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
export function register(options?: { debug?: true | DiagLogLevel, version?: string; }) {
|
|
12
|
+
export function register(options?: { debug?: true | DiagLogLevel; version?: string }) {
|
|
15
13
|
const attributes: Record<string, string> = {
|
|
16
14
|
[ATTR_SERVICE_NAME]: 'lobe-chat',
|
|
17
15
|
};
|
|
@@ -31,9 +29,7 @@ export function register(options?: { debug?: true | DiagLogLevel, version?: stri
|
|
|
31
29
|
new HttpInstrumentation(),
|
|
32
30
|
getNodeAutoInstrumentations(),
|
|
33
31
|
],
|
|
34
|
-
|
|
35
|
-
exporter: new OTLPMetricExporter(),
|
|
36
|
-
}),
|
|
32
|
+
metricReaders: [new PeriodicExportingMetricReader({ exporter: new OTLPMetricExporter() })],
|
|
37
33
|
resource: resourceFromAttributes(attributes),
|
|
38
34
|
traceExporter: new OTLPTraceExporter(),
|
|
39
35
|
});
|
|
@@ -41,4 +37,4 @@ export function register(options?: { debug?: true | DiagLogLevel, version?: stri
|
|
|
41
37
|
sdk.start();
|
|
42
38
|
}
|
|
43
39
|
|
|
44
|
-
export {DiagLogLevel} from '@opentelemetry/api';
|
|
40
|
+
export { DiagLogLevel } from '@opentelemetry/api';
|