зеркало из https://github.com/Azure/autorest.git
Bum,p
This commit is contained in:
Родитель
8269248db9
Коммит
3b8ba3389b
|
@ -1,11 +0,0 @@
|
||||||
{
|
|
||||||
"changes": [
|
|
||||||
{
|
|
||||||
"packageName": "@autorest/configuration",
|
|
||||||
"comment": "Added `detail-stacktrace` flag",
|
|
||||||
"type": "patch"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"packageName": "@autorest/configuration",
|
|
||||||
"email": "tiguerin@microsoft.com"
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
{
|
|
||||||
"changes": [
|
|
||||||
{
|
|
||||||
"packageName": "@autorest/core",
|
|
||||||
"comment": "Added `detail-stacktrace` flag to show async stacktrace",
|
|
||||||
"type": "patch"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"packageName": "@autorest/core",
|
|
||||||
"email": "tiguerin@microsoft.com"
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
{
|
|
||||||
"changes": [
|
|
||||||
{
|
|
||||||
"packageName": "autorest",
|
|
||||||
"comment": "Added `detail-stacktrace` flag to show async stacktrace",
|
|
||||||
"type": "patch"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"packageName": "autorest",
|
|
||||||
"email": "tiguerin@microsoft.com"
|
|
||||||
}
|
|
|
@ -1,6 +1,26 @@
|
||||||
{
|
{
|
||||||
"name": "autorest",
|
"name": "autorest",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"version": "3.5.2",
|
||||||
|
"tag": "autorest_v3.5.2",
|
||||||
|
"date": "Wed, 08 Dec 2021 20:03:51 GMT",
|
||||||
|
"comments": {
|
||||||
|
"patch": [
|
||||||
|
{
|
||||||
|
"comment": "Added `detail-stacktrace` flag to show async stacktrace"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dependency": [
|
||||||
|
{
|
||||||
|
"comment": "Updating dependency \"@autorest/configuration\" from `~1.8.2` to `~1.8.3`"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"comment": "Updating dependency \"@autorest/core\" from `~3.7.0` to `~3.7.4`"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "3.5.1",
|
"version": "3.5.1",
|
||||||
"tag": "autorest_v3.5.1",
|
"tag": "autorest_v3.5.1",
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
# Change Log - autorest
|
# Change Log - autorest
|
||||||
|
|
||||||
This log was last generated on Tue, 30 Nov 2021 15:50:35 GMT and should not be manually modified.
|
This log was last generated on Wed, 08 Dec 2021 20:03:51 GMT and should not be manually modified.
|
||||||
|
|
||||||
|
## 3.5.2
|
||||||
|
Wed, 08 Dec 2021 20:03:51 GMT
|
||||||
|
|
||||||
|
### Patches
|
||||||
|
|
||||||
|
- Added `detail-stacktrace` flag to show async stacktrace
|
||||||
|
|
||||||
## 3.5.1
|
## 3.5.1
|
||||||
Tue, 30 Nov 2021 15:50:35 GMT
|
Tue, 30 Nov 2021 15:50:35 GMT
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "autorest",
|
"name": "autorest",
|
||||||
"version": "3.5.1",
|
"version": "3.5.2",
|
||||||
"description": "The AutoRest tool generates client libraries for accessing RESTful web services. Input to AutoRest is an OpenAPI spec that describes the REST API.",
|
"description": "The AutoRest tool generates client libraries for accessing RESTful web services. Input to AutoRest is an OpenAPI spec that describes the REST API.",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12.0.0"
|
"node": ">=12.0.0"
|
||||||
|
@ -43,8 +43,8 @@
|
||||||
},
|
},
|
||||||
"typings": "./dist/exports.d.ts",
|
"typings": "./dist/exports.d.ts",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@autorest/configuration": "~1.8.2",
|
"@autorest/configuration": "~1.8.3",
|
||||||
"@autorest/core": "~3.7.0",
|
"@autorest/core": "~3.7.4",
|
||||||
"@autorest/common": "~1.4.1",
|
"@autorest/common": "~1.4.1",
|
||||||
"@azure-tools/async-io": "~3.0.0",
|
"@azure-tools/async-io": "~3.0.0",
|
||||||
"@azure-tools/extension": "~3.4.0",
|
"@azure-tools/extension": "~3.4.0",
|
||||||
|
|
|
@ -19,6 +19,7 @@ const isDebuggerEnabled =
|
||||||
const launchCore = isDebuggerEnabled ? runCoreWithRequire : runCoreOutOfProc;
|
const launchCore = isDebuggerEnabled ? runCoreWithRequire : runCoreOutOfProc;
|
||||||
|
|
||||||
if (process.argv.indexOf("--detailed-stacktrace")) {
|
if (process.argv.indexOf("--detailed-stacktrace")) {
|
||||||
|
console.log("Using detailed stacktrace in CLI");
|
||||||
require("longjohn");
|
require("longjohn");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,23 @@
|
||||||
{
|
{
|
||||||
"name": "@autorest/core",
|
"name": "@autorest/core",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"version": "3.7.4",
|
||||||
|
"tag": "@autorest/core_v3.7.4",
|
||||||
|
"date": "Wed, 08 Dec 2021 20:03:51 GMT",
|
||||||
|
"comments": {
|
||||||
|
"patch": [
|
||||||
|
{
|
||||||
|
"comment": "Added `detail-stacktrace` flag to show async stacktrace"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dependency": [
|
||||||
|
{
|
||||||
|
"comment": "Updating dependency \"@autorest/configuration\" from `~1.8.2` to `~1.8.3`"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "3.7.2",
|
"version": "3.7.2",
|
||||||
"tag": "@autorest/core_v3.7.2",
|
"tag": "@autorest/core_v3.7.2",
|
||||||
|
|
|
@ -1,9 +1,17 @@
|
||||||
# Change Log - @autorest/core
|
# Change Log - @autorest/core
|
||||||
|
|
||||||
This log was last generated on Wed, 01 Dec 2021 22:39:16 GMT and should not be manually modified.
|
This log was last generated on Wed, 08 Dec 2021 20:03:51 GMT and should not be manually modified.
|
||||||
|
|
||||||
## 3.7.3
|
## 3.7.4
|
||||||
|
Wed, 08 Dec 2021 20:03:51 GMT
|
||||||
|
|
||||||
|
### Patches
|
||||||
|
|
||||||
|
- Added `detail-stacktrace` flag to show async stacktrace
|
||||||
|
|
||||||
|
## 3.7.2
|
||||||
Tue, 07 Dec 2021 22:39:16 GMT
|
Tue, 07 Dec 2021 22:39:16 GMT
|
||||||
|
|
||||||
_Version update only_
|
_Version update only_
|
||||||
|
|
||||||
## 3.7.2
|
## 3.7.2
|
||||||
|
@ -185,7 +193,7 @@ Fri, 09 Apr 2021 19:53:22 GMT
|
||||||
|
|
||||||
### Minor changes
|
### Minor changes
|
||||||
|
|
||||||
- **Added** Semantic validator plugin
|
- **Added** Semantic validator plugin
|
||||||
- **Feature** Add sourcemap support for errors providing original location of problem
|
- **Feature** Add sourcemap support for errors providing original location of problem
|
||||||
- **Added** support for emitting statistics of the specs and resuting model
|
- **Added** support for emitting statistics of the specs and resuting model
|
||||||
|
|
||||||
|
@ -331,7 +339,7 @@ Tue, 4 Feb 2020 00:00:00 GMT
|
||||||
|
|
||||||
- rebuild to pick up latest data-store to fix the caching filename size
|
- rebuild to pick up latest data-store to fix the caching filename size
|
||||||
- OAI2-to-OAI3 converter update in perks.
|
- OAI2-to-OAI3 converter update in perks.
|
||||||
- TransformerViaPointer was turning null into {}
|
- TransformerViaPointer was turning null into {}
|
||||||
- rebuild to fix NPM publishing problem.
|
- rebuild to fix NPM publishing problem.
|
||||||
- remove additionalProperties: false so v2 generators don't choke.
|
- remove additionalProperties: false so v2 generators don't choke.
|
||||||
- rebuild to pick up perks change to fix multibyte utf8 over byte boundary problem
|
- rebuild to pick up perks change to fix multibyte utf8 over byte boundary problem
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@autorest/core",
|
"name": "@autorest/core",
|
||||||
"version": "3.7.3",
|
"version": "3.7.4",
|
||||||
"description": "AutoRest core module",
|
"description": "AutoRest core module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12.0.0"
|
"node": ">=12.0.0"
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
"typings": "./dist/exports.d.ts",
|
"typings": "./dist/exports.d.ts",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@autorest/common": "~1.4.1",
|
"@autorest/common": "~1.4.1",
|
||||||
"@autorest/configuration": "~1.8.2",
|
"@autorest/configuration": "~1.8.3",
|
||||||
"@autorest/schemas": "~1.3.2",
|
"@autorest/schemas": "~1.3.2",
|
||||||
"@autorest/test-utils": "~0.5.0",
|
"@autorest/test-utils": "~0.5.0",
|
||||||
"@azure-tools/async-io": "~3.0.0",
|
"@azure-tools/async-io": "~3.0.0",
|
||||||
|
|
|
@ -115,6 +115,7 @@ async function currentMain(logger: IAutorestLogger, args: AutorestCliArgs): Prom
|
||||||
debug = debug || (args.options["debug"] ?? false);
|
debug = debug || (args.options["debug"] ?? false);
|
||||||
|
|
||||||
if (args.options["detailed-stacktrace"]) {
|
if (args.options["detailed-stacktrace"]) {
|
||||||
|
console.log("Using detailed stacktrace in @autorest/core");
|
||||||
require("longjohn");
|
require("longjohn");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "@autorest/configuration",
|
"name": "@autorest/configuration",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"version": "1.8.3",
|
||||||
|
"tag": "@autorest/configuration_v1.8.3",
|
||||||
|
"date": "Wed, 08 Dec 2021 20:03:51 GMT",
|
||||||
|
"comments": {
|
||||||
|
"patch": [
|
||||||
|
{
|
||||||
|
"comment": "Added `detail-stacktrace` flag"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "1.8.2",
|
"version": "1.8.2",
|
||||||
"tag": "@autorest/configuration_v1.8.2",
|
"tag": "@autorest/configuration_v1.8.2",
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
# Change Log - @autorest/configuration
|
# Change Log - @autorest/configuration
|
||||||
|
|
||||||
This log was last generated on Tue, 07 Dec 2021 16:36:46 GMT and should not be manually modified.
|
This log was last generated on Wed, 08 Dec 2021 20:03:51 GMT and should not be manually modified.
|
||||||
|
|
||||||
|
## 1.8.3
|
||||||
|
Wed, 08 Dec 2021 20:03:51 GMT
|
||||||
|
|
||||||
|
### Patches
|
||||||
|
|
||||||
|
- Added `detail-stacktrace` flag
|
||||||
|
|
||||||
## 1.8.2
|
## 1.8.2
|
||||||
Tue, 07 Dec 2021 16:36:46 GMT
|
Tue, 07 Dec 2021 16:36:46 GMT
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@autorest/configuration",
|
"name": "@autorest/configuration",
|
||||||
"version": "1.8.2",
|
"version": "1.8.3",
|
||||||
"description": "Autorest configuration",
|
"description": "Autorest configuration",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
|
|
|
@ -30,8 +30,8 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/Azure/autorest#readme",
|
"homepage": "https://github.com/Azure/autorest#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@autorest/core": "~3.7.0",
|
"@autorest/core": "~3.7.4",
|
||||||
"autorest": "~3.5.0",
|
"autorest": "~3.5.2",
|
||||||
"source-map-support": "^0.5.19"
|
"source-map-support": "^0.5.19"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/Azure/autorest.compare#readme",
|
"homepage": "https://github.com/Azure/autorest.compare#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"autorest": "~3.5.0",
|
"autorest": "~3.5.2",
|
||||||
"chalk": "^4.1.0",
|
"chalk": "^4.1.0",
|
||||||
"diff": "^4.0.1",
|
"diff": "^4.0.1",
|
||||||
"js-yaml": "~4.0.0",
|
"js-yaml": "~4.0.0",
|
||||||
|
|
Загрузка…
Ссылка в новой задаче