Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move date picker #7809

Merged
merged 8 commits into from
May 12, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add upgrade note
jordisala1991 committed May 12, 2022
commit 0dd40f47c58de07e7db84b1e350dced8a5dfff39
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
=======================