Skip to content

Releases: contributte/webpack

2.3.0

30 Dec 18:36
2.3.0
4419683
Compare
Choose a tag to compare

🔧 Minimum required version of PHP is now 8.1, and up to 8.3 is supported.

2.2.1

20 Jun 14:31
2.2.1
f29901b
Compare
Choose a tag to compare
  • 🔧 Fully use Latte 3's Extension (#40)

2.2.0

17 May 21:24
2.2.0
5bc9319
Compare
Choose a tag to compare
  • ✨ Added support for Latte 3 (#39)

2.1.1

11 Oct 15:23
2.1.1
105ec89
Compare
Choose a tag to compare
  • 🐞 Assets that resolve to absolute URLs are returned as-is (#37, thanks @martenb!)

2.1.0

04 Jun 07:20
2.1.0
def8991
Compare
Choose a tag to compare
  • ✨ You can now configure a timeout for manifest loading (#34)
  • 🔧 Manifest loads faster from the dev server (#33, thanks @martenb!)

2.0.1

30 Jan 22:24
2.0.1
7ec9c4b
Compare
Choose a tag to compare
  • 🐞 Fix: dynamic parameter not working for optimized manifest (#28, thanks @janfejtek!)

2.0.0

17 Nov 18:14
2.0.0
e2e7499
Compare
Choose a tag to compare

🎉 The package has been transferred to @contributte!

The package is now available on Packagist both under the original name oops/webpack-nette-adapter and the new contributte/webpack. Both retain the same version history, but the latter is now preferred and the former is marked as abandoned in favour of the new package.

The transition led to a breaking change in namespace to Contributte\Webpack. Please update your code and configuration accordingly.

There should be no other breaking changes.

tl;dr

  • composer remove oops/webpack-nette-adapter
  • composer require contributte/webpack
  • replace the namespace in your configuration:
    extensions:
    -     webpack: Oops\WebpackNetteAdapter\DI\WebpackExtension(%debugMode%, %consoleMode%)
    +     webpack: Contributte\Webpack\DI\WebpackExtension(%debugMode%, %consoleMode%)

1.4.0

26 Sep 14:23
1.4.0
9d353f3
Compare
Choose a tag to compare
  • ✨ You can now use manifest plugins other than webpack-manifest-plugin, using mappers to map the plugin's structure to the flat structure expected by WebpackNetteAdapter. (#17, thanks @rattuscz!)
  • 🔧 Guzzle 7.0 is supported. (#18, thanks @solcik!)

1.3.1

07 Apr 17:28
1.3.1
e8b0cae
Compare
Choose a tag to compare
  • 🐞 Fixed BuildDirectoryProvider pointing to public URL of dev server instead of the internal one if a public URL is configured. (#16)

1.3.0

11 Jan 14:40
1.3.0
7f4fa1d
Compare
Choose a tag to compare
  • ✨ You can now configure the DevServer with a different internal and public URL for easier use in environments such as a Docker Compose network. (#13, thanks @martinjinda!)