Skip to content

Commit

Permalink
Merge pull request #1141 from resilient-tech/mergify/bp/version-14-ho…
Browse files Browse the repository at this point in the history
…tfix/pr-1140

fix: allow longer URL in Integration Requests (backport #1140)
  • Loading branch information
vorasmit authored Oct 12, 2023
2 parents 96db493 + 2c77aee commit 4fc1d18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions india_compliance/gst_india/utils/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ def create_integration_request(
reference_doctype=None,
reference_name=None,
):

if len(url) > 140:
url = url[:137] + "..."

return frappe.get_doc(
{
"doctype": "Integration Request",
Expand Down
4 changes: 2 additions & 2 deletions india_compliance/patches/check_version_compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
{
"app_name": "Frappe",
"current_version": version.parse(frappe.__version__),
"required_versions": {"version-14": "14.49.0"},
"required_versions": {"version-14": "14.52.0"},
},
{
"app_name": "ERPNext",
"current_version": version.parse(erpnext.__version__),
"required_versions": {"version-14": "14.35.0"},
"required_versions": {"version-14": "14.44.0"},
},
]

Expand Down

0 comments on commit 4fc1d18

Please sign in to comment.