Go-ipfs: Is 0.4.0 shipped yet?

Created on 12 Feb 2016  ·  32Comments  ·  Source: ipfs/go-ipfs

This issue is here so people can subscribe and be notified when they should upgrade. This is important because of the network breaking change.

Most helpful comment

All 32 comments

To answer the question: not yet.

:)

:+1: Can't wait!

What is the status? Last release seems to be 0.4.0-rc2 20 days ago. And seemingly there are features going into master since then?

Ping @whyrusleeping

we're just waiting on our new integration test suites to run for a little bit to ensure things are all working smoothly before shipping.

Alright, heres my checklist for shipping 0.4.0:

  • [x] write changelog (@whyrusleeping @lgierth @RichardLitt)
  • [x] finish blog post (@RichardLitt)
  • [x] add final 0.4.0 build to dist.ipfs.io and adjust 'latest' version ( @whyrusleeping or @dignifiedquire )

    • [x] test that ipfs update shows the 0.4.0 update and can pull/install correctly ( @chriscool @whyrusleeping)

  • [x] ????? ( @jbenet)
  • [x] profit (@ipfs)
  • [x] Prepare new webui release @dignifiedquire

    • [x] Merge feat/files-api on js-ipfs-api and release new version

    • [x] Update dependencies on webui#master

    • [x] Ensure geoip works on webui

    • [x] Make release and upload it

    • [x] Get at least three people to test it

First webui version to test: http://localhost:5001/ipfs/QmWCJFK5VYXBZqS3LbiRHt8aC3aLSVXU7wNFX9vpckSYun

For testing this run your daemon with ipfs daemon --unrestricted-api

Webui testing

  • some errors:
    image
  • my browser froze on the logs tab
  • shows type as ? but I'm pretty sure that the second is a dir and the first one is a file (but empty one)
    image
  • what about changing the "GO" button to "RESOLVE"? Kind of feel that it is a good opportunity to 'educate' our users that is what happens when a HASH is searched
    image
  • Other than this, looks pretty snappy and fast (I've tested it on a fast machine though), great work!! :+1:

shows type as ? but I'm pretty sure that the second is a dir and the first one is a file (but empty one)

This hasn't work for some time now (0.3.11, 0.3.10) and this view is going to be removed soon, so I'm not very concerned about fixing this.

what about changing the "GO" button to "RESOLVE"? Kind of feel that it is a good opportunity to 'educate' our users that is what happens when a HASH is searched image

This release is about making it work with 0.4, I know there are things we want to improve, but that's what the other work we are doing is for.

my browser froze on the logs tab

Logs are simply too much at the moment, we could remove them for now until we have a better solution, thoughts?

Fixed locales and minification: QmdmpbMUS1gJ3HppHxFjkUWbV5jpartSi88uUXzBVLBQkU

pinned files froze my browser (but that's another issue... again)

pinned files froze my browser (but that's another issue... again)

Fixing, that is a real issue

nah, it's because of the number of entries... pagination would maybe fix this

No more freezing QmU3o9bvfenhTKhxUakbYrLDnZU7HezAVxPM6Ehjw9Xjqy

lol :D nice fix

Aside from Error: Unmapped range(…) and on load of connections page Error: Failed to lookup node(…) everything looks 👍

If everyone could test this webui version out asap that would be great.

Run your ipfs daemon with: ipfs daemon --unrestricted-api

and then access http://localhost:5001/ipfs/QmU3o9bvfenhTKhxUakbYrLDnZU7HezAVxPM6Ehjw9Xjqy
in your browser to try it out.

Lots of Failed to load resource: the server responded with a status of 403 (Forbidden). I'm running with --unrestricted-api on 0.4.0-dev. UI doesn't appear to be being populated with content.

@noffle does the regular webui work for you? sounds like CORS settings not being correct

@dignifiedquire It doesn't. My config:

  "API": {
    "HTTPHeaders": {
      "Access-Control-Allow-Credentials": [
        "true"
      ],
      "Access-Control-Allow-Methods": [
        "PUT",
        "GET",
        "POST"
      ],
      "Access-Control-Allow-Origin": [
        "http://localhost:3000"
      ]
    }
  },

@noffle add http://localhost:5001 to the allowed origins restart the daemon, and then navigate to http://localhost:5001/ipfs/QmU3o9bvfenhTKhxUakbYrLDnZU7HezAVxPM6Ehjw9Xjqy

@dignifiedquire: thanks, that did the trick.

It's working well for me. I played with all of the affordances and nothing is exploding (violently or otherwise).

@dignifiedquire we should not have to add any CORS stuff to have the webui work by default. it should work out of the box for users. if it doesn't then it needs to be fixed.

@jbenet i think that @noffle had his config changed before testing the new webui leading to the CORS issues he had

@jbenet yes it works out of the box, but @noffle had a non default config, so it didn't work.

@dignifiedquire ah ok makes sense. we should probably warn users that setting an origin like that will mess with the default expectations (or maybe we should just make the default config show the expectations)

@dignifiedquire Are you sure? I did a fresh ipfs init and see this "API" entry in the config:

  "API": {
    "HTTPHeaders": null
  },

@noffle works fine for me on master on a fresh init. Even though headers is empty, the default is set internally I think.

Thanks to everyone who contributed to this huge release

Was this page helpful?
0 / 5 - 0 ratings