Skip to content

Commit

Permalink
Add upgrade note
Browse files Browse the repository at this point in the history
  • Loading branch information
jordisala1991 committed May 8, 2022
1 parent 4558820 commit 45d9e24
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions UPGRADE-4.x.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,43 @@
UPGRADE 4.x
===========

UPGRADE FROM 4.11.1 to 4.x
==========================

## Datetime picker assets

Datetime picker assets were moved from SonataAdminBundle to form-extensions.
Normally this should not affect you, unless you have modified
the default javascript and/or stylesheets
(remember that you can also add extra stylesheets or javascript using
`extra_stylesheets` and `extra_javascripts` to avoid this kind of issues):

Before
```yaml
sonata_admin:
assets:
javascript:
bundles/sonataadmin/app.js
your_own.js
stylesheets:
bundles/sonataadmin/app.css
your_own.css
```
After
```yaml
sonata_admin:
assets:
javascript:
bundles/sonataadmin/app.js
bundles/sonataform/app.js
your_own.js
stylesheets:
bundles/sonataadmin/app.css
bundles/sonataform/app.css
your_own.css
```
UPGRADE FROM 4.7 to 4.8
=======================
Expand Down

0 comments on commit 45d9e24

Please sign in to comment.