Skip to content

v0.9.0

Compare
Choose a tag to compare
@weaverryan weaverryan released this 29 Jun 19:46
· 1224 commits to main since this release

Yes! New Release!

Changes: v0.8.0..v0.9.0

Documentation: http://symfony.com/doc/current/frontend.html

Highlights:

  • [BEHAVIOR CHANGE] When using autoProvidejQuery(), window.jQuery is now also
    included (and so will be re-written in the compiled files). If you're also exposing
    jQuery as a global variable, you'll need to update your code:

    // Before: if you had this
    window.jQuery = require('jquery');
    
    // After: change to this
    global.jQuery = require('jquery');
  • Vue.js support! See #49

  • Typescript support! See #50