{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":418609469,"defaultBranch":"main","name":"rusty_paseto","ownerLogin":"rrrodzilla","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2021-10-18T17:50:20.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/24578097?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1717204828.0","currentOid":""},"activityList":{"items":[{"before":"f680bcc30a2f52118f8373b063ded9327317d938","after":"131c07d4e6388b6cc924f70d501d92d9f0a26b04","ref":"refs/heads/main","pushedAt":"2024-06-03T09:13:30.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Enforce EOL via .gitattributes (#42)","shortMessageHtmlLink":"Enforce EOL via .gitattributes (#42)"}},{"before":"6ec9c270efcf3d7beccb876559811d0528ff70c2","after":"f680bcc30a2f52118f8373b063ded9327317d938","ref":"refs/heads/main","pushedAt":"2024-06-03T08:53:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Unify line ending to unix-style (#41)","shortMessageHtmlLink":"Unify line ending to unix-style (#41)"}},{"before":"cce5cf5c49b94a9461cd31ec162d09d77673026e","after":"6ec9c270efcf3d7beccb876559811d0528ff70c2","ref":"refs/heads/main","pushedAt":"2024-06-01T01:15:21.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Update .gitignore file\n\nAdded a new entry to the .gitignore file to exclude generated test files from version control. This ensures that these dynamically created files do not clutter up the repository and are not tracked unnecessarily.","shortMessageHtmlLink":"Update .gitignore file"}},{"before":"e24c9b2431690c3c533dc4f7dd4b77aa9ea1974a","after":null,"ref":"refs/heads/hotfix-v0.7.1","pushedAt":"2024-06-01T00:45:55.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"}},{"before":"448738a4bdb1087e5c64b528b6891550538f7ebb","after":"cce5cf5c49b94a9461cd31ec162d09d77673026e","ref":"refs/heads/main","pushedAt":"2024-06-01T00:45:54.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Hotfix v0.7.1 (#40)\n\n* feat(tests): add regression tests for issue #39 and proptest seeds\r\n\r\nAdded build_payload_from_claims_prop_test.rs to include regression tests for issue #39, ensuring the fix for invalid JSON payloads with CustomClaims remains effective.\r\nIntroduced generic_claims_wrap_value_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\r\nCreated an empty generic_claims_wrap_value_prop_test.rs file for future test implementations.\r\n\r\n* feat(tests): add property tests for wrap_value and build_payload_from_claims\r\n\r\nAdded proptest dependency to Cargo.toml for property-based testing.\r\nCreated build_payload_from_claims_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\r\nUpdated build_payload_from_claims_prop_test.rs to include detailed property tests for the build_payload_from_claims function.\r\nAdded generic_claims_wrap_value_prop_test.proptest-regressions with additional seeds for failure cases.\r\nImplemented generic_claims_wrap_value_prop_test.rs to validate the correctness and robustness of the wrap_value function using property tests.\r\n\r\n* fix(generic_builder): handle empty keys and null values in claims\r\n\r\nUpdated set_claim method to ignore empty keys and handle null values correctly.\r\nRefactored build_payload_from_claims to ensure proper nesting and serialization of claims.\r\nAdded wrap_claims and wrap_value helper functions to handle JSON object wrapping.\r\nIncluded comprehensive tests for various claim scenarios:\r\nCustom claim serialization\r\nEmpty claims\r\nNull claims\r\nNested structures\r\nMultiple claims\r\nDifferent data types\r\n\r\n* fix(generic_builder): refactor and add tests for dynamic claims and no claims\r\n\r\nRefactored GenericBuilder to improve readability and maintainability.\r\nAdded tests for dynamic claims and scenarios with no claims for V2, Local tokens.\r\nEnsured proper handling of various claim types and edge cases in the builder and parser.\r\n\r\n* chore(release): bump version to 0.7.1\r\n\r\nUpdated Cargo.toml to reflect the new version 0.7.1.\r\n\r\n* chore(release): bump version to 0.7.1\r\n\r\nUpdated Cargo.toml to reflect the new version 0.7.1.\r\n\r\n* fix: resolve invalid JSON payloads with CustomClaims (issue #39)\r\n\r\nThese commits are intended to fix issue #39.\r\n\r\nfeat(tests): add regression tests for issue #39 and proptest seeds\r\n\r\nAdded build_payload_from_claims_prop_test.rs to include regression tests for issue #39, ensuring the fix for invalid JSON payloads with CustomClaims remains effective.\r\nIntroduced generic_claims_wrap_value_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\r\nCreated an empty generic_claims_wrap_value_prop_test.rs file for future test implementations.\r\nfeat(tests): add property tests for wrap_value and build_payload_from_claims\r\n\r\nAdded proptest dependency to Cargo.toml for property-based testing.\r\nCreated build_payload_from_claims_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\r\nUpdated build_payload_from_claims_prop_test.rs to include detailed property tests for the build_payload_from_claims function.\r\nAdded generic_claims_wrap_value_prop_test.proptest-regressions with additional seeds for failure cases.\r\nImplemented generic_claims_wrap_value_prop_test.rs to validate the correctness and robustness of the wrap_value function using property tests.\r\nfix(generic_builder): handle empty keys and null values in claims\r\n\r\nUpdated set_claim method to ignore empty keys and handle null values correctly.\r\nRefactored build_payload_from_claims to ensure proper nesting and serialization of claims.\r\nAdded wrap_claims and wrap_value helper functions to handle JSON object wrapping.\r\nIncluded comprehensive tests for various claim scenarios: custom claim serialization, empty claims, null claims, nested structures, multiple claims, and different data types.\r\nfix(generic_builder): refactor and add tests for dynamic claims and no claims\r\n\r\nRefactored GenericBuilder to improve readability and maintainability.\r\nAdded tests for dynamic claims and scenarios with no claims for V2, Local tokens.\r\nEnsured proper handling of various claim types and edge cases in the builder and parser.\r\nchore(release): bump version to 0.7.1\r\n\r\nUpdated Cargo.toml to reflect the new version 0.7.1.\r\nThese changes aim to address and resolve the issues related to invalid JSON payloads when using CustomClaims as described in issue #39.\r\n\r\n* fix: resolve invalid JSON payloads with CustomClaims (issue #39)\r\n\r\nThese commits are intended to fix issue #39.\r\n\r\nfeat(tests): add regression tests for issue #39 and proptest seeds\r\n\r\nAdded build_payload_from_claims_prop_test.rs to include regression tests for issue #39, ensuring the fix for invalid JSON payloads with CustomClaims remains effective.\r\nIntroduced generic_claims_wrap_value_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\r\nCreated an empty generic_claims_wrap_value_prop_test.rs file for future test implementations.\r\nfeat(tests): add property tests for wrap_value and build_payload_from_claims\r\n\r\nAdded proptest dependency to Cargo.toml for property-based testing.\r\nCreated build_payload_from_claims_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\r\nUpdated build_payload_from_claims_prop_test.rs to include detailed property tests for the build_payload_from_claims function.\r\nAdded generic_claims_wrap_value_prop_test.proptest-regressions with additional seeds for failure cases.\r\nImplemented generic_claims_wrap_value_prop_test.rs to validate the correctness and robustness of the wrap_value function using property tests.\r\nfix(generic_builder): handle empty keys and null values in claims\r\n\r\nUpdated set_claim method to ignore empty keys and handle null values correctly.\r\nRefactored build_payload_from_claims to ensure proper nesting and serialization of claims.\r\nAdded wrap_claims and wrap_value helper functions to handle JSON object wrapping.\r\nIncluded comprehensive tests for various claim scenarios: custom claim serialization, empty claims, null claims, nested structures, multiple claims, and different data types.\r\nfix(generic_builder): refactor and add tests for dynamic claims and no claims\r\n\r\nRefactored GenericBuilder to improve readability and maintainability.\r\nAdded tests for dynamic claims and scenarios with no claims for V2, Local tokens.\r\nEnsured proper handling of various claim types and edge cases in the builder and parser.\r\nchore(release): bump version to 0.7.1\r\n\r\nUpdated Cargo.toml to reflect the new version 0.7.1.\r\nThese changes aim to address and resolve the issues related to invalid JSON payloads when using CustomClaims as described in issue #39.","shortMessageHtmlLink":"Hotfix v0.7.1 (#40)"}},{"before":"9d717d1f283002fd87fe7b6dee73034bd2a455d5","after":"e24c9b2431690c3c533dc4f7dd4b77aa9ea1974a","ref":"refs/heads/hotfix-v0.7.1","pushedAt":"2024-06-01T00:32:04.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"fix: resolve invalid JSON payloads with CustomClaims (issue #39)\n\nThese commits are intended to fix issue #39.\n\nfeat(tests): add regression tests for issue #39 and proptest seeds\n\nAdded build_payload_from_claims_prop_test.rs to include regression tests for issue #39, ensuring the fix for invalid JSON payloads with CustomClaims remains effective.\nIntroduced generic_claims_wrap_value_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\nCreated an empty generic_claims_wrap_value_prop_test.rs file for future test implementations.\nfeat(tests): add property tests for wrap_value and build_payload_from_claims\n\nAdded proptest dependency to Cargo.toml for property-based testing.\nCreated build_payload_from_claims_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\nUpdated build_payload_from_claims_prop_test.rs to include detailed property tests for the build_payload_from_claims function.\nAdded generic_claims_wrap_value_prop_test.proptest-regressions with additional seeds for failure cases.\nImplemented generic_claims_wrap_value_prop_test.rs to validate the correctness and robustness of the wrap_value function using property tests.\nfix(generic_builder): handle empty keys and null values in claims\n\nUpdated set_claim method to ignore empty keys and handle null values correctly.\nRefactored build_payload_from_claims to ensure proper nesting and serialization of claims.\nAdded wrap_claims and wrap_value helper functions to handle JSON object wrapping.\nIncluded comprehensive tests for various claim scenarios: custom claim serialization, empty claims, null claims, nested structures, multiple claims, and different data types.\nfix(generic_builder): refactor and add tests for dynamic claims and no claims\n\nRefactored GenericBuilder to improve readability and maintainability.\nAdded tests for dynamic claims and scenarios with no claims for V2, Local tokens.\nEnsured proper handling of various claim types and edge cases in the builder and parser.\nchore(release): bump version to 0.7.1\n\nUpdated Cargo.toml to reflect the new version 0.7.1.\nThese changes aim to address and resolve the issues related to invalid JSON payloads when using CustomClaims as described in issue #39.","shortMessageHtmlLink":"fix: resolve invalid JSON payloads with CustomClaims (issue #39)"}},{"before":"af6af0d41a9389ffbc40ff25bb664af1020b1d8a","after":"9d717d1f283002fd87fe7b6dee73034bd2a455d5","ref":"refs/heads/hotfix-v0.7.1","pushedAt":"2024-06-01T00:27:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"fix: resolve invalid JSON payloads with CustomClaims (issue #39)\n\nThese commits are intended to fix issue #39.\n\nfeat(tests): add regression tests for issue #39 and proptest seeds\n\nAdded build_payload_from_claims_prop_test.rs to include regression tests for issue #39, ensuring the fix for invalid JSON payloads with CustomClaims remains effective.\nIntroduced generic_claims_wrap_value_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\nCreated an empty generic_claims_wrap_value_prop_test.rs file for future test implementations.\nfeat(tests): add property tests for wrap_value and build_payload_from_claims\n\nAdded proptest dependency to Cargo.toml for property-based testing.\nCreated build_payload_from_claims_prop_test.proptest-regressions to store seeds for failure cases generated by proptest.\nUpdated build_payload_from_claims_prop_test.rs to include detailed property tests for the build_payload_from_claims function.\nAdded generic_claims_wrap_value_prop_test.proptest-regressions with additional seeds for failure cases.\nImplemented generic_claims_wrap_value_prop_test.rs to validate the correctness and robustness of the wrap_value function using property tests.\nfix(generic_builder): handle empty keys and null values in claims\n\nUpdated set_claim method to ignore empty keys and handle null values correctly.\nRefactored build_payload_from_claims to ensure proper nesting and serialization of claims.\nAdded wrap_claims and wrap_value helper functions to handle JSON object wrapping.\nIncluded comprehensive tests for various claim scenarios: custom claim serialization, empty claims, null claims, nested structures, multiple claims, and different data types.\nfix(generic_builder): refactor and add tests for dynamic claims and no claims\n\nRefactored GenericBuilder to improve readability and maintainability.\nAdded tests for dynamic claims and scenarios with no claims for V2, Local tokens.\nEnsured proper handling of various claim types and edge cases in the builder and parser.\nchore(release): bump version to 0.7.1\n\nUpdated Cargo.toml to reflect the new version 0.7.1.\nThese changes aim to address and resolve the issues related to invalid JSON payloads when using CustomClaims as described in issue #39.","shortMessageHtmlLink":"fix: resolve invalid JSON payloads with CustomClaims (issue #39)"}},{"before":"e9ee02a0fb62afdf6b9465897bca52db8e35c19e","after":"af6af0d41a9389ffbc40ff25bb664af1020b1d8a","ref":"refs/heads/hotfix-v0.7.1","pushedAt":"2024-06-01T00:21:13.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Merge branch 'hotfix-v0.7.1' of github.com:rrrodzilla/rusty_paseto into hotfix-v0.7.1","shortMessageHtmlLink":"Merge branch 'hotfix-v0.7.1' of github.com:rrrodzilla/rusty_paseto in…"}},{"before":"2ed4908bf0b77f73454b33285c66417dc7b2a9ca","after":"e9ee02a0fb62afdf6b9465897bca52db8e35c19e","ref":"refs/heads/hotfix-v0.7.1","pushedAt":"2024-06-01T00:17:54.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Merge branch 'hotfix-v0.7.1' of github.com:rrrodzilla/rusty_paseto into hotfix-v0.7.1","shortMessageHtmlLink":"Merge branch 'hotfix-v0.7.1' of github.com:rrrodzilla/rusty_paseto in…"}},{"before":null,"after":"2ed4908bf0b77f73454b33285c66417dc7b2a9ca","ref":"refs/heads/hotfix-v0.7.1","pushedAt":"2024-06-01T00:14:39.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"chore(release): bump version to 0.7.1\n\nUpdated Cargo.toml to reflect the new version 0.7.1.","shortMessageHtmlLink":"chore(release): bump version to 0.7.1"}},{"before":"ce81f0ab969452bfa5b94a0354315835bb44bbd9","after":"448738a4bdb1087e5c64b528b6891550538f7ebb","ref":"refs/heads/main","pushedAt":"2024-05-29T03:53:20.000Z","pushType":"push","commitsCount":10,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Merge branch 'v4_public'","shortMessageHtmlLink":"Merge branch 'v4_public'"}},{"before":"3218f4adc4f482f60c0946efb16f4295298807e4","after":"ce81f0ab969452bfa5b94a0354315835bb44bbd9","ref":"refs/heads/main","pushedAt":"2024-05-28T12:01:16.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"chore:conclude merge","shortMessageHtmlLink":"chore:conclude merge"}},{"before":"5ddd4b57d6915ca050e946d67aa5f597c7f60abf","after":"3218f4adc4f482f60c0946efb16f4295298807e4","ref":"refs/heads/main","pushedAt":"2024-05-28T11:57:31.000Z","pushType":"push","commitsCount":9,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Update version in Cargo.toml. Add new error type for RSA cipher errors. Update dependencies and modify their usage accordingly. Refactor test configurations to be more specific about features being tested. Reformat code for better readability and consistency.","shortMessageHtmlLink":"Update version in Cargo.toml. Add new error type for RSA cipher error…"}},{"before":"d64e8bf225ddf203250a3782bf31e44c383e9b50","after":"5ddd4b57d6915ca050e946d67aa5f597c7f60abf","ref":"refs/heads/main","pushedAt":"2024-04-19T14:46:45.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Remove a stray eprintln! (#35)","shortMessageHtmlLink":"Remove a stray eprintln! (#35)"}},{"before":"505e7bb2bc45d1a7d2aa9a907eb73c101eb31c17","after":null,"ref":"refs/heads/30-bump-ring-for-riscv-support","pushedAt":"2024-01-19T08:09:11.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"}},{"before":"bb10c554d758563fdd2172078478625f90137877","after":"d64e8bf225ddf203250a3782bf31e44c383e9b50","ref":"refs/heads/main","pushedAt":"2024-01-19T08:09:10.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"30 bump ring for riscv support (#33)\n\n* Update Cargo.toml\r\n\r\nfeat: bump ring to 0.17+ for RISCV support\r\n\r\nThis commit updates the ring dependency to version 0.17 or higher, which enables the build on RISC-V platforms. This is a new feature that adds support for a different architecture.\r\n\r\n* Update mod.rs\r\n\r\nfix: clippy issue\r\n\r\n* Update Cargo.toml\r\n\r\nchore: version bump to reflect dependency bump","shortMessageHtmlLink":"30 bump ring for riscv support (#33)"}},{"before":"75a2e492b46d58fafa9faf8fd58ef60514f43b7b","after":"505e7bb2bc45d1a7d2aa9a907eb73c101eb31c17","ref":"refs/heads/30-bump-ring-for-riscv-support","pushedAt":"2024-01-07T21:20:11.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Update Cargo.toml\n\nchore: version bump to reflect dependency bump","shortMessageHtmlLink":"Update Cargo.toml"}},{"before":"fc6c6163071d989ffbd53476add52a367924a6bc","after":"75a2e492b46d58fafa9faf8fd58ef60514f43b7b","ref":"refs/heads/30-bump-ring-for-riscv-support","pushedAt":"2024-01-07T21:16:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Update mod.rs\n\nfix: clippy issue","shortMessageHtmlLink":"Update mod.rs"}},{"before":"bb10c554d758563fdd2172078478625f90137877","after":"fc6c6163071d989ffbd53476add52a367924a6bc","ref":"refs/heads/30-bump-ring-for-riscv-support","pushedAt":"2024-01-07T21:12:05.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"Update Cargo.toml\n\nfeat: bump ring to 0.17+ for RISCV support\r\n\r\nThis commit updates the ring dependency to version 0.17 or higher, which enables the build on RISC-V platforms. This is a new feature that adds support for a different architecture.","shortMessageHtmlLink":"Update Cargo.toml"}},{"before":null,"after":"bb10c554d758563fdd2172078478625f90137877","ref":"refs/heads/30-bump-ring-for-riscv-support","pushedAt":"2024-01-07T21:04:34.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"chore: add .idea folder to .gitignore\n\nThe .idea folder, which is created by JetBrains IDEs, contains project settings specific to individual development environments and should not be tracked in version control. This change to the .gitignore file will prevent these files from being included in future commits.\n\nSigned-off-by: Roland Rodriguez ","shortMessageHtmlLink":"chore: add .idea folder to .gitignore"}},{"before":"42718c1b757c1dfabb80621f2f48b8268f7fa24e","after":"bb10c554d758563fdd2172078478625f90137877","ref":"refs/heads/main","pushedAt":"2023-11-05T23:55:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"chore: add .idea folder to .gitignore\n\nThe .idea folder, which is created by JetBrains IDEs, contains project settings specific to individual development environments and should not be tracked in version control. This change to the .gitignore file will prevent these files from being included in future commits.\n\nSigned-off-by: Roland Rodriguez ","shortMessageHtmlLink":"chore: add .idea folder to .gitignore"}},{"before":"c76bd4fd1e9bf3cf0f95415cb6badb817d8b8ea0","after":"42718c1b757c1dfabb80621f2f48b8268f7fa24e","ref":"refs/heads/main","pushedAt":"2023-11-05T23:47:04.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rrrodzilla","name":null,"path":"/rrrodzilla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24578097?s=80&v=4"},"commit":{"message":"fix: bump ed25519-dalek to v2.0 for RUSTSEC-2022-0093\n\nUpdate ed25519-dalek dependency from v^1.0.1 to v2.0 to address the security vulnerability described in RUSTSEC-2022-0093. This update is backward-compatible as it does not introduce changes to the public API of rusty-paseto.\n\nSigned-off-by: Roland Rodriguez ","shortMessageHtmlLink":"fix: bump ed25519-dalek to v2.0 for RUSTSEC-2022-0093"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEWrtkOwA","startCursor":null,"endCursor":null}},"title":"Activity · rrrodzilla/rusty_paseto"}