{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":653071218,"defaultBranch":"main","name":"ergani-python-sdk","ownerLogin":"withlogicco","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2023-06-13T10:56:46.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/71127070?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1716275816.0","currentOid":""},"activityList":{"items":[{"before":null,"after":"3d8a1a806601a69323470039d319e37b095c50ec","ref":"refs/heads/dependabot/pip/requests-2.32.0","pushedAt":"2024-05-21T07:16:56.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"---\nupdated-dependencies:\n- dependency-name: requests\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"---"}},{"before":null,"after":"10186971ddf3291c26009a05151b69e35d06709d","ref":"refs/heads/dependabot/pip/jinja2-3.1.4","pushedAt":"2024-05-06T21:02:51.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump jinja2 from 3.1.3 to 3.1.4\n\nBumps [jinja2](https://github.com/pallets/jinja) from 3.1.3 to 3.1.4.\n- [Release notes](https://github.com/pallets/jinja/releases)\n- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)\n- [Commits](https://github.com/pallets/jinja/compare/3.1.3...3.1.4)\n\n---\nupdated-dependencies:\n- dependency-name: jinja2\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump jinja2 from 3.1.3 to 3.1.4"}},{"before":null,"after":"e25e250308dc021db597494f3981d0916ae5aba2","ref":"refs/heads/dependabot/pip/idna-3.7","pushedAt":"2024-04-12T04:25:01.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump idna from 3.6 to 3.7\n\nBumps [idna](https://github.com/kjd/idna) from 3.6 to 3.7.\n- [Release notes](https://github.com/kjd/idna/releases)\n- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)\n- [Commits](https://github.com/kjd/idna/compare/v3.6...v3.7)\n\n---\nupdated-dependencies:\n- dependency-name: idna\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump idna from 3.6 to 3.7"}},{"before":"32ad8d583ba4bb0b064d0df83cab7a5c45b1afff","after":null,"ref":"refs/heads/dependabot/pip/black-24.3.0","pushedAt":"2024-04-01T09:02:39.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"}},{"before":"948487e110cf469dfb3af87ee6a267254b7a1ec8","after":"e302d9ea11948b4b5820558c7efbb52305b287b3","ref":"refs/heads/main","pushedAt":"2024-04-01T09:02:38.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"Bump black from 23.12.0 to 24.3.0 (#17)\n\nBumps [black](https://github.com/psf/black) from 23.12.0 to 24.3.0.\r\n
\r\nRelease notes\r\n

Sourced from black's\r\nreleases.

\r\n
\r\n

24.3.0

\r\n

Highlights

\r\n

This release is a milestone: it fixes Black's first CVE security\r\nvulnerability. If you\r\nrun Black on untrusted input, or if you habitually put thousands of\r\nleading tab\r\ncharacters in your docstrings, you are strongly encouraged to upgrade\r\nimmediately to fix\r\nCVE-2024-21503.

\r\n

This release also fixes a bug in Black's AST safety check that\r\nallowed Black to make\r\nincorrect changes to certain f-strings that are valid in Python 3.12 and\r\nhigher.

\r\n

Stable style

\r\n
    \r\n
  • Don't move comments along with delimiters, which could cause crashes\r\n(#4248)
  • \r\n
  • Strengthen AST safety check to catch more unsafe changes to strings.\r\nPrevious versions\r\nof Black would incorrectly format the contents of certain unusual\r\nf-strings containing\r\nnested strings with the same quote type. Now, Black will crash on such\r\nstrings until\r\nsupport for the new f-string syntax is implemented. (#4270)
  • \r\n
  • Fix a bug where line-ranges exceeding the last code line would not\r\nwork as expected\r\n(#4273)
  • \r\n
\r\n

Performance

\r\n
    \r\n
  • Fix catastrophic performance on docstrings that contain large\r\nnumbers of leading tab\r\ncharacters. This fixes\r\nCVE-2024-21503.\r\n(#4278)
  • \r\n
\r\n

Documentation

\r\n
    \r\n
  • Note what happens when --check is used with\r\n--quiet (#4236)
  • \r\n
\r\n

24.2.0

\r\n

Stable style

\r\n
    \r\n
  • Fixed a bug where comments where mistakenly removed along with\r\nredundant parentheses\r\n(#4218)
  • \r\n
\r\n

Preview style

\r\n
    \r\n
  • Move the hug_parens_with_braces_and_square_brackets\r\nfeature to the unstable style\r\ndue to an outstanding crash and proposed formatting tweaks (#4198)
  • \r\n
  • Fixed a bug where base expressions caused inconsistent formatting of\r\n** in tenary\r\nexpression (#4154)
  • \r\n
  • Checking for newline before adding one on docstring that is almost\r\nat the line limit\r\n(#4185)
  • \r\n
  • Remove redundant parentheses in case statement\r\nif guards (#4214).
  • \r\n
\r\n

Configuration

\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nChangelog\r\n

Sourced from black's\r\nchangelog.

\r\n
\r\n

24.3.0

\r\n

Highlights

\r\n

This release is a milestone: it fixes Black's first CVE security\r\nvulnerability. If you\r\nrun Black on untrusted input, or if you habitually put thousands of\r\nleading tab\r\ncharacters in your docstrings, you are strongly encouraged to upgrade\r\nimmediately to fix\r\nCVE-2024-21503.

\r\n

This release also fixes a bug in Black's AST safety check that\r\nallowed Black to make\r\nincorrect changes to certain f-strings that are valid in Python 3.12 and\r\nhigher.

\r\n

Stable style

\r\n
    \r\n
  • Don't move comments along with delimiters, which could cause crashes\r\n(#4248)
  • \r\n
  • Strengthen AST safety check to catch more unsafe changes to strings.\r\nPrevious versions\r\nof Black would incorrectly format the contents of certain unusual\r\nf-strings containing\r\nnested strings with the same quote type. Now, Black will crash on such\r\nstrings until\r\nsupport for the new f-string syntax is implemented. (#4270)
  • \r\n
  • Fix a bug where line-ranges exceeding the last code line would not\r\nwork as expected\r\n(#4273)
  • \r\n
\r\n

Performance

\r\n
    \r\n
  • Fix catastrophic performance on docstrings that contain large\r\nnumbers of leading tab\r\ncharacters. This fixes\r\nCVE-2024-21503.\r\n(#4278)
  • \r\n
\r\n

Documentation

\r\n
    \r\n
  • Note what happens when --check is used with\r\n--quiet (#4236)
  • \r\n
\r\n

24.2.0

\r\n

Stable style

\r\n
    \r\n
  • Fixed a bug where comments where mistakenly removed along with\r\nredundant parentheses\r\n(#4218)
  • \r\n
\r\n

Preview style

\r\n
    \r\n
  • Move the hug_parens_with_braces_and_square_brackets\r\nfeature to the unstable style\r\ndue to an outstanding crash and proposed formatting tweaks (#4198)
  • \r\n
  • Fixed a bug where base expressions caused inconsistent formatting of\r\n** in tenary\r\nexpression (#4154)
  • \r\n
  • Checking for newline before adding one on docstring that is almost\r\nat the line limit\r\n(#4185)
  • \r\n
  • Remove redundant parentheses in case statement\r\nif guards (#4214).
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 552baf8\r\nPrepare release 24.3.0 (#4279)
  • \r\n
  • f000936\r\nFix catastrophic performance in lines_with_leading_tabs_expanded() (#4278)
  • \r\n
  • 7b5a657\r\nFix --line-ranges behavior when ranges are at EOF (#4273)
  • \r\n
  • 1abcffc\r\nUse regex where we ignore case on windows (#4252)
  • \r\n
  • 719e674\r\nFix 4227: Improve documentation for --quiet --check (#4236)
  • \r\n
  • e5510af\r\nupdate plugin url for Thonny (#4259)
  • \r\n
  • 6af7d11\r\nFix AST safety check false negative (#4270)
  • \r\n
  • f03ee11\r\nEnsure blib2to3.pygram is initialized before use (#4224)
  • \r\n
  • e4bfedb\r\nfix: Don't move comments while splitting delimiters (#4248)
  • \r\n
  • d0287e1\r\nMake trailing comma logic more concise (#4202)
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=black&package-manager=pip&previous-version=23.12.0&new-version=24.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\nYou can disable automated security fix PRs for this repo from the\r\n[Security Alerts\r\npage](https://github.com/withlogicco/ergani-python-sdk/network/alerts).\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump black from 23.12.0 to 24.3.0 (#17)"}},{"before":null,"after":"32ad8d583ba4bb0b064d0df83cab7a5c45b1afff","ref":"refs/heads/dependabot/pip/black-24.3.0","pushedAt":"2024-03-20T17:38:47.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump black from 23.12.0 to 24.3.0\n\nBumps [black](https://github.com/psf/black) from 23.12.0 to 24.3.0.\n- [Release notes](https://github.com/psf/black/releases)\n- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)\n- [Commits](https://github.com/psf/black/compare/23.12.0...24.3.0)\n\n---\nupdated-dependencies:\n- dependency-name: black\n dependency-type: direct:development\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump black from 23.12.0 to 24.3.0"}},{"before":"44e8d99fb82fccc5a5713fd8ed0019eefead49d8","after":"948487e110cf469dfb3af87ee6a267254b7a1ec8","ref":"refs/heads/main","pushedAt":"2024-02-24T17:07:08.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"parisk","name":"Paris Kasidiaris","path":"/parisk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1188592?s=80&v=4"},"commit":{"message":"Update README.md (#16)\n\nAdd Rust port of the SDK","shortMessageHtmlLink":"Update README.md (#16)"}},{"before":"e02dc8d8982e4285dd98aa6664672de29ff73a8e","after":null,"ref":"refs/heads/bump-version-1.0.1-docs","pushedAt":"2024-02-20T16:06:05.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"}},{"before":"0ab860e59a432046ab699887a8de38044703aab2","after":"44e8d99fb82fccc5a5713fd8ed0019eefead49d8","ref":"refs/heads/main","pushedAt":"2024-02-20T16:06:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"Bump version to `1.0.1` in docs (#15)","shortMessageHtmlLink":"Bump version to 1.0.1 in docs (#15)"}},{"before":null,"after":"e02dc8d8982e4285dd98aa6664672de29ff73a8e","ref":"refs/heads/bump-version-1.0.1-docs","pushedAt":"2024-02-20T14:59:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"docs: bump version to 1.0.1 in docs","shortMessageHtmlLink":"docs: bump version to 1.0.1 in docs"}},{"before":"84536fa0b7d7945fef7bfb9bcd9a900f6f2c616d","after":"0ab860e59a432046ab699887a8de38044703aab2","ref":"refs/heads/main","pushedAt":"2024-02-20T14:54:33.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"Bump version to `1.0.1` (#14)","shortMessageHtmlLink":"Bump version to 1.0.1 (#14)"}},{"before":"10ec4bd1b0b363fceaadd37d99d7af619c908666","after":null,"ref":"refs/heads/bump-version-1.0.1","pushedAt":"2024-02-20T14:54:33.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"}},{"before":null,"after":"10ec4bd1b0b363fceaadd37d99d7af619c908666","ref":"refs/heads/bump-version-1.0.1","pushedAt":"2024-02-20T14:51:50.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"build: bump version to 1.0.1","shortMessageHtmlLink":"build: bump version to 1.0.1"}},{"before":"84536fa0b7d7945fef7bfb9bcd9a900f6f2c616d","after":null,"ref":"refs/tags/1.0.1","pushedAt":"2024-02-20T14:51:06.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"}},{"before":"f9cee03c2626709deed8d28a2250cd3a9cac0c57","after":null,"ref":"refs/heads/gmargaritis-patch-1","pushedAt":"2024-02-20T14:35:04.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"}},{"before":"fb67e2974299fb58d6aa1614eaefbead1b409eeb","after":"84536fa0b7d7945fef7bfb9bcd9a900f6f2c616d","ref":"refs/heads/main","pushedAt":"2024-02-20T14:35:03.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"Add documentation url in README (#13)","shortMessageHtmlLink":"Add documentation url in README (#13)"}},{"before":"abdaf49ee3eb4e6d336a4b5e5c0ced9a1266c77e","after":"f9cee03c2626709deed8d28a2250cd3a9cac0c57","ref":"refs/heads/gmargaritis-patch-1","pushedAt":"2024-02-20T14:10:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"docs: update reference to documentation url","shortMessageHtmlLink":"docs: update reference to documentation url"}},{"before":null,"after":"abdaf49ee3eb4e6d336a4b5e5c0ced9a1266c77e","ref":"refs/heads/gmargaritis-patch-1","pushedAt":"2024-02-20T14:04:00.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"docs: add documentation url","shortMessageHtmlLink":"docs: add documentation url"}},{"before":"091c816046114b463d4e83b1e6f4a38ee6b4eea8","after":null,"ref":"refs/heads/dev-docs-improvement","pushedAt":"2024-02-20T13:55:57.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"parisk","name":"Paris Kasidiaris","path":"/parisk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1188592?s=80&v=4"}},{"before":"666ea277d8eead21ac28b457cb14c298e51d734a","after":"fb67e2974299fb58d6aa1614eaefbead1b409eeb","ref":"refs/heads/main","pushedAt":"2024-02-20T13:55:56.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"parisk","name":"Paris Kasidiaris","path":"/parisk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1188592?s=80&v=4"},"commit":{"message":"Improve dev containers and docs title (#12)","shortMessageHtmlLink":"Improve dev containers and docs title (#12)"}},{"before":null,"after":"091c816046114b463d4e83b1e6f4a38ee6b4eea8","ref":"refs/heads/dev-docs-improvement","pushedAt":"2024-02-20T13:35:37.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"parisk","name":"Paris Kasidiaris","path":"/parisk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1188592?s=80&v=4"},"commit":{"message":"Update documentation title","shortMessageHtmlLink":"Update documentation title"}},{"before":"0b7b6d83ddff35af50f7ec8511f31f0686642fc8","after":null,"ref":"refs/heads/hotfix/fix-identation-SubmissionResponse","pushedAt":"2024-02-20T13:33:58.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"}},{"before":"817f8e0a66fe39c5c52a03942dc9b2c1308cec9b","after":"666ea277d8eead21ac28b457cb14c298e51d734a","ref":"refs/heads/main","pushedAt":"2024-02-20T13:33:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"Fix indentation of SubmissionResponse (#11)","shortMessageHtmlLink":"Fix indentation of SubmissionResponse (#11)"}},{"before":"6a5a0d7d3203ec949dbe94d4b09dacd2b95ce75f","after":"0b7b6d83ddff35af50f7ec8511f31f0686642fc8","ref":"refs/heads/hotfix/fix-identation-SubmissionResponse","pushedAt":"2024-02-20T13:24:15.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"fix: correct indentation of SubmissionResponse","shortMessageHtmlLink":"fix: correct indentation of SubmissionResponse"}},{"before":null,"after":"6a5a0d7d3203ec949dbe94d4b09dacd2b95ce75f","ref":"refs/heads/hotfix/fix-identation-SubmissionResponse","pushedAt":"2024-02-20T13:20:11.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"fix: correct identation of SubmissionResponse","shortMessageHtmlLink":"fix: correct identation of SubmissionResponse"}},{"before":"6a68c126704ec6943267a4e77e6088518231d8d7","after":null,"ref":"refs/heads/fix-documentation","pushedAt":"2024-02-16T13:07:28.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"}},{"before":"fb3f0ca8690695603509fa8cc92412244a952e68","after":"817f8e0a66fe39c5c52a03942dc9b2c1308cec9b","ref":"refs/heads/main","pushedAt":"2024-02-16T13:07:27.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"Fix translated fields in glossary (#10)","shortMessageHtmlLink":"Fix translated fields in glossary (#10)"}},{"before":null,"after":"6a68c126704ec6943267a4e77e6088518231d8d7","ref":"refs/heads/fix-documentation","pushedAt":"2024-02-16T11:36:48.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"docs: fix translated fields in glossary","shortMessageHtmlLink":"docs: fix translated fields in glossary"}},{"before":"5f08d1b181013f8c8d28785c109d9db91d98d2a3","after":null,"ref":"refs/heads/bump-1.0.0","pushedAt":"2024-02-09T16:02:32.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"}},{"before":"f18e66a8af37caa574022a13aa1771c55f173e34","after":"fb3f0ca8690695603509fa8cc92412244a952e68","ref":"refs/heads/main","pushedAt":"2024-02-09T16:02:32.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gmargaritis","name":"George Margaritis","path":"/gmargaritis","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22263374?s=80&v=4"},"commit":{"message":"Bump version to `1.0.0` (#9)","shortMessageHtmlLink":"Bump version to 1.0.0 (#9)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAET4e6gQA","startCursor":null,"endCursor":null}},"title":"Activity ยท withlogicco/ergani-python-sdk"}