@opentelemetry/propagation-utils 0.27.0 → 0.28.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.28.0](https://github.com/open-telemetry/opentelemetry-js-contrib/compare/propagation-utils-v0.27.0...propagation-utils-v0.28.0) (2022-05-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * add supported node versions for all packages ([#973](https://github.com/open-telemetry/opentelemetry-js-contrib/issues/973)) ([baaacbd](https://github.com/open-telemetry/opentelemetry-js-contrib/commit/baaacbdd35ca4baab0afae64647aa8c0380ee4b7))
9
+ * use Otel SDK 1.2/0.28 ([#984](https://github.com/open-telemetry/opentelemetry-js-contrib/issues/984)) ([098c2ed](https://github.com/open-telemetry/opentelemetry-js-contrib/commit/098c2ed6f9c5ab7bd865685018c0777245aab3b7))
10
+
3
11
  ## [0.27.0](https://github.com/open-telemetry/opentelemetry-js-contrib/compare/propagation-utils-v0.26.0...propagation-utils-v0.27.0) (2022-03-02)
4
12
 
5
13
 
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # OpenTelemetry Propagation Utils
2
2
 
3
3
  [![NPM Published Version][npm-img]][npm-url]
4
- [![dependencies][dependencies-image]][dependencies-url]
5
- [![devDependencies][devDependencies-image]][devDependencies-url]
6
4
  [![Apache License][license-image]][license-image]
7
5
 
8
6
  A collection of propagation utils for opentelemetry.
@@ -53,9 +51,5 @@ Apache 2.0 - See [LICENSE][license-url] for more information.
53
51
  [discussions-url]: https://github.com/open-telemetry/opentelemetry-js/discussions
54
52
  [license-url]: https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/LICENSE
55
53
  [license-image]: https://img.shields.io/badge/license-Apache_2.0-green.svg?style=flat
56
- [dependencies-image]: https://status.david-dm.org/gh/open-telemetry/opentelemetry-js-contrib.svg?path=packages%2Fopentelemetry-propagation-utils
57
- [dependencies-url]: https://david-dm.org/open-telemetry/opentelemetry-js-contrib?path=packages%2Fopentelemetry-propagation-utils
58
- [devDependencies-image]: https://status.david-dm.org/gh/open-telemetry/opentelemetry-js-contrib.svg?path=packages%2Fopentelemetry-propagation-utils&type=dev
59
- [devDependencies-url]: https://david-dm.org/open-telemetry/opentelemetry-js-contrib?path=packages%2Fopentelemetry-propagation-utils&type=dev
60
54
  [npm-url]: https://www.npmjs.com/package/@opentelemetry/propagation-utils
61
55
  [npm-img]: https://badge.fury.io/js/%40opentelemetry%2Fpropagation-utils.svg
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentelemetry/propagation-utils",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "description": "Propagation utilities for opentelemetry instrumentations",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/src/index.d.ts",
@@ -12,10 +12,9 @@
12
12
  "compile": "tsc --build tsconfig.json tsconfig.esm.json",
13
13
  "lint": "eslint . --ext .ts",
14
14
  "lint:fix": "eslint . --ext .ts --fix",
15
- "precompile": "tsc --version && lerna run version --scope @opentelemetry/propagation-utils --include-dependencies",
15
+ "precompile": "tsc --version && lerna run version:update --scope @opentelemetry/propagation-utils --include-dependencies",
16
16
  "prepare": "npm run compile",
17
17
  "prewatch": "npm run precompile",
18
- "version": "node ../../scripts/version-update.js",
19
18
  "watch": "tsc --build --watch tsconfig.json tsconfig.esm.json"
20
19
  },
21
20
  "repository": "open-telemetry/opentelemetry-js-contrib",
@@ -32,18 +31,21 @@
32
31
  ],
33
32
  "author": "OpenTelemetry Authors",
34
33
  "license": "Apache-2.0",
34
+ "engines": {
35
+ "node": ">=8.12.0"
36
+ },
35
37
  "bugs": {
36
38
  "url": "https://github.com/open-telemetry/opentelemetry-js-contrib/issues"
37
39
  },
38
40
  "homepage": "https://github.com/open-telemetry/opentelemetry-js-contrib#readme",
39
41
  "peerDependencies": {
40
- "@opentelemetry/api": "^1.0.1"
42
+ "@opentelemetry/api": "^1.0.0"
41
43
  },
42
44
  "devDependencies": {
43
- "@opentelemetry/api": "1.0.1",
45
+ "@opentelemetry/api": "^1.0.0",
44
46
  "@types/node": "16.11.21",
45
47
  "gts": "3.1.0",
46
48
  "typescript": "4.3.5"
47
49
  },
48
- "gitHead": "78717b6dda677bf737811c34df21ef0ec88c31a3"
50
+ "gitHead": "f89da7d080d2aaecacd8728d647e8eff4c9248a9"
49
51
  }
@@ -1,2 +0,0 @@
1
- export declare const VERSION = "0.27.0";
2
- //# sourceMappingURL=version.d.ts.map
@@ -1,18 +0,0 @@
1
- /*
2
- * Copyright The OpenTelemetry Authors
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * https://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- // this is autogenerated file, see scripts/version-update.js
17
- export var VERSION = '0.27.0';
18
- //# sourceMappingURL=version.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,4DAA4D;AAC5D,MAAM,CAAC,IAAM,OAAO,GAAG,QAAQ,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const VERSION = "0.27.0";
2
- //# sourceMappingURL=version.d.ts.map
@@ -1,21 +0,0 @@
1
- "use strict";
2
- /*
3
- * Copyright The OpenTelemetry Authors
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * https://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.VERSION = void 0;
19
- // this is autogenerated file, see scripts/version-update.js
20
- exports.VERSION = '0.27.0';
21
- //# sourceMappingURL=version.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAEH,4DAA4D;AAC/C,QAAA,OAAO,GAAG,QAAQ,CAAC"}