@opentelemetry/plugin-react-load 0.26.0 → 0.26.1

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.26.1](https://www.github.com/open-telemetry/opentelemetry-js-contrib/compare/plugin-react-load-v0.26.0...plugin-react-load-v0.26.1) (2022-01-24)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fix CI by forcing colors@1.4.0 ([#825](https://www.github.com/open-telemetry/opentelemetry-js-contrib/issues/825)) ([0ec9f08](https://www.github.com/open-telemetry/opentelemetry-js-contrib/commit/0ec9f080520fe0f146a915a656300ef53a151ace))
9
+ * rename lerna's --include-filtered-dependencies option ([#817](https://www.github.com/open-telemetry/opentelemetry-js-contrib/issues/817)) ([cf268e7](https://www.github.com/open-telemetry/opentelemetry-js-contrib/commit/cf268e7a92b7800ad6dbec9ca77466f9ee03ee1a))
10
+
3
11
  ## [0.26.0](https://www.github.com/open-telemetry/opentelemetry-js-contrib/compare/plugin-react-load-v0.25.0...plugin-react-load-v0.26.0) (2021-10-22)
4
12
 
5
13
 
package/README.md CHANGED
@@ -27,6 +27,7 @@ BaseOpenTelemetryComponent.setTracer('name', 'version');
27
27
  ```
28
28
 
29
29
  To instrument components, extend `BaseOpenTelemetryComponent`:
30
+
30
31
  ```js
31
32
  import { BaseOpenTelemetryComponent } from '@opentelemetry/plugin-react-load';
32
33
 
@@ -36,6 +37,7 @@ export class Component1 extends BaseOpenTelemetryComponent { ... }
36
37
  See [/examples/react-load](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/examples/react-load) for a short example.
37
38
 
38
39
  ## Useful links
40
+
39
41
  - For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
40
42
  - For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js>
41
43
  - For help or feedback on this project, join us in [GitHub Discussions][discussions-url]
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.26.0";
1
+ export declare const VERSION = "0.26.1";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -14,5 +14,5 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  // this is autogenerated file, see scripts/version-update.js
17
- export var VERSION = '0.26.0';
17
+ export var VERSION = '0.26.1';
18
18
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.26.0";
1
+ export declare const VERSION = "0.26.1";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -17,5 +17,5 @@
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.VERSION = void 0;
19
19
  // this is autogenerated file, see scripts/version-update.js
20
- exports.VERSION = '0.26.0';
20
+ exports.VERSION = '0.26.1';
21
21
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentelemetry/plugin-react-load",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "OpenTelemetry React loading automatic instrumentation package.",
5
5
  "main": "build/src/index.js",
6
6
  "module": "build/esm/index.js",
@@ -11,7 +11,7 @@
11
11
  "lint": "eslint . --ext .ts",
12
12
  "lint:fix": "eslint . --ext .ts --fix",
13
13
  "codecov:browser": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../../",
14
- "precompile": "tsc --version && lerna run version --scope @opentelemetry/plugin-react-load --include-filtered-dependencies",
14
+ "precompile": "tsc --version && lerna run version --scope @opentelemetry/plugin-react-load --include-dependencies",
15
15
  "prewatch": "npm run precompile",
16
16
  "version:update": "node ../../../scripts/version-update.js",
17
17
  "compile": "npm run version:update && tsc --build tsconfig.json tsconfig.esm.json",
@@ -50,7 +50,7 @@
50
50
  "devDependencies": {
51
51
  "@babel/core": "7.15.0",
52
52
  "@opentelemetry/api": "1.0.2",
53
- "@opentelemetry/propagator-b3": "1.0.0",
53
+ "@opentelemetry/propagator-b3": "1.0.1",
54
54
  "@types/mocha": "7.0.2",
55
55
  "@types/node": "14.17.9",
56
56
  "@types/react": "17.0.16",
@@ -61,6 +61,7 @@
61
61
  "@types/webpack-env": "1.16.2",
62
62
  "babel-loader": "8.2.2",
63
63
  "codecov": "3.8.3",
64
+ "colors": "1.4.0",
64
65
  "gts": "3.1.0",
65
66
  "istanbul-instrumenter-loader": "3.0.1",
66
67
  "karma": "5.2.3",
@@ -74,7 +75,7 @@
74
75
  "react": "17.0.2",
75
76
  "react-dom": "17.0.2",
76
77
  "rimraf": "3.0.2",
77
- "sinon": "11.1.2",
78
+ "sinon": "12.0.1",
78
79
  "ts-loader": "8.3.0",
79
80
  "ts-mocha": "8.0.0",
80
81
  "typescript": "4.3.5",
@@ -94,5 +95,5 @@
94
95
  "@opentelemetry/semantic-conventions": "^1.0.0",
95
96
  "shimmer": "^1.2.1"
96
97
  },
97
- "gitHead": "f80834b97bd8e5b1f78923b40fd69d60691c6ff4"
98
+ "gitHead": "edfc04cbe3e7faaa365724ddc26bf702b68cc008"
98
99
  }