@commercetools/ts-sdk-apm 1.0.0 → 1.0.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,5 +1,22 @@
1
1
  # @commercetools/ts-sdk-apm
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#551](https://github.com/commercetools/commercetools-sdk-typescript/pull/551) [`9e7939a`](https://github.com/commercetools/commercetools-sdk-typescript/commit/9e7939a1df234fd1f4f77c60f4ff75b31d7fc3fd) Thanks [@github-actions](https://github.com/apps/github-actions)! - BREAKING CHANGE:
8
+
9
+ - fix URI parameters to be URI encoded
10
+
11
+ - [#545](https://github.com/commercetools/commercetools-sdk-typescript/pull/545) [`a6d0df2`](https://github.com/commercetools/commercetools-sdk-typescript/commit/a6d0df2034b72504db2aa2d13a8d3726d97cc881) Thanks [@ajimae](https://github.com/ajimae)! - - fix user-agent header
12
+ - remove User-Agent key from the middleware request header
13
+
14
+ ## 1.0.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [#537](https://github.com/commercetools/commercetools-sdk-typescript/pull/537) [`ae8677d`](https://github.com/commercetools/commercetools-sdk-typescript/commit/ae8677d8ac1d28bdfb367ab8929c71686a7142ce) Thanks [@ajimae](https://github.com/ajimae)! - add useragent header
19
+
3
20
  ## 1.0.0
4
21
 
5
22
  ### Major Changes
@@ -1 +1,2 @@
1
1
  export * from "./declarations/src/index";
2
+ //# sourceMappingURL=commercetools-ts-sdk-apm.cjs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commercetools-ts-sdk-apm.cjs.d.ts","sourceRoot":"","sources":["./declarations/src/index.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,2 +1,2 @@
1
- import type { Middleware, OTelemetryMiddlewareOptions } from '../types/types';
1
+ import type { Middleware, OTelemetryMiddlewareOptions } from "../types/types.js";
2
2
  export default function createTelemetryMiddleware(options: OTelemetryMiddlewareOptions): Middleware;
@@ -1,2 +1,2 @@
1
- export { default as createTelemetryMiddleware } from './apm';
2
- export * from '../types/types.d';
1
+ export * from "../types/types.js";
2
+ export { default as createTelemetryMiddleware } from "./apm.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools/ts-sdk-apm",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "commercetools typescript SDK application performance monitoring.",
5
5
  "main": "dist/commercetools-ts-sdk-apm.cjs.js",
6
6
  "module": "dist/commercetools-ts-sdk-apm.esm.js",
@@ -9,10 +9,10 @@
9
9
  "private": false,
10
10
  "dependencies": {
11
11
  "@opentelemetry/api": "^1.4.1",
12
- "@opentelemetry/auto-instrumentations-node": "^0.36.6",
13
- "@opentelemetry/exporter-metrics-otlp-http": "^0.38.0",
14
- "@opentelemetry/sdk-node": "^0.38.0",
15
- "newrelic": "^9.15.0",
12
+ "@opentelemetry/auto-instrumentations-node": "^0.38.0",
13
+ "@opentelemetry/exporter-metrics-otlp-http": "^0.41.0",
14
+ "@opentelemetry/sdk-node": "^0.41.0",
15
+ "newrelic": "^10.0.0",
16
16
  "uuid": "9.0.0"
17
17
  },
18
18
  "publishConfig": {
@@ -37,7 +37,13 @@
37
37
  "type": "git",
38
38
  "url": "https://github.com/commercetools/commercetools-typescript-sdks.git"
39
39
  },
40
- "files": ["dist", "CHANGELOG.md", "opentelemetry.js"],
40
+ "files": [
41
+ "dist",
42
+ "CHANGELOG.md",
43
+ "LICENSE",
44
+ "opentelemetry.js",
45
+ "package.json"
46
+ ],
41
47
  "browser": {
42
48
  "./dist/commercetools-ts-sdk-apm.cjs.js": "./dist/commercetools-ts-sdk-apm.browser.cjs.js",
43
49
  "./dist/commercetools-ts-sdk-apm.esm.js": "./dist/commercetools-ts-sdk-apm.browser.esm.js"