Rod wrote:
Yes in the 2.7 version of python the add command has been replaced with insert instead.
It will be up to all the developers of the python script plug-ins to update their scripts - most
probably will when 2.8 is released.
Many of the python files for 2.6 will give you this error.Most will still run though.
LayerFX will not even start

- not for me anyways.
In most cases, Script and plug-in authors should NOT update their code to use the newer names of PDB functions. Doing so will prevent their code from working with the current (to be previous) version of GIMP. Unless you are exploiting new capabilities (layer groups, added text capabilities, etc), you should just continue to use the original name.
The deprecation warnings are just that, warnings. They are not necessarily errors which will interrupt the program. They are intended mainly for GIMP developers (such warnings are disabled in the stable releases) and for the scripts/plug-ins that ship with GIMP where there is no reason for them to run on previous versions (earlier GIMPs ship with their own set of such scripts/plug-ins).
The particular PDB function Willy's report addressed ('gimp-image-insert-vectors') is an enhancement intended to eventually support "path groups" in a manner that "layer groups" support is being added. Such support will not exist in GIMP 2.8! There is no functional reason to update a script using 'gimp-image-add-vectors' so that it uses the new function -- all this will accomplish is to break the script for GIMP 2.6 and earlier.
There is a similar situation with some of the 'gimp-drawable-*' procedures; GIMP 2.8 will rename many of them to 'gimp-item-*' ('gimp-item-width', 'gimp-item-get-name', etc). "Items" comprise both drawables and layer groups. Unless your script/plug-in is actually going to do something with layer groups, you should probably stick with the 'gimp-drawable-*' procedures so it works with both 2.6 and 2.8 (if your scripts need to handle layer groups or you don't care about backwards compatibility then you can use the 'gimp-item-*' procedure).
Unless you are creating a script to make use of the new functionality, the time to update your scripts/plug-ins will be after most people have switched to using GIMP 2.8 and only the few people still using 2.6 will be affected by your update. It is usually better to wait as long as possible before updating your scripts. This way you won't have to maintain separate versions and you will minimize complaints from users who use the wrong version.