- we enforced, via type-hinting, as many parameters and return values as we can. This is formally a BC break, but likely you don't need to change anything in your code. Anyway, if you implemented an interface or extended a bundle class with your custom class, you need to check to be consistent with such type hinting.
- the transliteration is now using
behat\transliteratorinstead of a custom one. Some minor differences are that dash is not preserved anymore and names are lowercased. - the form option
download_linknow is deprecated, usedownload_uriinstead. - BC-BREAK in order to fixing #704 for xml and yaml
mapping you should prepend relative from bundle sub-namespace to each mapping file.
For example for
Entity\Productmapping file would be renamed fromProduct.xmltoEntity.Product.xml, forDocument\Article:Article.yml->Document.Article.yml.
No BC breaks.
No BC breaks.
- the
resolvePathandresolveUriStorage methods now take a field name instead of a mapping name. The same goes for the UploaderExtension and UploaderHelperassetmethod. This reverts the broken behavior introduced in v0.10.0. - the
mappingoption for form types is removed as the mapping to use is inferred from the field's name.
- the
storageconfiguration paramater changed. It accepts the name of the storage engine to use (file_system, gaufrette or flysystem). - the
gaufretteandflysystemconfiguration parameters were deleted.
- Symfony versions prior to 2.3 are not supported anymore.
-
inject_on_loadconfig param defaults to false. Set it to true if you want to keep your old behavior. -
the
NamerInterfaceandDirectoryNamerInterfacewere modified. -
the
resolvePathandresolveUriStorage methods now take a mapping name instead of a field name. The same goes for the UploaderExtension and UploaderHelperassetmethod.
-
getUriPrefixdefault value is now /uploads -
delete_on_updateconfig param added. It defaults to true.
-
gaufrette and KnpGaufretteBundle are now soft dependencies
-
storageconfiguration entry added. -
web_dir_nameconfiguration entry deprecated. -
mapping:upload_dirconfiguration entry renamed tomapping:upload_destination -
mapping:uri_prefixconfiguration entry added -
The old
vich_uploader.uploaderservice has been split into two new services for a more modular, separation of concerns approach. The new services arevich_uploader.storage.gaufretteandvich_uploader.file_injector. The storage service is responsible for saving and removing files as well as resolving their path. The injector service is responsible for injectingFileinstances back into the object upon retrieval from the datastore.
-
Annotations have changed namespace from
Vich\UploaderBundle\AnnotationtoVich\UploaderBundle\Mapping\Annotation. You will need to update yourusestatement for the annotations used in your entity or document classes. -
The
mappingsconfiguration entry prototype has had a new option added to it. Theinject_on_loadconfig option specifies whether or not the uploadable fields should have an instnace ofSymfony\Component\HttpFoundation\File\Filecreated and injected into the property upon retrieval from the datastore. THis option has a default value oftrue.