Skip to content
Snippets Groups Projects
Commit e4ae0515 authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 0.18.

parents 33c784e6 191d7528
Branches master
Tags 0.18
No related merge requests found
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.18] - 2025-0-15
- Do not consider visitors that have paid in the daily error report
## [0.17] - 2025-04-22 ## [0.17] - 2025-04-22
- Introduce ERROR_REPORT_IGNORE_REGISTRATION_TYPES setting to configure error report ignore list - Introduce ERROR_REPORT_IGNORE_REGISTRATION_TYPES setting to configure error report ignore list
......
...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages ...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name="stripe-checkout", name="stripe-checkout",
version="0.17", version="0.18",
author="GEANT", author="GEANT",
author_email="swd@geant.org", author_email="swd@geant.org",
description="Stripe custom checkout support service", description="Stripe custom checkout support service",
......
...@@ -66,6 +66,8 @@ class PossibleErrorReporter(CSVReporter): ...@@ -66,6 +66,8 @@ class PossibleErrorReporter(CSVReporter):
@staticmethod @staticmethod
def _is_suspect(obj: dict, ignore_registration_types: Collection[str]): def _is_suspect(obj: dict, ignore_registration_types: Collection[str]):
if obj['Paid']:
return False
if obj["Registration Type"] in ignore_registration_types: if obj["Registration Type"] in ignore_registration_types:
return False return False
return obj["Invoice Count"] != 1 return obj["Invoice Count"] != 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment