mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	This involves the following major changes to the code: * `Invoice.upcoming` removed in https://docs.stripe.com/changelog/basil/2025-03-31/invoice-preview-api-deprecations. * InvoiceItem always needs to be created with an Invoice id for InvoiceItem to be attached to the Invoice. This seems to just be required after the upgrade and looking at stripe python SDK history, this was how it was always supposed to work. This is a welcome change since it adds to the clarity of the code. * Change due to following breaking changes: - https://docs.stripe.com/changelog/basil/2025-03-31/invoice-pricing-configurations - https://docs.stripe.com/changelog/basil/2025-03-31/add-support-for-multiple-partial-payments-on-invoices which removes and adds various parameters and attributes to the invoice related objects. Also, out of band invoices now count in `amount_paid` in Invoice as part of above linked changes. See https://github.com/stripe/stripe-python/blob/master/CHANGELOG.md for an easier to search list of changes. * Removed `proration` parameter from testing since we were not using it and testing its constant `false` value would require us writing more custom code to access its value. * Added test for "usd" for the currency, since there were some changes in the API related local currency and I wanted to check Invoices were being created as expected.
		
			
				
	
	
		
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import os
 | 
						|
 | 
						|
ZULIP_VERSION = "11.0-dev+git"
 | 
						|
 | 
						|
# Add information on number of commits and commit hash to version, if available
 | 
						|
zulip_git_version_file = os.path.join(
 | 
						|
    os.path.dirname(os.path.abspath(__file__)), "zulip-git-version"
 | 
						|
)
 | 
						|
lines = [ZULIP_VERSION, ""]
 | 
						|
if os.path.exists(zulip_git_version_file):
 | 
						|
    with open(zulip_git_version_file) as f:
 | 
						|
        lines = [*f, "", ""]
 | 
						|
ZULIP_VERSION = lines.pop(0).strip()
 | 
						|
ZULIP_MERGE_BASE = lines.pop(0).strip()
 | 
						|
 | 
						|
LATEST_MAJOR_VERSION = "10.0"
 | 
						|
LATEST_RELEASE_VERSION = "10.2"
 | 
						|
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/zulip-server-10-0"
 | 
						|
 | 
						|
# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be
 | 
						|
# prevented from connecting to the Zulip server.  Versions above
 | 
						|
# DESKTOP_MINIMUM_VERSION but below DESKTOP_WARNING_VERSION will have
 | 
						|
# a banner at the top of the page asking the user to upgrade.
 | 
						|
DESKTOP_MINIMUM_VERSION = "5.4.3"
 | 
						|
DESKTOP_WARNING_VERSION = "5.9.3"
 | 
						|
 | 
						|
# Bump the API_FEATURE_LEVEL whenever an API change is made
 | 
						|
# that clients might want to condition on.  If we forget at
 | 
						|
# the time we make the change, then bump it later as soon
 | 
						|
# as we notice; clients using API_FEATURE_LEVEL will just not
 | 
						|
# use the new feature/API until the bump.
 | 
						|
#
 | 
						|
# Changes should be accompanied by documentation explaining what the
 | 
						|
# new level means in api_docs/changelog.md, as well as "**Changes**"
 | 
						|
# entries in the endpoint's documentation in `zulip.yaml`.
 | 
						|
 | 
						|
API_FEATURE_LEVEL = 386
 | 
						|
 | 
						|
# Bump the minor PROVISION_VERSION to indicate that folks should provision
 | 
						|
# only when going from an old version of the code to a newer version. Bump
 | 
						|
# the major version to indicate that folks should provision in both
 | 
						|
# directions.
 | 
						|
 | 
						|
# Typically,
 | 
						|
# * adding a dependency only requires a minor version bump;
 | 
						|
# * removing a dependency requires a major version bump;
 | 
						|
# * upgrading a dependency requires a major version bump, unless the
 | 
						|
#   upgraded dependency is backwards compatible with all of our
 | 
						|
#   historical commits sharing the same major version, in which case a
 | 
						|
#   minor version bump suffices.
 | 
						|
 | 
						|
PROVISION_VERSION = (326, 4)  # bumped 2025-05-14 to upgrade stripe
 |