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
0 answers

Function ReflectionParameter::export() is deprecated 7.4, alternative?

I recently changed to Php 7.4 from 7.2 and I came across a deprecated function: Function ReflectionParameter::export() is deprecated https://www.php.net/manual/en/reflectionparameter.export.php what to use instead?
John Smith
  • 6,129
  • 12
  • 68
  • 123
1
vote
0 answers

NuxtJS Installation with NPM - Why so many deprecated packages?

Hi I'm creating my first NuxtJS app but while creating it I see many deprecation warnings by NPM. I know this won't stop my app from running but I'm just wondering why so many deprecated packages out-of-the-box here... Can someone explain me what is…
Fabio Magarelli
  • 1,031
  • 4
  • 14
  • 47
1
vote
1 answer

Alternative to getKeys() of phpredis

My phpErrorLog tells me that getKeys() is deprecated. [01-Oct-2020 16:44:02 Europe/Berlin] PHP Deprecated: Function Redis::getKeys() is deprecated in on line xxx I wonder what the alternative to getKeys is. Unfortunately I couldn't…
Melchior
  • 105
  • 2
  • 9
1
vote
1 answer

Will Helm v3 continue to work by manually adding the deprecated stable repo?

I am using the latest available version of the charts in the stable helm repo for some deployments and I do not want to use any upgrades from the new migrated repositories Will I still be able to use them after final deprecation of stable repo? This…
mitsos1os
  • 2,170
  • 1
  • 20
  • 34
1
vote
1 answer

TIdNotify in Delphi Tokyo is deprecated

I am using TIdNotify like this: type TMsgNotify = class(TIdNotify) protected aMsgStr: string; procedure DoNotify; override; end; procedure TMsgNotify.DoNotify; begin // this runs in the main thread Form1.Log(aMsgStr);…
davornik
  • 81
  • 6
1
vote
0 answers

ionic 3 Deprecated API Usage - New apps that use UIWebView

I am using ionic 3 ,trying to upload a build with xcode to apple appstore connect but i always keep getting this mail from apple , i tried many solutions and fixes but nothing actually happened . any help please , thanks☺️ . Dear Developer, We…
1
vote
1 answer

How to stop deprecation warning?

My function has to be jit compiled, but I get the following deprecation warning: How can I solve this, so the issue is fixed? (so that i dont have to be afraid of the function not working properly in the future) e_labeling.py:418: NumbaWarning:…
La-Li-Lu-Le-Low
  • 191
  • 2
  • 15
1
vote
2 answers

Mark a specific method or function parameter as deprecated in Sphinx

I'm using Sphinx to document a python 3 class, and some of the methods in the class have parameter values that are no longer used. What's the best way of marking these as deprecated parameters? There is online documentation referring to marking…
user2667066
  • 1,867
  • 2
  • 19
  • 30
1
vote
0 answers

Identify which plugin uses UIWebView

I have updated codorva-ios to ^5.1.1 and add following lines in config.xml, but still getting UIWebView warning;
1
vote
1 answer

PHP 7.3 Deprecated Namespace Assert in Drupal

English isn't my first language, please be patient. From PHP 7.3 Deprecated Features Namespaced assert() Declaring a function called assert() inside a namespace is deprecated. The assert() function is subject to special handling by the…
Elber CM
  • 310
  • 5
  • 21
1
vote
2 answers

Rake 0.9.1 causing rake:db:migrate to yield deprecation issue, can't downgrade to 0.8.7

I ran a bundle install on my Gemfile recently, and tried to rake:db:migrate. This migration didn't work, and outputs: WARNING: Global access to Rake DSL methods is deprecated. Please include ... Rake::DSL into classes and modules which use the…
jay
  • 12,066
  • 16
  • 64
  • 103
1
vote
1 answer

Usage of construct 'jdbc:Client' is deprecated. Alternative?

I started an intership last week and I will implement some APIs with Ballerina. For learning purposes I have created (based on the JDBC Client CRUD Operations Example on the Ballerina website) a DB client with some sample queries. Here is some…
Dokksen
  • 372
  • 1
  • 4
  • 17
1
vote
1 answer

DEPRECATION WARNING: update is deprecated and will be removed from Rails 6.1 (please, use update instead) (called from block in set_order_id at

I'm using Ruby version 2.5 and Rails version 6.0.2.2 and get this weird deprecation warning: DEPRECATION WARNING: update is deprecated and will be removed from Rails 6.1 (please, use update instead) So "update" is deprecated and should be replaced…
Emiel Lohr
  • 13
  • 3
1
vote
1 answer

What is the alternative to using hover in selenium c# (hover is now deprecated)?

I'm using Selenium for c# version 1.0.0.0. I noticed IRenderedWebElement.hover() is deprecated and the deprecated message says to use the "user interactions API instead". When I google "user interactions API" I get this url:…
Adam
  • 255
  • 1
  • 3
  • 17
1
vote
1 answer

What causes Android Studio to flag the FragmentManager as deprecated?

I am taking the Udacity nanodegree program for Android Basics. I am on the Tour Guide App project, which requires a ViewPager, a TabLayout, and Fragments. When I follow various tutorials and examples, I create a TestAdapter.java class. It begins…