Skip to content

Commit c9a2fdb

Browse files
committed
Add data_cache to ServiceFeed
1 parent 828e948 commit c9a2fdb

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.6.28] - 2025-10-28
8+
### Added
9+
- Add `data_cache` to `AbstractServiceFeed`
10+
711
## [1.6.27] - 2025-10-28
812
### Added
913
- Coindesk, Lunarcrush and Alternative.me services constants

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OctoBot-Services [1.6.27](https://github.com/Drakkar-Software/OctoBot-Services/tree/master/docs/CHANGELOG.md)
1+
# OctoBot-Services [1.6.28](https://github.com/Drakkar-Software/OctoBot-Services/tree/master/docs/CHANGELOG.md)
22
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/31a1caa6e5384d80bf890dba5c9b5e4b)](https://app.codacy.com/gh/Drakkar-Software/OctoBot-Services?utm_source=github.com&utm_medium=referral&utm_content=Drakkar-Software/OctoBot-Services&utm_campaign=Badge_Grade_Dashboard)
33
[![PyPI](https://img.shields.io/pypi/v/OctoBot-Services.svg)](https://pypi.python.org/pypi/OctoBot-Services/)
44
[![Github-Action-CI](https://github.com/Drakkar-Software/OctoBot-Services/workflows/OctoBot-Services-CI/badge.svg)](https://github.com/Drakkar-Software/OctoBot-Services/actions)

octobot_services/service_feeds/abstract_service_feed.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def __init__(self, config, main_async_loop, bot_id):
4747
self.bot_id = bot_id
4848
self.services = None
4949
self.should_stop = False
50+
self.data_cache = None
5051

5152
# Override update_feed_config if any need in the extending feed
5253
def update_feed_config(self, config):

0 commit comments

Comments
 (0)