Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/no-js-dev/nojs/compare/v1.21.0...HEAD)
## [Unreleased](https://github.com/no-js-dev/nojs/compare/v1.21.1...HEAD)

## [1.21.1](https://github.com/no-js-dev/nojs/compare/v1.21.0...v1.21.1) — 2026-08-14

### Fixed

- `each`/`filter` now re-evaluates when outer-scope dependencies change ([#335](https://github.com/no-js-dev/nojs/issues/335))

## [1.21.0](https://github.com/no-js-dev/nojs/compare/v1.20.2...v1.21.0) — 2026-08-12

Expand Down
4 changes: 2 additions & 2 deletions dist/iife/no.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/iife/no.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@no-js-dev/nojs",
"version": "1.21.0",
"version": "1.21.1",
"description": "The HTML-first reactive framework — build dynamic web apps with just HTML attributes, no JavaScript required",
"browser": "dist/iife/no.js",
"unpkg": "dist/iife/no.js",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ const NoJS = {
},

// Version
version: "1.21.0",
version: "1.21.1",
};

// Expose sentinel symbols as read-only properties
Expand Down