-
Notifications
You must be signed in to change notification settings - Fork 145
Comparing changes
Open a pull request
base repository: gorilla/securecookie
base: v1.1.1
head repository: gorilla/securecookie
compare: v1.1.2
- 19 commits
- 152 files changed
- 10 contributors
Commits on May 18, 2018
-
[bugfix] check for an empty hashKey (#52)
this scenario might occur when converting from an empty string to byte slice, such as when reading from a configuration file.
Configuration menu - View commit details
-
Copy full SHA for b009e17 - Browse repository at this point
Copy the full SHA b009e17View commit details
Commits on Jun 8, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 78f3d31 - Browse repository at this point
Copy the full SHA 78f3d31View commit details
Commits on Aug 27, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 51f4719 - Browse repository at this point
Copy the full SHA 51f4719View commit details
Commits on Aug 30, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 3a8eb0d - Browse repository at this point
Copy the full SHA 3a8eb0dView commit details
Commits on Sep 13, 2018
-
[docs] Clarify usage of GenerateRandomKey
Matt Silverlock committedSep 13, 2018 Configuration menu - View commit details
-
Copy full SHA for 1aeabd1 - Browse repository at this point
Copy the full SHA 1aeabd1View commit details -
[docs] Add note RE: persistence to GenerateRandomKey
Matt Silverlock committedSep 13, 2018 Configuration menu - View commit details
-
Copy full SHA for 1112382 - Browse repository at this point
Copy the full SHA 1112382View commit details -
Merge pull request #58 from gorilla/elithrar/generaterandomkey-docs
[docs] Clarify usage of GenerateRandomKey
Configuration menu - View commit details
-
Copy full SHA for bb1ab76 - Browse repository at this point
Copy the full SHA bb1ab76View commit details
Commits on Oct 10, 2018
-
github: remove false-match for language detection
Steve Manuel committedOct 10, 2018 Configuration menu - View commit details
-
Copy full SHA for 2a3375f - Browse repository at this point
Copy the full SHA 2a3375fView commit details -
Merge pull request #59 from nilslice/sm/gitattrs
github: remove false-match for language detection
Configuration menu - View commit details
-
Copy full SHA for e65cf8c - Browse repository at this point
Copy the full SHA e65cf8cView commit details
Commits on Jun 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 629b6af - Browse repository at this point
Copy the full SHA 629b6afView commit details
Commits on Jul 7, 2019
-
doc: correct a reference to block size that was meant to be key size (#…
…64) The AES block size is always the same, it's the key size that selects AES-128, AES-192, or AES-256.
Configuration menu - View commit details
-
Copy full SHA for 8645062 - Browse repository at this point
Copy the full SHA 8645062View commit details
Commits on Oct 28, 2019
-
docs: Include an example for using DecodeMulti in the Readme (#69)
* Include an example for using DecodeMulti in the Readme * Put warning in as code comment
Configuration menu - View commit details
-
Copy full SHA for 61b4ad1 - Browse repository at this point
Copy the full SHA 61b4ad1View commit details
Commits on Sep 12, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f37875e - Browse repository at this point
Copy the full SHA f37875eView commit details
Commits on Dec 9, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 9865a2b - Browse repository at this point
Copy the full SHA 9865a2bView commit details
Commits on Jul 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 80d3cb3 - Browse repository at this point
Copy the full SHA 80d3cb3View commit details -
Merge pull request #78 from gorilla/coreydaley-patch-1
Update README.md
Corey Daley authoredJul 15, 2023 Configuration menu - View commit details
-
Copy full SHA for ab6b808 - Browse repository at this point
Copy the full SHA ab6b808View commit details
Commits on Jul 29, 2023
-
docs: changed deprecated goo.gl links to their unshortened variant (#77)
Unshortened the links in the docs because 1. goo.gl is a deprecated service 2. being able to see the actual link is more verbose thus more useful inside of docs Co-authored-by: Corey Daley <cdaley@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 4ce5252 - Browse repository at this point
Copy the full SHA 4ce5252View commit details
Commits on Jul 31, 2023
-
Update go version & add verification/testing tools (#81)
<!-- For Work In Progress Pull Requests, please use the Draft PR feature, see https://github.blog/2019-02-14-introducing-draft-pull-requests/ for further details. For a timely review/response, please avoid force-pushing additional commits if your PR already received reviews or comments. Before submitting a Pull Request, please ensure that you have: - 📖 Read the Contributing guide: https://github.com/gorilla/.github/blob/main/CONTRIBUTING.md - 📖 Read the Code of Conduct: https://github.com/gorilla/.github/blob/main/CODE_OF_CONDUCT.md - Provide tests for your changes. - Use descriptive commit messages. - Comment your code where appropriate. - Squash your commits - Update any related documentation. - Add gorilla/pull-request-reviewers as a Reviewer --> ## What type of PR is this? (check all applicable) - [ ] Refactor - [ ] Feature - [ ] Bug Fix - [x] Optimization - [ ] Documentation Update ## Description ## Related Tickets & Documents <!-- For pull requests that relate or close an issue, please include them below. We like to follow [Github's guidance on linking issues to pull requests](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue). For example having the text: "closes #1234" would connect the current pull request to issue 1234. And when we merge the pull request, Github will automatically close the issue. --> - Related Issue # - Closes # ## Added/updated tests? - [ ] Yes - [ ] No, and this is why: _please replace this line with details on why tests have not been included_ - [ ] I need help with writing tests ## Run verifications and test - [ ] `make verify` is passing - [ ] `make test` is passing
Corey Daley authoredJul 31, 2023 Configuration menu - View commit details
-
Copy full SHA for 22eae5c - Browse repository at this point
Copy the full SHA 22eae5cView commit details
Commits on Oct 18, 2023
-
<!-- For Work In Progress Pull Requests, please use the Draft PR feature, see https://github.blog/2019-02-14-introducing-draft-pull-requests/ for further details. For a timely review/response, please avoid force-pushing additional commits if your PR already received reviews or comments. Before submitting a Pull Request, please ensure that you have: - 📖 Read the Contributing guide: https://github.com/gorilla/.github/blob/main/CONTRIBUTING.md - 📖 Read the Code of Conduct: https://github.com/gorilla/.github/blob/main/CODE_OF_CONDUCT.md - Provide tests for your changes. - Use descriptive commit messages. - Comment your code where appropriate. - Squash your commits - Update any related documentation. - Add gorilla/pull-request-reviewers as a Reviewer --> ## What type of PR is this? (check all applicable) - [x] Refactor - [ ] Feature - [ ] Bug Fix - [ ] Optimization - [ ] Documentation Update - [ ] Go Version Update - [ ] Dependency Update ## Description ## Related Tickets & Documents <!-- For pull requests that relate or close an issue, please include them below. We like to follow [Github's guidance on linking issues to pull requests](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue). For example having the text: "closes #1234" would connect the current pull request to issue 1234. And when we merge the pull request, Github will automatically close the issue. --> - Related Issue # - Closes # ## Added/updated tests? - [ ] Yes - [ ] No, and this is why: _please replace this line with details on why tests have not been included_ - [ ] I need help with writing tests ## Run verifications and test - [x] `make verify` is passing - [x] `make test` is passing
Corey Daley authoredOct 18, 2023 Configuration menu - View commit details
-
Copy full SHA for eae3c18 - Browse repository at this point
Copy the full SHA eae3c18View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.1.1...v1.1.2