From 926b4c7065cad79ae33eb53d409a734bfc1fc74a Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 23 Dec 2025 16:42:06 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.93.0 # [15.93.0](https://github.com/frappe/erpnext/compare/v15.92.5...v15.93.0) (2025-12-23) ### Bug Fixes * added limit ([73643de](https://github.com/frappe/erpnext/commit/73643de61256651e12d545dfef3587ee978f57b2)) * **buying:** add disabled filter for supplier ([0b6b73b](https://github.com/frappe/erpnext/commit/0b6b73b5004fc61b83cdc0563c41318c7b8ead7a)) * cascade projected quantity across multiple items in material requests ([dffd5d9](https://github.com/frappe/erpnext/commit/dffd5d9cdd8e2f1d30a69472687de1230575f811)) * de-duplicate rows on disassembly with multiple manufacture entries ([68eeba4](https://github.com/frappe/erpnext/commit/68eeba41c1eb3a503f5fe0acd6f1d48d320c216f)) * do not hide primary-action for composite asset ([cbcfe6e](https://github.com/frappe/erpnext/commit/cbcfe6ec36df51a8d232c67a24ce7bd36f5fb7f8)) * don't fetch qty as it's unused ([dd19b95](https://github.com/frappe/erpnext/commit/dd19b95113f1a16a33ac1e2051c0ae7fc5b8674b)) * incorrect current qty in stock reco (backport [#51152](https://github.com/frappe/erpnext/issues/51152)) ([#51158](https://github.com/frappe/erpnext/issues/51158)) ([89d6a8f](https://github.com/frappe/erpnext/commit/89d6a8f02ec7b4ec9886b4b44621da3cb7d5bf70)) * limit condition to fetch serial nos ([425dcee](https://github.com/frappe/erpnext/commit/425dcee5bfe2b8a5d18b661c518e9ec8072e8322)) * **manufacturing:** validate delivered qty in production plan ([c01f20d](https://github.com/frappe/erpnext/commit/c01f20da00bec7a29826e1eaa396acc64d87fcab)) * **payment entry:** set row id for 'On Previous Row Amount' or 'On Previous Row Total' charge type on tax table ([d7c50cf](https://github.com/frappe/erpnext/commit/d7c50cfa7c68209d87643cfcbec59cb86531c4a9)) * **pegged currencies:** skip adding currencies_to_add items on pegged_currency_item if source_currency or pegged_against currency doc does not exist (backport [#51188](https://github.com/frappe/erpnext/issues/51188)) ([#51203](https://github.com/frappe/erpnext/issues/51203)) ([8ef09c0](https://github.com/frappe/erpnext/commit/8ef09c0dc00db0f21472d7be419a866418600e16)) * same serial number was picked in multiple sales invoices ([dc5faa8](https://github.com/frappe/erpnext/commit/dc5faa8b7107e6edec59188f50c854b7013d151e)) * show company currency in asset depreciation schedule ([5b1795b](https://github.com/frappe/erpnext/commit/5b1795b0a5b180c482c7c70c331109da30f7e7aa)) * **stock-report:** ignore reserved stock in batch qty calculation ([26a36d8](https://github.com/frappe/erpnext/commit/26a36d807e3f5b3d12bf2cacf8ba15a95a0f840e)) * **stock:** handle serial and batch nos for disassemble stock entry ([59aef4f](https://github.com/frappe/erpnext/commit/59aef4fc8c95e4a085f5d55c058d9fdaa77c4959)) * **stock:** ignore reserved stock while calculating batch qty ([ac2402d](https://github.com/frappe/erpnext/commit/ac2402dd2a6ce89a54e73070c1959eaad464e510)) * support disassemble of RMs other than in BOM ([72d77a5](https://github.com/frappe/erpnext/commit/72d77a5e99699602f607471a4c4c5301434006d1)) * update batch_qty using get_batch_qty ([ca835c8](https://github.com/frappe/erpnext/commit/ca835c831b7bfd8ecec40251aab487a9c2137fcb)) * use get_batch_qty to fetch batch data ([10b0da8](https://github.com/frappe/erpnext/commit/10b0da8bc81fda31aa9fc2047478928c78fb2e2c)) * use original logic for v15 - inverted wrt v16 ([0452b22](https://github.com/frappe/erpnext/commit/0452b22aa663c89fd954b0c1590a1dc5507ddd52)) * use serial and batch bundle to fetch incoming rate (backport [#51119](https://github.com/frappe/erpnext/issues/51119)) ([#51146](https://github.com/frappe/erpnext/issues/51146)) ([2d42904](https://github.com/frappe/erpnext/commit/2d42904bfb9c98ef43d776412c7eab48a46dec51)) * use stock adjustment if the account has not set ([8a01a70](https://github.com/frappe/erpnext/commit/8a01a709a7746c3b0b4891046fdadd4cd54f7878)) ### Features * add redirect button on report ([fe80d1d](https://github.com/frappe/erpnext/commit/fe80d1d0e737b235ff5a3d0ef764de0b91d354d5)) * **report:** add batch qty update functionality in report ([57c356a](https://github.com/frappe/erpnext/commit/57c356a1cd4cca079c69bd7561d75789332315e9)) ### Performance Improvements * optimize company monthly sales query using date range ([#48942](https://github.com/frappe/erpnext/issues/48942)) ([0488658](https://github.com/frappe/erpnext/commit/048865811c1ad0ea43f3a7937970c98dd624d3ec)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 3ae42e4b52d..e163fab60a5 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -4,7 +4,7 @@ import inspect import frappe from frappe.utils.user import is_website_user -__version__ = "15.92.5" +__version__ = "15.93.0" def get_default_company(user=None):