Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add @helia/bitswap with sessions #409

Merged
merged 34 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
546bf66
feat: add block session support to @helia/interface
achingbrain Jan 19, 2024
5836dcd
chore: pr comments
achingbrain Jan 30, 2024
3d9cb49
chore: linting
achingbrain Jan 30, 2024
39b6f7a
chore: simplify options
achingbrain Feb 5, 2024
d1228b9
chore: createSession is not optional on blocks
achingbrain Feb 5, 2024
32713ab
chore: update utils
achingbrain Feb 6, 2024
e485722
feat: add @helia/bitswap with sessions
achingbrain Jan 30, 2024
73ab5f9
chore: fix up tests
achingbrain Jan 31, 2024
0c28d66
chore: create block brokers last to access components
achingbrain Feb 8, 2024
e9bbbe6
chore: create block brokers last to access components
achingbrain Feb 8, 2024
1dca655
chore: fix tests
achingbrain Feb 8, 2024
c7e5de1
Merge branch 'feat/add-sessions-to-interface' into feat/add-bitswap-w…
achingbrain Feb 8, 2024
d0610c9
chore: do not dedupe at the routing level as different impls return d…
achingbrain Feb 9, 2024
9aeded1
chore: add defaults to interface
achingbrain Feb 9, 2024
8e6051a
chore: remove unused dep
achingbrain Feb 9, 2024
7696bd9
Merge branch 'feat/add-sessions-to-interface' into feat/add-bitswap-w…
achingbrain Feb 9, 2024
ca1c458
chore: update constants
achingbrain Feb 9, 2024
b8e5195
Merge branch 'feat/add-sessions-to-interface' into feat/add-bitswap-w…
achingbrain Feb 9, 2024
8cd06ce
chore: reuse constants
achingbrain Feb 9, 2024
9e54ac1
chore: remove extra deps
achingbrain Feb 15, 2024
7eef3f1
chore: pass init to wantlist
achingbrain Feb 15, 2024
aabc0f4
chore: apply suggestions from code review
achingbrain Feb 22, 2024
d7d6334
chore: apply suggestions from code review
achingbrain Mar 1, 2024
8c42ec5
Merge remote-tracking branch 'origin/main' into feat/add-sessions-to-…
achingbrain Mar 1, 2024
891be37
Merge branch 'feat/add-sessions-to-interface' into feat/add-bitswap-w…
achingbrain Mar 1, 2024
0766e12
chore: fix import
achingbrain Mar 1, 2024
cba358f
chore: deps
achingbrain Mar 1, 2024
bff5357
chore: remove delay
achingbrain Mar 1, 2024
532bf9f
chore: deps
achingbrain Mar 1, 2024
0b3377e
Merge remote-tracking branch 'origin/main' into feat/add-bitswap-with…
achingbrain Apr 4, 2024
89e5afe
Merge branch 'main' into feat/add-bitswap-with-sessions
achingbrain Apr 4, 2024
99cf454
chore: remove unused method
achingbrain Apr 4, 2024
1330504
chore: remove unused field
achingbrain Apr 4, 2024
d576fad
chore: update docs
achingbrain Apr 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"packages/block-brokers": "2.0.1",
"packages/bitswap": "0.0.0",
"packages/car": "3.0.0",
"packages/dag-cbor": "3.0.0",
"packages/dag-json": "3.0.0",
Expand Down
1 change: 1 addition & 0 deletions .release-please.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
],
"packages": {
"packages/block-brokers": {},
"packages/bitswap": {},
"packages/car": {},
"packages/dag-cbor": {},
"packages/dag-json": {},
Expand Down
7 changes: 7 additions & 0 deletions packages/bitswap/.aegir.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

/** @type {import('aegir').PartialOptions} */
export default {
build: {
bundlesizeMax: '33KB'
}
}
Loading
Loading