Tagged Questions

Backward compatibility refers to a software or hardware system that can successfully use interfaces and data from earlier versions of the system.

learn more… | top users | synonyms

38
votes
14answers
2k views

In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?

It has been thirteen years between the initial public release of Java 1.0 (1996) and the current stable release 1.6.0_16 (2009). During those thirteen years the following notable releases have been ...
23
votes
1answer
577 views

std::vector, default construction, C++0x and breaking changes

I ran today against a quite subtle issue I'd like to have your opinion on. Consider the following garden-variety shared-body-idiom class: struct S { S() : p_impl(new impl) {} private: struct ...
21
votes
5answers
3k views

Strategies for Honeycomb & backward compatibility

So we've seen the preview sdk and the neat new stuff like ActionBar and Fragments. Making a lot of method calls will be unavoidable to make use of these, so what strategies are there for maintaining 1 ...
15
votes
3answers
455 views

Rules for C# class backward compatibility/avoiding breaking changes

I'm working on a C# 3.5 assembly that is consumed by many different applications in an enterprise server environment. I would like to add some properties to an existing C# class (not abstract) and ...
13
votes
3answers
2k views

Best practices for versioning your services with WCF?

I'm starting to work with my model almost exclusively in WCF and wanted to get some practical approaches to versioning these services over time. Can anyone point me in the right direction?
12
votes
3answers
1k views

GCC vs MS C++ compiler for maintaining API backwards binary compatibility

I came from the Linux world and know a lot of articles about maintaining backwards binary compatibility (BC) of a dynamic library API written in C++ language. One of them is "Policies/Binary ...
12
votes
4answers
2k views

Can I pass an array as arguments to a method with variable arguments in Java?

I'd like to be able to create a function like: class A { private String extraVar; public String myFormat(String format, Object ... args){ return String.format(format, extraVar, args); } } ...
12
votes
10answers
592 views

When should you break backwards compatibility?

I hate capricious projects that change at the drop of a hat. I hate projects which are overly complex trying to maintain backwards compatibility. Where is the balance? When maintaining a project, ...
11
votes
5answers
325 views

What are some specific examples of backward incompatibilities in Perl versions?

It has been 22 years between the initial public release of Perl 1.0 (December 18, 1987) and the current stable release 5.10.1 (2009). During those 22 years the following notable releases have been ...
11
votes
4answers
353 views

How do you balance the conflicting needs of backwards compatibility and innovation?

I work on an application that has a both a GUI (graphical) and API (scripting) interface. Our product has a very large installed base. Many customers have invested a lot of time and effort into ...
10
votes
2answers
929 views

Using iOS 5 features without breaking backward compatibility

My application is currently compiled against the latest iOS 4.x SDK. Once iOS 5.0 SDK is out, would it be possible for me to use the new iOS 5.0 SDK features in my application and yet have it run on ...
10
votes
8answers
828 views

What issues might I have in opening .NET 2.0 Projects in Visual Studio 2010?

The small software team I work on recently got approved to upgrade to Visual Studio 2010 (we're currently using VS 2005). We have several ASP.NET 2.0 and WinForms (in .NET 2.0) projects in ...
10
votes
7answers
949 views

Is HTTP/1.0 still in use?

Say one is to write an HTTP server/client, how important is it to support HTTP/1.0? Is it still used anywhere nowdays? Edit: I'm less concerned with the usefullness/importance of HTTP/1.0, rather the ...
10
votes
8answers
2k views

Ensuring a Program Written for 32-bit Windows is Compatible with 64-bit Windows

While it's my understanding that there's no fundamental reason a program written for 32-bit hardware / OSs not to run on 64-bit hardware / OSs, in practice, I've found many programs intended for ...
9
votes
6answers
457 views

Extending a class and maintaining binary backward compatibility

I'm trying to add new functionality to an existing library. I would need to add new data to a class hierarchy so that the root class would have accessors for it. Anyone should be able to get this data ...
9
votes
4answers
1k views

What modernizer scripts exist for the new ECMAScript 5 functions?

ECMAScript 5 has quite a few nice additions. John Resig has a good overview here. Here is a good ECMAScript 5 compatibility table. A lot of this stuff can be "faked" for browsers that don't support ...
9
votes
6answers
802 views

Static analysis tool to detect ABI breaks in C++

It's not very hard to break binary backwards-compatibility of a DSO with a C++ interface. That said, is there a static analysis tool, which can help detecting such ABI breaks, if it's given two ...
8
votes
3answers
196 views

How to submit a OSX 10.7 application compatible with 10.6?

I want to build an OSX application that will use some of the new 10.7 SDK features (more specifically, In-App purchases). However I don't want to completely prevent 10.6 users from installing the ...
8
votes
4answers
279 views

In C++, does overriding an existing virtual function break ABI?

My library has two classes, a base class and a derived class. In the current version of the library the base class has a virtual function foo(), and the derived class does not override it. In the next ...
8
votes
2answers
280 views

What's the best way to build software that doesn't require the newest glibc?

I'm attempting to build a binary package that can be run on multiple Linux distributions. It's currently built on Ubuntu 10.04, but it fails on Ubuntu 8.04 with the following error: ./test: ...
8
votes
2answers
152 views

How do you cleanly separate code for backwards compatibility from the main code?

I'm interested in what strategies people have come up with for separating all the crufty logic that's necessary to maintain backwards compatibility from the main code of an application. In other ...
8
votes
4answers
682 views

Java 6 Source backward-compatibility and SQL

My understanding is that in order to maintain source-compatibility, Java never introduces new methods to public interfaces, as that breaks existing clients implementing the interfaces. Java Release ...
8
votes
5answers
323 views

How much time and effort should a project spend on backward compatibility?

Given that every software project only has so many programmer-hours dedicated to it, how much would you spend on making sure the product is backward compatible with the previous versions? Actually ...
8
votes
3answers
3k views

jQuery Graceful Degradation

I want to spruce up some areas of my website with a few jQuery animations here and there, and I'm looking to replace my AJAX code entirely since my existing code is having some cross-browser ...
7
votes
5answers
133 views

what is the general java API compatibility rule

in detail: if we use public API for example, write java program for example , in JDK 1.4, if should run correctly in all version above it. in all update version in 1.4, in 1.5, 1.6 and 1.7? Also , ...
7
votes
1answer
5k views

inflating fragments with compatibility package android

I am trying to inflate a layout containing a Fragment using the backwards compatibility package. I took the jar file and placed it in the libs folder of my project. I extended Fragment and then tried ...
7
votes
7answers
1k views

Is JDK “upward” or “backward” compatible?

Backward binary compatibility (or downward compatibility) - an ability of clients built with an old version of library API to run on a new one (wiki). Upward binary compatibility (or forward ...
7
votes
1answer
1k views

What does the new “ Retina Display” mean for iPhone Developers?

Apple announced a higher res display for the iPhone 4, yesterday. What does this mean for developers? More detection code and image swapping? Can and should I just develop for iPhone 4 and let iphone ...
7
votes
2answers
359 views

Why did Sun specify String.hashCode() implementation?

There seems to be an ongoing debate about whether it is safe to rely on the current implementation of String.hashCode() because, technically speaking, it is guaranteed by the specification (Javadoc). ...
7
votes
3answers
588 views

Is ASP.NET MVC 1 forwards compatible with ASP.NET MVC 2?

Can I run a MVC 1 application using the MVC 2 assemblies without a hitch? I understand that some 3rd party tools have had stuff broken in MVC 2, but let's assume I'm not using those any other tools.
7
votes
4answers
2k views

Compiling Java code written for 1.5 to work with 1.4 JRE?

I have a project that uses generics and a few Java 1.5/6 bits and pieces. Is it possible to compile this code to work on a system running a 1.4 JRE? I use an ANT build script and javac task to ...
6
votes
3answers
1k views

will TortoiseSVN 1.7 work properly against a SVN 1.6 repository

I would like to upgrade my TortoiseSVN installation to version 1.7. We have a VisualSVN server running with a SVN 1.6 repository. Do I need to upgrade the repository to 1.7 before i can update my ...
6
votes
2answers
164 views

Photo Mosaic in Mathematica: an example from 2008 doesn't work in Mathematica 8

I'm trying to get a Mathematica example working. It's the one on Theo Gray's blog. I think that Mathematica must have changed since he wrote that code (May 2008), since I'm unable to get anything ...
6
votes
2answers
3k views

Replacing fragments and orientation change

I'm developing an Android application targeting 2.x and 3.0 devices and thus I'm using the compatibilty API. I'm testing on Android 2.0. I'm trying to replace a displayed fragment with another one ...
6
votes
1answer
864 views

Check for availability of blocks at runtime on iOS

I need to test for the availability of blocks at runtime, so I can handle backwards compatibility with iOS 3. Any tips? edit: So far I'm doing if (!NSClassFromString(@"NSBlockOperation")) {...} Seems ...
6
votes
3answers
175 views

Can removing final from a class definition break backwards compatibility?

I'm currently reading Effective Java by Joshua Bloch and Item 17 is 'Design and document for inheritance or else prohibit it'. The author suggest to prohibit inheritance by default. Is it safe to ...
6
votes
4answers
107 views

Why do some frameworks refuse to drop support for ancient Java versions?

As I'm sitting here modifying PircBot, I've just noticed that the entire backend was written to support Java 1.1. It has a custom queue implementation, uses hash tables, custom producer/consumer ...
6
votes
3answers
2k views

Is it okay to use <input type=“tel”/> now?

I'm working on a mobile phone web app and I have several text fields that could benefit from iPhone's will adjust the keyboard for the user but I'm worried about breaking backwards compatability. ...
6
votes
5answers
2k views

Which Android platform and API to target?

I'm just about to launch my first Android app, and it runs on the Android 1.1 platform, API Level 2, but is this what I should officially sign and launch the app as? Does it affect performance at all ...
6
votes
9answers
3k views

Should I use _T or _TEXT on C++ string literals?

For example: // This will become either SomeMethodA or SomeMethodW, // depending on whether _UNICODE is defined. SomeMethod( _T( "My String Literal" ) ); // Becomes either AnotherMethodA or ...
6
votes
2answers
2k views

hashlib / md5. Compatibility with python 2.4

python 2.6 reports that the md5 module is obsolete and hashlib should be used. If I change import md5 to import hashlib I will solve for python 2.5 and python 2.6, but not for python 2.4, which has no ...
6
votes
2answers
890 views

Git repository backwards compatibility

I just had a quick question about git - how backwards compatible are git repositories? Eg., I've created a repository using git 1.6.4 and the svn2git ruby script, but I want to put it on a machine ...
6
votes
6answers
311 views

Java API break

I have the following API: public interface MyApi { /** * Performs some stuff. * @throws MyException if condition C1 */ public void method() throws MyException; } I am now ...
6
votes
4answers
209 views

What Java designs are explicitly done to support backwards compatability?

Since this question is back to four votes to close, I'm trying again to ask a more narrow question that hopefully the community will view more favorably. Which specific design decisions in Java are ...
5
votes
1answer
265 views

Why did Python 3 changes to exec break this code?

I looked through the myriad 'Python exec' threads on SO, but couldn't find one that answered my issue. Terribly sorry if this has been asked before. Here's my problem: # Python 2.6: prints 'it is ...
5
votes
2answers
125 views

Allow my C++ library to work with C (reduced function sets)

I've been wanting to build a shared library of which will utilize classes to keep its functioning clean (it may require many inputs or processing), although I still wish to target for C platforms. If ...
5
votes
3answers
386 views

gnu c++0x backwards compatibility status - can I just switch it on and go?

I have a pretty big c++ code base (not self written). Numerous libraries, some not so syntactically heavy, some extremely so. Among others there's heavy use of Boost, some Eigen. I just love some of ...
5
votes
3answers
189 views

Can Visual Studio target earlier C# syntax in addition to earlier .NET framework versions?

The easy part: Targeting the .NET 2.0 framework in a Visual Studio 2010 project using the dropdown. The hard part: Is it possible to target a specific syntax version - for example var s = "hello ...
5
votes
4answers
61 views

Should changing the documented performance of a method be considered a breaking change?

It seems a common rule in software development is that once you have deployed a public API, especially if you've documented that API (which—yeah, you should have), you must think long and hard before ...
5
votes
6answers
363 views

In C++, why struct is in fact class?

The other topic and responses there made me ask this question: Why does C++ allow struct to behave just like class? At one hand, C++ made it compatible with C-struct by making it's members public by ...

1 2 3 4 5 7