Skip to content

Commit bf65509

Browse files
deps: bump aegir from 45.2.1 to 46.0.4 (#150)
Bumps [aegir](https://github.com/ipfs/aegir) from 45.2.1 to 46.0.4. - [Release notes](https://github.com/ipfs/aegir/releases) - [Changelog](https://github.com/ipfs/aegir/blob/main/CHANGELOG.md) - [Commits](ipfs/aegir@v45.2.1...v46.0.4) --- updated-dependencies: - dependency-name: aegir dependency-version: 46.0.4 dependency-type: direct:production update-type: version-update:semver-major ... --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: achingbrain <[email protected]>
1 parent ecbfad9 commit bf65509

File tree

29 files changed

+110
-43
lines changed

29 files changed

+110
-43
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"docs:no-publish": "aegir docs --publish false"
3939
},
4040
"dependencies": {
41-
"aegir": "^45.0.1",
41+
"aegir": "^47.0.5",
4242
"npm-run-all": "^4.1.5"
4343
},
4444
"workspaces": [

packages/protons-benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@protobuf-ts/plugin": "^2.8.1",
5454
"@protobuf-ts/runtime": "^2.8.1",
5555
"@types/benchmark": "^2.1.1",
56-
"aegir": "^45.0.1",
56+
"aegir": "^47.0.5",
5757
"benchmark": "^2.1.4",
5858
"pbjs": "^0.0.14",
5959
"protobufjs": "^7.0.0",

packages/protons-benchmark/src/implementations/protobuf-ts/bench.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// @generated by protobuf-ts 2.8.1
22
// @generated from protobuf file "bench.proto" (syntax proto3)
33
// tslint:disable
4+
/* eslint-disable */
45
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
56
import type { IBinaryWriter } from "@protobuf-ts/runtime";
67
import { WireType } from "@protobuf-ts/runtime";

packages/protons-benchmark/src/implementations/protobufjs/bench.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable */
12
import * as $protobuf from "protobufjs";
23
/** Properties of a Foo. */
34
export interface IFoo {

packages/protons-benchmark/src/implementations/protobufjs/rpc.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable */
12
import * as $protobuf from "protobufjs";
23
/** Properties of a RPC. */
34
export interface IRPC {

packages/protons-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@
5151
"uint8arrays": "^5.0.1"
5252
},
5353
"devDependencies": {
54-
"aegir": "^45.0.1"
54+
"aegir": "^47.0.5"
5555
}
5656
}

packages/protons-runtime/src/codecs/message.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { createCodec, CODEC_TYPES, type EncodeFunction, type DecodeFunction, type Codec } from '../codec.js'
1+
import { createCodec, CODEC_TYPES } from '../codec.js'
2+
import type { EncodeFunction, DecodeFunction, Codec } from '../codec.js'
23

34
export interface Factory<A, T> {
45
new (obj: A): T

packages/protons-runtime/src/utils/reader.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ export class Uint8ArrayReader implements Reader {
5050
uint32 (): number {
5151
let value = 4294967295
5252

53-
value = (this.buf[this.pos] & 127) >>> 0; if (this.buf[this.pos++] < 128) return value
54-
value = (value | (this.buf[this.pos] & 127) << 7) >>> 0; if (this.buf[this.pos++] < 128) return value
55-
value = (value | (this.buf[this.pos] & 127) << 14) >>> 0; if (this.buf[this.pos++] < 128) return value
56-
value = (value | (this.buf[this.pos] & 127) << 21) >>> 0; if (this.buf[this.pos++] < 128) return value
57-
value = (value | (this.buf[this.pos] & 15) << 28) >>> 0; if (this.buf[this.pos++] < 128) return value
53+
value = (this.buf[this.pos] & 127) >>> 0; if (this.buf[this.pos++] < 128) { return value }
54+
value = (value | (this.buf[this.pos] & 127) << 7) >>> 0; if (this.buf[this.pos++] < 128) { return value }
55+
value = (value | (this.buf[this.pos] & 127) << 14) >>> 0; if (this.buf[this.pos++] < 128) { return value }
56+
value = (value | (this.buf[this.pos] & 127) << 21) >>> 0; if (this.buf[this.pos++] < 128) { return value }
57+
value = (value | (this.buf[this.pos] & 15) << 28) >>> 0; if (this.buf[this.pos++] < 128) { return value }
5858

5959
if ((this.pos += 5) > this.len) {
6060
this.pos = this.len

packages/protons/bin/protons.ts

100644100755
File mode changed.

packages/protons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"protons-runtime": "^5.0.0"
5555
},
5656
"devDependencies": {
57-
"aegir": "^45.0.1",
57+
"aegir": "^47.0.5",
5858
"long": "^5.2.0",
5959
"pbjs": "^0.0.14",
6060
"protobufjs": "^7.0.0",

0 commit comments

Comments
 (0)