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.25 #10045

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

Release 0.25 #10045

BigLep opened this issue Aug 2, 2023 · 13 comments

Comments

@BigLep
Copy link
Contributor

BigLep commented Aug 2, 2023

Meta

Items in scope

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

Required

Optional / nice to have

@BigLep BigLep pinned this issue Oct 6, 2023
@lidel
Copy link
Member

lidel commented Nov 24, 2023

@ipfs/gui-dev quick pulse check, do you think we could have ipfs-webui release with the two items listed above to include them in Kubo 0.25.0 RC1 on Dec 6th (~1.5 week from now), or should work on new webui be pushed to Kubo 0.26 and post-nucleation 2024 Q1?

@SgtPooki
Copy link
Member

SgtPooki commented Dec 1, 2023

@lidel FYI that webui has been updated to use the latest multiformats library, along with ipld-explorer-components, and I will be releasing a new webui here shortly (waiting on ipfs/ipfs-webui#2181)

@SgtPooki
Copy link
Member

SgtPooki commented Dec 1, 2023

you can test that the webui is working properly at https://dev.webui.ipfs.io right now:

image

@SgtPooki
Copy link
Member

SgtPooki commented Dec 2, 2023

PR for new webui up at #10241

@lidel

@lidel
Copy link
Member

lidel commented Dec 4, 2023

  • I think we are ready to go and do RC1, all items landed – @Jorropo feel free to start RC1 release dance sooner, if that works better for you (if not, fine t do it on 6th)
  • I also think it is a good idea to do final release on Monday, given the Holiday break starts after 15th. Better to have a full week than 2 days if something goes wrong.

Thoughts?

@hacdias
Copy link
Member

hacdias commented Dec 6, 2023

v0.25.0-rc1

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 Dec 6, 2023

Early testers ping for v0.25.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.

@hacdias
Copy link
Member

hacdias commented Dec 11, 2023

I just fixed the test and merged #10062. We can maybe cherry-pick it for the final release.

@BigLep
Copy link
Contributor Author

BigLep commented Dec 12, 2023

2023-12-12 maintainer conversation: we are planning to do the release 2023-12-13 after:

  1. go-libp2p updated
  2. Confirm Thunderdome results look good
    @Jorropo will do the release.

@Jorropo
Copy link
Contributor

Jorropo commented Dec 14, 2023

  • 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

@Jorropo
Copy link
Contributor

Jorropo commented Dec 14, 2023

πŸŽ‰ Kubo v0.25.0 is out!

@BigLep
Copy link
Contributor Author

BigLep commented Jan 3, 2024

Here was the status of the 0.25 iteration before prepping for "202401 Mercury":

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

Table form (missing some info)
Repository Title Status Theme Assignees Reviewers Status Date
ipfs/kubo fix: allow daemon to start correctly if the API is null πŸŽ‰ Done ⚠️ Critical fix or improvement Jorropo hacdias Dec 11, 2023
ipfs/boxo fix(namesys): handling of multiple DNSLink TXT records πŸŽ‰ Done ⚠️ Critical fix or improvement hacdias lidel Nov 10, 2023
ipfs/kubo Enabling relay client deteriorates p2p connectivity πŸŽ‰ Done ⚠️ Critical fix or improvement Β  Β  Nov 28, 2023
ipfs/kubo Panics on startup πŸŽ‰ Done ⚠️ Critical fix or improvement Β  Β  Dec 11, 2023
ipfs/kubo chore: update go-libp2p-kad-dht πŸ”Ž In Review ⚠️ Critical fix or improvement Jorropo kubo maintainers Sep 25, 2023
Β  πŸ“Œ Standup callouts (last updated 2023-08-20) πŸƒβ€β™€οΈ In Progress ⚠️ Critical fix or improvement Β  Β  Aug 3, 2023
ipfs/kubo fix(fuse): path parsing and dag-pb handling πŸƒβ€β™€οΈ In Progress ⚠️ Critical fix or improvement hacdias kubo maintainers Dec 6, 2023
ipfs/kubo Fuse functionality broken in v0.24.0 πŸ₯ž Todo ⚠️ Critical fix or improvement hacdias Β  Dec 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 Remove Kubo (userland) specifications πŸŽ‰ Done πŸ§‘πŸ»β€βš–οΈ Governance/Specs hacdias Β  Nov 21, 2023
ipfs/spec-generator Escaping of quotes and <> in code blocks is broken πŸŽ‰ Done πŸ§‘πŸ»β€βš–οΈ Governance/Specs hacdias Β  Nov 13, 2023
ipfs/specs chore: remove Kubo userland specifications πŸŽ‰ Done πŸ§‘πŸ»β€βš–οΈ Governance/Specs hacdias lidel Nov 21, 2023
ipfs/kubo docs: move kubo-specific docs πŸŽ‰ Done πŸ§‘πŸ»β€βš–οΈ Governance/Specs hacdias lidel Nov 21, 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
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸ§‘πŸ»β€βš–οΈ Governance/Specs Β  Β  Β 
ipfs/kubo feat: Opt-in API.HTTPAuthSecrets for securing Kubo RPC πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Β  Nov 17, 2023
ipfs/rainbow Run gateway-conformance checks in CI πŸŽ‰ Done πŸŒ‰ Gateways and Clients Β  Β  Nov 29, 2023
ipfs/rainbow docs(readme): new logo and header πŸŽ‰ Done πŸŒ‰ Gateways and Clients Β  aschmahmann, hacdias, lidel Nov 10, 2023
ipfs/boxo fix: gateway panic because of overshadowed err πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Jorropo, lidel Nov 10, 2023
ipfs/boxo feat(gw): Ipfs-Gateway-Mode: path|trustless πŸŽ‰ Done πŸŒ‰ Gateways and Clients lidel Stebalien Nov 10, 2023
ipfs/boxo fix(gateway): do not act on template errors πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias lidel Nov 23, 2023
ipfs/kubo feat: ipfs key sign|verify πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Jorropo, lidel Dec 4, 2023
ipfs/go-ipfs-api Archive this repo and point users at kubo/client/rpc πŸŽ‰ Done πŸŒ‰ Gateways and Clients Β  Β  Oct 9, 2023
ipfs/boxo gateway: remove support for legacy ipfs-404.html πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Β  Nov 7, 2023
ipfs/boxo namesys: error when more than one IPFS-related DNSLink record exist πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Β  Nov 10, 2023
ipfs/kubo feat(rpc): Opt-in HTTP RPC API Authorization πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Jorropo, lidel Nov 17, 2023
ipfs/js-kubo-rpc-client feat: provide example for kubo RPC auth πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Β  Nov 23, 2023
ipfs/js-kubo-rpc-client docs: improve authorization docs πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias lidel, SgtPooki Nov 23, 2023
ipfs/kubo ipfs key sign|verify πŸŽ‰ Done πŸŒ‰ Gateways and Clients hacdias Β  Dec 4, 2023
ipfs/boxo gateway: implement IPIP-0445 (skip-raw-blocks option) πŸ”Ž In Review πŸŒ‰ Gateways and Clients Jorropo aschmahmann Nov 2, 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
Β  Deploy about.ipfs.io πŸƒβ€β™€οΈ In Progress πŸŒ‰ Gateways and Clients cewood Β  Nov 29, 2023
protocol/bifrost-infra Deploy rainbow πŸƒβ€β™€οΈ In Progress πŸŒ‰ Gateways and Clients ns4plabs Β  Nov 29, 2023
ipfs/kubo rpc: fix - Unix domain socket maddrs used with NewApi πŸ₯ž Todo πŸŒ‰ Gateways and Clients Β  Jorropo, kubo maintainers Sep 4, 2023
protocol/bifrost-community Expose trustless gateway and delegated routing under new domains with certain policies Β  πŸŒ‰ Gateways and Clients Β  Β  Β 
Β  Issue with unresolvable CIDs Β  πŸŒ‰ Gateways and Clients Β  Β  Β 
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸŒ‰ Gateways and Clients Β  Β  Β 
ipfs-shipyard/someguy feat: proxy all types of delegated routing πŸ”Ž In Review πŸ”€ Content Routing/Providing hacdias aschmahmann Nov 30, 2023
ipfs/boxo feat(routing/dht/zikade): add dht routing implementation using zikade πŸ”Ž In Review πŸ”€ Content Routing/Providing Β  Jorropo, kubo maintainers Nov 3, 2023
ipfs/specs IPIP-378: Delegated Content Routing PUTs over HTTP API πŸƒβ€β™€οΈ In Progress πŸ”€ Content Routing/Providing lidel aschmahmann, BigLep, guseggert, hacdias, lidel, willscott Nov 22, 2023
ipfs/boxo routing/http/server: limit response sizes πŸ₯ž Todo πŸ”€ Content Routing/Providing hacdias Β  Nov 7, 2022
ipfs/ipfs-docs Document delegated routing concept Β  πŸ”€ Content Routing/Providing Β  Β  Β 
Β  ⬆️⬆️⬆️ 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
ipfs/boxo gateway: Try feather for incremental files verifications in gateway πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Β  Jun 14, 2023
ipfs/boxo bitswap: reenable unit tests πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Β  Aug 3, 2023
ipfs/go-libipfs-rapide RAPIDE POC πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Β  Jan 26, 2023
ipfs/go-libipfs-rapide IPSL Compiler And Basic Unixfs builtin scope πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Β  Jan 26, 2023
ipfs/go-libipfs-rapide Rapide CAR over HTTP (aka, download from gateway) protocol implementation πŸƒβ€β™€οΈ In Progress πŸš‡ Data Transfer Jorropo Β  Jan 26, 2023
ipfs/boxo Bitswap peer connection race πŸ₯ž Todo πŸš‡ Data Transfer BigLep, Jorropo Β  Aug 22, 2023
ipfs/boxo Bitswap client CPU hotspots πŸ₯ž Todo πŸš‡ Data Transfer Β  Β  May 11, 2023
ipfs/go-libipfs-rapide Make an Unixfs Implementation that supports reassembling unordered block streams. πŸ₯ž Todo πŸš‡ Data Transfer Β  Β  May 11, 2023
ipfs/boxo [ipfs/go-bitswap] go-bitswap overhaul 2023 πŸ₯ž Todo πŸš‡ Data Transfer Β  Β  Jul 26, 2022
ipfs/kubo Downloads hang after a few minutes πŸ₯ž Todo πŸš‡ Data Transfer Β  Β  May 15, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸš‡ Data Transfer Β  Β  Β 
ipfs/kubo fully remove mplex πŸŽ‰ Done πŸ™ Other Initiative Jorropo Β  Nov 22, 2023
ipfs/kubo Remove mplex πŸŽ‰ Done πŸ™ Other Initiative Jorropo hacdias Nov 22, 2023
Β  Jorropo IPFS Connect talk πŸŽ‰ Done πŸ™ Other Initiative Β  Β  Nov 29, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸ™ Other Initiative Β  Β  Β 
ipfs/kubo remove experimental graphsync server πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience Jorropo hacdias, lidel Nov 22, 2023
ipfs/gateway-conformance docs: split and cleanup README πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience Β  2color, hacdias, laurentsenta Nov 22, 2023
ipfs/kubo feat: cmd/ipfs: Make it possible to depend on cmd/ipfs πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience aschmahmann Β  Nov 14, 2023
ipfs/kubo Migrate coreiface πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias Jorropo, lidel Nov 29, 2023
ipfs/boxo coreiface: remove and move to Kubo πŸŽ‰ Done πŸ‘·πŸΎ Maintainer/Contributor Experience hacdias Jorropo Nov 29, 2023
ipfs/boxo Flaky test: TestReprovider/many πŸ₯ž Todo πŸ‘·πŸΎ Maintainer/Contributor Experience Β  Β  Jun 22, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸ‘·πŸΎ Maintainer/Contributor Experience Β  Β  Β 
ipfs/boxo Removing dependencies on global IPLD registries Β  πŸ‘·πŸΎ Maintainer/Contributor Experience Β  Β  Β 
ipfs/kubo feat: cmd/ipfs: Make it possible to depend on cmd/ipfs πŸŽ‰ Done 🀞 Best Effort Improvement Β  aschmahmann, magik6k Dec 23, 2023
ipfs/kubo rcmgr: use default libp2p rcmgr metrics πŸ”Ž In Review 🀞 Best Effort Improvement Jorropo Jorropo, kubo maintainers Jun 14, 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/go-ds-s3 Fix bundling process πŸŽ‰ Done πŸ‘‚ Community Engagement Β  hsanjuan, Jorropo Nov 22, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸ‘‚ Community Engagement Β  Β  Β 
ipfs/kubo chore: update dependencies πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD hacdias Jorropo Dec 6, 2023
ipfs/boxo http: superfluous response.WriteHeader πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD hacdias Β  Nov 23, 2023
ipfs/kubo docs(cli): fix spelling πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD Β  hacdias Dec 4, 2023
ipfs/kubo chore: bump to boxo 0.16.0 πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD hacdias kubo maintainers Dec 6, 2023
ipfs/boxo Merge Release v0.16.0 πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD hacdias kubo maintainers Dec 6, 2023
ipfs/boxo Release 0.16.0 πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD hacdias kubo maintainers, lidel Dec 6, 2023
ipfs/kuboreleaser Use kubo npm πŸŽ‰ Done πŸš… Release Process, Artifacts, CI/CD Jorropo hacdias Dec 15, 2023
ipfs/kubo Release 0.25 πŸƒβ€β™€οΈ In Progress πŸš… Release Process, Artifacts, CI/CD Β  Β  Dec 15, 2023
ipfs/kubo HTTP fetch of fs-migrations should use CAR πŸ₯ž Todo πŸš… Release Process, Artifacts, CI/CD Jorropo Β  Sep 20, 2023
ipfs/kubo Gateway docs need to be updated to reflect supported features πŸ₯ž Todo πŸš… Release Process, Artifacts, CI/CD Β  Β  Nov 27, 2023
Β  ⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️ Β  πŸš… Release Process, Artifacts, CI/CD Β  Β  Β 
ipfs/kubo docs(config): clarify Reprovider.Strategy: roots πŸ”Ž In Review Documentation Β  2color, kubo maintainers Dec 8, 2023
ipfs/kubo dag import hangs indefinitely for seemingly valid CAR πŸ₯ž Todo Β  Β  Β  Oct 30, 2023
List form (more info)
Repository	Title	Status	Theme	Assignees	Reviewers	Status Date
[ipfs/kubo](https://github.com/ipfs/kubo)	[fix: allow daemon to start correctly if the API is null](https://github.com/ipfs/kubo/pull/10062)	πŸŽ‰ Done	⚠️ Critical fix or improvement	Jorropo	hacdias	Dec 11, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[fix(namesys): handling of multiple DNSLink TXT records](https://github.com/ipfs/boxo/pull/510)	πŸŽ‰ Done	⚠️ Critical fix or improvement	hacdias	lidel	Nov 10, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[Enabling relay client deteriorates p2p connectivity](https://github.com/ipfs/kubo/issues/9751)	πŸŽ‰ Done	⚠️ Critical fix or improvement			Nov 28, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[Panics on startup](https://github.com/ipfs/kubo/issues/10056)	πŸŽ‰ Done	⚠️ Critical fix or improvement			Dec 11, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[chore: update go-libp2p-kad-dht](https://github.com/ipfs/kubo/pull/10100)	πŸ”Ž In Review	⚠️ Critical fix or improvement	Jorropo	kubo maintainers	Sep 25, 2023
	πŸ“Œ Standup callouts (last updated 2023-08-20)	πŸƒβ€β™€οΈ In Progress	⚠️ Critical fix or improvement			Aug 3, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[fix(fuse): path parsing and dag-pb handling](https://github.com/ipfs/kubo/pull/10243)	πŸƒβ€β™€οΈ In Progress	⚠️ Critical fix or improvement	hacdias	kubo maintainers	Dec 6, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[Fuse functionality broken in v0.24.0](https://github.com/ipfs/kubo/issues/10242)	πŸ₯ž Todo	⚠️ Critical fix or improvement	hacdias		Dec 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](https://github.com/ipfs/specs)	[Remove Kubo (userland) specifications](https://github.com/ipfs/specs/issues/439)	πŸŽ‰ Done	πŸ§‘πŸ»β€βš–οΈ Governance/Specs	hacdias		Nov 21, 2023
[ipfs/spec-generator](https://github.com/ipfs/spec-generator)	[Escaping of quotes and <> in code blocks is broken](https://github.com/ipfs/spec-generator/issues/19)	πŸŽ‰ Done	πŸ§‘πŸ»β€βš–οΈ Governance/Specs	hacdias		Nov 13, 2023
[ipfs/specs](https://github.com/ipfs/specs)	[chore: remove Kubo userland specifications](https://github.com/ipfs/specs/pull/455)	πŸŽ‰ Done	πŸ§‘πŸ»β€βš–οΈ Governance/Specs	hacdias	lidel	Nov 21, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[docs: move kubo-specific docs](https://github.com/ipfs/kubo/pull/10226)	πŸŽ‰ Done	πŸ§‘πŸ»β€βš–οΈ Governance/Specs	hacdias	lidel	Nov 21, 2023
[ipfs/specs](https://github.com/ipfs/specs)	[Publish UnixFS specifications at specs.ipfs.tech](https://github.com/ipfs/specs/pull/331)	πŸ”Ž In Review	πŸ§‘πŸ»β€βš–οΈ Governance/Specs	hacdias, lidel	2color, ajnavarro, alanshaw, aschmahmann, ElPaisano, John-LittleBearLabs, lidel, marten-seemann, thibmeu, willscott	Nov 3, 2022
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		πŸ§‘πŸ»β€βš–οΈ Governance/Specs			
[ipfs/kubo](https://github.com/ipfs/kubo)	[feat: Opt-in API.HTTPAuthSecrets for securing Kubo RPC](https://github.com/ipfs/kubo/issues/10187)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias		Nov 17, 2023
[ipfs/rainbow](https://github.com/ipfs/rainbow)	[Run gateway-conformance checks in CI](https://github.com/ipfs/rainbow/issues/33)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients			Nov 29, 2023
[ipfs/rainbow](https://github.com/ipfs/rainbow)	[docs(readme): new logo and header](https://github.com/ipfs/rainbow/pull/36)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients		aschmahmann, hacdias, lidel	Nov 10, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[fix: gateway panic because of overshadowed err](https://github.com/ipfs/boxo/pull/511)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias	Jorropo, lidel	Nov 10, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[feat(gw): Ipfs-Gateway-Mode: path|trustless](https://github.com/ipfs/boxo/pull/495)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	lidel	Stebalien	Nov 10, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[fix(gateway): do not act on template errors](https://github.com/ipfs/boxo/pull/515)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias	lidel	Nov 23, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[feat: ipfs key sign|verify](https://github.com/ipfs/kubo/pull/10235)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias	Jorropo, lidel	Dec 4, 2023
[ipfs/go-ipfs-api](https://github.com/ipfs/go-ipfs-api)	[Archive this repo and point users at kubo/client/rpc](https://github.com/ipfs/go-ipfs-api/issues/296)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients			Oct 9, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[gateway: remove support for legacy ipfs-404.html](https://github.com/ipfs/boxo/issues/498)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias		Nov 7, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[namesys: error when more than one IPFS-related DNSLink record exist](https://github.com/ipfs/boxo/issues/507)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias		Nov 10, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[feat(rpc): Opt-in HTTP RPC API Authorization](https://github.com/ipfs/kubo/pull/10218)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias	Jorropo, lidel	Nov 17, 2023
[ipfs/js-kubo-rpc-client](https://github.com/ipfs/js-kubo-rpc-client)	[feat: provide example for kubo RPC auth](https://github.com/ipfs/js-kubo-rpc-client/issues/211)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias		Nov 23, 2023
[ipfs/js-kubo-rpc-client](https://github.com/ipfs/js-kubo-rpc-client)	[docs: improve authorization docs](https://github.com/ipfs/js-kubo-rpc-client/pull/212)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias	lidel, SgtPooki	Nov 23, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[ipfs key sign|verify](https://github.com/ipfs/kubo/issues/10230)	πŸŽ‰ Done	πŸŒ‰ Gateways and Clients	hacdias		Dec 4, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[gateway: implement IPIP-0445 (skip-raw-blocks option)](https://github.com/ipfs/boxo/pull/502)	πŸ”Ž In Review	πŸŒ‰ Gateways and Clients	Jorropo	aschmahmann	Nov 2, 2023
[ipfs/specs](https://github.com/ipfs/specs)	[IPIP-0445: Option to Skip Raw Blocks in Gateway Responses](https://github.com/ipfs/specs/pull/445)	πŸƒβ€β™€οΈ In Progress	πŸŒ‰ Gateways and Clients	Jorropo	hacdias, lidel, rvagg	Oct 25, 2023
	Deploy about.ipfs.io	πŸƒβ€β™€οΈ In Progress	πŸŒ‰ Gateways and Clients	cewood		Nov 29, 2023
[protocol/bifrost-infra](https://github.com/protocol/bifrost-infra)	[Deploy rainbow](https://github.com/protocol/bifrost-infra/issues/2817)	πŸƒβ€β™€οΈ In Progress	πŸŒ‰ Gateways and Clients	ns4plabs		Nov 29, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[rpc: fix - Unix domain socket maddrs used with NewApi](https://github.com/ipfs/kubo/pull/10019)	πŸ₯ž Todo	πŸŒ‰ Gateways and Clients		Jorropo, kubo maintainers	Sep 4, 2023
[protocol/bifrost-community](https://github.com/protocol/bifrost-community)	[Expose trustless gateway and delegated routing under new domains with certain policies](https://github.com/protocol/bifrost-community/issues/1)		πŸŒ‰ Gateways and Clients			
	Issue with unresolvable CIDs		πŸŒ‰ Gateways and Clients			
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		πŸŒ‰ Gateways and Clients			
[ipfs-shipyard/someguy](https://github.com/ipfs-shipyard/someguy)	[feat: proxy all types of delegated routing](https://github.com/ipfs-shipyard/someguy/pull/23)	πŸ”Ž In Review	πŸ”€ Content Routing/Providing	hacdias	aschmahmann	Nov 30, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[feat(routing/dht/zikade): add dht routing implementation using zikade](https://github.com/ipfs/boxo/pull/472)	πŸ”Ž In Review	πŸ”€ Content Routing/Providing		Jorropo, kubo maintainers	Nov 3, 2023
[ipfs/specs](https://github.com/ipfs/specs)	[IPIP-378: Delegated Content Routing PUTs over HTTP API](https://github.com/ipfs/specs/pull/378)	πŸƒβ€β™€οΈ In Progress	πŸ”€ Content Routing/Providing	lidel	aschmahmann, BigLep, guseggert, hacdias, lidel, willscott	Nov 22, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[routing/http/server: limit response sizes](https://github.com/ipfs/boxo/issues/15)	πŸ₯ž Todo	πŸ”€ Content Routing/Providing	hacdias		Nov 7, 2022
[ipfs/ipfs-docs](https://github.com/ipfs/ipfs-docs)	[Document delegated routing concept](https://github.com/ipfs/ipfs-docs/issues/1752)		πŸ”€ Content Routing/Providing			
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		πŸ”€ Content Routing/Providing			
[ipfs/boxo](https://github.com/ipfs/boxo)	[New very fast unixfs implementation.](https://github.com/ipfs/boxo/pull/347)	πŸƒβ€β™€οΈ In Progress	πŸš‡ Data Transfer	Jorropo		Nov 2, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[New Unixfs implementations](https://github.com/ipfs/boxo/issues/224)	πŸƒβ€β™€οΈ In Progress	πŸš‡ Data Transfer	Jorropo		Oct 5, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[gateway: Try feather for incremental files verifications in gateway](https://github.com/ipfs/boxo/issues/139)	πŸƒβ€β™€οΈ In Progress	πŸš‡ Data Transfer	Jorropo		Jun 14, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[bitswap: reenable unit tests](https://github.com/ipfs/boxo/issues/327)	πŸƒβ€β™€οΈ In Progress	πŸš‡ Data Transfer	Jorropo		Aug 3, 2023
[ipfs/go-libipfs-rapide](https://github.com/ipfs/go-libipfs-rapide)	[RAPIDE POC](https://github.com/ipfs/go-libipfs-rapide/issues/4)	πŸƒβ€β™€οΈ In Progress	πŸš‡ Data Transfer	Jorropo		Jan 26, 2023
[ipfs/go-libipfs-rapide](https://github.com/ipfs/go-libipfs-rapide)	[IPSL Compiler And Basic Unixfs builtin scope](https://github.com/ipfs/go-libipfs-rapide/issues/3)	πŸƒβ€β™€οΈ In Progress	πŸš‡ Data Transfer	Jorropo		Jan 26, 2023
[ipfs/go-libipfs-rapide](https://github.com/ipfs/go-libipfs-rapide)	[Rapide CAR over HTTP (aka, download from gateway) protocol implementation](https://github.com/ipfs/go-libipfs-rapide/issues/2)	πŸƒβ€β™€οΈ In Progress	πŸš‡ Data Transfer	Jorropo		Jan 26, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[Bitswap peer connection race](https://github.com/ipfs/boxo/issues/432)	πŸ₯ž Todo	πŸš‡ Data Transfer	BigLep, Jorropo		Aug 22, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[Bitswap client CPU hotspots](https://github.com/ipfs/boxo/issues/296)	πŸ₯ž Todo	πŸš‡ Data Transfer			May 11, 2023
[ipfs/go-libipfs-rapide](https://github.com/ipfs/go-libipfs-rapide)	[Make an Unixfs Implementation that supports reassembling unordered block streams.](https://github.com/ipfs/go-libipfs-rapide/issues/8)	πŸ₯ž Todo	πŸš‡ Data Transfer			May 11, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[[ipfs/go-bitswap] go-bitswap overhaul 2023](https://github.com/ipfs/boxo/issues/73)	πŸ₯ž Todo	πŸš‡ Data Transfer			Jul 26, 2022
[ipfs/kubo](https://github.com/ipfs/kubo)	[Downloads hang after a few minutes](https://github.com/ipfs/kubo/issues/9735)	πŸ₯ž Todo	πŸš‡ Data Transfer			May 15, 2023
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		πŸš‡ Data Transfer			
[ipfs/kubo](https://github.com/ipfs/kubo)	[fully remove mplex](https://github.com/ipfs/kubo/issues/10069)	πŸŽ‰ Done	πŸ™ Other Initiative	Jorropo		Nov 22, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[Remove mplex](https://github.com/ipfs/kubo/pull/10225)	πŸŽ‰ Done	πŸ™ Other Initiative	Jorropo	hacdias	Nov 22, 2023
	Jorropo IPFS Connect talk	πŸŽ‰ Done	πŸ™ Other Initiative			Nov 29, 2023
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		πŸ™ Other Initiative			
[ipfs/kubo](https://github.com/ipfs/kubo)	[remove experimental graphsync server](https://github.com/ipfs/kubo/pull/9747)	πŸŽ‰ Done	πŸ‘·πŸΎ Maintainer/Contributor Experience	Jorropo	hacdias, lidel	Nov 22, 2023
[ipfs/gateway-conformance](https://github.com/ipfs/gateway-conformance)	[docs: split and cleanup README](https://github.com/ipfs/gateway-conformance/pull/182)	πŸŽ‰ Done	πŸ‘·πŸΎ Maintainer/Contributor Experience		2color, hacdias, laurentsenta	Nov 22, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[feat: cmd/ipfs: Make it possible to depend on cmd/ipfs](https://github.com/ipfs/kubo/pull/9782)	πŸŽ‰ Done	πŸ‘·πŸΎ Maintainer/Contributor Experience	aschmahmann		Nov 14, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[Migrate coreiface](https://github.com/ipfs/kubo/pull/10237)	πŸŽ‰ Done	πŸ‘·πŸΎ Maintainer/Contributor Experience	hacdias	Jorropo, lidel	Nov 29, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[coreiface: remove and move to Kubo](https://github.com/ipfs/boxo/pull/517)	πŸŽ‰ Done	πŸ‘·πŸΎ Maintainer/Contributor Experience	hacdias	Jorropo	Nov 29, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[Flaky test: TestReprovider/many](https://github.com/ipfs/boxo/issues/372)	πŸ₯ž Todo	πŸ‘·πŸΎ Maintainer/Contributor Experience			Jun 22, 2023
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		πŸ‘·πŸΎ Maintainer/Contributor Experience			
[ipfs/boxo](https://github.com/ipfs/boxo)	[Removing dependencies on global IPLD registries](https://github.com/ipfs/boxo/issues/328)		πŸ‘·πŸΎ Maintainer/Contributor Experience			
[ipfs/kubo](https://github.com/ipfs/kubo)	[feat: cmd/ipfs: Make it possible to depend on cmd/ipfs](https://github.com/ipfs/kubo/pull/10219)	πŸŽ‰ Done	🀞 Best Effort Improvement		aschmahmann, magik6k	Dec 23, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[rcmgr: use default libp2p rcmgr metrics](https://github.com/ipfs/kubo/pull/9947)	πŸ”Ž In Review	🀞 Best Effort Improvement	Jorropo	Jorropo, kubo maintainers	Jun 14, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[commands/add: return an error when using --only-hash and --to-files](https://github.com/ipfs/kubo/pull/10182)	πŸ”Ž In Review	🀞 Best Effort Improvement		kubo maintainers	Oct 21, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[coreapi/unixfs: don't create an additional IpfsNode for --only-hash](https://github.com/ipfs/kubo/pull/10184)	πŸ”Ž In Review	🀞 Best Effort Improvement		kubo maintainers	Oct 21, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[coreapi/unixfs: in /add, don't setup a MFS root with a mock](https://github.com/ipfs/kubo/pull/10183)	πŸ”Ž In Review	🀞 Best Effort Improvement		kubo maintainers	Oct 21, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[feat: daemon: automatically set GOMEMLIMIT if it is unset](https://github.com/ipfs/kubo/pull/9451)	πŸ₯ž Todo	🀞 Best Effort Improvement	Jorropo	ajnavarro, dokterbob, kubo maintainers	Jun 29, 2023
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		🀞 Best Effort Improvement			
[ipfs/go-ds-s3](https://github.com/ipfs/go-ds-s3)	[Fix bundling process](https://github.com/ipfs/go-ds-s3/pull/275)	πŸŽ‰ Done	πŸ‘‚ Community Engagement		hsanjuan, Jorropo	Nov 22, 2023
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		πŸ‘‚ Community Engagement			
[ipfs/kubo](https://github.com/ipfs/kubo)	[chore: update dependencies](https://github.com/ipfs/kubo/pull/10211)	πŸŽ‰ Done	πŸš… Release Process, Artifacts, CI/CD	hacdias	Jorropo	Dec 6, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[http: superfluous response.WriteHeader](https://github.com/ipfs/boxo/issues/487)	πŸŽ‰ Done	πŸš… Release Process, Artifacts, CI/CD	hacdias		Nov 23, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[docs(cli): fix spelling](https://github.com/ipfs/kubo/pull/10240)	πŸŽ‰ Done	πŸš… Release Process, Artifacts, CI/CD		hacdias	Dec 4, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[chore: bump to boxo 0.16.0](https://github.com/ipfs/kubo/pull/10244)	πŸŽ‰ Done	πŸš… Release Process, Artifacts, CI/CD	hacdias	kubo maintainers	Dec 6, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[Merge Release v0.16.0](https://github.com/ipfs/boxo/pull/519)	πŸŽ‰ Done	πŸš… Release Process, Artifacts, CI/CD	hacdias	kubo maintainers	Dec 6, 2023
[ipfs/boxo](https://github.com/ipfs/boxo)	[Release 0.16.0](https://github.com/ipfs/boxo/pull/518)	πŸŽ‰ Done	πŸš… Release Process, Artifacts, CI/CD	hacdias	kubo maintainers, lidel	Dec 6, 2023
[ipfs/kuboreleaser](https://github.com/ipfs/kuboreleaser)	[Use kubo npm](https://github.com/ipfs/kuboreleaser/pull/26)	πŸŽ‰ Done	πŸš… Release Process, Artifacts, CI/CD	Jorropo	hacdias	Dec 15, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[Release 0.25](https://github.com/ipfs/kubo/issues/10045)	πŸƒβ€β™€οΈ In Progress	πŸš… Release Process, Artifacts, CI/CD			Dec 15, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[HTTP fetch of fs-migrations should use CAR](https://github.com/ipfs/kubo/issues/9159)	πŸ₯ž Todo	πŸš… Release Process, Artifacts, CI/CD	Jorropo		Sep 20, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[Gateway docs need to be updated to reflect supported features](https://github.com/ipfs/kubo/issues/10234)	πŸ₯ž Todo	πŸš… Release Process, Artifacts, CI/CD			Nov 27, 2023
	⬆️⬆️⬆️ Items that should make it into this iteration ⬆️⬆️⬆️		πŸš… Release Process, Artifacts, CI/CD			
[ipfs/kubo](https://github.com/ipfs/kubo)	[docs(config): clarify Reprovider.Strategy: roots](https://github.com/ipfs/kubo/pull/10249)	πŸ”Ž In Review	Documentation		2color, kubo maintainers	Dec 8, 2023
[ipfs/kubo](https://github.com/ipfs/kubo)	[dag import hangs indefinitely for seemingly valid CAR](https://github.com/ipfs/kubo/issues/10159)	πŸ₯ž Todo				Oct 30, 2023

@BigLep
Copy link
Contributor Author

BigLep commented Jan 3, 2024

@Jorropo : is there anything that is needed before we can close out Kubo 0.25 release? Did the dependency update PR get created?

@hacdias hacdias closed this as completed Jan 16, 2024
@hacdias hacdias unpinned this issue Jan 16, 2024
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

5 participants