Django-polaris

Latest version: v2.6.0

Safety actively analyzes 723607 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 10 of 13

0.13.0

This release contains many breaking changes, all in preparation for 1.0.

**DB Changes**
- `Asset.withdraw_anchor_account` and `sender_anchor_account` have been merged into `receiving_anchor_account`
- `Transaction.deposit_memo`, `withdraw_memo`, and `send_memo` have been merged into `memo`
- `Transaction.deposit_memo_type`, `withdraw_memo_type`, and `send_memo_type` have been merged into `memo_type`
- `Asset.send_fee_percent` and `send_fee_fixed` were given defaults of 0 instead of being nullable

**Breaking Changes**

General:
- Some keyword arguments for `register_integrations()` have been changed
- `toml_func` --> `toml`
- `fee_func` --> `fee`
- `scripts_func` --> `scripts`,
- `info` --> `sep6_info`
- `send` --> `sep31_receiver`
- `Transaction.amount_fee` must be calculated by the anchor from ``poll_pending_deposits()`` or ``execute_outgoing_transactions()``
- Polaris will still attempt to calculate `Transaction.amount_fee` if there is no registered `fee` function
- `PROJECT_ROOT` is no longer used from `settings.py`. Polaris will now use `BASE_DIR` by default and `ENV_PATH` if specified.

SEP 6 & 24:
- `content_for_transaction()` has been replaced by two functions
- `form_for_transaction()`: returns the next form to be served to the user during the interactive flow
- `content_for_template()`: returns a dictionary containing customizable attributes for the template to be rendered to the user
- This was implemented so `content_for_template()` could be called for requests to Polaris `transaction/more_info` endpoint
- Added `icon_path` field to the list of allowed keys-value pairs returned from `content_for_template()`
- If not present, Polaris will try to use the `ORG_LOGO` URL returned from the anchor's registered `toml` function
- This replaces the need to create a `company_icon.svg` file
- `process_sep6_request()` is now passed an unsaved `Transaction` object representing the transaction to be created
- the transaction passed should only be saved if the request is valid

SEP31:
- The SEP-31 API itself was changed. See the [changes](https://github.com/stellar/stellar-protocol/compare/c53ea43..98fd80f) to understand why some of the following Polaris changes were made
- `SendIntegration` has been renamed to `SEP31ReceiverIntegration` following related changes to the SEP
- `process_send_request()` --> `process_post_request()`
- `process_update_request()` --> `process_patch_request()`
- `process_post_request()` is now passed an unsaved `Transaction` object instead of the transaction ID
- This mirrors the solution implemented for `process_sep6_request()`

**Bug Fixes**
- Added SEP-31 transactions query for most-recently completed transactions (used in `watch_transactions`)
- SEP-10 no longer attempts to decode request bodies manually (this was a problem when using `charset` in request headers)
- Polaris no longer uses hard-coded XDR error strings to detect errors when making SEP-24 deposits
- Polaris now uses the correct fee columns on the `Transaction` when users don't calculate the fee themselves

0.12.0

**Features**

- Full SEP-31 support. See the [documentation](https://django-polaris.readthedocs.io/en/stable/sep31/index.html) on the integration constructs provided
- Updates to SEP-12. (See [588](https://github.com/stellar/stellar-protocol/pull/588), [#653](https://github.com/stellar/stellar-protocol/pull/653), [#669](https://github.com/stellar/stellar-protocol/pull/669), [#674](https://github.com/stellar/stellar-protocol/pull/674), and [#681](https://github.com/stellar/stellar-protocol/pull/681))

**Breaking Changes**

- Moved `DepositIntegration.poll_pending_deposits()` to `RailsIntegration.poll_pending_deposits()`
- Replaced `WithdrawalIntegration.process_withdrawal()` with `RailsIntegration.execute_outgoing_transaction()`
- SEP-6 and 24 transactions uses this function now instead of `process_withdrawal`
- Polaris no longer calls the `registered_fee_function` except when requests to `/fee` are made.
- _The anchor is now responsible for calculating the fee in `poll_pending_deposits()` and `execute_outgoing_transaction()`_
- Removed `Transaction.external_extra`
- Removed `Transaction.external_extra_text`

**DB Migrations**

Added SEP-31 columns:

- `Asset.sep31_enabled`: a boolean for whether the asset can be received via SEP-31
- `Asset.send_fee_percent`: the 0-100 percentage value for fees on a transaction
- `Asset.send_fee_fixed`: the fixed fee charged per transaction
- `Asset.send_min_amount`: the minimum amount the anchor accepts in a transaction
- `Asset.send_max_amount`: the maximum amount the anchor accepts in a transaction
- `Transaction.required_info_update`: a text field for describing required updates to the transaction
- `Transaction.required_info_message`: a text field for a human-readable message about updates to the transaction
- `Transaction.send_memo`: the memo used when making the Stellar payment to the receiving anchor
- `Transaction.send_memo_type`: the memo type of the memo used
- `Transaction.send_anchor_account`: the anchor's Stellar address for receiving payments

**Bug Fixes**

- Fixed Polaris' `validate_language()` function to only allow supported languages
- prior to this release Polaris would not automatically return 400 for requests in languages not supported by the anchor

0.11.2

0.11.0 and 0.11.1 releases will be removed from PyPI, since they contain the bugs documented below.

**Features**
- Added endpoint and integrations for SEP-12's new `GET /customer` endpoint

**Dependencies**
- Upgrades `stellar-sdk` from 2.4 to 2.6.1

**Breaking Changes**
- `CustomerIntegration.put` integration now must return a customer ID (string)

**Bug Fixes**
- requests to SEP-12's `DELETE /customer` endpoint no longer causes a 500 Server Error
- removes the fee & total widget on interactive flow UI pages, unless amount field is displayed

0.11.1

**Features**
- No longer requires HTTPS for local deployments
- No longer requires all-origin access to non-Polaris endpoints
- Displays fee amount in real time on SEP-24 transaction amount forms
- Encrypts `Asset.distribution_seed` in the database, decrypts when brought into memory

**Dependencies**
- Removes `sslserver` dependency (make sure to remove from `INSTALLED_APPS`)

**Database Migrations**
- Adds migrations to encrypt `Asset.distribution_seed` values
- Adds `Asset.symbol` for SEP-24 amount form field currency symbol

**Bug Fixes**
- No longer requires withdraw amounts sent to the anchor to match the amount specified in the SEP-24 interactive flow
- No longer returns 500 error for bad account string to SEP-10 `/auth` endpoint

**Miscellaneous**
- Removes `authentication_required` from SEP-24 `/fee` endpoint
- Creates withdrawal memo after SEP-24 interactive flow completes
- Adds `amount_out` field to more_info.html page (amount_in - fee)

0.11.0

**Features**
- Adds SEP-6 and 12 support
- Deploy each supported SEP (1, 6, 10, 12, 24) independently.
- For example, you could run Polaris strictly with SEP-1 and SEP-10

**Dependencies**
- Removes `django-compressor`, `django-sass-processor`, and `libsass` from requirements
- `sass_processor` should no longer be listed in `INSTALLED_APPS`
- `SASS_PROCESSOR_ROOT` and `STATICFILES_FINDERS` settings are no longer needed
- Upgrades `stellar-sdk` to 2.4.0
- This is necessary to support Protocol 13

**Breaking Changes**
- `ACTIVE_SEPS` must be present in your settings file.
- It must contain the SEPs you wish to run, ex. `["sep-1", "sep-10", "sep-24"]`
- `SIGNING_SEED` environment variable is required
- This used to default to the anchored asset's distribution account
- Custom static assets overriding static assets from Polaris must be placed under a `polaris` subdirectory within your static files directory

**Database Migrations**
- Adds `distribution_seed` column and `distribution_account` property to `Asset` model
- When running migrations, these columns will be populated from the now unused `ASSETS` environment variables, if present
- `sep24_enabled` and `sep6_enabled` columns added to `Asset` model
- All existing assets will be sep-24 enabled when running migrations
- `protocol` column added to `Transaction` model

**Miscellaneous**
- use of `ASSETS`, `*_DISTRIBUTION_ACCOUNT_SEED`, and `*_ISSUER_ACCOUNT_ADDRESS` environment variables are removed
- These have been replaced by the `distribution_seed` and `issuer` database columns
- `DEFAULT_PAGE_SIZE` setting is no longer used
- All SEP-24 endpoints have been moved under a `/sep24` argument path. This was done so they would not conflict with endpoints from SEP-6, which are under a `/sep6` path

0.10.4

**Breaking Changes:**
- The `"form"` key from `content_for_transaction()`'s return value must be an instance of `django.forms.Form`
- `content_for_transaction()` additionally accepts two keyword arguments, `post_data` and `amount`

These change was made so anchors could initialize their own forms. This is particularly useful for pre-populating form fields with values from [SEP-9](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0009.md).

- `TransactionForm.__init__()` requires a `Transaction` instead of an `Asset`

This fixes a bug. `TransactionForm` was previously validating withdrawal amounts against deposit asset limits.

**Features**
- Adds the integration function `save_sep9_fields()` to both `DepositIntegration` and `WithdrawalIntegration` classes. This function allows anchors to store SEP-9 values passed by the wallet to the `deposit/interactive` and `withdraw/interactive` endpoints.

**DB Changes**
- `Transaction.paging_token` was added as a nullable text field

**Bug Fixes**
- `Transaction.started_at` and `Transaction.completed_at` are now recorded as datetimes in UTC.
- Previously, they were recorded in the time zone specified by the anchor using Django's `USE_TZ` and `TIME_ZONE` settings.
- The `watch_transactions` management command now streams transactions from Horizon starting from the most recently completed withdraw.
- Previously, `watch_transactions` started from `"now"`, which means the anchor could've potentially missed incoming withdrawal transactions if the process went down.
- `Transaction.stellar_transaction_id` is now saved for withdrawal transactions. Previously, it was only saved for deposit transactions.

**Miscellaneous**
- Added `TRANSFER_SERVER_0024` to the stellar.toml file
- Endpoints return 403 on bad or missing JWT tokens, instead of 400

Page 10 of 13

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.