Skip to content

Commit c29d621

Browse files
committed
Merge branch 'release/17.9.0'
2 parents 229f32a + 083c95f commit c29d621

13 files changed

+537
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Version 17
44

5+
#### 17.9.0
6+
7+
- Allowing to pass empty string (`""`) as value for class options (`class_loading`, `class_applied`, `class_loaded`, `class_error`, `class_entered`, `class_exited`) so that no DOM mutation will happen if not necessary. This is a potential performance improvement. Suggested in [#605](https://github.com/verlok/vanilla-lazyload/issues/605).
8+
59
#### 17.8.8
610

711
- Fixed dependency issues detected by `npm audit`

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Please note that the video poster can be lazily loaded too.
175175

176176
## 👩‍💻 Getting started - Script
177177

178-
The latest, recommended version of LazyLoad is **17.8.8**.
178+
The latest, recommended version of LazyLoad is **17.9.0**.
179179

180180
Quickly understand how to upgrade from a previous version reading the [practical upgrade guide](UPGRADE.md).
181181

@@ -184,7 +184,7 @@ Quickly understand how to upgrade from a previous version reading the [practical
184184
The easiest way to use LazyLoad is to include the script from a CDN:
185185

186186
```html
187-
<script src="https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.8.8/dist/lazyload.min.js"></script>
187+
<script src="https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.9.0/dist/lazyload.min.js"></script>
188188
```
189189

190190
Then, in your javascript code:
@@ -225,7 +225,7 @@ Then include the script.
225225
```html
226226
<script
227227
async
228-
src="https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.8.8/dist/lazyload.min.js"
228+
src="https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.9.0/dist/lazyload.min.js"
229229
></script>
230230
```
231231

@@ -259,7 +259,7 @@ Then include the script.
259259
```html
260260
<script
261261
async
262-
src="https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.8.8/dist/lazyload.min.js"
262+
src="https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.9.0/dist/lazyload.min.js"
263263
></script>
264264
```
265265

0 commit comments

Comments
 (0)