Questions tagged [deprecated]

Deprecation is a status applied to software features or language terms to indicate that they should be avoided, typically because they have been superseded. Use this tag for questions about deprecated features or how to deprecate features yourself (e.g. using annotations).

In the process of authoring computer software, its standards or documentation, deprecation is a status applied to software features to indicate that they should be avoided, typically because they have been superseded. Although deprecated features remain in the software, their use may raise warning messages recommending alternative practices, and deprecation may indicate that the feature will be removed in the future.

Features are deprecated—rather than immediately removed—in order to provide backward compatibility and give programmers who have used the feature time to bring their code into compliance with the new standard.

2508 questions
1
vote
1 answer

FBML is being deprecated?

Possible Duplicate: Deprecating FBML Hi guys, I was thinking to integrate some facebook experiences in my web pages, but I found this message about FBML: We are in the process of deprecating FBML. If you are building a new application on…
Suraj
  • 89
  • 1
  • 12
1
vote
1 answer

Replaced UIWebView with WKWebView, but still same error from Apple

I have removed the UIWebView from my app. But when I uploaded the iOS app on iTunes I still got the same message "Re: ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs" I have searched for…
Akash Sharma
  • 756
  • 7
  • 10
1
vote
0 answers

add @Deprecated to compiled jar file

I have two versions of a java library, without sources. The api changes significantly between these two versions. The changed methods have no @Deprecated annotations. Can I add these annotations to the relevant methods and classes in the compiled…
HugoRune
  • 13,157
  • 7
  • 69
  • 144
1
vote
1 answer

Difference between boto and boto3 in aws python aws, related to S3

Aws release a note for S3 path deprecation https://aws.amazon.com/it/blogs/aws/amazon-s3-path-deprecation-plan-the-rest-of-the-story/ . In the Documentation, they assure that AWS sdk will be guaranteed except for some problems with the names, if the…
Justpalma
  • 63
  • 1
  • 3
  • 7
1
vote
1 answer

Modernizr.load Deprecated. Yepnope.js Deprecated. Current Alternatives?

Modernizr.load and yepnope.js have both been deprecated. How do we conditionally call javascript files now? Could you give me a example? This is the javascript that I want to load var BubbleShoot = window.BubbleShoot || {}; BubbleShoot.Game =…
Byron2017
  • 871
  • 2
  • 11
  • 23
1
vote
1 answer

What is the non-deprecated version of pandas_datareader?

I'm currently getting back into python and working on some light data analytics. I was using pandas_datareader to pull data but I'm this warning FutureWarning: pandas.util.testing is deprecated. Use the functions in the public API at pandas.testing…
Aviternus
  • 45
  • 7
1
vote
1 answer

Android 10 create a folder - getExternalFilesDir instead getExternalStorageDirectory() (deprecated)

I am trying to create a new folder inside sdcard using context.getExternalFilesDir() method but it doesn't work, it creates Pictures folder but it doesn't create TestFolder and txt file. My intention is to create a folder and put downloaded images…
1
vote
0 answers

Selenium Warning DEPRECATION while running ruby watir automation test script

Facing issue with Ruby watir. script run successfully but showing the deprecated error in console. Error in Consoloe Selenium::Webdriver::Error::ElementNotVisibleError is deprecated. Use Selenium::Webdriver::Error::ElementNotInteractableError …
1
vote
1 answer

External header file ilcplex\cpxconst.h causing causing compiler error

I have been sent code for a program built in C that uses a reinforcement learning algorithm. I need to modify it, yet I am having difficulties with compiling the code in the first place. Here are the outputs in CodeBlocks. All errors come from one…
1
vote
0 answers

Notice: add_to_cart_redirect is deprecated since version 3.0.0! Use woocommerce_add_to_cart_redirect instead

Notice: add_to_cart_redirect is deprecated since version 3.0.0! Use woocommerce_add_to_cart_redirect instead public_html/wp-includes/functions.php on line 4924 Notice: WC_Cart::get_checkout_url is deprecated since version 2.5! Use…
1
vote
1 answer

Team Foundation Server file deprecating

Our environment uses the ODP.Net oracle database driver. So logically we are using Oracle on the backend. We have files that include scripts of our stored procedures in TFS. My oracle developer would like to deprecate a file to keep other oracle…
apolfj
  • 940
  • 3
  • 14
  • 27
1
vote
0 answers

How to deprecate callback parameter?

I have a dispatcher that calls callbacks with two arguments: class Foo: def register(self, callback): self.callback = callback def _handle(self): self.callback(x, y) I wish to deprecate the second argument, and send only…
Bharel
  • 23,672
  • 5
  • 40
  • 80
1
vote
1 answer

When is Facebook turning off their session based auth?

I've done some searching on Google and SO but I can't seem to find a definitive answer. Facebook has depreciated session based authentication in favour of OAuth 2.0. What I'm looking for is an announced date, or rough timeline as when they will be…
Chris Salij
  • 3,096
  • 5
  • 26
  • 43
1
vote
1 answer

Python: Throw warning when class is instantiated outside builder

I have a class which constructor is getting overly complicated so I wanted to use a builder pattern to manage all the construction steps. The thing is an important part of the application depends on the old way of instantiating the class, so I can't…
Roäc
  • 149
  • 19
1
vote
2 answers

QSerialPortInfo isValid() and isBusy()

QSerialPortInfo class has const methods isValid() (deprecated since 5.2) and isBusy() (deprecated since 5.6). They both seem to work but QT documentation does not provide with info whether they should be replaced with isNull() or state of…
artaxerx
  • 244
  • 1
  • 3
  • 11