mirror of
https://github.com/frappe/frappe.git
synced 2026-04-24 01:14:06 -06:00
Page:
Migrating to nightly version
Pages
(Client Side Scripting)Fetch values from another document
(Client Side Scripting)Fetching child tables
App Development using GitHub
Client Side Scripting Index
Client side scripting(Archive)
Client side scripting
Deprecations
Developer Cheatsheet
Frappe Framework Front End Routing and Document Creation
Frappe Push Notification Client Reference
Frappe Test Record Loading: Startup Sequence
Generating Test Records in Frappe
Home
Installing Frappe ERPNext on MacOS
Migrating to Version 13
Migrating to Version 14
Migrating to nightly version
Migrating to version 15
Migrating to version 16
Pull Request Review Guidelines
Setup MariaDB Server
Setup NFS Server
The Hitchhiker's Guide to Installing Frappe on Linux
The Hitchhiker's Guide to Installing Frappe on Mac OS X
Tree view for custom DocType
Using Desk Modules, Calendar and List View in Frappe Framework
Using Frappe with Amazon RDS (or any other DBaaS)
Using the VSCode Debugger with Frappe
Writing an IntegrationTestCase in Frappe: A Step‐by‐Step Guide
query builder migration
No results
27
Migrating to nightly version
Sagar Vora edited this page 2026-03-13 14:01:33 +05:30
This page is intended to make it easier for users who maintain custom apps/forks to migrate their installations to develop branch aka the nightly version. This page assumes that you're on v17.x.x-dev
bleach replaced by nh3
If your custom app relies on the bleach library, you'll have to add it to your app's dependencies, as this has been replaced by nh3 in the develop branch. While the actual functionality was backported to v16, the library was left for those that may be reliant on it.
Stricter docstatus validation for non-submittable doctypes
Saving a non-submittable doctype with docstatus=1 now raises a DocstatusTransitionError. If you need to bypass this check, use the new flag:
doc.flags.skip_docstatus_validation = True
doc.save()
Reference: #37009