Skip to content

Commit d4b306d

Browse files
authored
feat: API Lookup developer guide in documentation (#302)
## [6.0.5] - 2025-05-23 ### Added - API Lookup developer guide in documentation ### Deprecated - Deprecation message in lookup upload functionality modified
1 parent 86503a0 commit d4b306d

File tree

11 files changed

+526
-110
lines changed

11 files changed

+526
-110
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [6.0.5] - 2025-05-23
8+
9+
### Added
10+
- API Lookup developer guide in documentation
11+
12+
### Deprecated
13+
- Deprecation message in lookup upload functionality modified
14+
15+
716
## [6.0.4] - 2025-05-12
817

18+
### Deprecated
919
- Deprecation message in lookup upload functionality modified
1020

1121
## [6.0.3] - 2025-03-20

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This is the SDK to access Devo directly from Python. It can be used to:
1616
> Right now the upload of lookups functionality is based on the `my.lookup.data` and `my.lookup.control` tables.
1717
> This method is deprecated on the Devo backend, and it will be discontinued on 1st January 2026.
1818
> As an alternative, you can use the Lookups API: [Lookups API Documentation](https://docs.devo.com/space/latest/127500289/Lookups+API).
19-
19+
> There is a [developer guide](docs/sender/api_lookup_guide.md) in documentation.
2020
2121
## Requirements
2222

devo/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__description__ = "Devo Python Library."
22
__url__ = "http://www.devo.com"
3-
__version__ = "6.0.4"
3+
__version__ = "6.0.5"
44
__author__ = "Devo"
55
__author_email__ = "support@devo.com"
66
__license__ = "MIT"

devo/sender/lookup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,8 @@ def send_control(self, event=None, headers=None, action=None):
302302
warnings.warn(
303303
"The lookup upload functionality based on the `my.lookup.data` and `my.lookup.control` tables "
304304
"is deprecated on the Devo backend, and it will be discontinued on 1st January 2026. Instead, you can "
305-
"use the Lookups API: https://docs.devo.com/space/latest/127500289/Lookups+API.",
305+
"use the Lookups API: https://docs.devo.com/space/latest/127500289/Lookups+API. You can also find a "
306+
"developers guide at https://github.com/DevoInc/python-sdk/blob/master/docs/sender/api_lookup_guide.md",
306307
DeprecationWarning,
307308
stacklevel=2
308309
)

0 commit comments

Comments
 (0)