Skip to content

Commit 481f45a

Browse files
Bump the npm_and_yarn group across 2 directories with 2 updates (#135)
* Bump the npm_and_yarn group across 2 directories with 2 updates Bumps the npm_and_yarn group with 2 updates in the / directory: [protobufjs-cli](https://github.com/protobufjs/protobuf.js) and [@protobufjs/utf8](https://github.com/dcodeIO/protobuf.js). Bumps the npm_and_yarn group with 1 update in the /examples/disaster-recovery-example directory: [@protobufjs/utf8](https://github.com/dcodeIO/protobuf.js). Updates `protobufjs-cli` from 1.1.1 to 1.2.1 - [Release notes](https://github.com/protobufjs/protobuf.js/releases) - [Changelog](https://github.com/protobufjs/protobuf.js/blob/master/CHANGELOG.md) - [Commits](protobufjs/protobuf.js@protobufjs-cli-v1.1.1...protobufjs-cli-v1.2.1) Updates `@protobufjs/utf8` from 1.1.0 to 1.1.1 - [Release notes](https://github.com/dcodeIO/protobuf.js/releases) - [Changelog](https://github.com/protobufjs/protobuf.js/blob/master/CHANGELOG.md) - [Commits](protobufjs/protobuf.js@protobufjs-cli-v1.1.0...protobufjs-cli-v1.1.1) Updates `@protobufjs/utf8` from 1.1.0 to 1.1.1 - [Release notes](https://github.com/dcodeIO/protobuf.js/releases) - [Changelog](https://github.com/protobufjs/protobuf.js/blob/master/CHANGELOG.md) - [Commits](protobufjs/protobuf.js@protobufjs-cli-v1.1.0...protobufjs-cli-v1.1.1) --- updated-dependencies: - dependency-name: protobufjs-cli dependency-version: 1.2.1 dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: "@protobufjs/utf8" dependency-version: 1.1.1 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: "@protobufjs/utf8" dependency-version: 1.1.1 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com> * Fix build issue --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Craig Colegrove <craig.colegrove@ironcorelabs.com>
1 parent 12c073c commit 481f45a

5 files changed

Lines changed: 369 additions & 211 deletions

File tree

examples/disaster-recovery-example/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@
7676
integrity sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=
7777

7878
"@protobufjs/utf8@^1.1.0":
79-
version "1.1.0"
80-
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
81-
integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=
79+
version "1.1.1"
80+
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.1.tgz#eaee5900122c110a3dbcb728c0597014a2621774"
81+
integrity sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==
8282

8383
"@types/long@^4.0.0", "@types/long@^4.0.1":
8484
version "4.0.1"

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
"protobuild": "pbjs -t static-module -w commonjs -o proto/ts/DocumentHeader.js proto/document_header.proto && pbts -o proto/ts/DocumentHeader.d.ts proto/ts/DocumentHeader.js"
2626
},
2727
"dependencies": {
28-
"futurejs": "2.2.0",
28+
"futurejs": "^2.2.1",
2929
"joi": "^18.0.2",
3030
"miscreant": "^0.3.2",
3131
"node-fetch": "2.6.12",
32-
"protobufjs": "^7.2.5"
32+
"protobufjs": "^8.1.0"
3333
},
3434
"devDependencies": {
3535
"@types/jest": "^25.2.3",
@@ -41,8 +41,8 @@
4141
"jest": "^26.4.1",
4242
"jest-extended": "^0.11.5",
4343
"prompt": "^1.0.0",
44-
"protobufjs-cli": "^1.1.1",
45-
"shelljs": "^0.8.4",
44+
"protobufjs-cli": "^2.2.0",
45+
"shelljs": "^0.10.0",
4646
"ts-jest": "^26.2.0",
4747
"ts-node": "^8.10.2",
4848
"typescript": "^3.9.7",

proto/ts/DocumentHeader.d.ts

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ export namespace ironcorelabs {
1414

1515
/** DataControlPlatformHeader segmentId */
1616
segmentId?: (number|Long|null);
17+
18+
/** Unknown fields preserved while decoding */
19+
$unknowns?: Uint8Array[];
1720
}
1821

1922
/** Represents a DataControlPlatformHeader. */
@@ -25,6 +28,9 @@ export namespace ironcorelabs {
2528
*/
2629
constructor(properties?: ironcorelabs.proto.IDataControlPlatformHeader);
2730

31+
/** Unknown fields preserved while decoding */
32+
public $unknowns?: Uint8Array[];
33+
2834
/** DataControlPlatformHeader documentId. */
2935
public documentId: string;
3036

@@ -102,18 +108,21 @@ export namespace ironcorelabs {
102108
public toJSON(): { [k: string]: any };
103109

104110
/**
105-
* Gets the default type url for DataControlPlatformHeader
106-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
107-
* @returns The default type url
111+
* Gets the type url for DataControlPlatformHeader
112+
* @param [prefix] Custom type url prefix, defaults to `"type.googleapis.com"`
113+
* @returns The type url
108114
*/
109-
public static getTypeUrl(typeUrlPrefix?: string): string;
115+
public static getTypeUrl(prefix?: string): string;
110116
}
111117

112118
/** Properties of a SaaSShieldHeader. */
113119
interface ISaaSShieldHeader {
114120

115121
/** SaaSShieldHeader tenantId */
116122
tenantId?: (string|null);
123+
124+
/** Unknown fields preserved while decoding */
125+
$unknowns?: Uint8Array[];
117126
}
118127

119128
/** Represents a SaaSShieldHeader. */
@@ -125,6 +134,9 @@ export namespace ironcorelabs {
125134
*/
126135
constructor(properties?: ironcorelabs.proto.ISaaSShieldHeader);
127136

137+
/** Unknown fields preserved while decoding */
138+
public $unknowns?: Uint8Array[];
139+
128140
/** SaaSShieldHeader tenantId. */
129141
public tenantId: string;
130142

@@ -199,11 +211,11 @@ export namespace ironcorelabs {
199211
public toJSON(): { [k: string]: any };
200212

201213
/**
202-
* Gets the default type url for SaaSShieldHeader
203-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
204-
* @returns The default type url
214+
* Gets the type url for SaaSShieldHeader
215+
* @param [prefix] Custom type url prefix, defaults to `"type.googleapis.com"`
216+
* @returns The type url
205217
*/
206-
public static getTypeUrl(typeUrlPrefix?: string): string;
218+
public static getTypeUrl(prefix?: string): string;
207219
}
208220

209221
/** Properties of a v3DocumentHeader. */
@@ -217,6 +229,9 @@ export namespace ironcorelabs {
217229

218230
/** v3DocumentHeader saasShield */
219231
saasShield?: (ironcorelabs.proto.ISaaSShieldHeader|null);
232+
233+
/** Unknown fields preserved while decoding */
234+
$unknowns?: Uint8Array[];
220235
}
221236

222237
/** Represents a v3DocumentHeader. */
@@ -228,6 +243,9 @@ export namespace ironcorelabs {
228243
*/
229244
constructor(properties?: ironcorelabs.proto.Iv3DocumentHeader);
230245

246+
/** Unknown fields preserved while decoding */
247+
public $unknowns?: Uint8Array[];
248+
231249
/** v3DocumentHeader sig. */
232250
public sig: Uint8Array;
233251

@@ -311,11 +329,11 @@ export namespace ironcorelabs {
311329
public toJSON(): { [k: string]: any };
312330

313331
/**
314-
* Gets the default type url for v3DocumentHeader
315-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
316-
* @returns The default type url
332+
* Gets the type url for v3DocumentHeader
333+
* @param [prefix] Custom type url prefix, defaults to `"type.googleapis.com"`
334+
* @returns The type url
317335
*/
318-
public static getTypeUrl(typeUrlPrefix?: string): string;
336+
public static getTypeUrl(prefix?: string): string;
319337
}
320338
}
321339
}

0 commit comments

Comments
 (0)