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

Release 0.24 #10043

Closed
9 of 11 tasks
BigLep opened this issue Aug 2, 2023 · 11 comments
Closed
9 of 11 tasks

Release 0.24 #10043

BigLep opened this issue Aug 2, 2023 · 11 comments
Assignees

Comments

@BigLep
Copy link
Contributor

BigLep commented Aug 2, 2023

Meta

  • Release owner: @hacdias
  • Release reviewer: @Jorropo
  • Code freeze date: 2023-10-27
  • Expected RC date: 2023-11-01 βœ…
  • 🚒 Expected final release date: 2023-11-08
  • Accompanying PR for improving the release process (example):
  • Accompanying Issue for updating the infra (example):

Changelog

https://github.com/ipfs/kubo/blob/master/docs/changelogs/v0.24.md (in progress)

Items in scope

https://github.com/orgs/ipfs/projects/16/views/3?filterQuery=iteration%3A%22kubo+0.24%22

Required

Optional

@BigLep BigLep pinned this issue Aug 22, 2023
@BigLep BigLep mentioned this issue Aug 22, 2023
3 tasks
@BigLep
Copy link
Contributor Author

BigLep commented Oct 6, 2023

A few changes this time around...

  1. Really going to try an enforce that whatever is in master/main when we hit the RC date is what makes it into the release.
  2. Release day is now Wednesday instead of Thursday
  3. We have a light "code freeze" a few days before the RC. We aren't opening new PRs at that point, and any open PRs that aren't merged yet should be very close to landing. (This is squishy and we'll be playing it be ear, but point is to set ourselves up to not try and land more functionality the last few days before the RC date.)

@BigLep
Copy link
Contributor Author

BigLep commented Oct 9, 2023

Doh! I hadn't saved the targeted dates for the release in the issue. I have done so now.

The Kubo release process document has also received some updates: https://pl-strflt.notion.site/Kubo-Release-Process-5a5d066264704009a28a79cff93062c4?pvs=4

@BigLep
Copy link
Contributor Author

BigLep commented Oct 27, 2023

For anyone watching, maintainers are still planing to enter code freeze end of day today (2023-10-27) with some minimal extra landing next week before working on the RC on 2023-11-01.

@hacdias
Copy link
Member

hacdias commented Nov 1, 2023

0.24.0-rc1 Checlist

Labels

If an item should be executed for a specific release type, it should be labeled with one of the following labels:

  • execute ONLY when releasing a Release Candidate
  • execute ONLY when releasing a Final Release

Otherwise, it means it should be executed for ALL release types.

Patch releases should follow the same process as .0 releases. If some item should NOT be executed for a Patch Release, it should be labeled with:

  • do NOT execute when releasing a Patch Release

Before the release

This section covers tasks to be done ahead of the release.

The release

This section covers tasks to be done during each release.

  • Prepare the release branch and update version numbers accordingly
    using ./kuboreleaser --skip-check-before release --version vX.Y.Z(-rcN) prepare-branch or ...
    • create a new branch release-vX.Y.Z
      • use master as base if Z == 0
      • use release as base if Z > 0
    • update the CurrentVersionNumber in version.go in the master branch to vX.Y+1.0-dev
    • update the CurrentVersionNumber in version.go in the release-vX.Y branch to vX.Y.Z(-RCN)
    • create a draft PR from release-vX.Y to release
    • Cherry-pick commits from master to the release-vX.Y.Z using git cherry-pick -x <commit>
    • Add full changelog and contributors to the changelog
      • Replace the Changelog and Contributors sections of the changelog with the stdout of ./bin/mkreleaselog
        • do NOT copy the stderr
    • verify all CI checks on the PR from release-vX.Y to release are passing
    • Merge the PR from release-vX.Y to release using the Create a merge commit
      • do NOT use Squash and merge nor Rebase and merge because we need to be able to sign the merge commit
      • do NOT delete the release-vX.Y branch
  • Run Thunderdome testing, see the Thunderdome release docs for details
    • create a PR and merge the experiment config into Thunderdome
  • Create the release tag
    using ./kuboreleaser release --version vX.Y.Z(-rcN) tag or ...
    • This is a dangerous operation! Go and Docker publishing are difficult to reverse! Have the release reviewer verify all the commands marked with ⚠️!
    • ⚠️ tag the HEAD commit using git tag -s vX.Y.Z(-RCN) -m 'Prerelease X.Y.Z(-RCN)'
    • ⚠️ tag the HEAD commit of the release branch using git tag -s vX.Y.Z(-RCN) -m 'Release X.Y.Z(-RCN)'
    • ⚠️ verify the tag is signed and tied to the correct commit using git show vX.Y.Z(-RCN)
    • ⚠️ push the tag to GitHub using git push origin vX.Y.Z(-RCN)
      • do NOT use git push --tags because it pushes all your local tags
  • Publish the release to DockerHub
    using ./kuboreleaser --skip-check-before --skip-run release --version vX.Y.Z(-rcN) publish-to-dockerhub or ...
  • Publish the release to dist.ipfs.tech
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-distributions or ...
    • check out ipfs/distributions
    • run ./dist.sh add-version kubo vX.Y.Z(-RCN) to add the new version to the versions file
    • create and merge the PR which updates dists/kubo/versions and dists/go-ipfs/versions ( and dists/kubo/current_version and dists/go-ipfs/current_version)
    • wait for the CI workflow run initiated by the merge to master to finish
    • verify the release is available on dist.ipfs.io
  • Publish the release to NPM
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-npm (⚠️ you might need to run the command a couple of times because GHA might not be able to see the new distribution straight away due to caching) or ...
  • Publish the release to GitHub
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-github or ...
    • create a new release on GitHub
      • RC example
      • FINAL example
      • use the vX.Y.Z(-RCN) tag
      • link to the release issue
      • link to the changelog in the description
      • check the This is a pre-release checkbox
      • copy the changelog (without the header) in the description
      • do NOT check the This is a pre-release checkbox
    • run the sync-release-assets workflow
    • wait for the sync-release-assets workflow run to finish
    • verify the release assets are present in the GitHub release
  • Promote the release
    using ./kuboreleaser release --version vX.Y.Z(-rcN) promote or ...
  • Test the new version with ipfs-companion
    using ./kuboreleaser release --version vX.Y.Z(-rcN) test-ipfs-companion or ...
    • run the e2e
      • use vX.Y.Z(-RCN) as the Kubo image version
    • wait for the e2e workflow run to finish
  • Update Kubo in ipfs-desktop
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-desktop or ...
  • Update Kubo docs
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-docs or ...
  • Ask Brave to update Kubo in Brave Desktop
  • Create a blog entry on blog.ipfs.tech
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-blog --date YYYY-MM-DD or ...
    • create a PR which adds a release note for the new Kubo version
    • merge the PR
    • verify the blog entry was published
  • Merge the release branch back into master, ignoring the changes to version.go (keep the -dev) version,
    using ./kuboreleaser release --version vX.Y.Z(-rcN) merge-branch or ...
    • create a new branch merge-release-vX.Y.Z from release
    • create and merge a PR from merge-release-vX.Y.Z to master
  • Prepare for the next release
    using ./kuboreleaser release --version vX.Y.Z(-rcN) prepare-next or ...
    • Create the next changelog
    • Link to the new changelog in the CHANGELOG.md file
    • Create the next release issue
  • Create a dependency update PR
    • check out ipfs/kubo
    • run go get -u in root directory
    • run go mod tidy in root directory
    • run go mod tidy in docs/examples/kubo-as-a-library directory
    • create a PR which updates go.mod and go.sum
    • add the PR to the next release milestone
  • Close the release issue

@hacdias
Copy link
Member

hacdias commented Nov 1, 2023

Early testers ping for v0.24.0-rc1 testing πŸ˜„.

You're getting this message because you're listed here. Please update this list if you no longer want to be included.

@BigLep
Copy link
Contributor Author

BigLep commented Nov 2, 2023

2023-11-02 conversation:

  • New RC with latest libp2p and WebRTC direct as non default
  • Then start on Thunderdome
  • Given this is an RC, fine to do on Friday 2023-11-03

@hacdias
Copy link
Member

hacdias commented Nov 3, 2023

0.24.0-rc2 Checklist

This section covers tasks to be done during each release.

  • Prepare the release branch and update version numbers accordingly
    using ./kuboreleaser --skip-check-before release --version vX.Y.Z(-rcN) prepare-branch or ...
    • create a new branch release-vX.Y.Z
      • use master as base if Z == 0
      • use release as base if Z > 0
    • update the CurrentVersionNumber in version.go in the master branch to vX.Y+1.0-dev
    • update the CurrentVersionNumber in version.go in the release-vX.Y branch to vX.Y.Z(-RCN)
    • create a draft PR from release-vX.Y to release
    • Cherry-pick commits from master to the release-vX.Y.Z using git cherry-pick -x <commit>
    • Add full changelog and contributors to the changelog
      • Replace the Changelog and Contributors sections of the changelog with the stdout of ./bin/mkreleaselog
        • do NOT copy the stderr
    • verify all CI checks on the PR from release-vX.Y to release are passing
    • Merge the PR from release-vX.Y to release using the Create a merge commit
      • do NOT use Squash and merge nor Rebase and merge because we need to be able to sign the merge commit
      • do NOT delete the release-vX.Y branch
  • Run Thunderdome testing, see the Thunderdome release docs for details
    • create a PR and merge the experiment config into Thunderdome
  • Create the release tag
    using ./kuboreleaser release --version vX.Y.Z(-rcN) tag or ...
    • This is a dangerous operation! Go and Docker publishing are difficult to reverse! Have the release reviewer verify all the commands marked with ⚠️!
    • ⚠️ tag the HEAD commit using git tag -s vX.Y.Z(-RCN) -m 'Prerelease X.Y.Z(-RCN)'
    • ⚠️ tag the HEAD commit of the release branch using git tag -s vX.Y.Z(-RCN) -m 'Release X.Y.Z(-RCN)'
    • ⚠️ verify the tag is signed and tied to the correct commit using git show vX.Y.Z(-RCN)
    • ⚠️ push the tag to GitHub using git push origin vX.Y.Z(-RCN)
      • do NOT use git push --tags because it pushes all your local tags
  • Publish the release to DockerHub
    using ./kuboreleaser --skip-check-before --skip-run release --version vX.Y.Z(-rcN) publish-to-dockerhub or ...
  • Publish the release to dist.ipfs.tech
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-distributions or ...
    • check out ipfs/distributions
    • run ./dist.sh add-version kubo vX.Y.Z(-RCN) to add the new version to the versions file
    • create and merge the PR which updates dists/kubo/versions and dists/go-ipfs/versions ( and dists/kubo/current_version and dists/go-ipfs/current_version)
    • wait for the CI workflow run initiated by the merge to master to finish
    • verify the release is available on dist.ipfs.io
  • Publish the release to NPM
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-npm (⚠️ you might need to run the command a couple of times because GHA might not be able to see the new distribution straight away due to caching) or ...
  • Publish the release to GitHub
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-github or ...
    • create a new release on GitHub
      • RC example
      • FINAL example
      • use the vX.Y.Z(-RCN) tag
      • link to the release issue
      • link to the changelog in the description
      • check the This is a pre-release checkbox
      • copy the changelog (without the header) in the description
      • do NOT check the This is a pre-release checkbox
    • run the sync-release-assets workflow
    • wait for the sync-release-assets workflow run to finish
    • verify the release assets are present in the GitHub release
  • Promote the release
    using ./kuboreleaser release --version vX.Y.Z(-rcN) promote or ...
  • Test the new version with ipfs-companion (broken: e2e Tests are brokenΒ ipfs-companion#1300)
    using ./kuboreleaser release --version vX.Y.Z(-rcN) test-ipfs-companion or ...
    • run the e2e
      • use vX.Y.Z(-RCN) as the Kubo image version
    • wait for the e2e workflow run to finish
  • Update Kubo in ipfs-desktop
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-desktop or ...
  • Update Kubo docs
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-docs or ...
  • Ask Brave to update Kubo in Brave Desktop
  • Create a blog entry on blog.ipfs.tech
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-blog --date YYYY-MM-DD or ...
    • create a PR which adds a release note for the new Kubo version
    • merge the PR
    • verify the blog entry was published
  • Merge the release branch back into master, ignoring the changes to version.go (keep the -dev) version,
    using ./kuboreleaser release --version vX.Y.Z(-rcN) merge-branch or ...
    • create a new branch merge-release-vX.Y.Z from release
    • create and merge a PR from merge-release-vX.Y.Z to master
  • Prepare for the next release
    using ./kuboreleaser release --version vX.Y.Z(-rcN) prepare-next or ...
    • Create the next changelog
    • Link to the new changelog in the CHANGELOG.md file
    • Create the next release issue
  • Create a dependency update PR
    • check out ipfs/kubo
    • run go get -u in root directory
    • run go mod tidy in root directory
    • run go mod tidy in docs/examples/kubo-as-a-library directory
    • create a PR which updates go.mod and go.sum
    • add the PR to the next release milestone
  • Close the release issue

@hacdias
Copy link
Member

hacdias commented Nov 7, 2023

Early testers ping for v0.24.0-rc2 testing πŸ˜„.

You're getting this message because you're listed here. Please update this list if you no longer want to be included.

@hacdias
Copy link
Member

hacdias commented Nov 8, 2023

0.24.0 Checklist

This section covers tasks to be done during each release.

  • Prepare the release branch and update version numbers accordingly
    using ./kuboreleaser --skip-check-before release --version vX.Y.Z(-rcN) prepare-branch or ...
    • create a new branch release-vX.Y.Z
      • use master as base if Z == 0
      • use release as base if Z > 0
    • update the CurrentVersionNumber in version.go in the master branch to vX.Y+1.0-dev
    • update the CurrentVersionNumber in version.go in the release-vX.Y branch to vX.Y.Z(-RCN)
    • create a draft PR from release-vX.Y to release
    • Cherry-pick commits from master to the release-vX.Y.Z using git cherry-pick -x <commit>
    • Add full changelog and contributors to the changelog
      • Replace the Changelog and Contributors sections of the changelog with the stdout of ./bin/mkreleaselog
        • do NOT copy the stderr
    • verify all CI checks on the PR from release-vX.Y to release are passing
    • Merge the PR from release-vX.Y to release using the Create a merge commit
      • do NOT use Squash and merge nor Rebase and merge because we need to be able to sign the merge commit
      • do NOT delete the release-vX.Y branch
  • Run Thunderdome testing, see the Thunderdome release docs for details
    • create a PR and merge the experiment config into Thunderdome
  • Create the release tag
    using ./kuboreleaser release --version vX.Y.Z(-rcN) tag or ...
    • This is a dangerous operation! Go and Docker publishing are difficult to reverse! Have the release reviewer verify all the commands marked with ⚠️!
    • ⚠️ tag the HEAD commit using git tag -s vX.Y.Z(-RCN) -m 'Prerelease X.Y.Z(-RCN)'
    • ⚠️ tag the HEAD commit of the release branch using git tag -s vX.Y.Z(-RCN) -m 'Release X.Y.Z(-RCN)'
    • ⚠️ verify the tag is signed and tied to the correct commit using git show vX.Y.Z(-RCN)
    • ⚠️ push the tag to GitHub using git push origin vX.Y.Z(-RCN)
      • do NOT use git push --tags because it pushes all your local tags
  • Publish the release to DockerHub
    using ./kuboreleaser --skip-check-before --skip-run release --version vX.Y.Z(-rcN) publish-to-dockerhub or ...
  • Publish the release to dist.ipfs.tech
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-distributions or ...
    • check out ipfs/distributions
    • run ./dist.sh add-version kubo vX.Y.Z(-RCN) to add the new version to the versions file
    • create and merge the PR which updates dists/kubo/versions and dists/go-ipfs/versions ( and dists/kubo/current_version and dists/go-ipfs/current_version)
    • wait for the CI workflow run initiated by the merge to master to finish
    • verify the release is available on dist.ipfs.io
  • Publish the release to NPM
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-npm (⚠️ you might need to run the command a couple of times because GHA might not be able to see the new distribution straight away due to caching) or ...
  • Publish the release to GitHub
    using ./kuboreleaser release --version vX.Y.Z(-rcN) publish-to-github or ...
    • create a new release on GitHub
      • RC example
      • FINAL example
      • use the vX.Y.Z(-RCN) tag
      • link to the release issue
      • link to the changelog in the description
      • check the This is a pre-release checkbox
      • copy the changelog (without the header) in the description
      • do NOT check the This is a pre-release checkbox
    • run the sync-release-assets workflow
    • wait for the sync-release-assets workflow run to finish
    • verify the release assets are present in the GitHub release
  • Promote the release
    using ./kuboreleaser release --version vX.Y.Z(-rcN) promote or ...
  • Test the new version with ipfs-companion (broken: e2e Tests are brokenΒ ipfs-companion#1300)
    using ./kuboreleaser release --version vX.Y.Z(-rcN) test-ipfs-companion or ...
    • run the e2e
      • use vX.Y.Z(-RCN) as the Kubo image version
    • wait for the e2e workflow run to finish
  • Update Kubo in ipfs-desktop
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-desktop or ...
  • Update Kubo docs
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-docs or ...
  • Ask Brave to update Kubo in Brave Desktop
  • Create a blog entry on blog.ipfs.tech
    using ./kuboreleaser release --version vX.Y.Z(-rcN) update-ipfs-blog --date YYYY-MM-DD or ...
    • create a PR which adds a release note for the new Kubo version
    • merge the PR
    • verify the blog entry was published
  • Merge the release branch back into master, ignoring the changes to version.go (keep the -dev) version,
    using ./kuboreleaser release --version vX.Y.Z(-rcN) merge-branch or ...
    • create a new branch merge-release-vX.Y.Z from release
    • create and merge a PR from merge-release-vX.Y.Z to master
  • Prepare for the next release
    using ./kuboreleaser release --version vX.Y.Z(-rcN) prepare-next or ...
    • Create the next changelog
    • Link to the new changelog in the CHANGELOG.md file
    • Create the next release issue
  • Create a dependency update PR
    • check out ipfs/kubo
    • run go get -u in root directory
    • run go mod tidy in root directory
    • run go mod tidy in docs/examples/kubo-as-a-library directory
    • create a PR which updates go.mod and go.sum
    • add the PR to the next release milestone
  • Close the release issue

@hacdias
Copy link
Member

hacdias commented Nov 8, 2023

πŸŽ‰ Kubo v0.24.0 is out!

@BigLep
Copy link
Contributor Author

BigLep commented Nov 9, 2023

Hre was the status of the 0.24 iteration at the end:

board link

Table form (missing some info)
Repository Title Status Theme Assignees Reviewers Status Date
ipfs/distributions Duplicate DNSLink TXT record πŸŽ‰ Done ⚠️ Critical fix or improvement lidel Β  Nov 9, 2023
Β  πŸ“Œ Standup callouts (last updated 2023-08-20) πŸƒβ€β™€οΈ In Progress ⚠️ Critical fix or improvement Β  Β  Aug 3, 2023
ipfs/kubo Outdated Version Notice πŸ₯ž Todo ⚠️ Critical fix or improvement Β  Β  Jul 4, 2023
ipfs/kubo Routing-v1 gateway endpoint not returning enough information πŸ₯ž Todo ⚠️ Critical fix or improvement hacdias Β  Nov 4, 2023
Β  ⬇️⬇️⬇️ Security/Operational Incidents ⬇️⬇️⬇️ Β  ⚠️ Critical fix or improvement Β  Β  Β 
Β  ⬇️⬇️⬇️ Other Items ⬇️⬇️⬇️ Β  ⚠️ Critical fix or improvement Β  Β  Β 
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  ⚠️ Critical fix or improvement Β  Β  Β 
ipfs/specs Publish existing Bitswap specs at specs.ipfs.tech πŸŽ‰ Done πŸ§‘πŸ»β€βš–οΈ Governance/Specs lidel achingbrain, aschmahmann, hannahhoward, lidel, mxinden Oct 19, 2023
ipfs/specs feat(gateway): add specification for running the gateway over libp2p πŸŽ‰ Done πŸ§‘πŸ»β€βš–οΈ Governance/Specs aschmahmann hacdias, lidel Oct 6, 2023
ipfs/specs Publish UnixFS specifications at specs.ipfs.tech πŸ”Ž In Review πŸ§‘πŸ»β€βš–οΈ Governance/Specs hacdias, lidel 2color, ajnavarro, alanshaw, aschmahmann, ElPaisano, John-LittleBearLabs, lidel, marten-seemann, thibmeu, willscott Nov 3, 2022
ipfs/specs Update UnixFS specification πŸƒβ€β™€οΈ In Progress πŸ§‘πŸ»β€βš–οΈ Governance/Specs Jorropo Β  Oct 4, 2022
ipfs/spec-generator Escaping of quotes and <> in code blocks is broken πŸ₯ž Todo πŸ§‘πŸ»β€βš–οΈ Governance/Specs hacdias Β  Nov 7, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸ§‘πŸ»β€βš–οΈ Governance/Specs Β  Β  Β 
ipfs/boxo feat!: namesys refactor, ipns TTL bubbled up to gateway πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias lidel Oct 18, 2023
ipfs/gateway-conformance Tests for /ipns paths and Cache-Control HTTP header πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias lidel Oct 10, 2023
ipfs/kubo refactor: namesys cleanup, gateway /ipns/ ttl πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias lidel Oct 18, 2023
ipfs/kubo Point users at canonical kubo/client/rpc library πŸŽ‰ Done πŸŒ‰ Gateways and Clients Β  Β  Oct 13, 2023
ipfs/boxo fix(gw): duplicate blocks and range etags πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias hacdias, lidel Oct 31, 2023
ipfs/helia-delegated-routing-v1-http-api fix!: conform to Delegated Routing V1 HTTP spec πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias achingbrain, lidel Oct 26, 2023
ipfs/boxo Gateway: max-age, ETag for /ipns requests πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Β  Oct 18, 2023
ipfs/boxo Consolidate IPFS Path libraries under boxo/path πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Β  Oct 6, 2023
ipfs/go-ipfs-http-client Archive this repo and move remaining issues to ipfs/kubo πŸŽ‰ Done πŸŒ‰ Gateways and Clients Β  Β  Oct 5, 2023
ipfs/boxo fix(gw): frugal DNSLink lookups on subdomains πŸŽ‰ Done πŸŒ‰ Gateways and Clients Β  aschmahmann, hacdias, hsanjuan Oct 19, 2023
ipfs/boxo gateway: implement ipip-0445 πŸ”Ž In Review πŸŒ‰ Gateways and Clients Jorropo aschmahmann Nov 2, 2023
ipfs/rainbow Update README.md with logo/header πŸ”Ž In Review πŸŒ‰ Gateways and Clients Β  hacdias, lidel Nov 7, 2023
ipfs/specs IPIP-0445: Option to Skip Raw Blocks in Gateway Responses πŸƒβ€β™€οΈ In Progress πŸŒ‰ Gateways and Clients Jorropo hacdias, lidel, rvagg Oct 25, 2023
ipfs/boxo feat(gw): Ipfs-Gateway-Mode: path|trustless πŸ›‘ Blocked πŸŒ‰ Gateways and Clients lidel Stebalien Oct 30, 2023
ipfs/kubo rpc: fix - Unix domain socket maddrs used with NewApi πŸ₯ž Todo πŸŒ‰ Gateways and Clients Β  Jorropo, kubo maintainers Sep 4, 2023
ipfs/boxo Gateway: ensure consistent caching of DNS records πŸ₯ž Todo πŸŒ‰ Gateways and Clients hsanjuan Β  Oct 7, 2023
Β  πŸ‘€ bifrost-gateway Project Board Β  πŸŒ‰ Gateways and Clients aschmahmann, hacdias, lidel Β  Β 
protocol/bifrost-community Expose trustless gateway and delegated routing under new domains with certain policies Β  πŸŒ‰ Gateways and Clients Β  Β  Β 
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸŒ‰ Gateways and Clients Β  Β  Β 
ipfs/rainbow Performance benchmarking Β  πŸŒ‰ Gateways and Clients Β  Β  Β 
ipfs/rainbow Run gateway-conformance checks in CI Β  πŸŒ‰ Gateways and Clients Β  Β  Β 
ipfs/rainbow Bootstrapping and peering Β  πŸŒ‰ Gateways and Clients hsanjuan Β  Β 
ipfs/bifrost-gateway feat!: IPNS routing based on IPIP-351 or IPIP-379 πŸŽ‰ Done πŸ”€ Content Routing/Providing hacdias lidel Oct 5, 2023
ipfs/boxo routing/http: add more type and WithDynamicProviderInfo πŸŽ‰ Done πŸ”€ Content Routing/Providing Jorropo kubo maintainers Oct 5, 2023
ipfs/kubo go-libp2p v0.32.0 and WebRTC Direct πŸŽ‰ Done πŸ”€ Content Routing/Providing hacdias Jorropo Nov 3, 2023
ipfs/specs IPIP-0388: Routing HTTP API Support for Querying Multiple Routers πŸƒβ€β™€οΈ In Progress πŸ”€ Content Routing/Providing aschmahmann lidel, masih, willscott May 11, 2023
ipfs/boxo routing/http/server: limit response sizes πŸ₯ž Todo πŸ”€ Content Routing/Providing hacdias Β  Nov 7, 2022
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸ”€ Content Routing/Providing Β  Β  Β 
ipfs/boxo New very fast unixfs implementation. πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Β  Nov 2, 2023
ipfs/boxo New Unixfs implementations πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Β  Oct 5, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸš‡ Data Transfer Β  Β  Β 
ipfs/kubo feat: built-in content blocking based on IPIP-383 πŸŽ‰ Done πŸ™ Other Initiative hsanjuan, lidel hacdias, lidel Oct 28, 2023
ipfs/kubo IPFS filtering to allow node operators to decide on content they are willing to serve πŸŽ‰ Done πŸ™ Other Initiative hsanjuan Β  Oct 28, 2023
ipfs/kubo docs: fix accelerated-dht-client πŸŽ‰ Done πŸ™ Other Initiative Β  aschmahmann, Jorropo Nov 6, 2023
ipfs/ipfs-docs feat: add /how-to/detect-ipfs-on-web πŸ”Ž In Review πŸ™ Other Initiative ElPaisano autonome, ElPaisano, SgtPooki Sep 26, 2023
ipfs/ipfs-docs Article on data import options & tradeoffs πŸƒβ€β™€οΈ In Progress πŸ™ Other Initiative ElPaisano Β  Sep 26, 2023
ipfs/kubo fully remove mplex πŸ₯ž Todo πŸ™ Other Initiative Jorropo Β  Aug 15, 2023
ipfs/kubo Enable WebRTC Transport πŸ₯ž Todo πŸ™ Other Initiative hacdias Β  Aug 23, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸ™ Other Initiative Β  Β  Β 
Β  Jorropo IPFS Connect talk Β  πŸ™ Other Initiative Β  Β  Β 
ipfs/boxo Routing V1 CLI Example πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias lidel Oct 5, 2023
ipfs/boxo feat(path)!: consolidated path libraries πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias aschmahmann, Jorropo, lidel Oct 6, 2023
ipfs/kubo feat: path consolidation πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias kubo maintainers, lidel Oct 6, 2023
ipfs/boxo How to use Boxo library or SDK for IPFS with Go language? πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias Β  Oct 9, 2023
ipfs/boxo docs: how to use and create examples πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias aschmahmann, BigLep, kubo maintainers, lidel Oct 16, 2023
ipfs/ipfs-docs Clean Kubo Client Story and Deprecated Packages πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias 2color, ElPaisano, lidel Oct 10, 2023
ipfs/kubo docs: clean mentions of go-ipfs-api, go-ipfs-http-api πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias BigLep, kubo maintainers, lidel Oct 13, 2023
ipfs/ipget chore: upgrade to Go 1.21 πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias hsanjuan Oct 18, 2023
ipfs/boxo feat!: remove util.MultiErr πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias aschmahmann Oct 17, 2023
ipfs/kubo feat: cmd/ipfs: Make it possible to depend on cmd/ipfs πŸ”Ž In Review πŸ‘·πŸΎ Maintainer/Contributor Experience aschmahmann Β  Mar 31, 2023
ipfs/boxo Flaky test: TestReprovider/many πŸ₯ž Todo πŸ‘·πŸΎ Maintainer/Contributor Experience Β  Β  Jun 22, 2023
ipfs/kubo Retire kubo-as-a-library πŸ₯ž Todo πŸ‘·πŸΎ Maintainer/Contributor Experience Β  Β  Oct 9, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸ‘·πŸΎ Maintainer/Contributor Experience Β  Β  Β 
ipfs/kubo Document SOP for updating go version Β  πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias, Jorropo Β  Β 
ipfs/boxo chore: migrate bootstrap πŸŽ‰ Done 🀞 Best Effort Improvement Β  hacdias, Jorropo Nov 1, 2023
ipfs/kubo chore: migrate bootstrap to ipfs/boxo πŸŽ‰ Done 🀞 Best Effort Improvement Β  hacdias Nov 1, 2023
ipfs/kubo chore: migrate peering to ipfs/boxo πŸŽ‰ Done 🀞 Best Effort Improvement hacdias hacdias Oct 31, 2023
ipfs/kubo commands/add: return an error when using --only-hash and --to-files πŸ”Ž In Review 🀞 Best Effort Improvement Β  kubo maintainers Oct 21, 2023
ipfs/kubo coreapi/unixfs: don't create an additional IpfsNode for --only-hash πŸ”Ž In Review 🀞 Best Effort Improvement Β  kubo maintainers Oct 21, 2023
ipfs/kubo coreapi/unixfs: in /add, don't setup a MFS root with a mock πŸ”Ž In Review 🀞 Best Effort Improvement Β  kubo maintainers Oct 21, 2023
ipfs/kubo feat: daemon: automatically set GOMEMLIMIT if it is unset πŸ₯ž Todo 🀞 Best Effort Improvement Jorropo ajnavarro, dokterbob, kubo maintainers Jun 29, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  🀞 Best Effort Improvement Β  Β  Β 
ipfs/kubo tests: add new helia intergration tests πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD Β  kubo maintainers Oct 20, 2023
ipfs/kubo Release 0.23 πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD Β  Β  Oct 6, 2023
ipfs/kubo Release 0.24 πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD hacdias Β  Nov 8, 2023
ipfs/kubo Update EARLY_TESTERS.md πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD Β  hacdias Nov 3, 2023
ipfs/kuboreleaser Kubo v0.22.0 feedback πŸƒβ€β™€οΈ In Progress πŸš… Release Process, Artifacts, CI/CD galargh Β  Aug 3, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸš… Release Process, Artifacts, CI/CD Β  Β  Β 
ipfs/go-graphsync chore: bump go-libp2p to 0.32.0 πŸŽ‰ Done Β  hacdias Jorropo, rvagg Nov 3, 2023
ipfs/boxo chore: bump to go-libp2p@0.32.0 πŸŽ‰ Done Β  hacdias Jorropo Nov 3, 2023
ipfs/go-graphsync chore: release 0.16.0 πŸŽ‰ Done Β  hacdias rvagg Nov 3, 2023
List form (more info)

Repository Title Status Theme Assignees Reviewers Status Date
ipfs/distributions Duplicate DNSLink TXT record πŸŽ‰ Done ⚠️ Critical fix or improvement lidel Nov 9, 2023
πŸ“Œ Standup callouts (last updated 2023-08-20) πŸƒβ€β™€οΈ In Progress ⚠️ Critical fix or improvement Aug 3, 2023
ipfs/kubo Outdated Version Notice πŸ₯ž Todo ⚠️ Critical fix or improvement Jul 4, 2023
ipfs/kubo Routing-v1 gateway endpoint not returning enough information πŸ₯ž Todo ⚠️ Critical fix or improvement hacdias Nov 4, 2023
⬇️⬇️⬇️ Security/Operational Incidents ⬇️⬇️⬇️ ⚠️ Critical fix or improvement
⬇️⬇️⬇️ Other Items ⬇️⬇️⬇️ ⚠️ Critical fix or improvement
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ ⚠️ Critical fix or improvement
ipfs/specs Publish existing Bitswap specs at specs.ipfs.tech πŸŽ‰ Done πŸ§‘πŸ»β€βš–οΈ Governance/Specs lidel achingbrain, aschmahmann, hannahhoward, lidel, mxinden Oct 19, 2023
ipfs/specs feat(gateway): add specification for running the gateway over libp2p πŸŽ‰ Done πŸ§‘πŸ»β€βš–οΈ Governance/Specs aschmahmann hacdias, lidel Oct 6, 2023
ipfs/specs Publish UnixFS specifications at specs.ipfs.tech πŸ”Ž In Review πŸ§‘πŸ»β€βš–οΈ Governance/Specs hacdias, lidel 2color, ajnavarro, alanshaw, aschmahmann, ElPaisano, John-LittleBearLabs, lidel, marten-seemann, thibmeu, willscott Nov 3, 2022
ipfs/specs Update UnixFS specification πŸƒβ€β™€οΈ In Progress πŸ§‘πŸ»β€βš–οΈ Governance/Specs Jorropo Oct 4, 2022
ipfs/spec-generator Escaping of quotes and <> in code blocks is broken πŸ₯ž Todo πŸ§‘πŸ»β€βš–οΈ Governance/Specs hacdias Nov 7, 2023
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ πŸ§‘πŸ»β€βš–οΈ Governance/Specs
ipfs/boxo feat!: namesys refactor, ipns TTL bubbled up to gateway πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias lidel Oct 18, 2023
ipfs/gateway-conformance Tests for /ipns paths and Cache-Control HTTP header πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias lidel Oct 10, 2023
ipfs/kubo refactor: namesys cleanup, gateway /ipns/ ttl πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias lidel Oct 18, 2023
ipfs/kubo Point users at canonical kubo/client/rpc library πŸŽ‰ Done πŸŒ‰ Gateways and Clients Oct 13, 2023
ipfs/boxo fix(gw): duplicate blocks and range etags πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias hacdias, lidel Oct 31, 2023
ipfs/helia-delegated-routing-v1-http-api fix!: conform to Delegated Routing V1 HTTP spec πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias achingbrain, lidel Oct 26, 2023
ipfs/boxo Gateway: max-age, ETag for /ipns requests πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Oct 18, 2023
ipfs/boxo Consolidate IPFS Path libraries under boxo/path πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Oct 6, 2023
ipfs/go-ipfs-http-client Archive this repo and move remaining issues to ipfs/kubo πŸŽ‰ Done πŸŒ‰ Gateways and Clients Oct 5, 2023
ipfs/boxo fix(gw): frugal DNSLink lookups on subdomains πŸŽ‰ Done πŸŒ‰ Gateways and Clients aschmahmann, hacdias, hsanjuan Oct 19, 2023
ipfs/boxo gateway: implement ipip-0445 πŸ”Ž In Review πŸŒ‰ Gateways and Clients Jorropo aschmahmann Nov 2, 2023
ipfs/rainbow Update README.md with logo/header πŸ”Ž In Review πŸŒ‰ Gateways and Clients hacdias, lidel Nov 7, 2023
ipfs/specs IPIP-0445: Option to Skip Raw Blocks in Gateway Responses πŸƒβ€β™€οΈ In Progress πŸŒ‰ Gateways and Clients Jorropo hacdias, lidel, rvagg Oct 25, 2023
ipfs/boxo feat(gw): Ipfs-Gateway-Mode: path|trustless πŸ›‘ Blocked πŸŒ‰ Gateways and Clients lidel Stebalien Oct 30, 2023
ipfs/kubo rpc: fix - Unix domain socket maddrs used with NewApi πŸ₯ž Todo πŸŒ‰ Gateways and Clients Jorropo, kubo maintainers Sep 4, 2023
ipfs/boxo Gateway: ensure consistent caching of DNS records πŸ₯ž Todo πŸŒ‰ Gateways and Clients hsanjuan Oct 7, 2023
πŸ‘€ bifrost-gateway Project Board πŸŒ‰ Gateways and Clients aschmahmann, hacdias, lidel
protocol/bifrost-community Expose trustless gateway and delegated routing under new domains with certain policies πŸŒ‰ Gateways and Clients
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ πŸŒ‰ Gateways and Clients
ipfs/rainbow Performance benchmarking πŸŒ‰ Gateways and Clients
ipfs/rainbow Run gateway-conformance checks in CI πŸŒ‰ Gateways and Clients
ipfs/rainbow Bootstrapping and peering πŸŒ‰ Gateways and Clients hsanjuan
ipfs/bifrost-gateway feat!: IPNS routing based on IPIP-351 or IPIP-379 πŸŽ‰ Done πŸ”€ Content Routing/Providing hacdias lidel Oct 5, 2023
ipfs/boxo routing/http: add more type and WithDynamicProviderInfo πŸŽ‰ Done πŸ”€ Content Routing/Providing Jorropo kubo maintainers Oct 5, 2023
ipfs/kubo go-libp2p v0.32.0 and WebRTC Direct πŸŽ‰ Done πŸ”€ Content Routing/Providing hacdias Jorropo Nov 3, 2023
ipfs/specs IPIP-0388: Routing HTTP API Support for Querying Multiple Routers πŸƒβ€β™€οΈ In Progress πŸ”€ Content Routing/Providing aschmahmann lidel, masih, willscott May 11, 2023
ipfs/boxo routing/http/server: limit response sizes πŸ₯ž Todo πŸ”€ Content Routing/Providing hacdias Nov 7, 2022
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ πŸ”€ Content Routing/Providing
ipfs/boxo New very fast unixfs implementation. πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Nov 2, 2023
ipfs/boxo New Unixfs implementations πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Oct 5, 2023
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ πŸš‡ Data Transfer
ipfs/kubo feat: built-in content blocking based on IPIP-383 πŸŽ‰ Done πŸ™ Other Initiative hsanjuan, lidel hacdias, lidel Oct 28, 2023
ipfs/kubo IPFS filtering to allow node operators to decide on content they are willing to serve πŸŽ‰ Done πŸ™ Other Initiative hsanjuan Oct 28, 2023
ipfs/kubo docs: fix accelerated-dht-client πŸŽ‰ Done πŸ™ Other Initiative aschmahmann, Jorropo Nov 6, 2023
ipfs/ipfs-docs feat: add /how-to/detect-ipfs-on-web πŸ”Ž In Review πŸ™ Other Initiative ElPaisano autonome, ElPaisano, SgtPooki Sep 26, 2023
ipfs/ipfs-docs Article on data import options & tradeoffs πŸƒβ€β™€οΈ In Progress πŸ™ Other Initiative ElPaisano Sep 26, 2023
ipfs/kubo fully remove mplex πŸ₯ž Todo πŸ™ Other Initiative Jorropo Aug 15, 2023
ipfs/kubo Enable WebRTC Transport πŸ₯ž Todo πŸ™ Other Initiative hacdias Aug 23, 2023
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ πŸ™ Other Initiative
Jorropo IPFS Connect talk πŸ™ Other Initiative
ipfs/boxo Routing V1 CLI Example πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias lidel Oct 5, 2023
ipfs/boxo feat(path)!: consolidated path libraries πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias aschmahmann, Jorropo, lidel Oct 6, 2023
ipfs/kubo feat: path consolidation πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias kubo maintainers, lidel Oct 6, 2023
ipfs/boxo How to use Boxo library or SDK for IPFS with Go language? πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias Oct 9, 2023
ipfs/boxo docs: how to use and create examples πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias aschmahmann, BigLep, kubo maintainers, lidel Oct 16, 2023
ipfs/ipfs-docs Clean Kubo Client Story and Deprecated Packages πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias 2color, ElPaisano, lidel Oct 10, 2023
ipfs/kubo docs: clean mentions of go-ipfs-api, go-ipfs-http-api πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias BigLep, kubo maintainers, lidel Oct 13, 2023
ipfs/ipget chore: upgrade to Go 1.21 πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias hsanjuan Oct 18, 2023
ipfs/boxo feat!: remove util.MultiErr πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias aschmahmann Oct 17, 2023
ipfs/kubo feat: cmd/ipfs: Make it possible to depend on cmd/ipfs πŸ”Ž In Review πŸ‘·πŸΎ Maintainer/Contributor Experience aschmahmann Mar 31, 2023
ipfs/boxo Flaky test: TestReprovider/many πŸ₯ž Todo πŸ‘·πŸΎ Maintainer/Contributor Experience Jun 22, 2023
ipfs/kubo Retire kubo-as-a-library πŸ₯ž Todo πŸ‘·πŸΎ Maintainer/Contributor Experience Oct 9, 2023
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ πŸ‘·πŸΎ Maintainer/Contributor Experience
ipfs/kubo Document SOP for updating go version πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias, Jorropo
ipfs/boxo chore: migrate bootstrap πŸŽ‰ Done 🀞 Best Effort Improvement hacdias, Jorropo Nov 1, 2023
ipfs/kubo chore: migrate bootstrap to ipfs/boxo πŸŽ‰ Done 🀞 Best Effort Improvement hacdias Nov 1, 2023
ipfs/kubo chore: migrate peering to ipfs/boxo πŸŽ‰ Done 🀞 Best Effort Improvement hacdias hacdias Oct 31, 2023
ipfs/kubo commands/add: return an error when using --only-hash and --to-files πŸ”Ž In Review 🀞 Best Effort Improvement kubo maintainers Oct 21, 2023
ipfs/kubo coreapi/unixfs: don't create an additional IpfsNode for --only-hash πŸ”Ž In Review 🀞 Best Effort Improvement kubo maintainers Oct 21, 2023
ipfs/kubo coreapi/unixfs: in /add, don't setup a MFS root with a mock πŸ”Ž In Review 🀞 Best Effort Improvement kubo maintainers Oct 21, 2023
ipfs/kubo feat: daemon: automatically set GOMEMLIMIT if it is unset πŸ₯ž Todo 🀞 Best Effort Improvement Jorropo ajnavarro, dokterbob, kubo maintainers Jun 29, 2023
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ 🀞 Best Effort Improvement
ipfs/kubo tests: add new helia intergration tests πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD kubo maintainers Oct 20, 2023
ipfs/kubo Release 0.23 πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD Oct 6, 2023
ipfs/kubo Release 0.24 πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD hacdias Nov 8, 2023
ipfs/kubo Update EARLY_TESTERS.md πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD hacdias Nov 3, 2023
ipfs/kuboreleaser Kubo v0.22.0 feedback πŸƒβ€β™€οΈ In Progress πŸš… Release Process, Artifacts, CI/CD galargh Aug 3, 2023
⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ πŸš… Release Process, Artifacts, CI/CD
ipfs/go-graphsync chore: bump go-libp2p to 0.32.0 πŸŽ‰ Done hacdias Jorropo, rvagg Nov 3, 2023
ipfs/boxo chore: bump to go-libp2p@0.32.0 πŸŽ‰ Done hacdias Jorropo Nov 3, 2023
ipfs/go-graphsync chore: release 0.16.0 πŸŽ‰ Done hacdias rvagg Nov 3, 2023


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Archived in project
Development

No branches or pull requests

2 participants