From 2851f6e786484ac6c7b7d86f2743d53384b42301 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 2 Sep 2025 14:17:15 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.78.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [15.78.0](https://github.com/frappe/erpnext/compare/v15.77.0...v15.78.0) (2025-09-02) ### Bug Fixes * :bug: fixing buying controller to include transaction controller… (backport [#49140](https://github.com/frappe/erpnext/issues/49140)) ([#49370](https://github.com/frappe/erpnext/issues/49370)) ([c06f72f](https://github.com/frappe/erpnext/commit/c06f72f9f7885be13cc173362349b381b882f2c4)) * add is_cancelled in condition ([f2c4bae](https://github.com/frappe/erpnext/commit/f2c4baeb0e1e982342099e4a2fca9a6737952575)) * add option to disable Transaction Log (backport [#49342](https://github.com/frappe/erpnext/issues/49342)) ([#49344](https://github.com/frappe/erpnext/issues/49344)) ([7926cfd](https://github.com/frappe/erpnext/commit/7926cfd8c408214c95ab63a7ad2bdf332988c539)) * **budget:** always set fiscal year before fetching company approver role ([e6a305e](https://github.com/frappe/erpnext/commit/e6a305e97219582c19a64f94bb73340f08321537)) * convert NaN to numerical ([0b3fac3](https://github.com/frappe/erpnext/commit/0b3fac3a0e9b98d0a3ac2a4cb5dedaf6864b76d1)) * **exchange rate revaluation:** add check for gain_loss ([1d28135](https://github.com/frappe/erpnext/commit/1d28135898e9ba28f9eae93b4f7ec06423324c6a)) * hide is_cumulative for apply_on is set to Transaction (backport [#49243](https://github.com/frappe/erpnext/issues/49243)) ([#49257](https://github.com/frappe/erpnext/issues/49257)) ([064ce4b](https://github.com/frappe/erpnext/commit/064ce4bf6d933d6e803d0980ce2274402a22a458)) * ignore cancelled gl and add company filter ([835b9c3](https://github.com/frappe/erpnext/commit/835b9c3378c3cc7b2418dca219455ddd7f4e2824)) * Issue with Barcode Scanning in Stock Entry ([45cdb39](https://github.com/frappe/erpnext/commit/45cdb39eddcd96fdec2e1bcb7e8dede2ba8159f3)) * **perf:** applying consistent index to fetch gl entries for financial statements ([a3605d8](https://github.com/frappe/erpnext/commit/a3605d83703ea91f177f9fcd287f7d0fdaa73f42)) * remove defunct payment gateway links from ERPNext Integrations workspace ([17f7351](https://github.com/frappe/erpnext/commit/17f7351f8534ccf14b0b02ad39657beea8403980)), closes [#49352](https://github.com/frappe/erpnext/issues/49352) * **repost item valuation:** reorder function call ([e802536](https://github.com/frappe/erpnext/commit/e8025365cdd5ac35ac090a96266f6d20f7b5d981)) * **repost item valuation:** validate voucher type in transaction ([6761a02](https://github.com/frappe/erpnext/commit/6761a023d02b2609fd4fe04d00c12d2e6cbca091)) * run config with force ([9d34eb6](https://github.com/frappe/erpnext/commit/9d34eb686c912cc65d3e82234086eb071497dc55)) * set missing due date in Purchase Invoice and POS Invoice ([#49232](https://github.com/frappe/erpnext/issues/49232)) ([6a31b7b](https://github.com/frappe/erpnext/commit/6a31b7b1182e87c1748c657589c01637f89e41f4)) * show company currency symbol ([ecb7858](https://github.com/frappe/erpnext/commit/ecb785806299524212c490b931e67f9cb9543749)) * show create purchase receipt button only when update stock is not checked ([caa1681](https://github.com/frappe/erpnext/commit/caa1681c5fc556836eca5b0d7fc6bf35e26e5317)) * source warehouse in manufacture entry and reqd prop of scrap warehouse ([7bb180e](https://github.com/frappe/erpnext/commit/7bb180e5da334d3b2abcd0032907764cb42b4288)) * source warehouse in manufacture entry and reqd prop of scrap warehouse (backport [#49320](https://github.com/frappe/erpnext/issues/49320)) ([#49337](https://github.com/frappe/erpnext/issues/49337)) ([be6f793](https://github.com/frappe/erpnext/commit/be6f79330a7484daa67a5cffa9ffe46f2201ba0b)) * validation for Recreate Stock Ledgers ([9f0d743](https://github.com/frappe/erpnext/commit/9f0d743e1b3a74a8b76ac900c7a7928d49e8f1fe)) * valuation for batch items ([b57dabd](https://github.com/frappe/erpnext/commit/b57dabd8ef0f816816fae44586c5a1ee384d31c2)) ### Features * optional fixed outgoing email for RfQ ([#49258](https://github.com/frappe/erpnext/issues/49258)) ([c875ff9](https://github.com/frappe/erpnext/commit/c875ff972f4596b1ed0c1160de51969e5544d4a6)) ### Performance Improvements * check PCV (smaller) table before checking GL Entries ([fc47fbe](https://github.com/frappe/erpnext/commit/fc47fbeaa1f02cd5ef48407c3e56506f8d3052d7)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 9720d19192b..015d3fc33fa 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.77.0" +__version__ = "15.78.0" def get_default_company(user=None):