Questions tagged [version-compatibility]

This designation specifies whether and the extent to which different versions of a program, software library, package, operating system or other component are mutually compatible.

Overview

This designation specifies whether and the extent to which different versions of a program, software library, package, operating system, programming language specification or other component are mutually compatible.

Breaking changes

Version compatibility is customarily associated with "breaking changes". This is a circumstance in which a difference between two or more versions of a software library or other component produces undesirable side effects, such as error messages or operational failure.

32 questions
1
vote
2 answers

are mysql_* functions of PHP 5.6 compatible when we upgrade database from mysql 5.7.42 to mariadb 10.5?

My client wants to upgrade all his websites script from PHP 5.6 to PHP 8 and mysql 5.7.42 to mariadb 10.5. We want to upgrade one by one website. Now the problem is we can choose different PHP version for each domain and subdomain but for the…
1
vote
1 answer

How to check Postgres version compatibility with spring data jpa?

I have been using Postgres version 10.6 in my spring-boot project but now we are going to upgrade the Postgres version from 10.6 to 13.6. how should I check the version compatibility of the Postgres 13.6 with my current code? I am using…
1
vote
1 answer

Loading dataframe from 1.1.5 fails on pandas 1.0.1

I have a dataframe saved to a pickle (with a bunch of other stuff, as a dictionary). It was saved when using pandas version 1.1.5. I'm trying to open it with version 1.0.1 but get the following error File "", line 1, in File…
JLev
  • 705
  • 1
  • 9
  • 30
1
vote
1 answer

Error creating a table executing rake db:migrate in Rails 2.0.2 and MySql 5.1

I am trying to implement a rails Recipe application from the site http://oreilly.com/ruby/archive/rails-revisited.html . They have given a good example highlighting the significance of Rails for Agile Development. The example in this post is…
boddhisattva
  • 6,908
  • 11
  • 48
  • 72
1
vote
2 answers

.NET 4.6 don't fully support in Unity?

I changed .NET version in my project to 4.6, but I still cannot use GeoCoordinate class. Haven't I done something wrong or Unity don't fully support .NET 4.6?
Ted Romanus
  • 582
  • 2
  • 10
  • 27
1
vote
1 answer

GetProperty works in .NET 3.5 but not in .NET 4

I use following code: protected object GetProperty(object target, string fieldName) { Type type = target.GetType(); PropertyInfo mi = type.GetProperty( fieldName, BindingFlags.NonPublic | BindingFlags.Instance |…
magol
  • 6,135
  • 17
  • 65
  • 120
1
vote
2 answers

How to write Junit with Java 1.7 while running base code with 1.6

I would like to use java 7 in my tests and java 6 for the code. How to achieve this?
pixel
  • 24,905
  • 36
  • 149
  • 251
1
vote
1 answer

Ruby and gem version compatibility

I had an SSH-session to some Ubuntu Server. The latest available Ruby package with -full was an apt-get install ruby1.9.1-full. But after apt-get install rubygems1.9.1 the problem was that: root@...:~# gem install nokogiri ERROR: Error installing…
Nakilon
  • 34,866
  • 14
  • 107
  • 142
1
vote
1 answer

Feature compliance across different OS versions for the Android NDK

Are NDK features OS dependent? For example, if I have Gingerbread 2.3, can I only use NDK features for 2.3 and below, or can I take advantage of the latest fixes and features the NDK provides? The main reason I'm asking is because it seems like the…
zeboidlund
  • 9,731
  • 31
  • 118
  • 180
0
votes
1 answer

Is it possible to install specific version of TFDV without upgrading TF?

I have problem with installing TensorFlow Data Validation (TFDV). I have already TensorFlow installed (version 2.5.0) and I don't want to upgrade that version. I used this command: pip install tensorflow_data_validation==1.2.0 Beacuse this TFDV…
0
votes
1 answer

"No editor descriptor" error after CUDA plugin installation + Eclipse update

I had installed the CUDA 10 Eclipse plugin via my installed Ecplise's UI. Later on, I updated Eclipse to version 2020.09. Now, when I try to open a .cu file, I get an error saying: No editor descriptor for id…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
0
votes
1 answer

Weird version conflict: The type 'CrontabSchedule' exists in both 'NCrontab.Signed, Version=3.2.20120.0' and 'NCrontab, Version=3.2.20120.0'

I am trying do a very simple thing in console app: using Microsoft.Azure.WebJobs.Extensions.Timers; using NCrontab; using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { var…
Cindy Pau
  • 13,085
  • 1
  • 15
  • 27
0
votes
1 answer

How to set up Gluon for JDK 9?

I recently upgraded to JDK 9 however Netbeans did not support that yet - so I downloaded Eclipse Oxygen. But I got into the problem Eclipse gluon new project does not finish And using the latest Gradle Buildship plug in with the Gluon 2.5 - did not…
lelelo
  • 173
  • 2
  • 12
0
votes
2 answers

Viewing ACCDB with Access 2010 runtime when Access 2007 is installed

I'm hoping someone can either tell me what I'm doing wrong correct my flawed understanding of how this works and explain why it's not possible. I've been developing a fairly basic database/program for a client in Access. They have Office 2007, I…
0
votes
3 answers

Loading a .NET 3.5 assembly via reflection in .NET 2.0

I have an interesting situation and am trying to do something that I'm not even sure is possible. I have a .NET 2.0 project that via reflection loads an assembly, and calls a specific method on that assembly. We are looking at moving forward and…
Mitchel Sellers
  • 62,228
  • 14
  • 110
  • 173