Skip to content

Tags: Mogost/django-webpack-loader

Tags

1.1.0

Toggle 1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump django from 3.2.2 to 3.2.4 (django-webpack#283)

Bumps [django](https://github.com/django/django) from 3.2.2 to 3.2.4.
- [Release notes](https://github.com/django/django/releases)
- [Commits](django/django@3.2.2...3.2.4)

---
updated-dependencies:
- dependency-name: django
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

1.0.0

Toggle 1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update version to 1.0.0 (django-webpack#269)

* Update version to 1.0.0

* Update wheel version

* Improve examples

* Remove webpack-split-by-path

* Fix get_chunk_url

* Add more versions for testing

* Add CSS loader example

* Update hot-reload example

* Update supported versions on README

* Update changelog

* Remove db.sqlite3 files

* Adjust badges

* Add coveralls

0.7.0

Toggle 0.7.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Add custom LOADER_CLASS support (django-webpack#210)

`LOADER_CLASS` on the `WEBPACK_CONFIG` setting is now where the loader class
is defined. To retain backward compatibility and to keep getting started
simple, this defaults to the existing WebpackLoader class.

`WebpackLoader._load_assets` has been renamed to `WebpackLoader.load_assets`.
This keeps the API extendable when creating custom webpack loaders.

Documentation has been updated to include how to extend the WebpackLoader
using the `LOADER_CLASS`.

0.6.0

Toggle 0.6.0's commit message

Verified

This commit was signed with the committer’s verified signature.
owais Owais Lone
Release 0.6.0

0.5.0

Toggle 0.5.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Release version 0.5.0

0.4.0

Toggle 0.4.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
New release 0.4.0

0.3.3

Toggle 0.3.3's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Merge pull request django-webpack#66 from owais/tiemouts

Added ability timeout when waiting for webpack to compile a bundle

0.3.2

Toggle 0.3.2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fixed jinaj2 test cases

0.3.1

Toggle 0.3.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Releasing version 0.3.1

0.3.0

Toggle 0.3.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Experimental new loader

New class based loader implementation

* Potentially Breaking Changes

    This commit introduces a new `CACHE` setting which when set to true makes the loader cache the contents of the stats files in memory. This means if set to True, the server will have to be restarted every time the stats file contents change or it'll keep serving old, cached URLs. `CACHE` defaults to `not DEBUG` by default.