Skip to content

Commit

Permalink
Merge pull request #22374 from frappe/version-13-hotfix
Browse files Browse the repository at this point in the history
chore: release v13
  • Loading branch information
ankush committed Sep 13, 2023
2 parents ddf1136 + 1b4a977 commit df30ff1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions frappe/app.py
Expand Up @@ -25,7 +25,7 @@
from frappe import _
from frappe.core.doctype.comment.comment import update_comments_in_parent_after_request
from frappe.middlewares import StaticDataMiddleware
from frappe.utils import get_site_name, sanitize_html
from frappe.utils import escape_html, get_site_name
from frappe.utils.error import make_error_snapshot

local_manager = LocalManager([frappe.local])
Expand Down Expand Up @@ -283,7 +283,7 @@ def handle_exception(e):
response = frappe.rate_limiter.respond()

else:
traceback = "<pre>" + sanitize_html(frappe.get_traceback()) + "</pre>"
traceback = "<pre>" + escape_html(frappe.get_traceback()) + "</pre>"
# disable traceback in production if flag is set
if frappe.local.flags.disable_traceback and not frappe.local.dev_server:
traceback = ""
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -29,7 +29,7 @@
"express": "^4.17.1",
"fast-deep-equal": "^2.0.1",
"frappe-charts": "^2.0.0-rc13",
"frappe-datatable": "^1.16.4",
"frappe-datatable": "^1.17.3",
"frappe-gantt": "^0.6.0",
"fuse.js": "^3.4.6",
"highlight.js": "^10.4.1",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Expand Up @@ -1745,10 +1745,10 @@ frappe-charts@^2.0.0-rc13:
resolved "https://registry.yarnpkg.com/frappe-charts/-/frappe-charts-2.0.0-rc13.tgz#fdb251d7ae311c41e38f90a3ae108070ec6b9072"
integrity sha512-Bv7IfllIrjRbKWHn5b769dOSenqdBixAr6m5kurf8ZUOJSLOgK4HOXItJ7BA8n9PvviH9/k5DaloisjLM2Bm1w==

frappe-datatable@^1.16.4:
version "1.16.4"
resolved "https://registry.yarnpkg.com/frappe-datatable/-/frappe-datatable-1.16.4.tgz#cb26f197c3cd404a5b13f016ef81c394e06f56fe"
integrity sha512-VoiTLnkuObMa3FxITrvP32UYN9v4WQ0j4qlCiDuqdXha9/BVSxwDt2BTK+cvaRloGcds5G2Hm9IRbltRRGGhxA==
frappe-datatable@^1.17.3:
version "1.17.3"
resolved "https://registry.yarnpkg.com/frappe-datatable/-/frappe-datatable-1.17.3.tgz#f486a0de2e977f0fe57aa65b6cc1bc2c05f94172"
integrity sha512-HUBwogmsExglXbBFvHnzRssHGnJlsVXv6/7KhVbdh1y3S8JH4YoRQ6q1SOaW8escTuAa2d91OVe5uJ10IbGrlA==
dependencies:
hyperlist "^1.0.0-beta"
lodash "^4.17.5"
Expand Down

0 comments on commit df30ff1

Please sign in to comment.