Releases: naja-js/naja
3.2.1
3.2.0
New features
- ✨
UIHandler.submitForm()
helper method now accepts a submitter element as its first parameter, in addition to a form. However, the nativeform.requestSubmit()
method is the recommended way to manually dispatch form submissions to Naja in modern browsers.
Minor changes and bugfixes
- 🔧 UI binding to forms has been simplified (#401, #402, thanks @filiphlm). Naja now does not bind itself onto submitter elements, instead it listens only on
submit
events of forms. Theinteraction
event'selement
property continues to refer to the submitter element when available. - 🔧 Naja switched to the
exports
field in package.json
Compatibility considerations
Naja continues to hold its compatibility promise of working correctly "in the latest versions of Chromium (Chrome and Edge), Firefox, and WebKit (Safari)."
With this release, Naja newly relies on APIs that might not be available in some older versions of these browsers. If you still need to support these, please check the compatibility and available polyfills for the SubmitEvent.submitter
property, and the submitter
parameter in FormData()
constructor.
3.1.0
3.0.0
Naja 3.0 is an evolutionary release and should not come with any breaking changes for the majority of users. The breaking changes are mostly expected to affect advanced users, and developers who build custom extensions on top of Naja.
That said, there have been some changes in the inner workings of the snippet cache that may alter the behaviour, so it is strongly recommended that you properly test your application against the 3.x release.
New features
-
✨ SnippetHandler supports asynchronous snippet update operations, such as using View Transitions API. (#383) You can now wrap snippet updates in transitions, and rely on Naja dispatching the
afterUpdate
event only after the update has been completed.-
SnippetHandler dispatches a new
pendingUpdate
event. The event is dispatched right before the now asynchronous update is invoked, and only if the update has not been prevented in thebeforeUpdate
event. -
⚠️ BREAKING CHANGE: if you are usingSnippetHandler.updateSnippet()
orSnippetHandler.updateSnippets()
method directly, please note that the method is now asynchronous and the DOM is guaranteed to be updated only after its returned promise resolves. -
⚠️ BREAKING CHANGE: due to the asynchronicity, it is no longer guaranteed that all snippets have been updated by the timesuccess
andcomplete
events are dispatched.
-
-
✨ SnippetCache stores raw snippet content. (#368) This makes snippet restoration more deterministic for snippet update event listeners.
The
afterUpdate
event is the preferred way to e.g. initialize third-party scripts and widgets. Previously, snippet cache wasn't populated until after updating the snippets, and thus snippets stored in the cache might already have contained these DOM modifications; as a result, the sameafterUpdate
listener would receive different inputs in different scenarios: one pristine when updating from the server, and one already modified when restoring the snippet from cache during history navigation.In Naja 3.0, snippets are cached in the original form whenever possible, so that
afterUpdate
event listeners receive the same, unaltered input, regardless of where it comes from.-
⚠️ BREAKING CHANGE: if you are implementing your own snippet update operation, it is now expected to be an object implementing a pair of methods:-
updateElement(snippet: Element, content: string): void | Promise<void>
This method should just wrap the original, pre-3.0 snippet update operation: it updates the
snippet
element with thecontent
received from the server. As per the previous section, the update can now be asynchronous. -
updateIndex(currentContent: string, newContent: string): string
This method has been added to integrate with the enhanced snippet cache capabilities. It applies the
newContent
received from the server onto the snippet's cachedcurrentContent
, and returns the result. This method works entirely with the raw snippet contents, no DOM involved.For example, the built-in
replace
operation implements this method so that it returnsnewContent
, whereas theappend
operation does return a concatenation ofcurrentContent + newContent
.
Current snippet update operation implementations are backward-compatible, with
updateIndex()
falling back to simply returningnewContent
received from the server. It is recommended that you update your implementation to include the newly added method, so that you have full control over the implementation and its behaviour. -
-
3.0.0-rc.1
This is a release candidate of the upcoming Naja 3.0. This is an evolutionary release and should not come with any breaking changes for the majority of users. The breaking changes are mostly expected to affect advanced users, and developers who build custom extensions on top of Naja.
That said, there have been some changes in the inner workings of the snippet cache that may alter the behaviour, so it is strongly recommended that you properly test your application against the 3.x release, and report any issues.
New features
-
✨ SnippetHandler supports asynchronous snippet update operations, such as using View Transitions API. (#383) You can now wrap snippet updates in transitions, and rely on Naja dispatching the
afterUpdate
event only after the update has been completed.-
SnippetHandler dispatches a new
pendingUpdate
event. The event is dispatched right before the now asynchronous update is invoked, and only if the update has not been prevented in thebeforeUpdate
event. -
⚠️ BREAKING CHANGE: if you are usingSnippetHandler.updateSnippet()
orSnippetHandler.updateSnippets()
method directly, please note that the method is now asynchronous and the DOM is guaranteed to be updated only after its returned promise resolves. -
⚠️ BREAKING CHANGE: due to the asynchronicity, it is no longer guaranteed that all snippets have been updated by the timesuccess
andcomplete
events are dispatched.
-
-
✨ SnippetCache stores raw snippet content. (#368) This makes snippet restoration more deterministic for snippet update event listeners.
The
afterUpdate
event is the preferred way to e.g. initialize third-party scripts and widgets. Previously, snippet cache wasn't populated until after updating the snippets, and thus snippets stored in the cache might already have contained these DOM modifications; as a result, the sameafterUpdate
listener would receive different inputs in different scenarios: one pristine when updating from the server, and one already modified when restoring the snippet from cache during history navigation.In Naja 3.0, snippets are cached in the original form whenever possible, so that
afterUpdate
event listeners receive the same, unaltered input, regardless of where it comes from.-
⚠️ BREAKING CHANGE: if you are implementing your own snippet update operation, it is now expected to be an object implementing a pair of methods:-
updateElement(snippet: Element, content: string): void | Promise<void>
This method should just wrap the original, pre-3.0 snippet update operation: it updates the
snippet
element with thecontent
received from the server. As per the previous section, the update can now be asynchronous. -
updateIndex(currentContent: string, newContent: string): string
This method has been added to integrate with the enhanced snippet cache capabilities. It applies the
newContent
received from the server onto the snippet's cachedcurrentContent
, and returns the result. This method works entirely with the raw snippet contents, no DOM involved.For example, the built-in
replace
operation implements this method so that it returnsnewContent
, whereas theappend
operation does return a concatenation ofcurrentContent + newContent
.
Current snippet update operation implementations are backward-compatible, with
updateIndex()
falling back to simply returningnewContent
received from the server. It is recommended that you update your implementation to include the newly added method, so that you have full control over the implementation and its behaviour. -
-
2.6.1
Minor changes and bugfixes
- 🐞 SnippetCache no longer needs to call loadScripts() manually since ScriptLoader now hooks directly onto snippet's
afterUpdate
event.
Full Changelog: 2.6.0...2.6.1
2.6.0
New features
- ✨ HistoryHandler's
restoreState
event contains thedirection
of the history navigation: a negative number representing going back in history, and a positive number for going forward. - ✨ HistoryHandler's
buildState
event contains theoperation
, indicating whether the current state is being replaced, or a new state is being pushed. (#380) - ✨ RedirectHandler's
redirect
event provides thesetUrl()
method, allowing developers to programmatically alter the target URL.
Minor changes and bugfixes
- 🐞 HTML element overrides uniqueness options only if the attribute is explicitly set. (#375)
- 🐞 HistoryHandler no longer replaces the history state with a stale URL after async redirection. (#385)
- 🐞 ScriptLoader hooks more precisely onto the
afterUpdate
event, executing scripts only from snippets that have actually been updated. - 🔧 The type of
snippet
inupdateSnippet()
has been relaxed toElement
. (#379) - 🔧 Dependencies have been updated and revised, so that Naja now has zero runtime dependencies.
Full Changelog: 2.5.0...2.6.0
2.6.0-beta.0
🚧 This is a beta release to show some changes that should be coming to Naja in near future. Please help me test these changes by installing the beta
tag of Naja:
npm install naja@beta
New features
-
✨ SnippetCache tries to cache the raw markup of snippets as returned from the server, prior to applying any
afterUpdate
changes. (#368) -
✨ HistoryHandler now includes more information about the history state change: (#380)
buildState
event includes information about the performed operation (pushState or replaceState),restoreState
event includes information about thedirection
of the user's navigation that triggered the popstate.
Minor changes and bugfixes
2.5.0
New features
- ✨ There is a new
payload
event that is dispatched just beforesuccess
and allows you to configureoptions
for Naja's internal components based on the server response payload.
Minor changes and bugfixes
- 🔧 The options in the
interaction
event are now prepopulated with configured default options. - 🔧 AbortExtension has been refactored to better handle multiple concurrent requests.
Full changelog: 2.4.0...2.5.0
2.4.0
New features
- ✨ HistoryHandler is now initialized only when a history-enabled request is made. This should improve interoperability with other history-altering tools, especially when Naja's History API integration is disabled globally. (#362, credits for the original idea go to #356)
- ✨ Complementary to the previous change, the history state produced by Naja is now explicitly marked so.
Minor changes and bugfixes
- 🔧 Type definitions now allow
async
event listeners. - 🐞 A potential race condition issue in HistoryHandler has been fixed.
Full changelog: 2.3.0...2.4.0