Chaturbate-poller

Latest version: v0.16.6

Safety actively analyzes 678576 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 23

0.14.3

Bug Fixes

* fix: Update ci.yml to only run test coverage and docs uploading on single matrix instance ([`7ba25d0`](https://github.com/MountainGod2/chaturbate_poller/commit/7ba25d0b6dda07b6b17f5abf6ba5cada491062a5))

Continuous Integration

* ci: Update ci.yml to use Python version in UV cache ([`2cd48cd`](https://github.com/MountainGod2/chaturbate_poller/commit/2cd48cd1ba45f988891661265c2bba9f1d5cf621))

* ci: Update ci.yml to add Python version to uv cache ([`e13ae8d`](https://github.com/MountainGod2/chaturbate_poller/commit/e13ae8d5163440d6283c8983ac37f54d4d5c6c8c))

0.14.2

Bug Fixes

* fix: Update cd.yml to use GH_PAT instead of GITHUB_TOKEN for authentication ([`fa1f53b`](https://github.com/MountainGod2/chaturbate_poller/commit/fa1f53b97664a2aeeee2f10ec414d148af24c4bb))

0.14.1

Bug Fixes

* fix: Update docker-entrypoint.sh to start chaturbate_poller by default ([`22dd9d6`](https://github.com/MountainGod2/chaturbate_poller/commit/22dd9d68ae1ef5251e37237ee42fd711849f19a2))

Chores

* chore(deps): lock file maintenance ([`feb7018`](https://github.com/MountainGod2/chaturbate_poller/commit/feb7018efd86686696cf0d059556d712aa00c58d))

Documentation

* docs: Update Chaturbate Poller description and features in README.md ([`d18770a`](https://github.com/MountainGod2/chaturbate_poller/commit/d18770a3eed5c7ee2ac2466ace1fcc37f61647cc))

Refactoring

* refactor: Update configuration manager to support loading environment variables from a specified file (80) ([`1aa29e2`](https://github.com/MountainGod2/chaturbate_poller/commit/1aa29e294dec6c4251fb31f872c53912c36997aa))

0.14.0

Chores

* chore: Update .gitignore to exclude .env.bak file ([`66b0fe7`](https://github.com/MountainGod2/chaturbate_poller/commit/66b0fe70a054083f3b17dea734942df588d52fdb))

* chore: Update INFLUXDB_BUCKET value in .env.example ([`6b36da7`](https://github.com/MountainGod2/chaturbate_poller/commit/6b36da78ec90177ae9c4ee3f0233adfdd424140c))

* chore(deps): lock file maintenance ([`bf4086b`](https://github.com/MountainGod2/chaturbate_poller/commit/bf4086b22c8e2e8ccb6ace591670700f1af6da95))

Documentation

* docs: Update file paths in README and docs ([`f04da5c`](https://github.com/MountainGod2/chaturbate_poller/commit/f04da5cc6981d333678738d0e396402ff66c7a16))

Features

* feat: Update configuration manager to support loading environment variables from a specified file

- Refactored the configuration manager to add support for loading environment variables from a specified file. This allows for easier management and customization of environment variables. ([`83507b4`](https://github.com/MountainGod2/chaturbate_poller/commit/83507b48fa99f81e45031d2c56c463054aa0d23d))

Testing

* test: Add ConfigManager fixture to tests

This commit adds a new fixture, `config_manager`, to the tests. The fixture is used to initialize the `ConfigManager` class with an environment file specified as `.env.example`. This fixture will be used in future tests to access and manipulate configuration settings.

Refactor the ConfigManager initialization tests

This commit refactors the initialization tests for the `ConfigManager` class. It adds two new tests: `test_init_with_env_variables` and `test_init_with_env_file`.

The `test_init_with_env_variables` test verifies that the `ConfigManager` class can be initialized with environment variables. It sets the required environment variables and asserts that the `ConfigManager` instance is correctly initialized with the expected values.

The `test_init_with_env_file` test verifies that the `ConfigManager` class can be initialized with an environment file. It mocks the existence of the environment file and asserts that the `ConfigManager` instance is correctly initialized with the expected values from the file.

These changes improve the test coverage and ensure that the `ConfigManager` class is properly tested for different initialization scenarios. ([`241178a`](https://github.com/MountainGod2/chaturbate_poller/commit/241178a07dc9f209b2dc234a2e3d9c3295a6cd48))

Unknown

* refacter: Update configuration manager to support loading environment variables from a specified file ([`edb8072`](https://github.com/MountainGod2/chaturbate_poller/commit/edb8072c71e485c73ccd72b98bc0995d7dcf6d8a))

0.13.12

Bug Fixes

* fix: Update ChaturbateUtils class in utils.py to handle missing "wait" and "tries" details (77)

* refactor: Update chaturbate-poller script to use CLI instead of main function

* refactor: Update LICENSE file path in README.md

* chore: Update chaturbate-poller to 0.13.11

* ci: Disable credential persistence in CI workflow

* refactor: Enable linkify extension in Sphinx documentation

* refactor: Add linkify-it-py to Sphinx documentation requirements

* refactor: Update main module import in __main__.py

* refactor: Remove unnecessary exception handling in ChaturbateClient

The code changes remove the unnecessary exception handling for httpx.ReadError in the ChaturbateClient class. This exception was previously logged and re-raised, but it is now removed from the codebase.

Refactor the exception handling in ChaturbateClient to improve code readability and maintainability.

* refactor: Remove unused AddCorrelationIDFilter class in logging_config.py

* refactor: Update CLI entrypoint in main.py

- Move the CLI entrypoint from the `main` function to a new `cli` function.
- Reorder the command line options for better readability.
- Update the `main` function to call the `cli` function using `asyncio.run`.

Refactor the CLI entrypoint in `main.py` to improve code organization and readability.

* refactor: Update models.py to validate next_url as a valid URL

* refactor: Update signal handling in SignalHandler class

- Refactored the setup method in the SignalHandler class to set up signal handlers for SIGINT and SIGTERM asynchronously.
- Replaced the use of sys.platform with direct calls to add_signal_handler to ensure compatibility across platforms.
- Updated the handle_signal method to handle signals asynchronously.
- Modified the _shutdown method to only set the stop_future result and cancel tasks if the stop_future is not already done.
- Added an await statement before calling _cancel_tasks in the _shutdown method to ensure proper cancellation of tasks.

* fix: Update ChaturbateUtils class in utils.py to handle missing "wait" and "tries" details

* refactor: Remove AddCorrelationIDFilter class and update logging configurations

The AddCorrelationIDFilter class in logging_config.py was removed as it was no longer being used. Additionally, the logging configurations were updated to handle missing "wait" and "tries" details in the ChaturbateUtils class in utils.py. The signal handling in the SignalHandler class was also refactored. Lastly, the models.py file was updated to validate the next_url as a valid URL.

* refactor: Remove develop branch from CI workflow ([`90e9051`](https://github.com/MountainGod2/chaturbate_poller/commit/90e9051541a93997ab732d26e8bb5d337f041203))

0.13.11

Bug Fixes

* fix: Update CD workflow to disable credential persistence ([`47286e0`](https://github.com/MountainGod2/chaturbate_poller/commit/47286e0dd792488f9238e1bb2b2e5e32749f218b))

Chores

* chore: Update chaturbate-poller version to 0.13.10 ([`e5ea508`](https://github.com/MountainGod2/chaturbate_poller/commit/e5ea508ee4f2aa1b7c7714dd569ee81ad2ae4a7f))

Refactoring

* refactor: Update CD workflow to force correct release branch on workflow sha ([`b9cdadb`](https://github.com/MountainGod2/chaturbate_poller/commit/b9cdadbad288cdd36c9a90403aef68e9d2b39592))

* refactor: Update Docker Build workflow to remove branch restriction for push event ([`9c08c2e`](https://github.com/MountainGod2/chaturbate_poller/commit/9c08c2e2fd667ae60682f24325fab8896fac7be7))

Page 5 of 23

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.