Skip to content

Commit

Permalink
deps(dev): bump aegir from 38.1.8 to 39.0.5 (#81)
Browse files Browse the repository at this point in the history
* deps(dev): bump aegir from 38.1.8 to 39.0.5

Bumps [aegir](https://github.com/ipfs/aegir) from 38.1.8 to 39.0.5.
- [Release notes](https://github.com/ipfs/aegir/releases)
- [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md)
- [Commits](ipfs/aegir@v38.1.8...v39.0.5)

---
updated-dependencies:
- dependency-name: aegir
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: fix linting

---------

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]>
  • Loading branch information
dependabot[bot] and achingbrain authored May 11, 2023
1 parent e7a0ca1 commit e2de671
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion example-prepare.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable no-console */

import { CID } from 'multiformats/cid'
import { prepare } from '@ipld/dag-pb'
import { CID } from 'multiformats/cid'

console.log(prepare({ Data: 'some data' }))
// ->{ Data: Uint8Array(9) [115, 111, 109, 101, 32, 100, 97, 116, 97] }
Expand Down
2 changes: 1 addition & 1 deletion example.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable no-console */

import * as dagPB from '@ipld/dag-pb'
import { CID } from 'multiformats/cid'
import { sha256 } from 'multiformats/hashes/sha2'
import * as dagPB from '@ipld/dag-pb'

async function run () {
const bytes = dagPB.encode({
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,6 @@
"multiformats": "^11.0.0"
},
"devDependencies": {
"aegir": "^38.1.2"
"aegir": "^39.0.5"
}
}
2 changes: 1 addition & 1 deletion test/test-compat.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { assert } from 'aegir/chai'
import { bytes } from 'multiformats'
import { CID } from 'multiformats/cid'
import { encode, decode } from '../src/index.js'
import { encodeNode } from '../src/pb-encode.js'
import { decodeNode } from '../src/pb-decode.js'
import { encodeNode } from '../src/pb-encode.js'

// Hash is raw+identity 0x0001020304 CID(bafkqabiaaebagba)
const acid = CID.decode(Uint8Array.from([1, 85, 0, 5, 0, 1, 2, 3, 4]))
Expand Down
2 changes: 1 addition & 1 deletion test/test-edges.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import { assert } from 'aegir/chai'
import { bytes } from 'multiformats'
import { encodeNode } from '../src/pb-encode.js'
import { decodeNode } from '../src/pb-decode.js'
import { encodeNode } from '../src/pb-encode.js'

const acidBytes = Uint8Array.from([1, 85, 0, 5, 0, 1, 2, 3, 4])

Expand Down

0 comments on commit e2de671

Please sign in to comment.