Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stripe-checkout
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
geant-swd
stripe-checkout
Commits
e4ae0515
Commit
e4ae0515
authored
3 weeks ago
by
geant-release-service
Browse files
Options
Downloads
Plain Diff
Finished release 0.18.
parents
33c784e6
191d7528
Branches
master
Branches containing commit
Tags
0.18
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Changelog.md
+4
-0
4 additions, 0 deletions
Changelog.md
setup.py
+1
-1
1 addition, 1 deletion
setup.py
stripe_checkout/stripe_checkout/compare_visit_stripe.py
+2
-0
2 additions, 0 deletions
stripe_checkout/stripe_checkout/compare_visit_stripe.py
with
7 additions
and
1 deletion
Changelog.md
+
4
−
0
View file @
e4ae0515
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
e4ae0515
...
@@ -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.1
7
"
,
version
=
"
0.1
8
"
,
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
"
,
...
...
This diff is collapsed.
Click to expand it.
stripe_checkout/stripe_checkout/compare_visit_stripe.py
+
2
−
0
View file @
e4ae0515
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment