Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!(middleware/session): re-write session middleware with handler #3016

Draft
wants to merge 57 commits into
base: main
Choose a base branch
from

Commits on May 28, 2024

  1. Configuration menu
    Copy the full SHA
    6e76847 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac9a028 View commit details
    Browse the repository at this point in the history
  3. fix: lint errors

    sixcolors committed May 28, 2024
    Configuration menu
    Copy the full SHA
    81f6789 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    28790cb View commit details
    Browse the repository at this point in the history

Commits on May 30, 2024

  1. Update middleware/session/middleware.go

    Co-authored-by: Renan Bastos <[email protected]>
    sixcolors and renanbastos93 committed May 30, 2024
    Configuration menu
    Copy the full SHA
    7ffae3d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68f2739 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    92e6877 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2024

  1. Configuration menu
    Copy the full SHA
    239db00 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0b93c5c View commit details
    Browse the repository at this point in the history
  3. chore: Private get on store

    sixcolors committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    7cb4a6e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b4c8ea8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    aafee92 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cd91db4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c3b303f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    75cffca View commit details
    Browse the repository at this point in the history
  9. test: add test

    sixcolors committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    2731428 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4f04291 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2024

  1. Configuration menu
    Copy the full SHA
    ee193dc View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Configuration menu
    Copy the full SHA
    01571cb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f032d4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1a5a3d7 View commit details
    Browse the repository at this point in the history
  4. feat: Improve session middleware test coverage and error handling

    This commit improves the session middleware test coverage by adding assertions for the presence of the Set-Cookie header and the token value. It also enhances error handling by checking for the expected number of parts in the Set-Cookie header.
    sixcolors committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    52e41a4 View commit details
    Browse the repository at this point in the history
  5. chore: fix lint issues

    sixcolors committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    ed95d83 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c6e1c34 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2024

  1. Configuration menu
    Copy the full SHA
    8a5663a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    46845e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2024

  1. Configuration menu
    Copy the full SHA
    ba0e491 View commit details
    Browse the repository at this point in the history
  2. chore: lint

    sixcolors committed Aug 10, 2024
    Configuration menu
    Copy the full SHA
    d08b686 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    8df7c81 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. Configuration menu
    Copy the full SHA
    508cf24 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. Configuration menu
    Copy the full SHA
    6ee953b View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. Configuration menu
    Copy the full SHA
    355b8f5 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. Configuration menu
    Copy the full SHA
    2f3f724 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2024

  1. Configuration menu
    Copy the full SHA
    c08ddc1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    56f6ce0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9e406f4 View commit details
    Browse the repository at this point in the history
  4. chore: markdown lint

    sixcolors committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    12b219a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6812fc4 View commit details
    Browse the repository at this point in the history
  6. docs: makrdown lint

    sixcolors committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    28aad65 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. Configuration menu
    Copy the full SHA
    d4e607e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    14c7a6c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a865ba5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    eaedc6d View commit details
    Browse the repository at this point in the history
  5. refactor(middleware/session): session tests and add session release test

    - Refactor session tests to improve readability and maintainability.
    - Add a new test case to ensure proper session release functionality.
    - Update session.md
    sixcolors committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    d2cf5b8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b479895 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    afab580 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6c0bf25 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ad337f8 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2024

  1. Configuration menu
    Copy the full SHA
    280d539 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    40da2c0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ad4bc9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ffac824 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Configuration menu
    Copy the full SHA
    9f8c2d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ecac9ce View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e272082 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b262a08 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    937a9b3 View commit details
    Browse the repository at this point in the history