Update dependency pytest-redis to v4 #261

Open
_renovate wants to merge 1 commit from renovate/pytest-redis-4.x into master
_renovate commented 2026-04-04 03:15:50 +02:00 (Migrated from edugit.org)

This MR contains the following updates:

Package Type Update Change
pytest-redis (changelog) dev major ^3.1.3^4.0.0

Release Notes

dbfixtures/pytest-redis (pytest-redis)

v4.0.0

Compare Source

===============================

Breaking changes

  • RedisConfigType (TypedDict) is removed and replaced by the RedisConfig dataclass.

    Update callers of get_config to expect and handle a RedisConfig return value, switch access from config["key"] to config.key,
    and replace any RedisConfigType imports with RedisConfig. (#&#8203;891 <https://github.com/dbfixtures/pytest-redis/issues/891>__)

  • Drop support for Python 3.9 (#&#8203;900 <https://github.com/dbfixtures/pytest-redis/issues/900>__)

  • Rename the redis_nooproc fixture to redis_noproc (typo fix); update any fixture names accordingly.
    The default redis_timeout is now 15 seconds (was 30).

Features

  • Improved xdist compatibility by introducing port-locking mechanism.

    If one worker claims a port, it will lock it, and other xdist workers will
    either check another port or raise an error with clear message. (#&#8203;895 <https://github.com/dbfixtures/pytest-redis/issues/895>__)

  • Mark support for Python 3.14 (#&#8203;900 <https://github.com/dbfixtures/pytest-redis/issues/900>__)

Bugfixes

  • Fixed an issue where setting syslog parameter to False on a fixture, would have the same effect as None, in which case,
    the value used would be deferred to the configured one, which could be set to True. (#&#8203;912 <https://github.com/dbfixtures/pytest-redis/issues/912>__)

Documentation

  • Add architecture diagram to readme. (#&#8203;898 <https://github.com/dbfixtures/pytest-redis/issues/898>__)
  • README updates: add a Quickstart section, clarify fixture scopes and Redis availability,
    and fix wording for the redis_noproc fixture and timeout defaults.

Miscellaneus

  • Run xdist test with n auto flag.

    This actually runs tests on several workers which makes it more likely to detect any bugs when running tests. (#&#8203;895 <https://github.com/dbfixtures/pytest-redis/issues/895>__)

  • Replaced black with ruff format (#&#8203;896 <https://github.com/dbfixtures/pytest-redis/issues/896>__)

  • Added CI pipeline to test pytest-redis against oldest supported package versions. (#&#8203;897 <https://github.com/dbfixtures/pytest-redis/issues/897>__)

  • Validate package configuration against supported and required python versions in pre-commit. (#&#8203;899 <https://github.com/dbfixtures/pytest-redis/issues/899>__)

  • Add release workflow to ease release process (#&#8203;901 <https://github.com/dbfixtures/pytest-redis/issues/901>__)

  • Update the tests, to rely on editable install instead of the source code location. (#&#8203;908 <https://github.com/dbfixtures/pytest-redis/issues/908>__)

  • Add Redis 8.x versions to CI. (#&#8203;909 <https://github.com/dbfixtures/pytest-redis/issues/909>__)

  • Update pytest configuration to toml-native (#&#8203;917 <https://github.com/dbfixtures/pytest-redis/issues/917>__)

  • Adjust links after repository transfer

  • Adjust workflows for actions-reuse 3

  • Fix CI warning: Unexpected input(s) 'python-version', valid inputs are ['command', 'env']

  • Fix coveragerc configuration

  • Refactored CI to use shared internal workflows instead of actions.

    Such workflows are updated by dependabot, while actions not yet.

  • Update really old composite actions in internal actions/pytest

  • Use pre-commit for maintaining code style and linting


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Mend Renovate.

This MR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [pytest-redis](https://github.com/dbfixtures/pytest-redis) ([changelog](https://github.com/dbfixtures/pytest-redis/blob/v4.0.0/CHANGES.rst)) | dev | major | `^3.1.3` → `^4.0.0` | --- ### Release Notes <details> <summary>dbfixtures/pytest-redis (pytest-redis)</summary> ### [`v4.0.0`](https://github.com/dbfixtures/pytest-redis/blob/HEAD/CHANGES.rst#pytest-redis-400-2026-02-28) [Compare Source](https://github.com/dbfixtures/pytest-redis/compare/v3.1.3...v4.0.0) \=============================== ## Breaking changes - RedisConfigType (TypedDict) is removed and replaced by the RedisConfig dataclass. Update callers of get\_config to expect and handle a RedisConfig return value, switch access from config\["key"] to config.key, and replace any RedisConfigType imports with RedisConfig. (`#&#8203;891 <https://github.com/dbfixtures/pytest-redis/issues/891>`\_\_) - Drop support for Python 3.9 (`#&#8203;900 <https://github.com/dbfixtures/pytest-redis/issues/900>`\_\_) - Rename the `redis_nooproc` fixture to `redis_noproc` (typo fix); update any fixture names accordingly. The default `redis_timeout` is now 15 seconds (was 30). ## Features - Improved xdist compatibility by introducing port-locking mechanism. If one worker claims a port, it will lock it, and other xdist workers will either check another port or raise an error with clear message. (`#&#8203;895 <https://github.com/dbfixtures/pytest-redis/issues/895>`\_\_) - Mark support for Python 3.14 (`#&#8203;900 <https://github.com/dbfixtures/pytest-redis/issues/900>`\_\_) ## Bugfixes - Fixed an issue where setting `syslog` parameter to `False` on a fixture, would have the same effect as `None`, in which case, the value used would be deferred to the configured one, which could be set to `True`. (`#&#8203;912 <https://github.com/dbfixtures/pytest-redis/issues/912>`\_\_) ## Documentation - Add architecture diagram to readme. (`#&#8203;898 <https://github.com/dbfixtures/pytest-redis/issues/898>`\_\_) - README updates: add a Quickstart section, clarify fixture scopes and Redis availability, and fix wording for the `redis_noproc` fixture and timeout defaults. ## Miscellaneus - Run xdist test with `n auto` flag. This actually runs tests on several workers which makes it more likely to detect any bugs when running tests. (`#&#8203;895 <https://github.com/dbfixtures/pytest-redis/issues/895>`\_\_) - Replaced black with ruff format (`#&#8203;896 <https://github.com/dbfixtures/pytest-redis/issues/896>`\_\_) - Added CI pipeline to test pytest-redis against oldest supported package versions. (`#&#8203;897 <https://github.com/dbfixtures/pytest-redis/issues/897>`\_\_) - Validate package configuration against supported and required python versions in pre-commit. (`#&#8203;899 <https://github.com/dbfixtures/pytest-redis/issues/899>`\_\_) - Add release workflow to ease release process (`#&#8203;901 <https://github.com/dbfixtures/pytest-redis/issues/901>`\_\_) - Update the tests, to rely on editable install instead of the source code location. (`#&#8203;908 <https://github.com/dbfixtures/pytest-redis/issues/908>`\_\_) - Add Redis 8.x versions to CI. (`#&#8203;909 <https://github.com/dbfixtures/pytest-redis/issues/909>`\_\_) - Update pytest configuration to toml-native (`#&#8203;917 <https://github.com/dbfixtures/pytest-redis/issues/917>`\_\_) - Adjust links after repository transfer - Adjust workflows for actions-reuse 3 - Fix CI warning: Unexpected input(s) 'python-version', valid inputs are \['command', 'env'] - Fix coveragerc configuration - Refactored CI to use shared internal workflows instead of actions. Such workflows are updated by dependabot, while actions not yet. - Update really old composite actions in internal actions/pytest - Use pre-commit for maintaining code style and linting </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDQuMSIsInVwZGF0ZWRJblZlciI6IjQzLjI2NS4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
_renovate commented 2026-04-25 20:28:34 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-27 21:58:40 +02:00 (Migrated from edugit.org)

added 11 commits

  • 3be82d60...9c92af0a - 10 commits from branch master
  • 1a7b72de - Update dependency pytest-redis to v4

Compare with previous version

added 11 commits <ul><li>3be82d60...9c92af0a - 10 commits from branch <code>master</code></li><li>1a7b72de - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=87081&start_sha=3be82d6050ba9289706d378d8e4dac75b5a2fe00)
_renovate commented 2026-04-28 00:03:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • dfa8ddc5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>dfa8ddc5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=87663&start_sha=1a7b72de4bed2f2018d2374a2bcff15130be192c)
_renovate commented 2026-04-28 02:10:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 34f62e7e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>34f62e7e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=88136&start_sha=dfa8ddc5987c1c98880237483ad7974d74b84fad)
_renovate commented 2026-04-28 02:23:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0be625a9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0be625a9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=88169&start_sha=34f62e7e365668382303dfa817d72ba6790c6f1f)
_renovate commented 2026-04-28 07:07:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • ca6bea21 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ca6bea21 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=88490&start_sha=0be625a9336040386995a3e78ff18f8904d056f6)
_renovate commented 2026-04-28 07:59:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • 424ec3e2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>424ec3e2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=88513&start_sha=ca6bea210e623e283a7f9675e2b2a39c365869be)
_renovate commented 2026-04-28 11:40:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • 245a801c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>245a801c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=88729&start_sha=424ec3e204e7eb0088d0aaf7ed1e6b300903ec61)
_renovate commented 2026-04-28 13:01:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • d9d69c13 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d9d69c13 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=88868&start_sha=245a801c8f3f9dea3ae125685a005038c55faa2a)
_renovate commented 2026-04-28 14:53:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • 734a272f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>734a272f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=89063&start_sha=d9d69c13a0a35633b14ef7299501e9aa2e90f084)
_renovate commented 2026-04-28 16:19:03 +02:00 (Migrated from edugit.org)

added 1 commit

  • a26bb7d1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a26bb7d1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=89297&start_sha=734a272fb741bba3cd70aa2034987a4caac0cea8)
_renovate commented 2026-04-28 16:27:03 +02:00 (Migrated from edugit.org)

added 1 commit

  • 196dc5ad - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>196dc5ad - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=89337&start_sha=a26bb7d1fa8fffd877ee5d73f3170352db199b58)
_renovate commented 2026-04-28 17:51:04 +02:00 (Migrated from edugit.org)

added 1 commit

  • ae3ab404 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ae3ab404 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=89583&start_sha=196dc5ad6c8530f81c4b039b51e761bcdc414178)
_renovate commented 2026-04-28 19:41:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9731997d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9731997d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=89797&start_sha=ae3ab40467a996c4815fb75a06625e14c485032e)
_renovate commented 2026-04-28 21:26:17 +02:00 (Migrated from edugit.org)

added 1 commit

  • d76095e1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d76095e1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=89963&start_sha=9731997d6036c0bd1dc71b675e4202d242b012ef)
_renovate commented 2026-04-29 00:57:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • 83218f05 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>83218f05 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=90177&start_sha=d76095e188e07cfcf4c7b1215b71f0cc0d517b52)
_renovate commented 2026-04-29 01:36:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8562c1dd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8562c1dd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=90215&start_sha=83218f05184c011e4624605684fd987952a6181e)
_renovate commented 2026-04-29 02:02:48 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5c683da3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5c683da3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=90305&start_sha=8562c1dd770856c09c7ae044596f7ee04454ba05)
_renovate commented 2026-04-29 03:08:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • a3b3f556 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a3b3f556 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=90418&start_sha=5c683da3c280e13cf4c687e02eecfc4e7d70facf)
_renovate commented 2026-04-29 03:18:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 435ada11 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>435ada11 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=90436&start_sha=a3b3f55682fdf60c1ec8aafcb6de38bd181762b7)
_renovate commented 2026-04-29 05:26:35 +02:00 (Migrated from edugit.org)

added 1 commit

  • adaeea32 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>adaeea32 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=90708&start_sha=435ada11a8024f9a5a3cba3d4f29d69c15ea6c20)
_renovate commented 2026-04-29 05:59:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 870597b8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>870597b8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=90759&start_sha=adaeea32e228b523b14397a66cd412388f2e29df)
_renovate commented 2026-04-29 07:14:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • dc36f519 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>dc36f519 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=90940&start_sha=870597b86e3d3a7293cbe3a4f99d363fb2989ea5)
_renovate commented 2026-04-29 08:10:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1586a21e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1586a21e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=91143&start_sha=dc36f519a0fb0788fd60b7457f74fb22fcb1df6a)
_renovate commented 2026-04-29 11:00:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • 90e9eda4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>90e9eda4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=91726&start_sha=1586a21e6b6b3091c2887e8486c258bd92751592)
_renovate commented 2026-04-29 17:36:58 +02:00 (Migrated from edugit.org)

added 1 commit

  • f49a6423 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f49a6423 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=92460&start_sha=90e9eda4f356c8e383c11eceb076ad6dfe4fc2b3)
_renovate commented 2026-04-29 18:10:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • 51941a9b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>51941a9b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=92563&start_sha=f49a64238ae936185f2964294d69470e9f48fbd4)
_renovate commented 2026-04-30 00:03:06 +02:00 (Migrated from edugit.org)

added 1 commit

  • abcb600d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>abcb600d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=93171&start_sha=51941a9b686cd488eeace720de745889eae45d60)
_renovate commented 2026-04-30 03:17:36 +02:00 (Migrated from edugit.org)

added 1 commit

  • 58e6c70b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>58e6c70b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=93587&start_sha=abcb600de4e46b94eb0d68a57c942de1b4d0f83c)
_renovate commented 2026-04-30 12:19:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • ab1710f6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ab1710f6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=94379&start_sha=58e6c70b3131817b2a11729c11e5c565fb66a0d7)
_renovate commented 2026-04-30 13:45:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • 173aa464 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>173aa464 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=94497&start_sha=ab1710f6414ec37392eabd103653654892fc806e)
_renovate commented 2026-04-30 14:49:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • 20ebf22f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>20ebf22f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=94624&start_sha=173aa464026adf7a3313e5a866efeb8c5fb74d44)
_renovate commented 2026-04-30 15:46:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6f41b699 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6f41b699 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=94707&start_sha=20ebf22f1d69f0aa2e02c37fa3d2b091c2f9d32b)
_renovate commented 2026-04-30 17:30:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • e0aece82 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e0aece82 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=94822&start_sha=6f41b69997f0369272b06380e7cbb5fce0eafc72)
_renovate commented 2026-04-30 22:54:23 +02:00 (Migrated from edugit.org)

added 3 commits

  • e0aece82...162ae046 - 2 commits from branch master
  • 1fb8749b - Update dependency pytest-redis to v4

Compare with previous version

added 3 commits <ul><li>e0aece82...162ae046 - 2 commits from branch <code>master</code></li><li>1fb8749b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=95379&start_sha=e0aece824c94a71e5852fea4a90e913e7afcce1c)
_renovate commented 2026-05-01 05:52:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6425afc0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6425afc0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=95756&start_sha=1fb8749b7093c5e66c46d15ad2706b7b5b3a36f2)
_renovate commented 2026-05-01 17:53:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8ba242c3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8ba242c3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=96567&start_sha=6425afc0c8fb18c2afb559f712f24b2cf4c3138b)
_renovate commented 2026-05-01 18:31:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7e3f072c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7e3f072c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=96637&start_sha=8ba242c3ef7a9a446d8b7ee8bd229aeea7b5c9b3)
_renovate commented 2026-05-01 19:34:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • 92eefe8e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>92eefe8e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=96699&start_sha=7e3f072ca97539922160d0d21f4c684372e89225)
_renovate commented 2026-05-01 20:16:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5cf5f16d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5cf5f16d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=96738&start_sha=92eefe8eda8e2156e26eebb0f162c63f032a6ff8)
_renovate commented 2026-05-01 20:33:17 +02:00 (Migrated from edugit.org)

added 1 commit

  • 95699cbd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>95699cbd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=96763&start_sha=5cf5f16dc9728ce101789526a8e87c41e56c1a88)
_renovate commented 2026-05-01 21:33:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1327b814 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1327b814 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=96811&start_sha=95699cbdecf93f68c9a677167250fd525882e9a6)
_renovate commented 2026-05-01 22:55:36 +02:00 (Migrated from edugit.org)

added 2 commits

  • cc787519 - 1 commit from branch master
  • 3182f38e - Update dependency pytest-redis to v4

Compare with previous version

added 2 commits <ul><li>cc787519 - 1 commit from branch <code>master</code></li><li>3182f38e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=96903&start_sha=1327b814894477758524924551cea3e305d62355)
_renovate commented 2026-05-01 23:04:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0341ac0e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0341ac0e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=96922&start_sha=3182f38e31667faec61cf5327abc0b770b80c3dc)
_renovate commented 2026-05-02 00:28:47 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9f548965 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9f548965 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=97026&start_sha=0341ac0ecb5c27aa083eaf7e8b0ed34f3d875f87)
_renovate commented 2026-05-02 01:04:47 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6fde439b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6fde439b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=97068&start_sha=9f5489652cb837d332bc0819d216ebb571d3e96b)
_renovate commented 2026-05-02 10:54:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • f738a772 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f738a772 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=97884&start_sha=6fde439b428a9e7dadbfd6ef05d6688e472945cb)
_renovate commented 2026-05-02 16:00:29 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7ed1e388 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7ed1e388 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98226&start_sha=f738a772d293a6da3604467f2084bb0ab4d07b7f)
_renovate commented 2026-05-02 16:47:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • ae486824 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ae486824 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98283&start_sha=7ed1e38893d3319d6f6b153f741d97ebce4ce80d)
_renovate commented 2026-05-02 18:35:31 +02:00 (Migrated from edugit.org)

added 1 commit

  • 856c3b48 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>856c3b48 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98397&start_sha=ae486824132f3dd5f439b63825d75ebf527668e9)
_renovate commented 2026-05-02 19:47:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • 03e9b0c6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>03e9b0c6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98464&start_sha=856c3b48fdfad2fc35e3bebce1c2097d85dba0ac)
_renovate commented 2026-05-02 21:11:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • bbbb61a6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>bbbb61a6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98566&start_sha=03e9b0c63abd3a18e506e4bf8329ecd329b6df48)
_renovate commented 2026-05-02 21:44:38 +02:00 (Migrated from edugit.org)

added 1 commit

  • b09b6c01 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b09b6c01 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98629&start_sha=bbbb61a624323977ee1691e9bbe03a8e7eac8071)
_renovate commented 2026-05-02 21:54:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7a815c65 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7a815c65 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98657&start_sha=b09b6c018b689db1e692b2ef1abc8b532e9eb5c4)
_renovate commented 2026-05-02 21:59:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • aab6f5e6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>aab6f5e6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98672&start_sha=7a815c6543a0eba86997631e0ef1d4635b3baf19)
_renovate commented 2026-05-02 23:22:55 +02:00 (Migrated from edugit.org)

added 1 commit

  • 61b0f02b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>61b0f02b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98759&start_sha=aab6f5e6961870d8ffa84976e960dfbbbdd2fc7e)
_renovate commented 2026-05-03 01:33:18 +02:00 (Migrated from edugit.org)

added 1 commit

  • c273f9ca - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c273f9ca - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=98953&start_sha=61b0f02b0a167879ab7bcadabfab0978d7a73438)
_renovate commented 2026-05-03 02:19:26 +02:00 (Migrated from edugit.org)

added 1 commit

  • 85730dcd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>85730dcd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=99110&start_sha=c273f9caed21e2bfd38f2968a361e27057a05916)
_renovate commented 2026-05-03 03:10:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • 867506da - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>867506da - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=99260&start_sha=85730dcd200ac5fc9e9fdc155944a53dfa723788)
_renovate commented 2026-05-03 09:42:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • b2ebe1ea - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b2ebe1ea - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=99690&start_sha=867506da2f9ccc0a2fb4762900eef51c850be4a1)
_renovate commented 2026-05-03 13:48:55 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9c6db2d7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9c6db2d7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=100000&start_sha=b2ebe1eae5ff39214b8818022e118d79453bd4eb)
_renovate commented 2026-05-03 15:34:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • c19f3dcd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c19f3dcd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=100119&start_sha=9c6db2d7a87ed7f69f41f19fa9e47a525697cb33)
_renovate commented 2026-05-03 15:52:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • fad55d46 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fad55d46 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=100145&start_sha=c19f3dcdb7c8197a2bcab8d5453a4be559db1c85)
_renovate commented 2026-05-04 02:35:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • f4495397 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f4495397 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=101009&start_sha=fad55d4699cd957e2a2eacf7319b6fff39192c27)
_renovate commented 2026-05-04 05:01:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8e5d87e2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8e5d87e2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=101147&start_sha=f449539739d3831cdbb3ae549c60f3166e3271e7)
_renovate commented 2026-05-04 06:03:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • daeb0948 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>daeb0948 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=101232&start_sha=8e5d87e2e6b55035dd95d9ed7d2dc1a711080896)
_renovate commented 2026-05-04 07:10:51 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8f6f0901 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8f6f0901 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=101317&start_sha=daeb0948663190b9ed7b49b588ff9460adeea6e9)
_renovate commented 2026-05-04 11:00:55 +02:00 (Migrated from edugit.org)

added 1 commit

  • 28efec14 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>28efec14 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=101531&start_sha=8f6f09013232cd8be126ba81a36438642d346cd9)
_renovate commented 2026-05-04 11:53:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • cdaf1bd6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>cdaf1bd6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=101618&start_sha=28efec1420cb1b4165053212dba0585dc9114ad8)
_renovate commented 2026-05-04 12:26:04 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8b20065d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8b20065d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=101698&start_sha=cdaf1bd673981265a6482ef285b834e33fc9229e)
_renovate commented 2026-05-04 15:54:43 +02:00 (Migrated from edugit.org)

added 1 commit

  • b0397f26 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b0397f26 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=102052&start_sha=8b20065de54365e96361d913b1d80206c0dae81d)
_renovate commented 2026-05-04 16:55:46 +02:00 (Migrated from edugit.org)

added 3 commits

  • b0397f26...d0a53678 - 2 commits from branch master
  • 233f3554 - Update dependency pytest-redis to v4

Compare with previous version

added 3 commits <ul><li>b0397f26...d0a53678 - 2 commits from branch <code>master</code></li><li>233f3554 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=102112&start_sha=b0397f267a8e897e853ff30d83d20c86c81d56a6)
_renovate commented 2026-05-04 20:07:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • d21ffed4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d21ffed4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=102420&start_sha=233f3554f45218e662347f320b2e12c130a5c5bf)
_renovate commented 2026-05-04 22:02:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • 32bf6816 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>32bf6816 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=102592&start_sha=d21ffed439e3758c4846a8233e853f6dd1f7a6d0)
_renovate commented 2026-05-04 23:07:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 684de82d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>684de82d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=102646&start_sha=32bf6816ca282488ec6dc376aea3ba7a91b65244)
_renovate commented 2026-05-05 00:08:29 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4f24b0b7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4f24b0b7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=102697&start_sha=684de82d71fd7e3ba4dd8f9670108f73b7cf345e)
_renovate commented 2026-05-05 01:09:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • f35adeec - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f35adeec - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=102798&start_sha=4f24b0b749de5287709f32b9124d186942203106)
_renovate commented 2026-05-05 01:42:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • dbd346e9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>dbd346e9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=102836&start_sha=f35adeec5f272ddf156547f661479f9c13969130)
_renovate commented 2026-05-05 04:56:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • d32f2ead - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d32f2ead - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=103110&start_sha=dbd346e915ef8ece1107845d7ae7762cf83ace7f)
_renovate commented 2026-05-05 08:00:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 89ab5ad5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>89ab5ad5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=103430&start_sha=d32f2eadd9c31d4eda51dfe9c9976482dc726513)
_renovate commented 2026-05-05 08:35:36 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9b0aeecd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9b0aeecd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=103474&start_sha=89ab5ad5d89cd1cf84df8809ea0ba581843ab4b3)
_renovate commented 2026-05-05 10:59:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6fa2e712 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6fa2e712 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=103649&start_sha=9b0aeecd64acfb703696684b38a7ea6739b9016e)
_renovate commented 2026-05-05 15:01:45 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0f781327 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0f781327 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=103943&start_sha=6fa2e712c2cf6e15951ee0beb87c632cbe43e915)
_renovate commented 2026-05-05 17:04:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • 64c88862 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>64c88862 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=104067&start_sha=0f7813273833864b893fcb3cbd4d0f8ef137d66a)
_renovate commented 2026-05-05 19:16:29 +02:00 (Migrated from edugit.org)

added 1 commit

  • d8d86c3f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d8d86c3f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=104312&start_sha=64c88862af36838ae65d1239884acde71afdaed1)
_renovate commented 2026-05-06 09:27:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 95545150 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>95545150 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105316&start_sha=d8d86c3f9f33f153904243608f18a1912ffe9a61)
_renovate commented 2026-05-06 09:50:53 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1a3d10d5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1a3d10d5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105341&start_sha=95545150cec7da093618b76c35c184584ff17f31)
_renovate commented 2026-05-06 09:55:54 +02:00 (Migrated from edugit.org)

added 1 commit

  • e636aa6d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e636aa6d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105352&start_sha=1a3d10d5d89b0f7bc72cfc7949e42c8c2cdda714)
_renovate commented 2026-05-06 10:30:04 +02:00 (Migrated from edugit.org)

added 1 commit

  • 813af1f5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>813af1f5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105421&start_sha=e636aa6d580bbc7a003ded2ef1c84eadc8854bc6)
_renovate commented 2026-05-06 11:03:51 +02:00 (Migrated from edugit.org)

added 1 commit

  • d093212a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d093212a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105448&start_sha=813af1f52ddc9a814a61bdca803f60a228fd3171)
_renovate commented 2026-05-06 12:38:54 +02:00 (Migrated from edugit.org)

added 1 commit

  • ffe9324c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ffe9324c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105576&start_sha=d093212a7464169c9ef0a5faec47eabdedc1c3ba)
_renovate commented 2026-05-06 13:56:38 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4c461697 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4c461697 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105713&start_sha=ffe9324c5c46bc6cf8240a147c07f7fcb620ff9c)
_renovate commented 2026-05-06 15:22:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • fbeb7790 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fbeb7790 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105809&start_sha=4c46169752b99fc227af212f56111b63e9e29584)
_renovate commented 2026-05-06 17:11:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • a62b862b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a62b862b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105954&start_sha=fbeb779062eab949ead718b6ec314ed4a506c101)
_renovate commented 2026-05-06 17:20:07 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8ab524e8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8ab524e8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=105972&start_sha=a62b862bc8c4120dd7677e3042accbd2f995bee7)
_renovate commented 2026-05-06 18:10:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • 63b75edf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>63b75edf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=106080&start_sha=8ab524e8bef589f57b2c9ab707939fe77634d5aa)
_renovate commented 2026-05-06 18:31:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • 042f88b3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>042f88b3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=106135&start_sha=63b75edf6edbf6ea98c1c11f3e9f0012018f5514)
_renovate commented 2026-05-06 19:48:45 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2d1915f3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2d1915f3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=106312&start_sha=042f88b3d6418efbdca27d84b297c3532131f684)
_renovate commented 2026-05-06 20:20:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1b702c59 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1b702c59 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=106373&start_sha=2d1915f3d24e1d925f7e63ca9aa81628f92dc3c1)
_renovate commented 2026-05-06 21:19:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • 31d33cf9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>31d33cf9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=106458&start_sha=1b702c598e82257c4261de794e8a564223f59486)
_renovate commented 2026-05-06 21:43:11 +02:00 (Migrated from edugit.org)

added 1 commit

  • da22132d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>da22132d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=106495&start_sha=31d33cf91b65576b308a84d79fe775e7d3d104f0)
_renovate commented 2026-05-06 22:53:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9708fef9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9708fef9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=106622&start_sha=da22132d5d5b6055aa47a1138f8ee08b5aec42e8)
_renovate commented 2026-05-07 01:58:05 +02:00 (Migrated from edugit.org)

added 1 commit

  • c0d704e2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c0d704e2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=106887&start_sha=9708fef99a9216529d589e7ca83d67f42c98d785)
_renovate commented 2026-05-07 04:16:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • a812e877 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a812e877 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=107006&start_sha=c0d704e2bf594ca529947b84efb75c3a51a8b53f)
_renovate commented 2026-05-07 07:17:01 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3ea39450 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3ea39450 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=107148&start_sha=a812e8772bc259b8cd5e1a9a0e0f5f9e1a50ab54)
_renovate commented 2026-05-07 10:31:29 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9fb9c951 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9fb9c951 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=107391&start_sha=3ea39450b2edafeef54849a20a4d9ed70c184ce2)
_renovate commented 2026-05-07 11:20:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • b9a66f4d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b9a66f4d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=107476&start_sha=9fb9c95182f086f319b3f9d5d3412fd381cef1f2)
_renovate commented 2026-05-07 14:54:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • a02ef7fb - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a02ef7fb - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=107706&start_sha=b9a66f4d37bb47b72bbc3f8b442076a6c9ae2236)
_renovate commented 2026-05-07 19:39:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3ee40dff - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3ee40dff - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=108017&start_sha=a02ef7fb75210d30491efabc71f5afaabc2ef876)
_renovate commented 2026-05-07 21:38:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2c04f4f5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2c04f4f5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=108164&start_sha=3ee40dff4234df863b812be103ab7d30067c139d)
_renovate commented 2026-05-08 01:26:07 +02:00 (Migrated from edugit.org)

added 1 commit

  • b91b0aa3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b91b0aa3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=108512&start_sha=2c04f4f508cdb94bbd280a42bd12fc029855d1d7)
_renovate commented 2026-05-08 04:23:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • 22601f3f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>22601f3f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=108761&start_sha=b91b0aa3c3799d11621651c61b66f6316d7e525c)
_renovate commented 2026-05-08 05:33:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • 77ca0c11 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>77ca0c11 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=108829&start_sha=22601f3f42bf7dc2a1145bba8551174535ff7c96)
_renovate commented 2026-05-08 07:09:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 798a64bd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>798a64bd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=108923&start_sha=77ca0c11b55d6a15f1478d9a0b871ad25fc5c003)
_renovate commented 2026-05-08 14:56:29 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7d14eb20 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7d14eb20 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=109503&start_sha=798a64bdd1045efe2d6deba2195609bd7405a914)
_renovate commented 2026-05-08 16:29:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 370d16a0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>370d16a0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=109601&start_sha=7d14eb20e6a0c0332f49b1ce02ef0e5619389d51)
_renovate commented 2026-05-08 17:52:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5ba823a0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5ba823a0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=109732&start_sha=370d16a0b1541ee13bf02974a4be84b2c54a3985)
_renovate commented 2026-05-08 23:15:50 +02:00 (Migrated from edugit.org)

added 3 commits

  • 5ba823a0...6c081b34 - 2 commits from branch master
  • f885d72f - Update dependency pytest-redis to v4

Compare with previous version

added 3 commits <ul><li>5ba823a0...6c081b34 - 2 commits from branch <code>master</code></li><li>f885d72f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=109995&start_sha=5ba823a069de24fe6f00acc2c7856fe44b5c3124)
_renovate commented 2026-05-09 01:25:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • c3888b24 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c3888b24 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=110197&start_sha=f885d72f516b75091a05cc86fa9d1eab7678241e)
_renovate commented 2026-05-09 02:51:05 +02:00 (Migrated from edugit.org)

added 1 commit

  • 55d84404 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>55d84404 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=110322&start_sha=c3888b240aa7f50a8ea4421729abe8cc39d1e327)
_renovate commented 2026-05-09 03:33:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8063815a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8063815a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=110393&start_sha=55d84404d3f5e2f55bf0f8c1c4dcac927af96e2e)
_renovate commented 2026-05-09 03:43:29 +02:00 (Migrated from edugit.org)

added 1 commit

  • 072435ca - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>072435ca - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=110425&start_sha=8063815a5ed06f5cb75afdd77e0bea5c5c0abf7f)
_renovate commented 2026-05-09 03:53:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 039ec7de - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>039ec7de - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=110453&start_sha=072435ca5431dd07068e81db4283f7775c2ef9b0)
_renovate commented 2026-05-09 04:30:35 +02:00 (Migrated from edugit.org)

added 1 commit

  • 58cd9e7d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>58cd9e7d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=110510&start_sha=039ec7dec8df3a8ab2a835e1bb0bce32fa37a42e)
_renovate commented 2026-05-09 07:21:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • dfacdb92 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>dfacdb92 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=110715&start_sha=58cd9e7d918002219f2b3308f721b31855dfd73b)
_renovate commented 2026-05-09 11:46:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5c58bfe7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5c58bfe7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=111040&start_sha=dfacdb9211cb1038dfd31e63e4e3edd65cd41c4c)
_renovate commented 2026-05-09 12:57:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • edc0a4a7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>edc0a4a7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=111143&start_sha=5c58bfe7c47b0a78bb1b09c1f0179a5802d4b570)
_renovate commented 2026-05-09 16:12:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • b4ed6a65 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b4ed6a65 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=111330&start_sha=edc0a4a7c1e9513f40d6e8d0860775885ca5186f)
_renovate commented 2026-05-09 16:21:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3698e34d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3698e34d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=111359&start_sha=b4ed6a6500bd4110ad2167efeb120f299409cc3f)
_renovate commented 2026-05-09 19:09:43 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4552190a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4552190a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=111542&start_sha=3698e34df1d919d8e692788b4a3a9ff16bdd3045)
_renovate commented 2026-05-09 19:22:36 +02:00 (Migrated from edugit.org)

added 1 commit

  • 36e366cc - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>36e366cc - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=111570&start_sha=4552190a721370e8516f763d270c51a034457c4e)
_renovate commented 2026-05-10 00:31:38 +02:00 (Migrated from edugit.org)

added 1 commit

  • c30ed205 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c30ed205 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=111860&start_sha=36e366cc997bf678585ddc7a455c762888d530f3)
_renovate commented 2026-05-10 04:09:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • ee883982 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ee883982 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=112130&start_sha=c30ed205f963d211f7e1867a9acdc8269c94bf10)
_renovate commented 2026-05-10 05:22:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • d80bd8da - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d80bd8da - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=112208&start_sha=ee883982dcc94bbe3ea1c26e9c8f0211d15a1b60)
_renovate commented 2026-05-10 06:26:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • ad0d5f57 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ad0d5f57 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=112262&start_sha=d80bd8dac2f62a41a378ab7e3989f897079d4b62)
_renovate commented 2026-05-10 12:22:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • a1a676e2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a1a676e2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=112552&start_sha=ad0d5f5740d5e0ca774e045f1bba0c7abbf6da79)
_renovate commented 2026-05-10 14:33:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • 03f55077 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>03f55077 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=112736&start_sha=a1a676e2b529f8b81965c660c1709df124d2c924)
_renovate commented 2026-05-10 19:20:26 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4383458c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4383458c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113072&start_sha=03f550772d6be113177ff2402236369cb859228c)
_renovate commented 2026-05-10 19:42:17 +02:00 (Migrated from edugit.org)

added 1 commit

  • 89a671c8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>89a671c8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113102&start_sha=4383458cedcc1fa7020a17a2ebfed4ef80290f84)
_renovate commented 2026-05-10 21:24:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • 066d6f15 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>066d6f15 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113224&start_sha=89a671c8a26254937dffe0ab439bdb6641b83ff7)
_renovate commented 2026-05-10 22:28:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9bb5d61b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9bb5d61b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113282&start_sha=066d6f154d5f1ec835ae3b67bd7afef1934c461f)
_renovate commented 2026-05-10 23:37:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • 445a919f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>445a919f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113393&start_sha=9bb5d61bac79fb9e4ab3a6c2a3e53cefa19632db)
_renovate commented 2026-05-11 01:02:54 +02:00 (Migrated from edugit.org)

added 1 commit

  • de06af67 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>de06af67 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113471&start_sha=445a919f9deb5efdc6b0ab6f340a047f7ebe7953)
_renovate commented 2026-05-11 01:52:45 +02:00 (Migrated from edugit.org)

added 1 commit

  • f7cda228 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f7cda228 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113503&start_sha=de06af67712134439351d536ad85a1a91c436bfb)
_renovate commented 2026-05-11 05:52:09 +02:00 (Migrated from edugit.org)

added 1 commit

  • 86252532 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>86252532 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113723&start_sha=f7cda228e42a4a4d48bf2f482bc889d2b7a3a58e)
_renovate commented 2026-05-11 06:35:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6bebba90 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6bebba90 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113776&start_sha=862525329adc1cb2acf9764b844f24d4cc79e421)
_renovate commented 2026-05-11 06:59:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • df363a50 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>df363a50 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113808&start_sha=6bebba9094f8411751e6fb96a993264137b78085)
_renovate commented 2026-05-11 07:45:04 +02:00 (Migrated from edugit.org)

added 1 commit

  • 375b9de4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>375b9de4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=113848&start_sha=df363a509fd717b95e33ddb686aeed5647b1369d)
_renovate commented 2026-05-11 12:34:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4aa032c9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4aa032c9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114160&start_sha=375b9de4d3ae37396783bb57f8d2dfd8b5985552)
_renovate commented 2026-05-11 15:00:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • e54e3a4c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e54e3a4c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114288&start_sha=4aa032c953845cc16e1eaaa60094a4c99e7f1d9e)
_renovate commented 2026-05-11 16:49:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • d20e3a6c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d20e3a6c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114429&start_sha=e54e3a4c502d08250052abcee037a990002e23df)
_renovate commented 2026-05-11 20:39:26 +02:00 (Migrated from edugit.org)

added 1 commit

  • f15821f5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f15821f5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114666&start_sha=d20e3a6c9c2c184479a1a2528e0057e115a9210a)
_renovate commented 2026-05-11 21:49:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • b738a76e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b738a76e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114729&start_sha=f15821f599a3817653ccbb8929ce966f989bbf68)
_renovate commented 2026-05-11 22:32:03 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0fcba32f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0fcba32f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114773&start_sha=b738a76e8b360fa0a3e3e834754acac87592b325)
_renovate commented 2026-05-11 23:06:53 +02:00 (Migrated from edugit.org)

added 1 commit

  • 62f65661 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>62f65661 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114878&start_sha=0fcba32f4ce4d980d2ca6b7138d7cce2a3a2f56f)
_renovate commented 2026-05-12 00:31:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7bf28524 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7bf28524 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114976&start_sha=62f656613d139c98ac56fdac150caeee233dd875)
_renovate commented 2026-05-12 00:46:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2ad71896 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2ad71896 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=114996&start_sha=7bf285247e1a7c22b36cf420ff510cb57889bda2)
_renovate commented 2026-05-12 01:05:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • 09d9c4a4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>09d9c4a4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=115017&start_sha=2ad7189657f984aac694568e4f0465c14e5727ba)
_renovate commented 2026-05-12 02:20:15 +02:00 (Migrated from edugit.org)

added 1 commit

  • c5b1fd11 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c5b1fd11 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=115091&start_sha=09d9c4a4659fa665c0956be5369c2cd6e9c4f09f)
_renovate commented 2026-05-12 10:10:45 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6c4fdd0f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6c4fdd0f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=115544&start_sha=c5b1fd11565cefef966bcb6667a15052fa7d0e2b)
_renovate commented 2026-05-12 10:13:47 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6ecff42f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6ecff42f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=115554&start_sha=6c4fdd0fd9b939cff520ad8377c90c25550d0bb8)
_renovate commented 2026-05-12 10:42:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3218886f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3218886f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=115605&start_sha=6ecff42f36a5d9141d8f7b5e3ede270484873393)
_renovate commented 2026-05-12 14:11:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 60617278 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>60617278 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=115812&start_sha=3218886f8b3271f1645fb0ad3c2a87fa6dacf539)
_renovate commented 2026-05-12 15:49:51 +02:00 (Migrated from edugit.org)

added 1 commit

  • eeefbdd9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>eeefbdd9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=115907&start_sha=60617278d6bbab088a49a0609563f465486ae246)
_renovate commented 2026-05-12 15:58:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • ddf72d84 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ddf72d84 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=115928&start_sha=eeefbdd963e6b8cd03e6f83689019f633f27fe4b)
_renovate commented 2026-05-12 17:22:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • c79d49bf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c79d49bf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=116003&start_sha=ddf72d849a5852f27125e8498926826ebbae284a)
_renovate commented 2026-05-12 17:58:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • d6e31bf4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d6e31bf4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=116045&start_sha=c79d49bf8bec8e31879322559144feb4197d66f7)
_renovate commented 2026-05-12 18:25:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5bfe77ab - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5bfe77ab - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=116086&start_sha=d6e31bf4a43a8161bcefda59a4d24b31f02447b7)
_renovate commented 2026-05-12 18:31:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • ae87f2c5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ae87f2c5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=116106&start_sha=5bfe77abbc70e992c8a9af40e8d0e61b1443fc64)
_renovate commented 2026-05-12 20:53:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • c4ae600e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c4ae600e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=116316&start_sha=ae87f2c50eee73a3c907eb41384520c23728bfe9)
_renovate commented 2026-05-13 01:15:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • d22e3124 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d22e3124 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=116610&start_sha=c4ae600e96a7e16e059b97d086f4a45ed38a3743)
_renovate commented 2026-05-13 02:09:11 +02:00 (Migrated from edugit.org)

added 1 commit

  • 974b4b53 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>974b4b53 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=116656&start_sha=d22e3124c5f69ac4d62a0ad0a7712ed667402384)
_renovate commented 2026-05-13 07:17:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2fdb8985 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2fdb8985 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=116936&start_sha=974b4b53c5652d14ffe98023b30434c540cc8bae)
_renovate commented 2026-05-13 10:36:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • 45c8c18a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>45c8c18a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=117251&start_sha=2fdb89855e26508746f7193e21543535d06c6105)
_renovate commented 2026-05-13 10:59:31 +02:00 (Migrated from edugit.org)

added 1 commit

  • c9acf43e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c9acf43e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=117292&start_sha=45c8c18a5e6d72de48252347f8fe627be5b6ec0b)
_renovate commented 2026-05-13 13:49:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • e1c382f4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e1c382f4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=117576&start_sha=c9acf43eca9937ce5d7d8322ab81a52a476dd243)
_renovate commented 2026-05-13 18:36:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • ec0311b4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ec0311b4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=117849&start_sha=e1c382f4941e88b2648c25e501253c608f65ae5c)
_renovate commented 2026-05-13 19:12:15 +02:00 (Migrated from edugit.org)

added 1 commit

  • b8fff7a1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b8fff7a1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=117929&start_sha=ec0311b4274adde859a7d1c77c0c4e1164955515)
_renovate commented 2026-05-13 21:13:01 +02:00 (Migrated from edugit.org)

added 1 commit

  • 73a5e6c0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>73a5e6c0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118075&start_sha=b8fff7a1c6c0f6a7f98084a5610088dbab015ef6)
_renovate commented 2026-05-14 00:20:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8ee5fbd4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8ee5fbd4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118342&start_sha=73a5e6c087cd9dc7bca2c3b8c7fedb07b94d23d5)
_renovate commented 2026-05-14 03:58:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • d6e710a4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d6e710a4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118587&start_sha=8ee5fbd4625072c34b7649cc98a531dfcad251f3)
_renovate commented 2026-05-14 04:58:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • 99eed925 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>99eed925 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118666&start_sha=d6e710a4b90de80e91790a6b74301694f161ca9e)
_renovate commented 2026-05-14 05:16:06 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5411bc3a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5411bc3a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118698&start_sha=99eed925c586719b2ee73ff1435bf3b7fd7dc7d5)
_renovate commented 2026-05-14 06:01:35 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6472d36f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6472d36f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118751&start_sha=5411bc3a0c9dc6e2db0e3a86057c919909ea7098)
_renovate commented 2026-05-14 06:53:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • b5178fc8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b5178fc8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118794&start_sha=6472d36ff894340ae2b5a2e1bec806e056b6e800)
_renovate commented 2026-05-14 07:44:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 63e4a5ac - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>63e4a5ac - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118852&start_sha=b5178fc89743fc58bc0b86066d580e8c4e998c0b)
_renovate commented 2026-05-14 08:29:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1442cf2f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1442cf2f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=118916&start_sha=63e4a5accd029e6ec67a927472759e5bd459f625)
_renovate commented 2026-05-14 11:44:36 +02:00 (Migrated from edugit.org)

added 1 commit

  • 250b56a7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>250b56a7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=119181&start_sha=1442cf2fc834203d409e613ef9d5460ad9aeebfc)
_renovate commented 2026-05-14 12:02:09 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5927f29d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5927f29d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=119194&start_sha=250b56a71b54e8db9b3677423cdb84b6acb584d7)
_renovate commented 2026-05-14 14:23:54 +02:00 (Migrated from edugit.org)

added 1 commit

  • 487b3e32 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>487b3e32 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=119384&start_sha=5927f29de77ba677ab14b5abd8bb4226e2fc569e)
_renovate commented 2026-05-14 14:27:36 +02:00 (Migrated from edugit.org)

added 1 commit

  • 17765fbc - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>17765fbc - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=119402&start_sha=487b3e3260030e0fb9ef974637e0b2f6de507091)
_renovate commented 2026-05-14 17:07:38 +02:00 (Migrated from edugit.org)

added 1 commit

  • c9426585 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c9426585 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=119652&start_sha=17765fbc3b2304350c04f5b10a56e3bb50227598)
_renovate commented 2026-05-14 18:20:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 35bde6b7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>35bde6b7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=119727&start_sha=c9426585f282034f4e356e6ac87d789fb502d6c4)
_renovate commented 2026-05-14 19:01:11 +02:00 (Migrated from edugit.org)

added 1 commit

  • cd6344d9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>cd6344d9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=119782&start_sha=35bde6b7d915508c727757e022bcce766227b2a1)
_renovate commented 2026-05-14 21:56:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6b1f61b8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6b1f61b8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120025&start_sha=cd6344d95a6c21daefca4f83b939c5651c98d30f)
_renovate commented 2026-05-14 23:23:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • 445567af - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>445567af - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120106&start_sha=6b1f61b8db85aad940b217aa263196f91c7426e6)
_renovate commented 2026-05-15 01:30:03 +02:00 (Migrated from edugit.org)

added 1 commit

  • 79767634 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>79767634 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120183&start_sha=445567afa8067591240e8f1c50a9d01523aaa2aa)
_renovate commented 2026-05-15 04:16:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • fb17b9c5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fb17b9c5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120360&start_sha=797676347edc2fa2e1cb5b1306dc0daddec11bb6)
_renovate commented 2026-05-15 05:32:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • d6850576 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d6850576 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120439&start_sha=fb17b9c5690acd7c21c90d2a50e05b9144821e1a)
_renovate commented 2026-05-15 06:02:09 +02:00 (Migrated from edugit.org)

added 1 commit

  • 64041d97 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>64041d97 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120480&start_sha=d685057653735548d0505c214502f655f8550c30)
_renovate commented 2026-05-15 06:31:30 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0d3577c4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0d3577c4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120510&start_sha=64041d972a9ea51a08b53ebb01f71a45ce9d9954)
_renovate commented 2026-05-15 07:12:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • c1cc7069 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c1cc7069 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120579&start_sha=0d3577c4cb9ac085dc84fc444e9e4cdec385ed3c)
_renovate commented 2026-05-15 08:31:05 +02:00 (Migrated from edugit.org)

added 1 commit

  • 93d32786 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>93d32786 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=120754&start_sha=c1cc70698e275ca382b15be64766c6065ff3edc4)
_renovate commented 2026-05-15 11:05:06 +02:00 (Migrated from edugit.org)

added 1 commit

  • f62a6155 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f62a6155 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121010&start_sha=93d32786cbd4da13bcd282413df3b1cbe7c7630e)
_renovate commented 2026-05-15 14:44:48 +02:00 (Migrated from edugit.org)

added 1 commit

  • d49a922b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d49a922b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121199&start_sha=f62a6155ff734809dc524584a84abc621cba44c0)
_renovate commented 2026-05-15 17:03:36 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7087eeb7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7087eeb7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121330&start_sha=d49a922b193dded022b21d4e95e6d95e3d901a33)
_renovate commented 2026-05-15 17:54:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • 92214748 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>92214748 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121453&start_sha=7087eeb7bfe5b2d7f61beda67f1754603a93d400)
_renovate commented 2026-05-15 18:57:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • a9fb0d08 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a9fb0d08 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121547&start_sha=9221474803cacda3261e1596c0ec5dfce7f5d4a9)
_renovate commented 2026-05-15 19:58:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7ff56eea - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7ff56eea - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121597&start_sha=a9fb0d08c903ac3197240aac3a60a3eb2ffa8804)
_renovate commented 2026-05-15 20:32:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • f793a98d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f793a98d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121641&start_sha=7ff56eea9e64721143d207a15db53f40f20438dc)
_renovate commented 2026-05-15 21:52:26 +02:00 (Migrated from edugit.org)

added 1 commit

  • b751288d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b751288d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121784&start_sha=f793a98d9b2a8dc00305583e7298e8c58e6d73d6)
_renovate commented 2026-05-15 23:44:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • 32476fd6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>32476fd6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=121959&start_sha=b751288d897aed7500b424534c9fcda9bf2bbf3c)
_renovate commented 2026-05-16 01:15:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 407b890c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>407b890c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122041&start_sha=32476fd6a7d0bdf4851f181642fa1e16de231947)
_renovate commented 2026-05-16 02:03:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • e9471bc1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e9471bc1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122108&start_sha=407b890ccdfb79719884a1a73cd19cc0dcb74952)
_renovate commented 2026-05-16 02:05:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • f8430dbf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f8430dbf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122115&start_sha=e9471bc1aeb84af55c3b342587fccbbb9ba670f9)
_renovate commented 2026-05-16 02:36:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • d05f8d9a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d05f8d9a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122144&start_sha=f8430dbf5b4c3c5f5c2c331df7038edcc2e4c8c4)
_renovate commented 2026-05-16 05:46:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • be7b9230 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>be7b9230 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122335&start_sha=d05f8d9a03a1be7be95f45da7d4a74064d702d4d)
_renovate commented 2026-05-16 08:30:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2e5e0e5c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2e5e0e5c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122490&start_sha=be7b9230aca7a25721df126c1fd987e94dbc56af)
_renovate commented 2026-05-21 16:44:04 +02:00 (Migrated from edugit.org)

added 1 commit

  • e878f95b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e878f95b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122641&start_sha=2e5e0e5c6e2b8a1621f7573db7d1448ad7a7f781)
_renovate commented 2026-05-21 17:15:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • e9ffdf9f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e9ffdf9f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122654&start_sha=e878f95b1a70a1914b1f94001fae8ee0a3a00cbc)
_renovate commented 2026-05-21 18:15:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 55ab6051 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>55ab6051 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122720&start_sha=e9ffdf9f12f42fafc24fb6ae7ad8d7aeef0ad5eb)
_renovate commented 2026-05-21 19:02:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8a5b6e48 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8a5b6e48 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122802&start_sha=55ab60516a2c82ea47aa13565669ebad3a7d018c)
_renovate commented 2026-05-21 19:34:54 +02:00 (Migrated from edugit.org)

added 1 commit

  • ce67b166 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ce67b166 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=122876&start_sha=8a5b6e48e5a8a6aa1abc5a583b988838c4852ebd)
_renovate commented 2026-05-21 20:37:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5c2987e4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5c2987e4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=123062&start_sha=ce67b166179327ba9c41057e90c0e6ba706898e8)
_renovate commented 2026-05-21 20:56:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 686edfd8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>686edfd8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=123092&start_sha=5c2987e4cd3b115778da6ebbf55b846892ae56c6)
_renovate commented 2026-05-21 21:14:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • fee9fe4c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fee9fe4c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=123130&start_sha=686edfd871744eba6693bd982725b24e1b9ac191)
_renovate commented 2026-05-22 01:26:38 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1b5b0b0b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1b5b0b0b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=123435&start_sha=fee9fe4c59bac147220d707889c2feed33855f5a)
_renovate commented 2026-05-22 04:51:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • f22fb3f8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f22fb3f8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=123603&start_sha=1b5b0b0bf075ffcad28c38667f6bef9e2ce51462)
_renovate commented 2026-05-22 05:06:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • fa1da019 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fa1da019 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=123633&start_sha=f22fb3f87d2e1bcc9f8412c53c0e9ead2ec43da5)
_renovate commented 2026-05-22 09:02:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • 57951cba - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>57951cba - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=123886&start_sha=fa1da019c0bb82819fe2562ee8102a826e6f3cea)
_renovate commented 2026-05-22 10:24:22 +02:00 (Migrated from edugit.org)

added 1 commit

  • fbe27100 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fbe27100 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=123974&start_sha=57951cba1ab9b26d1f172927743a7eb49652afcd)
_renovate commented 2026-05-22 11:32:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7b6ded3d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7b6ded3d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=124062&start_sha=fbe2710077aba640ced18f64c003a308cf64aecb)
_renovate commented 2026-05-22 18:24:49 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9c20b679 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9c20b679 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=124565&start_sha=7b6ded3d5a8962d3ab00f845aa2e57aac0295b4b)
_renovate commented 2026-05-22 22:28:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 627377a6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>627377a6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=124854&start_sha=9c20b679365947450182a2e628757bfc0ced425d)
_renovate commented 2026-05-22 22:41:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • dc4905db - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>dc4905db - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=124899&start_sha=627377a6a0896570f4d69084f0781240f72bc6bf)
_renovate commented 2026-05-22 23:07:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • c1e5e268 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c1e5e268 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=124953&start_sha=dc4905db6f5861bcda047314dc30e6c210020d35)
_renovate commented 2026-05-23 03:22:48 +02:00 (Migrated from edugit.org)

added 1 commit

  • f3c01769 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f3c01769 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125234&start_sha=c1e5e2684587fb591d7959f7d6ea12b6b3a13a17)
_renovate commented 2026-05-23 04:07:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • f6556937 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f6556937 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125278&start_sha=f3c01769e0866fe2f8815cdecf8e1850db0f352c)
_renovate commented 2026-05-23 05:40:43 +02:00 (Migrated from edugit.org)

added 1 commit

  • b0dcba76 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b0dcba76 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125355&start_sha=f6556937dff6fa1e091f930fc7e4b258a130fca4)
_renovate commented 2026-05-23 08:04:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • 20dc1ac7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>20dc1ac7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125485&start_sha=b0dcba76a46268038eee2c19a1f704efa1f7631e)
_renovate commented 2026-05-23 08:44:51 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5453eb6c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5453eb6c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125539&start_sha=20dc1ac762a2c5348b99538dd1ed3f549c94c1c7)
_renovate commented 2026-05-23 10:10:05 +02:00 (Migrated from edugit.org)

added 1 commit

  • 09c670bf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>09c670bf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125679&start_sha=5453eb6c1d52213466af56f804d32587e4aa9079)
_renovate commented 2026-05-23 10:21:29 +02:00 (Migrated from edugit.org)

added 1 commit

  • 107d39b0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>107d39b0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125694&start_sha=09c670bf6d65eeb6e3d00d1e3e8ca3f77dc96cf0)
_renovate commented 2026-05-23 11:07:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • 23a2a8a3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>23a2a8a3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125771&start_sha=107d39b0b7f98ddfc1da79682e4195600e8190f5)
_renovate commented 2026-05-23 12:21:49 +02:00 (Migrated from edugit.org)

added 1 commit

  • d333ba37 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d333ba37 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125898&start_sha=23a2a8a3c41f1f3ca67b77ca63765a424e0670f3)
_renovate commented 2026-05-23 13:19:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3e6e2984 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3e6e2984 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=125994&start_sha=d333ba37589b9fa791e251d54f4c93d25ac2e89c)
_renovate commented 2026-05-23 13:34:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4f065216 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4f065216 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126021&start_sha=3e6e2984e37131088ea144ebc472ff3eec9e5ffb)
_renovate commented 2026-05-23 16:18:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • e84e85df - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e84e85df - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126107&start_sha=4f0652167d746a2f4eb1631784af6eb1d5eb3938)
_renovate commented 2026-05-23 19:56:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • ee329397 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ee329397 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126329&start_sha=e84e85df55985387756a74642e729f9313f5a4b8)
_renovate commented 2026-05-23 21:36:18 +02:00 (Migrated from edugit.org)

added 1 commit

  • a747464c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a747464c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126455&start_sha=ee329397bae6eecb6b77a87708fb304d05dbf12d)
_renovate commented 2026-05-23 22:10:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 61d7ad95 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>61d7ad95 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126504&start_sha=a747464c55f657a91223d181f3b54fc6620ccdf8)
_renovate commented 2026-05-23 22:31:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 43b46755 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>43b46755 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126552&start_sha=61d7ad95eb781646fcc4db3c9f487632ae019116)
_renovate commented 2026-05-23 23:02:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • e280097c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e280097c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126615&start_sha=43b4675584b97bf8dbec7356cdd2e6548b7d940c)
_renovate commented 2026-05-23 23:30:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • a4ef5918 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a4ef5918 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126678&start_sha=e280097c1516c5bcc8e623acb6439a1ab3ba9c34)
_renovate commented 2026-05-24 04:44:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • c90d328c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c90d328c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=126982&start_sha=a4ef5918e370feec0f191877238e6ab7d3fa8cf1)
_renovate commented 2026-05-24 09:15:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • a8943307 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a8943307 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=127312&start_sha=c90d328cc84ba4231fc0a072f7aaf109ebe33c2e)
_renovate commented 2026-05-24 12:38:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • 870e7138 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>870e7138 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=127623&start_sha=a89433075f4a9df7dfde701f559191580e29150e)
_renovate commented 2026-05-24 12:59:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • ba932733 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ba932733 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=127662&start_sha=870e71385c1d7d0cdffb7f0d6c5095136bcbc4a2)
_renovate commented 2026-05-24 17:47:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 95dbccc0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>95dbccc0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=127964&start_sha=ba932733610dc7b98a1c31882d063d61c449a61e)
_renovate commented 2026-05-24 18:32:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • da512847 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>da512847 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128021&start_sha=95dbccc0aea1314718c77cff4a5cbdb14ea8c912)
_renovate commented 2026-05-24 20:12:07 +02:00 (Migrated from edugit.org)

added 1 commit

  • 961c9be6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>961c9be6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128131&start_sha=da512847eaf1429c3b1c42ae15e507b70ddbf6e6)
_renovate commented 2026-05-24 20:41:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • 19b3e256 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>19b3e256 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128172&start_sha=961c9be6e684a9b7a7a6c76d08d730c1c5030a08)
_renovate commented 2026-05-24 22:50:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6791e361 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6791e361 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128306&start_sha=19b3e256dac0b92a46bb3cf643db66e0fac1368f)
_renovate commented 2026-05-25 00:18:26 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4d558dca - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4d558dca - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128404&start_sha=6791e3617605721ddd7ff527a3c3bba164b329a9)
_renovate commented 2026-05-25 01:14:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3ec4d4f4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3ec4d4f4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128471&start_sha=4d558dca1a9ed990619eb2f5f30bd21964daee07)
_renovate commented 2026-05-25 01:51:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • 270845ed - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>270845ed - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128537&start_sha=3ec4d4f4c69486ffe03dc7e52ff56fff57d7218a)
_renovate commented 2026-05-25 02:00:17 +02:00 (Migrated from edugit.org)

added 1 commit

  • 104a2f7a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>104a2f7a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128554&start_sha=270845ed49c8cecb56aa2c626ab97ad719f01982)
_renovate commented 2026-05-25 03:15:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8fb027d0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8fb027d0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128624&start_sha=104a2f7a92f02aade99190beb756dee5945aed86)
_renovate commented 2026-05-25 05:22:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • e9cd26de - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e9cd26de - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128727&start_sha=8fb027d02e8d896cd451a5f075ad70a9ac50ab67)
_renovate commented 2026-05-25 06:27:58 +02:00 (Migrated from edugit.org)

added 1 commit

  • b71bbbeb - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b71bbbeb - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128781&start_sha=e9cd26dee343ac0dbec93611dd7b8464f7a5491d)
_renovate commented 2026-05-25 07:55:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • c1059b2e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c1059b2e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=128869&start_sha=b71bbbeb1478d5b8721531e5282f5fc5add0a11e)
_renovate commented 2026-05-25 10:10:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9a40cbf1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9a40cbf1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129027&start_sha=c1059b2e0468f1078b7b2e75f1c18a1a51832400)
_renovate commented 2026-05-25 11:01:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • 03920289 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>03920289 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129118&start_sha=9a40cbf1094ca5791987fe2b2f95a7c2cf80ec6c)
_renovate commented 2026-05-25 12:27:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • be8fd93a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>be8fd93a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129243&start_sha=039202891301c45bfda2cedf597c6751a8525614)
_renovate commented 2026-05-25 12:52:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2e236a90 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2e236a90 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129283&start_sha=be8fd93aef6f20e33ff00e494cc181467b6c76fa)
_renovate commented 2026-05-25 14:31:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4648cd65 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4648cd65 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129432&start_sha=2e236a903bc9782ac6e6818ff36c19fba71d8a78)
_renovate commented 2026-05-25 16:41:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 87446aad - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>87446aad - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129565&start_sha=4648cd65a02858fe6dad79983bc70c621f0e962d)
_renovate commented 2026-05-25 16:49:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • c3dfd7bd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c3dfd7bd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129577&start_sha=87446aadc4b3372d13bae887752202e89ec57561)
_renovate commented 2026-05-25 18:01:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • f388983d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f388983d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129670&start_sha=c3dfd7bd97f6032d35587efce685b2f4602e0dab)
_renovate commented 2026-05-25 18:29:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • ddd5b4f4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ddd5b4f4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129702&start_sha=f388983d0b86b2b57759e62862b74a308f8ddfa9)
_renovate commented 2026-05-25 21:43:53 +02:00 (Migrated from edugit.org)

added 1 commit

  • 373d6f2e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>373d6f2e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=129970&start_sha=ddd5b4f41fa79432f8af78195ebc994a99d9b026)
_renovate commented 2026-05-25 23:47:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0f413004 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0f413004 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=130120&start_sha=373d6f2ebd78b01ea084cd61618756958a88c961)
_renovate commented 2026-05-26 05:04:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8a2235df - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8a2235df - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=130443&start_sha=0f413004f76f8872e4206196fd591405fd129996)
_renovate commented 2026-05-26 06:25:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • c3891959 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c3891959 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=130555&start_sha=8a2235df1752c557e2fd9e99310d0068523af02c)
_renovate commented 2026-05-26 09:50:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7040240e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7040240e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=130743&start_sha=c3891959e5008041c6b94a27a2820fbf040bae95)
_renovate commented 2026-05-26 10:03:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • 68a3d968 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>68a3d968 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=130771&start_sha=7040240e25cbf6bb089358ac9786d7437dfbef2b)
_renovate commented 2026-05-26 10:12:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • 84ef286a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>84ef286a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=130788&start_sha=68a3d96839cfa820db283c427d5c8fa79027a597)
_renovate commented 2026-05-26 11:29:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5c9a316a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5c9a316a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=130887&start_sha=84ef286a0d14625e723314712a4b5bf9f56ac20e)
_renovate commented 2026-05-26 11:50:54 +02:00 (Migrated from edugit.org)

added 1 commit

  • 418a9786 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>418a9786 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=130921&start_sha=5c9a316a3de2cf2ea90d8623ba4cc9eb16acacc4)
_renovate commented 2026-05-26 15:58:49 +02:00 (Migrated from edugit.org)

added 1 commit

  • bb99c90b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>bb99c90b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131163&start_sha=418a9786affda6f0e3cd258843ae90b16ee6d2e7)
_renovate commented 2026-05-26 16:18:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • 104838cc - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>104838cc - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131190&start_sha=bb99c90bcf9bb87c4bfcd10c3ba1aad175a7b17e)
_renovate commented 2026-05-26 16:52:55 +02:00 (Migrated from edugit.org)

added 1 commit

  • c857db7d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c857db7d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131244&start_sha=104838ccc7dbd9f4fd8c783151886eac60ea37e7)
_renovate commented 2026-05-26 17:39:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • dc57689b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>dc57689b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131324&start_sha=c857db7d9ad9e13d707991ae35d3d9fffaca31b0)
_renovate commented 2026-05-26 18:08:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • ee8ba7b0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ee8ba7b0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131364&start_sha=dc57689bd7cb944adb42731484c24c45a38cd4c4)
_renovate commented 2026-05-26 19:01:51 +02:00 (Migrated from edugit.org)

added 1 commit

  • a2344313 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a2344313 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131439&start_sha=ee8ba7b0095b6ac0c13e3f4a0d7eb5abf23deacc)
_renovate commented 2026-05-26 21:35:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6bf82acf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6bf82acf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131600&start_sha=a2344313d54e99376c2a65d87df434834ad27d5c)
_renovate commented 2026-05-26 22:32:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • e41c4669 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e41c4669 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131668&start_sha=6bf82acf915ad54d25ae3b192eb36c7f944c5590)
_renovate commented 2026-05-26 23:25:49 +02:00 (Migrated from edugit.org)

added 1 commit

  • 96950afd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>96950afd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131742&start_sha=e41c466970a277b133453a9c2ec36f42c5f8800e)
_renovate commented 2026-05-26 23:41:03 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9271367f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9271367f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131786&start_sha=96950afd1d508e017692c263358f28df0ff40a3d)
_renovate commented 2026-05-27 01:21:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • ebbc1d1a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ebbc1d1a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=131921&start_sha=9271367f6e6a40d1bcc08b03104eb20c1a53b9c7)
_renovate commented 2026-05-27 02:52:07 +02:00 (Migrated from edugit.org)

added 1 commit

  • 159b32b0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>159b32b0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132067&start_sha=ebbc1d1afd4d4b6ed4f1bca4d18667e5ba9d8f92)
_renovate commented 2026-05-27 03:30:26 +02:00 (Migrated from edugit.org)

added 1 commit

  • c12d2cde - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c12d2cde - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132117&start_sha=159b32b04f4a6ec689dbf54c292fb56212c501bb)
_renovate commented 2026-05-27 04:23:07 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5ecae69e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5ecae69e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132208&start_sha=c12d2cde5e45fdf98cafae9cb7f3f734dc17eb69)
_renovate commented 2026-05-27 04:57:22 +02:00 (Migrated from edugit.org)

added 1 commit

  • 19366dc0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>19366dc0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132265&start_sha=5ecae69e4fc4c6dee7a37d03eaf95f569b60d545)
_renovate commented 2026-05-27 06:59:06 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4152bf83 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4152bf83 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132355&start_sha=19366dc03cb33d6aad99805f9d0e12ad9c62fc20)
_renovate commented 2026-05-27 09:59:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • 29e8675c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>29e8675c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132594&start_sha=4152bf832373b622094c9c4b9e1711b22ffe8224)
_renovate commented 2026-05-27 13:05:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • 07053ddd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>07053ddd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132801&start_sha=29e8675cce314ec4f667fb8375fee754afa1b892)
_renovate commented 2026-05-27 13:46:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • f976d99c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f976d99c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132837&start_sha=07053dddd40de09fd052c32447077ae77ed18a6c)
_renovate commented 2026-05-27 14:24:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • ec1cd5a6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ec1cd5a6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=132885&start_sha=f976d99cd7c6c436ca5a30670843c94fa9ceae15)
_renovate commented 2026-05-27 17:34:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • 46c83a79 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>46c83a79 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133058&start_sha=ec1cd5a66c7148d752c6c853dcee2a440b1c4912)
_renovate commented 2026-05-27 18:35:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • cd4ba5c4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>cd4ba5c4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133100&start_sha=46c83a79b3f4950f80fa7e8b814b01f0e5aa1f71)
_renovate commented 2026-05-27 19:02:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • 31cbdea8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>31cbdea8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133138&start_sha=cd4ba5c453d9221ceef4364600f93bd915e0493e)
_renovate commented 2026-05-27 19:10:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3927bd58 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3927bd58 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133152&start_sha=31cbdea81063d07082b49598ac36144df1978818)
_renovate commented 2026-05-28 00:01:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • cd023f0b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>cd023f0b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133424&start_sha=3927bd58097c0d34c53b485a8710a2d6352bd6ca)
_renovate commented 2026-05-28 00:29:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9f730ea3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9f730ea3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133458&start_sha=cd023f0bd71a17cc88a10363309311f9935a9151)
_renovate commented 2026-05-28 01:42:01 +02:00 (Migrated from edugit.org)

added 1 commit

  • d21e7079 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d21e7079 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133529&start_sha=9f730ea390374d2b5a34f75b2230e4a854dad8c6)
_renovate commented 2026-05-28 02:09:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • c522eac7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c522eac7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133555&start_sha=d21e7079a765d0b57afb94cf0cb3799c7390d37f)
_renovate commented 2026-05-28 02:45:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5ea5878b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5ea5878b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133622&start_sha=c522eac74cc37e60cbf616f359e5081150d7a07e)
_renovate commented 2026-05-28 05:55:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • d8fed262 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d8fed262 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133868&start_sha=5ea5878bd8088a9e1d21c7f30c9ec974bd406a1b)
_renovate commented 2026-05-28 06:27:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • 77b2ec75 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>77b2ec75 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=133914&start_sha=d8fed26245205c208f433444893f0a2078df4611)
_renovate commented 2026-05-28 07:39:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • c2f349e1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c2f349e1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=134007&start_sha=77b2ec75cdbfd72365faab28b746b38db6ca0700)
_renovate commented 2026-05-28 07:46:49 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9df6ca6a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9df6ca6a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=134025&start_sha=c2f349e1d66ed0d6e8beaf9437d05700ce4072be)
_renovate commented 2026-05-28 08:34:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5a132ead - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5a132ead - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=134141&start_sha=9df6ca6a49d443e84141cf81f48b8bdd8dbcfd76)
_renovate commented 2026-05-28 13:03:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • 692ed767 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>692ed767 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=134396&start_sha=5a132ead204333a704f04d4693d64cefc60de6eb)
_renovate commented 2026-05-28 13:48:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • f9ea3da8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f9ea3da8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=134423&start_sha=692ed76762657bc4d8bf6dc2e40eeee4087207a0)
_renovate commented 2026-05-28 16:16:07 +02:00 (Migrated from edugit.org)

added 1 commit

  • bfeb11dd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>bfeb11dd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=134600&start_sha=f9ea3da8735a048f47838f8b586d1ac3e6ca9e04)
_renovate commented 2026-05-28 17:02:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • f824f825 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f824f825 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=134644&start_sha=bfeb11ddfbffd4b001b405e3723a97c4d09e29f6)
_renovate commented 2026-05-28 19:47:41 +02:00 (Migrated from edugit.org)

added 1 commit

  • be0cd43c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>be0cd43c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=134791&start_sha=f824f8251017f0f989a4f3946ba3dc1c7aeb1308)
_renovate commented 2026-05-29 06:04:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 802e9889 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>802e9889 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=135599&start_sha=be0cd43c722b9ae507b33cc986600b31f72bba35)
_renovate commented 2026-05-29 08:33:48 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0239b7d6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0239b7d6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=135751&start_sha=802e9889f04441bca0920e68d50b075ff451f4e6)
_renovate commented 2026-05-29 08:50:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 076b5ecd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>076b5ecd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=135782&start_sha=0239b7d60ae124797b68b2b296ab8358a972a158)
_renovate commented 2026-05-29 09:16:54 +02:00 (Migrated from edugit.org)

added 1 commit

  • 712c2d42 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>712c2d42 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=135822&start_sha=076b5ecd1b60f878053c4c8e53d9e54eaef773d1)
_renovate commented 2026-05-29 09:54:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1fa45aec - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1fa45aec - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=135861&start_sha=712c2d42d2742935d66c82ad8eef4635e43b899c)
_renovate commented 2026-05-29 10:02:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • e9c2b120 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e9c2b120 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=135875&start_sha=1fa45aeccfa92dabe824bdda86bb053785827e97)
_renovate commented 2026-05-29 11:41:18 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4ffd81a5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4ffd81a5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=135957&start_sha=e9c2b1204600e6c4e3a75498b246ae123e2bc0fc)
_renovate commented 2026-05-29 12:45:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4ff9b29a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4ff9b29a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136031&start_sha=4ffd81a543b2374fc79059b0f4749f21cad823f8)
_renovate commented 2026-05-29 13:06:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • afc3120c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>afc3120c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136073&start_sha=4ff9b29af76743d888c7b4c06d701b445251d84c)
_renovate commented 2026-05-29 15:39:51 +02:00 (Migrated from edugit.org)

added 1 commit

  • 045e9e10 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>045e9e10 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136298&start_sha=afc3120c9c32dbff6e6e52107bf660de5c4e2dde)
_renovate commented 2026-05-29 16:12:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • c9db6578 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c9db6578 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136333&start_sha=045e9e1031e410d8faf16a09c8a4c1182f6a0246)
_renovate commented 2026-05-29 16:16:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • eeb07195 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>eeb07195 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136346&start_sha=c9db657837623113114dd5df5cf5828e4de2f7a2)
_renovate commented 2026-05-29 18:10:31 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0bf4817f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0bf4817f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136501&start_sha=eeb07195c719680536153d19e4cd1f5445b30dd4)
_renovate commented 2026-05-29 22:35:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • fd806240 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fd806240 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136793&start_sha=0bf4817f636997ce220fa12b36be4850bb7749c5)
_renovate commented 2026-05-29 22:40:09 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7fd4efd8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7fd4efd8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136797&start_sha=fd80624006bbe05437b325d7135d983c3490e655)
_renovate commented 2026-05-29 23:06:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 87c101cd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>87c101cd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136824&start_sha=7fd4efd8ffc8061e0d3d20b28008d65f88d89f6f)
_renovate commented 2026-05-30 00:27:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • 615a81b2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>615a81b2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136964&start_sha=87c101cdee9c1294a7e1ca94e8898020639a054f)
_renovate commented 2026-05-30 00:45:38 +02:00 (Migrated from edugit.org)

added 1 commit

  • 048c183a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>048c183a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=136988&start_sha=615a81b2d8b3ec67a7f1a5fb436232d0b3b26e81)
_renovate commented 2026-05-30 02:16:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • c8a0342e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c8a0342e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=137088&start_sha=048c183a97be97298a7530776c875705471d3d9e)
_renovate commented 2026-05-30 02:48:11 +02:00 (Migrated from edugit.org)

added 1 commit

  • 904ba05d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>904ba05d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=137128&start_sha=c8a0342ee4b9d2a687dffaedca71ad23e4f67f3d)
_renovate commented 2026-05-30 04:01:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • d7e1a7b4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d7e1a7b4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=137199&start_sha=904ba05dd60dd2eb8e8e74b6d7eba97a7aacbb6c)
_renovate commented 2026-05-30 05:58:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • e9444bb0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e9444bb0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=137394&start_sha=d7e1a7b4a5e1ba73b639f6cbf97dacd2e0e944eb)
_renovate commented 2026-05-30 09:19:30 +02:00 (Migrated from edugit.org)

added 1 commit

  • cdf5a499 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>cdf5a499 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=137606&start_sha=e9444bb0d81e8660c3289660dbf7dfd644e52f64)
_renovate commented 2026-05-30 09:33:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • 724e757e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>724e757e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=137629&start_sha=cdf5a49968dea5c450f76af9225388f5e7e485eb)
_renovate commented 2026-05-30 09:38:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6f41ae73 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6f41ae73 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=137637&start_sha=724e757e3f429486762be7be19fe2fba4a5f3feb)
_renovate commented 2026-05-30 09:57:53 +02:00 (Migrated from edugit.org)

added 1 commit

  • c857d029 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c857d029 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=137660&start_sha=6f41ae736dd900c3e85f0581206905cf7082603a)
_renovate commented 2026-05-30 15:20:22 +02:00 (Migrated from edugit.org)

added 1 commit

  • bbc48d83 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>bbc48d83 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=138000&start_sha=c857d029a4501d728689e38520f656cf39279469)
_renovate commented 2026-05-30 19:39:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • b11beb54 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b11beb54 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=138217&start_sha=bbc48d83187ff0a01159dfca3daad77f9d4a7ecd)
_renovate commented 2026-05-30 22:28:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • c4ad4058 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c4ad4058 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=138316&start_sha=b11beb54f3294852c03ab596cb6cf015b71354b7)
_renovate commented 2026-05-30 23:41:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • e2f64a05 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e2f64a05 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=138346&start_sha=c4ad405831d54be8c01c2f84f2e7afe58c6e69df)
_renovate commented 2026-05-31 00:00:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • 88d2af11 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>88d2af11 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=138382&start_sha=e2f64a052e9a6bf3de95df2cec2c0a56d22ed737)
_renovate commented 2026-05-31 04:01:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • 78d5d9ac - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>78d5d9ac - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=138744&start_sha=88d2af115d42b2d96a6aa931716444cea03675bd)
_renovate commented 2026-05-31 06:58:43 +02:00 (Migrated from edugit.org)

added 1 commit

  • 19a4df37 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>19a4df37 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=138952&start_sha=78d5d9ac75751d573a608f5624943ed6e63c34c2)
_renovate commented 2026-05-31 11:19:15 +02:00 (Migrated from edugit.org)

added 1 commit

  • c1b4e44e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c1b4e44e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139259&start_sha=19a4df37d487550bdba7ae54dbf56e585804e3ad)
_renovate commented 2026-05-31 12:13:15 +02:00 (Migrated from edugit.org)

added 1 commit

  • b1c17b40 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b1c17b40 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139314&start_sha=c1b4e44ecdd894161d82b63d75b748430635e2ef)
_renovate commented 2026-05-31 12:19:06 +02:00 (Migrated from edugit.org)

added 1 commit

  • f153214b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f153214b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139328&start_sha=b1c17b400d6a565b4535e469424f08cbb53e23a0)
_renovate commented 2026-05-31 13:02:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 19863bcd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>19863bcd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139387&start_sha=f153214b4aacf8739bcfd5134d219c508b9f7ee9)
_renovate commented 2026-05-31 13:15:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • c92f7e9c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c92f7e9c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139400&start_sha=19863bcdb15f85b7e0ce142737324bbb415221fa)
_renovate commented 2026-05-31 14:30:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4264c114 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4264c114 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139497&start_sha=c92f7e9cc38a5906c6969d06c750c522a1c3f1d6)
_renovate commented 2026-05-31 15:44:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2f857ccb - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2f857ccb - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139594&start_sha=4264c1146055e42d5fd8ae33e8f943275bd1d9eb)
_renovate commented 2026-05-31 19:58:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • 66068f46 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>66068f46 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139794&start_sha=2f857ccbe10a7b21768d68c5d964089f4645576b)
_renovate commented 2026-05-31 20:45:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • e131ccb6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e131ccb6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139839&start_sha=66068f4670f8cc8738831412c00f1eea7ee13612)
_renovate commented 2026-05-31 21:02:29 +02:00 (Migrated from edugit.org)

added 1 commit

  • 235da112 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>235da112 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139854&start_sha=e131ccb65f4ec9962bd3afd7fd1967a885398698)
_renovate commented 2026-05-31 21:13:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 52326bdf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>52326bdf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139866&start_sha=235da1120913d01d36bf52cc8478fb6ee26bffe2)
_renovate commented 2026-05-31 22:03:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 04ba5c09 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>04ba5c09 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=139903&start_sha=52326bdf0a2f3ba3555086b2c6a81ef3bc4280e3)
_renovate commented 2026-06-01 01:50:55 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0bce6654 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0bce6654 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140119&start_sha=04ba5c0930f22bb8e74595f8f22d65300d56703a)
_renovate commented 2026-06-01 03:00:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 600a807d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>600a807d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140235&start_sha=0bce6654f418610639b470d2eb70b804bd89cb84)
_renovate commented 2026-06-01 04:15:53 +02:00 (Migrated from edugit.org)

added 1 commit

  • d01732fd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d01732fd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140368&start_sha=600a807d9aba212582858af5c57d641fa2a77895)
_renovate commented 2026-06-01 06:08:51 +02:00 (Migrated from edugit.org)

added 1 commit

  • 78640a9d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>78640a9d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140489&start_sha=d01732fd866d480e1e0d4e21f1a69476b42c2166)
_renovate commented 2026-06-01 08:58:38 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0ac9357a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0ac9357a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140656&start_sha=78640a9d86e1408c0940b7a82eea07d1052fda2e)
_renovate commented 2026-06-01 09:34:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • ecbe06ce - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ecbe06ce - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140693&start_sha=0ac9357ad25aaf66cc2375e1b028ac9b4c02baa6)
_renovate commented 2026-06-01 09:50:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • ff8ac569 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ff8ac569 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140710&start_sha=ecbe06ce3313120938fd44b83a4caed26706d086)
_renovate commented 2026-06-01 11:21:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • 83a98d4e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>83a98d4e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140784&start_sha=ff8ac569701bab12aa1d61d30cbfc0a91e21deb1)
_renovate commented 2026-06-01 13:01:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • ba6dc2d3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ba6dc2d3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=140858&start_sha=83a98d4ed4da257332b9137e0b2d55362de11b2f)
_renovate commented 2026-06-01 15:56:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5a38fad2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5a38fad2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141033&start_sha=ba6dc2d3b726fd584167450800745b204ad77c8c)
_renovate commented 2026-06-01 17:00:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • de56bd47 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>de56bd47 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141124&start_sha=5a38fad2a10469d5169b6cf6acf7074665cb7882)
_renovate commented 2026-06-01 19:38:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 52babfe7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>52babfe7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141296&start_sha=de56bd47bfa47f21c829a2d0b74b80d4e79e7f38)
_renovate commented 2026-06-01 20:36:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • fd893d59 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fd893d59 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141438&start_sha=52babfe7f3b80d05e016583f34940f2066e7d30a)
_renovate commented 2026-06-01 22:31:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • 968a1aa3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>968a1aa3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141646&start_sha=fd893d59a259f84c44afd7d604d7f377362bd332)
_renovate commented 2026-06-01 23:51:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • d6ef522b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d6ef522b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141758&start_sha=968a1aa37c1cb3e5fec498631e6316ebb465aa82)
_renovate commented 2026-06-01 23:54:35 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8d2497d2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8d2497d2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141766&start_sha=d6ef522b62af000b6079031d8385438721c34ef2)
_renovate commented 2026-06-02 00:06:42 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8493dab2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8493dab2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141780&start_sha=8d2497d2c4a22ca2f4097e1951d7a0650e235c6a)
_renovate commented 2026-06-02 00:55:47 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9e1047b2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9e1047b2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141842&start_sha=8493dab297eb70ec90efef51b674bb61bb61afb9)
_renovate commented 2026-06-02 01:47:35 +02:00 (Migrated from edugit.org)

added 1 commit

  • f551f5e6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f551f5e6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141876&start_sha=9e1047b23a51a918554f280ae64018fd50841c40)
_renovate commented 2026-06-02 03:04:03 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9f5e7021 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9f5e7021 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=141929&start_sha=f551f5e661d123a0d98e2a1079cca584e2770441)
_renovate commented 2026-06-02 04:16:48 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7b788db6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7b788db6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142002&start_sha=9f5e70212a3ec1476b97dd921c09afc524c27b48)
_renovate commented 2026-06-02 05:03:09 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8165da67 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8165da67 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142044&start_sha=7b788db6592aae9b66e8cf02ce572e8e992a27cb)
_renovate commented 2026-06-02 06:01:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4946063b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4946063b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142113&start_sha=8165da67f1120f842f83ecae8691ec9c7daed001)
_renovate commented 2026-06-02 07:25:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • db520450 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>db520450 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142184&start_sha=4946063b8017f9c5c63767abb9cd4f6d566967cd)
_renovate commented 2026-06-02 07:28:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2e569d67 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2e569d67 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142202&start_sha=db520450d2ada606e96f957490d276784b4449ce)
_renovate commented 2026-06-02 07:59:07 +02:00 (Migrated from edugit.org)

added 1 commit

  • e09fbca2 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e09fbca2 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142244&start_sha=2e569d67fbcfed14be1ce98db4e5b9d11e613998)
_renovate commented 2026-06-02 08:42:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1be4c066 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1be4c066 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142303&start_sha=e09fbca2fa98faffdb6072a870c97765e140444a)
_renovate commented 2026-06-02 10:30:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3aae1b56 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3aae1b56 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142440&start_sha=1be4c06642e3d7c855de761f973fe4e96c3761f4)
_renovate commented 2026-06-02 11:17:15 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8504281a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8504281a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142532&start_sha=3aae1b56dfc9b63a6a2a4139fc8ac2d3cdd0f243)
_renovate commented 2026-06-02 11:28:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 74755b50 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>74755b50 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142550&start_sha=8504281a08b5ae03c13bbbfe847088cff0ea99d3)
_renovate commented 2026-06-02 11:47:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • bd771ae9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>bd771ae9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142605&start_sha=74755b506cae0ac662043ada2a98e390ef6e2d08)
_renovate commented 2026-06-02 15:50:45 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2d434987 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2d434987 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142812&start_sha=bd771ae96ff7b8c891ee7436bf22589920e661fd)
_renovate commented 2026-06-02 16:56:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • de454932 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>de454932 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=142930&start_sha=2d434987a673e21ab507b9744ef4fadf75d94b6e)
_renovate commented 2026-06-02 19:05:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3e05eff9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3e05eff9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=143135&start_sha=de4549326d46045f2456b3e7f51c31053b900b13)
_renovate commented 2026-06-02 20:25:18 +02:00 (Migrated from edugit.org)

added 1 commit

  • aef5953d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>aef5953d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=143226&start_sha=3e05eff93e615f70d6fe0e49e8364257dc723b4e)
_renovate commented 2026-06-02 23:31:17 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7b74e28f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7b74e28f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=143459&start_sha=aef5953d00a9374233dcf3efd852841e7df37cb3)
_renovate commented 2026-06-03 00:54:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • c91ad22a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c91ad22a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=143526&start_sha=7b74e28fa130bf262ec4126941d2190a4218c983)
_renovate commented 2026-06-03 03:20:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • 79297853 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>79297853 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=143750&start_sha=c91ad22a8166dac8750bc81efdcbf3cc4f9b379b)
_renovate commented 2026-06-03 03:59:16 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1ed22ff9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1ed22ff9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=143801&start_sha=79297853d896ef3dc88e03328d1913629450ffef)
_renovate commented 2026-06-03 08:19:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • d81b653b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d81b653b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=144052&start_sha=1ed22ff91c9564e5a26519521531af6ab77fa5e4)
_renovate commented 2026-06-03 08:29:11 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8e8ac2f8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8e8ac2f8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=144068&start_sha=d81b653b8c75d670ea92a239fff07cc35c7cc23f)
_renovate commented 2026-06-03 08:32:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 922d6580 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>922d6580 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=144084&start_sha=8e8ac2f818c618ab1a409f79b3289e41dc28edb2)
_renovate commented 2026-06-03 10:36:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • a8962ab8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a8962ab8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=144296&start_sha=922d65805cbbb47120031aa7793651d6dfea95c0)
_renovate commented 2026-06-03 10:58:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2d3060d3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2d3060d3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=144363&start_sha=a8962ab82a55333dcb83748dfd0b63ed98e4f69b)
_renovate commented 2026-06-03 11:22:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • f6c9e149 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f6c9e149 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=144426&start_sha=2d3060d3d2a804e3599b7e89c1b4138b83e99f94)
_renovate commented 2026-06-03 12:03:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9bec02f0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9bec02f0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=144496&start_sha=f6c9e149f55d10f006a254a3e40b74380762d533)
_renovate commented 2026-06-04 02:10:28 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-06-05 15:12:28 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-06-19 18:53:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • b6eb6f16 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b6eb6f16 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=144983&start_sha=9bec02f093e08a22ff36012e7c05803ec9a2553a)
_renovate commented 2026-06-19 23:01:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • a64c35a1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a64c35a1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=145475&start_sha=b6eb6f16729b58e638c2d0b39298f3063f89c337)
_renovate commented 2026-06-20 02:33:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • ad667904 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ad667904 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=145717&start_sha=a64c35a155bf079fb1f5e0d5027a21dbd85ae306)
_renovate commented 2026-06-20 02:57:54 +02:00 (Migrated from edugit.org)

added 1 commit

  • 14fdea05 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>14fdea05 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=145754&start_sha=ad667904e919deffefa685ab4f0952c65aafbbc9)
_renovate commented 2026-06-20 04:19:04 +02:00 (Migrated from edugit.org)

added 1 commit

  • 18b26143 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>18b26143 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=145866&start_sha=14fdea058729f113f5ade002edb2c46a38bcd144)
_renovate commented 2026-06-20 04:40:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • bcb63596 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>bcb63596 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=145885&start_sha=18b26143ccac98968d00c97b96b224faeb582bb7)
_renovate commented 2026-06-20 04:45:49 +02:00 (Migrated from edugit.org)

added 1 commit

  • 40748896 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>40748896 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=145896&start_sha=bcb635966ae58012ac8202df896b0e4e56158b45)
_renovate commented 2026-06-20 04:51:30 +02:00 (Migrated from edugit.org)

added 1 commit

  • d243c127 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d243c127 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=145917&start_sha=40748896c3719696380dbafa47a7af244ce772ff)
_renovate commented 2026-06-20 06:50:59 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3485d0ef - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3485d0ef - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146110&start_sha=d243c127e5c34404c186b4d041186344471d7341)
_renovate commented 2026-06-20 08:00:09 +02:00 (Migrated from edugit.org)

added 1 commit

  • 07ada37b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>07ada37b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146197&start_sha=3485d0efd4176989defa1cdc3a870d528a4beb8f)
_renovate commented 2026-06-20 09:30:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • b6aa4865 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b6aa4865 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146275&start_sha=07ada37b426a9722aff92cb9ec299997bac51939)
_renovate commented 2026-06-20 10:19:36 +02:00 (Migrated from edugit.org)

added 1 commit

  • a8299260 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a8299260 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146339&start_sha=b6aa4865aabf70f5bcabce3d025600a586ec6707)
_renovate commented 2026-06-20 11:52:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • c433e03d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c433e03d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146510&start_sha=a8299260e37c87a8d58ca9da40f44a823ef939f4)
_renovate commented 2026-06-20 12:10:22 +02:00 (Migrated from edugit.org)

added 1 commit

  • 02022aed - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>02022aed - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146549&start_sha=c433e03d5f2302b90200fcec6dd4ef48ebaf8484)
_renovate commented 2026-06-20 13:02:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5bea0643 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5bea0643 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146614&start_sha=02022aed0cf7911af43294a4755b08e245ee8dbc)
_renovate commented 2026-06-20 15:10:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9890227b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9890227b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146774&start_sha=5bea064385532e2b999b39673c54af22f3818989)
_renovate commented 2026-06-20 17:12:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • f0bed318 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f0bed318 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=146897&start_sha=9890227bb8b207eede120559539f062c6fb0ff0b)
_renovate commented 2026-06-20 19:34:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • b7bc0614 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b7bc0614 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147082&start_sha=f0bed3184c9b2c2a2e9eb12927b1adeb9d76abdf)
_renovate commented 2026-06-20 19:55:15 +02:00 (Migrated from edugit.org)

added 1 commit

  • fe018127 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>fe018127 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147106&start_sha=b7bc0614c6836704bff54dadebed82952b5255f5)
_renovate commented 2026-06-20 21:02:36 +02:00 (Migrated from edugit.org)

added 1 commit

  • 20ee2ccd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>20ee2ccd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147182&start_sha=fe018127f1bafdb04a9807011b8406c4888e418c)
_renovate commented 2026-06-20 21:50:18 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0aaec71b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0aaec71b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147259&start_sha=20ee2ccd0d78ed54d900332126d5a82fcb4ed1da)
_renovate commented 2026-06-20 22:50:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • edb19eb7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>edb19eb7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147350&start_sha=0aaec71ba1868959bae57112bcbf7d3f8e4e38f0)
_renovate commented 2026-06-20 22:55:11 +02:00 (Migrated from edugit.org)

added 1 commit

  • 25611503 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>25611503 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147369&start_sha=edb19eb7add5e8670b3c9a92d496a634df71d7a3)
_renovate commented 2026-06-21 00:57:23 +02:00 (Migrated from edugit.org)

added 1 commit

  • 96ad83c6 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>96ad83c6 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147502&start_sha=25611503b061998b016f3e8de75b1dbaa9fe792a)
_renovate commented 2026-06-21 01:32:30 +02:00 (Migrated from edugit.org)

added 1 commit

  • c1ea4cad - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c1ea4cad - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147525&start_sha=96ad83c64ca574c388beeb28d3f93fef445f4633)
_renovate commented 2026-06-21 02:46:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3d85c098 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3d85c098 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147586&start_sha=c1ea4cad82df16b33f57e0a09af598abe1f40943)
_renovate commented 2026-06-21 04:09:22 +02:00 (Migrated from edugit.org)

added 1 commit

  • b10e210d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b10e210d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147700&start_sha=3d85c098f7fd473db89a6378e806d4321f50007a)
_renovate commented 2026-06-21 06:01:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • 98079faf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>98079faf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147881&start_sha=b10e210d3933f874a904306dd55025b49901ef14)
_renovate commented 2026-06-21 06:28:46 +02:00 (Migrated from edugit.org)

added 1 commit

  • 708364b3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>708364b3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=147918&start_sha=98079fafda9e65bb12bda764f985f31690a823e0)
_renovate commented 2026-06-21 08:10:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • 59c08141 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>59c08141 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=148069&start_sha=708364b3cf607c3e871e0d394d6b08a79214d2e7)
_renovate commented 2026-06-21 09:47:38 +02:00 (Migrated from edugit.org)

added 1 commit

  • 80ee89db - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>80ee89db - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=148254&start_sha=59c081412071d95ee182d32925bf7ab25711c25b)
_renovate commented 2026-06-21 10:33:32 +02:00 (Migrated from edugit.org)

added 1 commit

  • 232a8a53 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>232a8a53 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=148329&start_sha=80ee89db69f4a8b6bfc8d1e430f4e3f60f0cd06b)
_renovate commented 2026-06-21 12:31:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • bb2e4cc8 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>bb2e4cc8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=148493&start_sha=232a8a534fd5c54e24cf5a178eaf832bce6d8016)
_renovate commented 2026-06-21 16:30:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2e733f0b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2e733f0b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=148856&start_sha=bb2e4cc8f63bcb562a75016c440cf559dc9b4c02)
_renovate commented 2026-06-21 16:33:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • ccd00f0a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ccd00f0a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=148869&start_sha=2e733f0b3349f2ff7fb78d78bcc0352f23299779)
_renovate commented 2026-06-21 16:53:45 +02:00 (Migrated from edugit.org)

added 1 commit

  • f2a839b7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f2a839b7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=148925&start_sha=ccd00f0a63fa69c5e21de0e0c13efb8f4636d22c)
_renovate commented 2026-06-21 17:36:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3601a1bb - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3601a1bb - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=148997&start_sha=f2a839b7e4de75ff20e405ecf24136e5099c140f)
_renovate commented 2026-06-21 18:32:53 +02:00 (Migrated from edugit.org)

added 1 commit

  • a4932e41 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a4932e41 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=149087&start_sha=3601a1bb89b48d3f0daae583aa25e40d0fa11136)
_renovate commented 2026-06-21 19:00:15 +02:00 (Migrated from edugit.org)

added 1 commit

  • 52947595 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>52947595 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=149129&start_sha=a4932e412f0068f73e323e1b958130f06172314c)
_renovate commented 2026-06-21 21:40:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • a4215022 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a4215022 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=149315&start_sha=5294759541158f374c6c7de6737db2cfd4146b51)
_renovate commented 2026-06-21 22:55:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • c18f3ce7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c18f3ce7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=149430&start_sha=a421502227e4d7fd4a3c2d6f9f251f5fe21c3d64)
_renovate commented 2026-06-22 00:38:22 +02:00 (Migrated from edugit.org)

added 1 commit

  • ebfbdd1e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ebfbdd1e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=149586&start_sha=c18f3ce7c120d1c63f81d42dc21744ad9d046291)
_renovate commented 2026-06-22 02:15:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • 988df587 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>988df587 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=149731&start_sha=ebfbdd1e8bd917ba233cb266e77395b038decda6)
_renovate commented 2026-06-22 02:32:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 56b08659 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>56b08659 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=149763&start_sha=988df587ae44f1eb5bb0482b728ea08cc035e6a4)
_renovate commented 2026-06-22 04:22:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • ac7ddaea - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ac7ddaea - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=149966&start_sha=56b0865906dd4eeede6bdcbdca11679f3b8c2d72)
_renovate commented 2026-06-22 06:07:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • 202125cf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>202125cf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150104&start_sha=ac7ddaead9f207f01d3c1438d12c3538d8af75fd)
_renovate commented 2026-06-22 09:01:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • 255215a1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>255215a1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150345&start_sha=202125cfbfe6202eda53a64dc4ea44833ba4c0bf)
_renovate commented 2026-06-22 10:43:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 266a7e65 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>266a7e65 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150532&start_sha=255215a164e46a468be85774341c7d7519dd0ce2)
_renovate commented 2026-06-22 11:27:55 +02:00 (Migrated from edugit.org)

added 1 commit

  • 942249ec - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>942249ec - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150589&start_sha=266a7e652de224c993f6d386e6434eacb89654f2)
_renovate commented 2026-06-22 11:56:55 +02:00 (Migrated from edugit.org)

added 1 commit

  • 36ea220b - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>36ea220b - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150655&start_sha=942249ec7cdb324dbbe0d961fc78394ab53a0f48)
_renovate commented 2026-06-22 14:03:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • 945f1b11 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>945f1b11 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150841&start_sha=36ea220ba1bbdde637df8b256f019ba0e5805820)
_renovate commented 2026-06-22 14:28:42 +02:00 (Migrated from edugit.org)

added 1 commit

  • 8320b887 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>8320b887 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150904&start_sha=945f1b11e0ac68573463e666828804b47fdec809)
_renovate commented 2026-06-22 14:35:02 +02:00 (Migrated from edugit.org)

added 1 commit

  • 9e5147e4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>9e5147e4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150930&start_sha=8320b887b2acf2ddc69d82bdea2c846a02c31890)
_renovate commented 2026-06-22 15:11:49 +02:00 (Migrated from edugit.org)

added 1 commit

  • c24be5a4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c24be5a4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=150994&start_sha=9e5147e48475da7376b1d309037ebcebc2006cbd)
_renovate commented 2026-06-22 15:31:31 +02:00 (Migrated from edugit.org)

added 1 commit

  • 08f20dbf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>08f20dbf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=151057&start_sha=c24be5a4347332fb5c476f47c212d581bc864031)
_renovate commented 2026-06-22 16:14:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • 97b48b7f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>97b48b7f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=151182&start_sha=08f20dbf8908687c1f89ce517c9561b32f13bdb5)
_renovate commented 2026-06-24 23:11:05 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-06-24 23:40:00 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-07-17 00:40:14 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-07-17 01:46:57 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-07-20 22:00:18 +02:00 (Migrated from edugit.org)

added 53 commits

  • 97b48b7f...fe016080 - 52 commits from branch master
  • b2c0e75a - Update dependency pytest-redis to v4

Compare with previous version

added 53 commits <ul><li>97b48b7f...fe016080 - 52 commits from branch <code>master</code></li><li>b2c0e75a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/Teckids/hacknfun/AlekSIS-App-Paweljong/-/merge_requests/140/diffs?diff_id=152515&start_sha=97b48b7f5e04d86149a75fb992b522d9681ef231)
This pull request has changes conflicting with the target branch.
  • pyproject.toml
View command line instructions

Manual merge helper

Use this merge commit message when completing the merge manually.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/pytest-redis-4.x:renovate/pytest-redis-4.x
git switch renovate/pytest-redis-4.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff renovate/pytest-redis-4.x
git switch renovate/pytest-redis-4.x
git rebase master
git switch master
git merge --ff-only renovate/pytest-redis-4.x
git switch renovate/pytest-redis-4.x
git rebase master
git switch master
git merge --no-ff renovate/pytest-redis-4.x
git switch master
git merge --squash renovate/pytest-redis-4.x
git switch master
git merge --ff-only renovate/pytest-redis-4.x
git switch master
git merge renovate/pytest-redis-4.x
git push origin master
Sign in to join this conversation.
No reviewers
No labels
Doing
To Do
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
teckids/AlekSIS-App-Paweljong!261
No description provided.