renovate 42.69.1 → 42.69.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.
|
@@ -22,7 +22,7 @@ export interface SpanParameters {
|
|
|
22
22
|
/**
|
|
23
23
|
* Attributes which should be added to the span
|
|
24
24
|
*/
|
|
25
|
-
attributes?:
|
|
25
|
+
attributes?: RenovateSpanAttributes | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* Should this span be added to the root span or to the current active span
|
|
28
28
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../lib/instrumentation/types.ts"],"names":[],"mappings":";;;AAoEa,QAAA,mBAAmB,GAAG,gBAAgB,CAAC;AAEpD;;;;;;GAMG;AACU,QAAA,2BAA2B,GAAG,wBAAwB,CAAC;AAEpE;;;;KAIK;AACQ,QAAA,uBAAuB,GAAG,oBAAoB,CAAC","sourcesContent":["import type { Attributes, SpanKind, SpanOptions } from '@opentelemetry/api';\nimport type { RenovateSplit } from '../config/types';\nimport type { BunyanRecord } from '../logger/types';\nimport type { PackageFile } from '../modules/manager/types';\nimport type { BranchCache } from '../util/cache/repository/types';\nimport type { GitOperationType } from '../util/git/types';\n\nexport type RenovateSpanOptions = {\n attributes?: RenovateSpanAttributes;\n} & SpanOptions;\n\nexport type RenovateSpanAttributes = {\n [ATTR_RENOVATE_SPLIT]?: RenovateSplit;\n [ATTR_VCS_GIT_OPERATION_TYPE]?: GitOperationType;\n} & Attributes;\n\n/**\n * The instrumentation decorator parameters.\n */\nexport interface SpanParameters {\n /**\n * The name of the span\n */\n name: string;\n\n /**\n * Attributes which should be added to the span\n */\n attributes?:
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../lib/instrumentation/types.ts"],"names":[],"mappings":";;;AAoEa,QAAA,mBAAmB,GAAG,gBAAgB,CAAC;AAEpD;;;;;;GAMG;AACU,QAAA,2BAA2B,GAAG,wBAAwB,CAAC;AAEpE;;;;KAIK;AACQ,QAAA,uBAAuB,GAAG,oBAAoB,CAAC","sourcesContent":["import type { Attributes, SpanKind, SpanOptions } from '@opentelemetry/api';\nimport type { RenovateSplit } from '../config/types';\nimport type { BunyanRecord } from '../logger/types';\nimport type { PackageFile } from '../modules/manager/types';\nimport type { BranchCache } from '../util/cache/repository/types';\nimport type { GitOperationType } from '../util/git/types';\n\nexport type RenovateSpanOptions = {\n attributes?: RenovateSpanAttributes;\n} & SpanOptions;\n\nexport type RenovateSpanAttributes = {\n [ATTR_RENOVATE_SPLIT]?: RenovateSplit;\n [ATTR_VCS_GIT_OPERATION_TYPE]?: GitOperationType;\n} & Attributes;\n\n/**\n * The instrumentation decorator parameters.\n */\nexport interface SpanParameters {\n /**\n * The name of the span\n */\n name: string;\n\n /**\n * Attributes which should be added to the span\n */\n attributes?: RenovateSpanAttributes | undefined;\n\n /**\n * Should this span be added to the root span or to the current active span\n */\n ignoreParentSpan?: boolean;\n\n /**\n * Type of span this represents. Default: SpanKind.Internal\n */\n kind?: SpanKind;\n}\n\nexport interface Report {\n problems: BunyanRecord[];\n repositories: Record<string, RepoReport>;\n}\n\ninterface RepoReport {\n problems: BunyanRecord[];\n branches: Partial<BranchCache>[];\n packageFiles: Record<string, PackageFile[]>;\n libYearsWithStatus?: LibYearsWithStatus;\n}\n\nexport interface LibYearsWithStatus {\n libYears: LibYears;\n dependencyStatus: DependencyStatus;\n}\n\nexport interface LibYears {\n total: number;\n managers: Record<string, number>;\n}\n\nexport interface DependencyStatus {\n outdated: number;\n total: number;\n}\n\nexport const ATTR_RENOVATE_SPLIT = 'renovate.split';\n\n/**\n * the Git Version Control System (VCS)'s Operation Type\n *\n * @see GitOperationType\n * @see https://opentelemetry.io/docs/specs/semconv/registry/attributes/vcs/\n *\n */\nexport const ATTR_VCS_GIT_OPERATION_TYPE = 'vcs.git.operation.type';\n\n/**\n * the Git Version Control System (VCS)'s subcommand\n *\n * @see https://opentelemetry.io/docs/specs/semconv/registry/attributes/vcs/\n * */\nexport const ATTR_VCS_GIT_SUBCOMMAND = 'vcs.git.subcommand';\n"]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "renovate",
|
|
3
3
|
"description": "Automated dependency updates. Flexible so you don't need to be.",
|
|
4
|
-
"version": "42.69.
|
|
4
|
+
"version": "42.69.2",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
7
7
|
"renovate": "dist/renovate.js",
|
|
@@ -91,13 +91,13 @@
|
|
|
91
91
|
"pnpm": "10.26.2"
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
|
-
"@aws-sdk/client-codecommit": "3.
|
|
95
|
-
"@aws-sdk/client-ec2": "3.
|
|
96
|
-
"@aws-sdk/client-ecr": "3.
|
|
97
|
-
"@aws-sdk/client-eks": "3.
|
|
98
|
-
"@aws-sdk/client-rds": "3.
|
|
99
|
-
"@aws-sdk/client-s3": "3.
|
|
100
|
-
"@aws-sdk/credential-providers": "3.
|
|
94
|
+
"@aws-sdk/client-codecommit": "3.958.0",
|
|
95
|
+
"@aws-sdk/client-ec2": "3.958.0",
|
|
96
|
+
"@aws-sdk/client-ecr": "3.958.0",
|
|
97
|
+
"@aws-sdk/client-eks": "3.958.0",
|
|
98
|
+
"@aws-sdk/client-rds": "3.958.0",
|
|
99
|
+
"@aws-sdk/client-s3": "3.958.0",
|
|
100
|
+
"@aws-sdk/credential-providers": "3.958.0",
|
|
101
101
|
"@baszalmstra/rattler": "0.2.1",
|
|
102
102
|
"@breejs/later": "4.2.0",
|
|
103
103
|
"@cdktf/hcl2json": "0.21.0",
|
package/renovate-schema.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"title": "JSON schema for Renovate 42.69.
|
|
2
|
+
"title": "JSON schema for Renovate 42.69.2 config files (https://renovatebot.com/)",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
-
"x-renovate-version": "42.69.
|
|
4
|
+
"x-renovate-version": "42.69.2",
|
|
5
5
|
"allowComments": true,
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|