up vote 6 down vote favorite
1
share [g+] share [fb]

I have seen many APIs which list the details about know issues? If there are known issues why release it to public before fixing them?

What is the reason? Dead lines? Or fixing that can break something else?

Note: I am not sure whether this question belongs here. So feel free to close if this is not a valid question.

link|improve this question

2  
Time and tide wait for no man. – Andy Jul 29 '09 at 18:59
1  
$$$$$$$$$$$$$$$$$$$$$$$$ – Troggy Jul 29 '09 at 19:15
Like choosing a partner - when perfect, it's to late – peterchen Sep 16 '09 at 14:36
feedback

closed as off topic by Robert Harvey Jan 19 at 4:08

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

19 Answers

up vote 32 down vote accepted

Software is not perfect and waiting until every issue is fixed to release something will result in a software-less world.

link|improve this answer
1  
Exactly right . – Ian Boyd Jul 29 '09 at 18:56
3  
Well, I wouldn't go that far. There are plenty of good reasons to release software that has known issues, but being generally lazy and saying that all software has bugs isn't one of them. While it's true that almost all software has bugs, that should be seen as a PROBLEM with the state of software engineering in this day and age, and not a foregone conclusion. – Nick Bastin Jul 29 '09 at 18:56
1  
Do you see it as a problem that every building ever built has flaws and imperfections, cracks and misaligned structures? The truth is that it is virtually impossible to write software of any significant size that doesn't have any flaws. There is a big difference between "technically feasible" and "commercially viable". – Jason Williams Jul 29 '09 at 19:00
@Nick +1 for not simply accepting that bugs will exist in any piece of software. However, JCron's point is, IMHO, equally important. As with anything, the key is to strike the right balance between the two. – Eric Jul 29 '09 at 19:03
2  
@Jason: Buildings have minimum standards, and software does not. My problem isn't that software isn't perfect - that's a moving target as the definition of "perfect" for a given situation changes as we move through time and learn new things - my problem is that there's no minimum bar. People continue to write software that has stupid bugs and obvious design flaws - a crumbling foundation built to the proper spec is one thing, but you'll never construct a building with a foundation of foam because you can't get that design past inspection. Unfortunately the same can't be said for software. – Nick Bastin Jul 30 '09 at 4:57
show 1 more comment
feedback

Because the software is usable and useful, even with the issues, and because users would prefer to have it sooner than wait for the release. Because its developers want the feedback that releasing it early will provide.

link|improve this answer
feedback

There are always known issues. If you don't release until there are no more known issues, you'll never release. Sometimes it's better to get a mostly-working version out the door with warnings about some non-critical problems.

link|improve this answer
feedback

Often times the newer software is still better than previously available versions, even with the known issues. Especially when dealing with libraries, clients often would prefer to have code delivered sooner that has issues than wait for issues they don't care about to get fixed.

link|improve this answer
feedback

Profit.

Real world software of any complexity is never going to be perfect. There's a certain point where it's "good enough," however, and that's when it's time to ship.

The real debates happen when deciding what level of quality meets the "good enough" bar.

link|improve this answer
feedback

Known issues often affect a small number of users, and everyone else could really use the improvements in the new release. Moreover, the same issues may exist with the existing version, in which case, no new (known) bugs are being given to the users. So, it really is a win.

Some issues may also take a long time to fix.

link|improve this answer
feedback

Sometimes you just can't fix those issues.

Imagine that you have a JS script and some bug in a browser that you cannot avoid. You wouldn't then release your library until that browser is fixed, would you? Or you could just add a "known issues" note about one browser problems and release it.

link|improve this answer
feedback

Otherwise you'd never release.

link|improve this answer
feedback

Known issues are fine. It's the unknown issues that cause the trouble.

link|improve this answer
feedback

Because the software is stable. If there are a few known issues that don't directly affect day-to-day usage of the software and that can be fixed in patches, then why not release it?

Plus there's deadlines and costs to consider, but obviously the latter doesn't really apply to Open Source.

link|improve this answer
feedback

The main reason is TIME TO MARKET

link|improve this answer
feedback

Sometimes the benefit of releasing something that works is more important than issues only some users will be struck by.

Bugs can be minor or critical :S

link|improve this answer
feedback

If it's low impact (affecting few users or maybe it's internal) then that probably one reason. Others may be big-wigs wanting stuff out and in the market ASAP so sometimes things must be left incomplete based on a number of factors.

link|improve this answer
feedback

Especially with open-source projects, this allows the majority of users to get the product without problems and also raises awareness of the bugs so users may contribute to the code.

link|improve this answer
feedback

If a known issue only affects a small percentage of potential users, then it's probably worth releasing.

link|improve this answer
feedback

An API is a contract between the implementor of the API and the programmer using the API. Even if the implementation has known issues, it is good to release the API documentation, so that programmers are able to start developing code that can take advantage of the API. It is understood that the provider of the implementation will (eventually) fulfill their end of the contract, bringing the implementation into full conformance with the API. If the API were only released when the implementation was perfect, then the application developers would be forced to waste a huge amount of development time in which they could be productive, even if it was based on the API docs alone, and they couldn't actually test the code yet.

link|improve this answer
feedback

"Commitment".

That is more important.

Once the delivery date is finalized (Commited), product must be released if it is in "Acceptable" level. The difference between "Perfection" and "Acceptance" is "Known Issues"

link|improve this answer
feedback

Most of the firms have a release criteria which might look like-

Software release might have some minor bugs whose count is set to a limit - Such issues might be minor UI issues.

Software release may have some major bugs whose count is set to a limit - Attempts are made to make the release free from such bugs but if they still escape through (owing to different reasons) then they should not break the product and there is some work around available to get around them.

Software release should not have any critical bugs - The software would not shipped if any critical bug is found. Such bugs break the product with no workarounds entertained whatsoever.

Again the above mentioned classifications might be off the target and depends on the company and their processes involved.

cheers

link|improve this answer
feedback

See the benefits of the release early/release often policy, e.g. the invaluable feedback by your users.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.