[PR #136] [MERGED] Provenance #170

Closed
opened 2026-03-03 11:59:13 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/finmars-platform/finmars-core/pull/136
Author: @falendary
Created: 11/12/2025
Status: Merged
Merged: 11/19/2025
Merged by: @falendary

Base: mainHead: provenance


📝 Commits (10+)

  • 4189baa models
  • b54e3bb update with serializers and models
  • 3c64333 add platform version & update csv import schema
  • 5e1f3f4 update router
  • 79d166e update platform version, update serializers
  • c7aad85 migrations sync
  • 67a4978 add platform-version to urls
  • 90b0453 update provenance serializer
  • c20941d sync
  • 9fe778e Merge branch 'main' of github.com:finmars-platform/finmars-core into provenance

📊 Changes

58 files changed (+2268 additions, -146 deletions)

View changed files

📝 .gitignore (+1 -0)
poms/accounts/migrations/0013_remove_account_platform_version_and_more.py (+30 -0)
poms/accounts/migrations/0014_account_provider_account_provider_version_and_more.py (+55 -0)
poms/accounts/migrations/0015_account_platform_version_and_more.py (+25 -0)
📝 poms/accounts/models.py (+3 -2)
📝 poms/accounts/serializers.py (+2 -0)
📝 poms/api/urls.py (+2 -0)
📝 poms/common/models.py (+8 -23)
📝 poms/common/serializers.py (+2 -7)
📝 poms/common/utils.py (+5 -0)
poms/counterparties/migrations/0011_remove_counterparty_platform_version_and_more.py (+47 -0)
poms/counterparties/migrations/0012_counterparty_provider_counterparty_provider_version_and_more.py (+55 -0)
poms/counterparties/migrations/0013_counterparty_platform_version_and_more.py (+25 -0)
📝 poms/counterparties/models.py (+3 -2)
📝 poms/counterparties/serializers.py (+3 -0)
📝 poms/csv_import/handlers.py (+6 -1)
📝 poms/csv_import/serializers.py (+65 -79)
poms/currencies/migrations/0016_remove_currency_platform_version_and_more.py (+47 -0)
poms/currencies/migrations/0017_currency_provider_currency_provider_version_and_more.py (+55 -0)
poms/currencies/migrations/0018_currency_platform_version_and_more.py (+25 -0)

...and 38 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/finmars-platform/finmars-core/pull/136 **Author:** [@falendary](https://github.com/falendary) **Created:** 11/12/2025 **Status:** ✅ Merged **Merged:** 11/19/2025 **Merged by:** [@falendary](https://github.com/falendary) **Base:** `main` ← **Head:** `provenance` --- ### 📝 Commits (10+) - [`4189baa`](https://github.com/finmars-platform/finmars-core/commit/4189baafeb7690426d19db953eb614f7d8873219) models - [`b54e3bb`](https://github.com/finmars-platform/finmars-core/commit/b54e3bb82ef32bf9fe937e878a9dd63aeb812465) update with serializers and models - [`3c64333`](https://github.com/finmars-platform/finmars-core/commit/3c64333785946aaec8b287a27ac6b3425876ab77) add platform version & update csv import schema - [`5e1f3f4`](https://github.com/finmars-platform/finmars-core/commit/5e1f3f4ab8096aa150b21a4b0c26c3fd90633727) update router - [`79d166e`](https://github.com/finmars-platform/finmars-core/commit/79d166e803c9db1623a6caf0e3deb02fad2b70f2) update platform version, update serializers - [`c7aad85`](https://github.com/finmars-platform/finmars-core/commit/c7aad8599e5350c24baae376d6d51bfb29db634b) migrations sync - [`67a4978`](https://github.com/finmars-platform/finmars-core/commit/67a4978ab8967b0174eeb3816f87636123ac0021) add platform-version to urls - [`90b0453`](https://github.com/finmars-platform/finmars-core/commit/90b0453f40bdeb622f504aff24150be4b16f1b30) update provenance serializer - [`c20941d`](https://github.com/finmars-platform/finmars-core/commit/c20941d6468701d56c76db6b87da84df5e72605d) sync - [`9fe778e`](https://github.com/finmars-platform/finmars-core/commit/9fe778e36281039dba91adee2982d54a62ae22da) Merge branch 'main' of github.com:finmars-platform/finmars-core into provenance ### 📊 Changes **58 files changed** (+2268 additions, -146 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) ➕ `poms/accounts/migrations/0013_remove_account_platform_version_and_more.py` (+30 -0) ➕ `poms/accounts/migrations/0014_account_provider_account_provider_version_and_more.py` (+55 -0) ➕ `poms/accounts/migrations/0015_account_platform_version_and_more.py` (+25 -0) 📝 `poms/accounts/models.py` (+3 -2) 📝 `poms/accounts/serializers.py` (+2 -0) 📝 `poms/api/urls.py` (+2 -0) 📝 `poms/common/models.py` (+8 -23) 📝 `poms/common/serializers.py` (+2 -7) 📝 `poms/common/utils.py` (+5 -0) ➕ `poms/counterparties/migrations/0011_remove_counterparty_platform_version_and_more.py` (+47 -0) ➕ `poms/counterparties/migrations/0012_counterparty_provider_counterparty_provider_version_and_more.py` (+55 -0) ➕ `poms/counterparties/migrations/0013_counterparty_platform_version_and_more.py` (+25 -0) 📝 `poms/counterparties/models.py` (+3 -2) 📝 `poms/counterparties/serializers.py` (+3 -0) 📝 `poms/csv_import/handlers.py` (+6 -1) 📝 `poms/csv_import/serializers.py` (+65 -79) ➕ `poms/currencies/migrations/0016_remove_currency_platform_version_and_more.py` (+47 -0) ➕ `poms/currencies/migrations/0017_currency_provider_currency_provider_version_and_more.py` (+55 -0) ➕ `poms/currencies/migrations/0018_currency_platform_version_and_more.py` (+25 -0) _...and 38 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:59:13 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/finmars-core#170
No description provided.