Skip to content

Commit f502dd7

Browse files
committed
[REL] v2.3.1
# v2.3.1 - [FIX] runtime: log if willStart takes more than 3s
1 parent 9c2d957 commit f502dd7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/owl.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2623,7 +2623,7 @@ function wrapError(fn, hookName) {
26232623
new Promise((resolve) => setTimeout(() => resolve(TIMEOUT), 3000)),
26242624
]).then((res) => {
26252625
if (res === TIMEOUT && node.fiber === fiber && node.status <= 2) {
2626-
console.warn(timeoutError);
2626+
console.log(timeoutError);
26272627
}
26282628
});
26292629
}
@@ -5552,7 +5552,7 @@ function compile(template, options = {}) {
55525552
}
55535553

55545554
// do not modify manually. This file is generated by the release script.
5555-
const version = "2.3.0";
5555+
const version = "2.3.1";
55565556

55575557
// -----------------------------------------------------------------------------
55585558
// Scheduler
@@ -5981,6 +5981,6 @@ TemplateSet.prototype._compileTemplate = function _compileTemplate(name, templat
59815981
export { App, Component, EventBus, OwlError, __info__, batched, blockDom, loadFile, markRaw, markup, mount, onError, onMounted, onPatched, onRendered, onWillDestroy, onWillPatch, onWillRender, onWillStart, onWillUnmount, onWillUpdateProps, reactive, status, toRaw, useChildSubEnv, useComponent, useEffect, useEnv, useExternalListener, useRef, useState, useSubEnv, validate, validateType, whenReady, xml };
59825982

59835983

5984-
__info__.date = '2024-07-25T13:13:44.371Z';
5985-
__info__.hash = '0cde4b8';
5984+
__info__.date = '2024-08-14T14:25:23.038Z';
5985+
__info__.hash = '9c2d957';
59865986
__info__.url = 'https://github.com/odoo/owl';

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@odoo/owl",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "Odoo Web Library (OWL)",
55
"main": "dist/owl.cjs.js",
66
"module": "dist/owl.es.js",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// do not modify manually. This file is generated by the release script.
2-
export const version = "2.3.0";
2+
export const version = "2.3.1";

0 commit comments

Comments
 (0)