Skip to content
This repository was archived by the owner on Jun 26, 2023. It is now read-only.

Commit 7368a36

Browse files
deps: bump aegir from 37.12.1 to 38.1.0 (#335)
* deps: bump aegir from 37.12.1 to 38.1.0 Bumps [aegir](https://github.com/ipfs/aegir) from 37.12.1 to 38.1.0. - [Release notes](https://github.com/ipfs/aegir/releases) - [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md) - [Commits](ipfs/aegir@v37.12.1...v38.1.0) --- updated-dependencies: - dependency-name: aegir dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore: fix linting errors * chore: update config 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 d887537 commit 7368a36

File tree

100 files changed

+244
-223
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+244
-223
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"release": "npm run docs:no-publish && aegir run release && npm run docs"
4141
},
4242
"dependencies": {
43-
"aegir": "^37.9.0"
43+
"aegir": "^38.1.0"
4444
},
4545
"workspaces": [
4646
"packages/*"

packages/interface-address-manager/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- [Usage](#usage)
1414
- [API Docs](#api-docs)
1515
- [License](#license)
16-
- [Contribute](#contribute)
16+
- [Contribution](#contribution)
1717

1818
## Install
1919

@@ -38,6 +38,6 @@ Licensed under either of
3838
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
3939
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
4040

41-
## Contribute
41+
## Contribution
4242

4343
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-address-manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
"@multiformats/multiaddr": "^11.0.0"
137137
},
138138
"devDependencies": {
139-
"aegir": "^37.9.0"
139+
"aegir": "^38.1.0"
140140
},
141141
"typedoc": {
142142
"entryPoint": "./src/index.ts"

packages/interface-compliance-tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- [Usage](#usage)
1414
- [API Docs](#api-docs)
1515
- [License](#license)
16-
- [Contribute](#contribute)
16+
- [Contribution](#contribution)
1717

1818
## Install
1919

@@ -36,6 +36,6 @@ Licensed under either of
3636
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
3737
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
3838

39-
## Contribute
39+
## Contribution
4040

4141
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-compliance-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
"release": "aegir release"
157157
},
158158
"dependencies": {
159-
"aegir": "^37.9.0"
159+
"aegir": "^38.1.0"
160160
},
161161
"typedoc": {
162162
"entryPoint": "./src/index.ts"

packages/interface-compliance-tests/src/is-valid-tick.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* A tick is considered valid if it happened between now
44
* and `ms` milliseconds ago
55
*/
6-
export function isValidTick (date?: number, ms: number = 5000) {
6+
export function isValidTick (date?: number, ms: number = 5000): boolean {
77
if (date == null) {
88
throw new Error('date must be a number')
99
}

packages/interface-connection-compliance-tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- [Usage](#usage)
1414
- [API Docs](#api-docs)
1515
- [License](#license)
16-
- [Contribute](#contribute)
16+
- [Contribution](#contribution)
1717

1818
## Install
1919

@@ -56,6 +56,6 @@ Licensed under either of
5656
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
5757
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
5858

59-
## Contribute
59+
## Contribution
6060

6161
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-connection-compliance-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"dependencies": {
135135
"@libp2p/interface-compliance-tests": "^3.0.0",
136136
"@libp2p/interface-connection": "^3.0.0",
137-
"aegir": "^37.9.0",
137+
"aegir": "^38.1.0",
138138
"sinon": "^15.0.0",
139139
"ts-sinon": "^2.0.2"
140140
},

packages/interface-connection-compliance-tests/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { stubInterface } from 'ts-sinon'
44
import type { TestSetup } from '@libp2p/interface-compliance-tests'
55
import type { Connection, Stream } from '@libp2p/interface-connection'
66

7-
export default (test: TestSetup<Connection>) => {
7+
export default (test: TestSetup<Connection>): void => {
88
describe('connection', () => {
99
describe('open connection', () => {
1010
let connection: Connection
@@ -129,7 +129,7 @@ export default (test: TestSetup<Connection>) => {
129129
it.skip('should track inbound streams', async () => {
130130
// Add an remotely opened stream
131131
const stream = stubInterface<Stream>()
132-
await connection.addStream(stream)
132+
connection.addStream(stream)
133133
expect(stream).to.have.property('direction', 'inbound')
134134
})
135135

packages/interface-connection-encrypter-compliance-tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- [Usage](#usage)
1414
- [API Docs](#api-docs)
1515
- [License](#license)
16-
- [Contribute](#contribute)
16+
- [Contribution](#contribution)
1717

1818
## Install
1919

@@ -49,6 +49,6 @@ Licensed under either of
4949
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
5050
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
5151

52-
## Contribute
52+
## Contribution
5353

5454
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

0 commit comments

Comments
 (0)