@azure/digital-twins-core 1.1.0-alpha.20220516.1 → 1.1.0-alpha.20220524.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/README.md +1 -1
- package/package.json +4 -4
- package/CHANGELOG.md +0 -56
package/README.md
CHANGED
|
@@ -332,7 +332,7 @@ Additional examples can be found in the
|
|
|
332
332
|
Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`:
|
|
333
333
|
|
|
334
334
|
```javascript
|
|
335
|
-
|
|
335
|
+
const { setlogLevel } = require("@azure/logger");
|
|
336
336
|
|
|
337
337
|
setLogLevel("info");
|
|
338
338
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/digital-twins-core",
|
|
3
|
-
"version": "1.1.0-alpha.
|
|
3
|
+
"version": "1.1.0-alpha.20220524.1",
|
|
4
4
|
"description": "An isomorphic client library for Azure Digital Twins",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"integration-test:browser": "npm run build:test:browser && cross-env TEST_MODE=live karma start --single-run",
|
|
31
31
|
"integration-test:node": "npm run build:test:node && nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 180000 --full-trace \"dist-esm/test/{,!(browser)/**/}*.spec.js\"",
|
|
32
32
|
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
33
|
-
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
|
|
34
|
-
"lint": "eslint package.json api-extractor.json src test --ext .ts",
|
|
33
|
+
"lint:fix": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js --fix --fix-type [problem,suggestion]",
|
|
34
|
+
"lint": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js",
|
|
35
35
|
"pack": "npm pack 2>&1",
|
|
36
36
|
"test:node": "npm run clean && npm run build:test:node && npm run unit-test:node",
|
|
37
37
|
"test:browser": "npm run clean && npm run build:test:browser && npm run unit-test:browser",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"chai": "^4.2.0",
|
|
85
85
|
"cross-env": "^7.0.2",
|
|
86
86
|
"dotenv": "^8.2.0",
|
|
87
|
-
"eslint": "^
|
|
87
|
+
"eslint": "^8.0.0",
|
|
88
88
|
"inherits": "^2.0.3",
|
|
89
89
|
"karma": "^6.2.0",
|
|
90
90
|
"karma-chrome-launcher": "^3.0.0",
|
package/CHANGELOG.md
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
# Release History
|
|
2
|
-
|
|
3
|
-
## 1.1.0 (unreleased)
|
|
4
|
-
|
|
5
|
-
### Features Added
|
|
6
|
-
|
|
7
|
-
- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
|
|
8
|
-
- Updated our internal core package dependencies to their latest versions in order to add support for Opentelemetry 1.0.0 which is compatible with the latest versions of our other client libraries.
|
|
9
|
-
- Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features
|
|
10
|
-
|
|
11
|
-
### Breaking Changes
|
|
12
|
-
|
|
13
|
-
### Key Bugs Fixed
|
|
14
|
-
|
|
15
|
-
### Other Changes
|
|
16
|
-
|
|
17
|
-
- Updated our `@azure/core-tracing` dependency to the latest version (1.0.0).
|
|
18
|
-
- Notable changes include Removal of `@opentelemetry/api` as a transitive dependency and ensuring that the active context is properly propagated.
|
|
19
|
-
- Customers who would like to continue using OpenTelemetry driven tracing should visit our [OpenTelemetry Instrumentation](https://www.npmjs.com/package/@azure/opentelemetry-instrumentation-azure-sdk) package for instructions.
|
|
20
|
-
|
|
21
|
-
## 1.0.3 (2021-01-15)
|
|
22
|
-
|
|
23
|
-
- Bug Fix: include the types definition file in the shipped package
|
|
24
|
-
|
|
25
|
-
## 1.0.2 (2021-01-14)
|
|
26
|
-
|
|
27
|
-
- Bug Fix: include the types definition file in the shipped package
|
|
28
|
-
|
|
29
|
-
## 1.0.1 (2021-01-12)
|
|
30
|
-
|
|
31
|
-
- This release is an update the GA release containing the following changes:
|
|
32
|
-
- Fix publishComponentTelemetry API to follow the convention, now messageId is a mandatory argument
|
|
33
|
-
- Add E2E live and record/playback tests
|
|
34
|
-
- Add samples of delete digitaltwins and models for convenience
|
|
35
|
-
|
|
36
|
-
## 1.0.0 (2020-10-30)
|
|
37
|
-
|
|
38
|
-
- The is the GA release containing the following changes:
|
|
39
|
-
- Expose ifMatch, ifNoneMatch optional parameters for upsertDigitalTwin and upsert Relationship APIs
|
|
40
|
-
- Rename etag parameter to ifMatch
|
|
41
|
-
- Fix some documentation
|
|
42
|
-
|
|
43
|
-
## 1.0.0-preview.2 (2020-10-23)
|
|
44
|
-
|
|
45
|
-
- This release is an update of the preview with the following changes
|
|
46
|
-
- Package name changed to: `@azure/digital-twins-core`.
|
|
47
|
-
- Add span to all APIs
|
|
48
|
-
- Pull request containing the changes: https://github.com/Azure/azure-sdk-for-js/pull/11872
|
|
49
|
-
|
|
50
|
-
## 1.0.0-preview.1 (2020-09-03)
|
|
51
|
-
|
|
52
|
-
- This release is a preview of our efforts to create a client library that is user friendly and
|
|
53
|
-
idiomatic to the JavaScript ecosystem. The reasons for most of the changes in this update can be found in the
|
|
54
|
-
[Azure SDK Design Guidelines for TypeScript](https://azure.github.io/azure-sdk/typescript_introduction.html).
|
|
55
|
-
- Initial release:
|
|
56
|
-
- Package name `@azure/digital-twins`.
|