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

Deploy 2024.05.1 to test #2100

Merged
merged 259 commits into from
May 15, 2024
Merged

Deploy 2024.05.1 to test #2100

merged 259 commits into from
May 15, 2024
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Mar 19, 2024

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

Commits on Mar 20, 2024

  1. refactor: simply pass translated value into modal-trigger

    no refactor to modal-trigger needed
    angela-tran committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    1a52320 View commit details
    Browse the repository at this point in the history
  2. chore: run makemessages to generate PO entries

    this is to prepare for Spanish translations that are coming later
    angela-tran committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    68915fc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5a58a8b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a3fbc32 View commit details
    Browse the repository at this point in the history
  5. chore(deps): bump mkdocs-material from 9.5.13 to 9.5.14

    Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.13 to 9.5.14.
    - [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
    - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
    - [Commits](squidfunk/mkdocs-material@9.5.13...9.5.14)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs-material
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and thekaveman committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    a334849 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5739663 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    88bf6ad View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c513eae View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    23d3da9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3a3044c View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Configuration menu
    Copy the full SHA
    31b486c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8a8988e View commit details
    Browse the repository at this point in the history
  3. refactor: move help_template to EligibilityVerifier and use unique ones

    we need the templates to be specified on verifiers so that the help page
    reflects configuration changes rather than being hard-coded on an
    agency's template.
    angela-tran committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    b1a6883 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dc95f50 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    13335a8 View commit details
    Browse the repository at this point in the history
  6. fix: context processor should use same filter as verifier selection form

    fixes failing eligibility view tests
    angela-tran committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    ce14b73 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cc0a6d3 View commit details
    Browse the repository at this point in the history
  8. chore(deps-dev): bump cypress from 13.6.6 to 13.7.1 in /tests/cypress

    Bumps [cypress](https://github.com/cypress-io/cypress) from 13.6.6 to 13.7.1.
    - [Release notes](https://github.com/cypress-io/cypress/releases)
    - [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
    - [Commits](cypress-io/cypress@v13.6.6...v13.7.1)
    
    ---
    updated-dependencies:
    - dependency-name: cypress
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 21, 2024
    Configuration menu
    Copy the full SHA
    4e23666 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. fix: path to coverage report

    the `mkdocs.yml` GitHub workflow publishes it at `docs/tests/coverage`
    angela-tran authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    5a6d279 View commit details
    Browse the repository at this point in the history
  2. chore(conftest): move test fixtures into conftest

    for consistency
    angela-tran committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    0cd9a1e View commit details
    Browse the repository at this point in the history
  3. refactor(models): add property to TransitAgency to get active verifiers

    update usage in verifier selection form, context processors, and tests
    angela-tran committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    d79f06c View commit details
    Browse the repository at this point in the history
  4. fix(templates): allow custom media-item--heading tag

    previously h3 was hardcoded as the heading tag for media items
    
    this caused a bug in enrollment index, where heading levels skip
    from h1 (the page title) to h3 (the first media item)
    
    in eligibility start, there is an intervening h2 that keeps the order correct
    
    this change allows a child media item to override the heading tag, while maintaining
    the h3 styling for all media-item--heading, regardless of tag used
    
    the default tag remains h3 if a child media item does not choose to override
    thekaveman committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    93293f8 View commit details
    Browse the repository at this point in the history
  5. test: unit test for helper function

    expected behavior is to return an ordered list of the unique values
    angela-tran committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    f3fe500 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0fa3235 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4a450a4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2bcf0a3 View commit details
    Browse the repository at this point in the history
  9. fix(models): correct auth_provider field definition

    in addition to allowing null in the database for this field, forms
    should allow blank values for this field.
    angela-tran committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    d722818 View commit details
    Browse the repository at this point in the history
  10. chore(deps-dev): bump calitp-littlepay from 2024.3.1 to 2024.3.3

    Bumps [calitp-littlepay](https://github.com/cal-itp/littlepay) from 2024.3.1 to 2024.3.3.
    - [Release notes](https://github.com/cal-itp/littlepay/releases)
    - [Commits](cal-itp/littlepay@2024.03.1...2024.03.3)
    
    ---
    updated-dependencies:
    - dependency-name: calitp-littlepay
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    13a9ee0 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Configuration menu
    Copy the full SHA
    662d621 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump mkdocs-material from 9.5.14 to 9.5.15

    Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.14 to 9.5.15.
    - [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
    - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
    - [Commits](squidfunk/mkdocs-material@9.5.14...9.5.15)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs-material
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 25, 2024
    Configuration menu
    Copy the full SHA
    0d0adf5 View commit details
    Browse the repository at this point in the history
  3. chore: register AuthProvider model with admin site

    this is so AuthProvider can be edited too
    angela-tran committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    6faebf8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3f33ea6 View commit details
    Browse the repository at this point in the history
  5. refactor(session): remove unnecessary log statements

    these cause a lot of noise in our logs and aren't very useful
    thekaveman committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    5666973 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Added Mermaid code to replace image of product roadmap

    I kept the "directive" at the top of the chart to override default styling, but I'm not sure if mkdocs will display the chart properly with a directive. Please confirm display works locally if possible.
    indexing authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    49651cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b995a83 View commit details
    Browse the repository at this point in the history
  3. feat(session): store and retrieve enrollment expiry as datetime

    returned expiry datetime is always an aware datetime instance in UTC
    thekaveman committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    09cbaed View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    05cf5a8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    16dbbe0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b39f0bb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7362739 View commit details
    Browse the repository at this point in the history
  8. chore(deps-dev): bump django-admin-sortable2 from 2.1.5 to 2.1.10

    Bumps [django-admin-sortable2](https://github.com/jrief/django-admin-sortable2) from 2.1.5 to 2.1.10.
    - [Release notes](https://github.com/jrief/django-admin-sortable2/releases)
    - [Changelog](https://github.com/jrief/django-admin-sortable2/blob/master/CHANGELOG.md)
    - [Commits](jrief/django-admin-sortable2@2.1.5...2.1.10)
    
    ---
    updated-dependencies:
    - dependency-name: django-admin-sortable2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    d638926 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3b6c386 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    271efc0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    73957a4 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e728782 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Deleting roadmap.png

    indexing authored Mar 27, 2024
    Configuration menu
    Copy the full SHA
    93bdd26 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    23f6b11 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. fix(reset): catch grep failure so script doesn't die

    with -e, the script returns an error code whenever any command does so,
    which can cause the rest of the Dev Container setup to fail
    
    grep returns an error code when no match is found, but we don't want
    that to end the script in error, so test the grep return code
    
    see https://stackoverflow.com/a/49627999/453168
    thekaveman committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    05c976b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    de1e85d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    65057c4 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2024

  1. Configuration menu
    Copy the full SHA
    13d3bf7 View commit details
    Browse the repository at this point in the history
  2. refactor(ci): use change detection to configure matrix job

    a new job 'setup' runs first, using the step dorny/paths-filter to see
    what file types were changed
    
    then the 'languages' matrix is populated based on that result
    
    this means CodeQL analysis will only run for the language when corresponding
    files were changed
    
    see more: https://github.com/dorny/paths-filter?tab=readme-ov-file#conditional-execution
    thekaveman committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    15fc2c7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ac530b3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ae36306 View commit details
    Browse the repository at this point in the history
  5. feat(templates): reusable alert-box component include

    basic layout styles that apply to any alert-box
    thekaveman committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    703bad7 View commit details
    Browse the repository at this point in the history
  6. feat(templates): alert-box variant for warnings

    override background and border colors
    thekaveman committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    daff1af View commit details
    Browse the repository at this point in the history
  7. feat(enrollment): include the alert-box for the CalFresh index

    update PO files with new English text
    thekaveman committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    4ba489c View commit details
    Browse the repository at this point in the history
  8. style: override margin on calfresh enrollment index media-list

    the default for media-list remains 64px
    
    removed an unused style rule for h1 + .media-list, from the old enrollment
    success template (since refactored to not use media-list)
    thekaveman committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    88b4b7b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    875736e View commit details
    Browse the repository at this point in the history
  10. style: helper for left margin aligned with media-list text

    calculated based on the width and right margin of media icon
    thekaveman committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    8e2311e View commit details
    Browse the repository at this point in the history
  11. refactor: calfresh alert-box implements overrides

    * move the warning class override to calfresh alert-box
    
    * apply the calfresh specific margin class to align alert-box with
      preceding media-list text
    thekaveman committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    bba6ad9 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9b6aa0b View commit details
    Browse the repository at this point in the history
  13. chore(enrollment): add visible class after removing invisible class

    this is just for clarity to make reading the HTML a little more sensible
    rather than seeing a div with an empty class attribute
    
    no UX impact
    thekaveman committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    1216af6 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. chore(pre-commit): autoupdate hooks

    updates:
    - [github.com/compilerla/conventional-pre-commit: v3.1.0 → v3.2.0](compilerla/conventional-pre-commit@v3.1.0...v3.2.0)
    pre-commit-ci[bot] authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    4901ee6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1eb8257 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump mkdocs-material from 9.5.15 to 9.5.16

    Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.15 to 9.5.16.
    - [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
    - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
    - [Commits](squidfunk/mkdocs-material@9.5.15...9.5.16)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs-material
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    dc36196 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    916028a View commit details
    Browse the repository at this point in the history
  5. refactor(enrollment): check for existing group funding source first

    this is instead of catching the 409 response code
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    33b0efc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0ee7251 View commit details
    Browse the repository at this point in the history
  7. feat(settings): app time zone is America/Los_Angeles

    see https://docs.djangoproject.com/en/5.0/ref/settings/#std-setting-TIME_ZONE
    
    > Note that this isn’t necessarily the time zone of the server.
    > When USE_TZ is True, this is the default time zone that Django will use to display datetimes in templates
    > and to interpret datetimes entered in forms.
    thekaveman authored and angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    0e6b8a9 View commit details
    Browse the repository at this point in the history
  8. feat: implement expiration date calculation

    use `django.utils.timezone` for access to the TIME_ZONE setting.
    
    the business logic is to set the expiration date as midnight in Pacific
    Time of the (N+1)th day, where N is the value of `expiration_days`.
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    245d484 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6ae8416 View commit details
    Browse the repository at this point in the history
  10. feat: implement scenario - supports expiration, but no expiration

    this is an unlikely but possible scenario
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    2be2891 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    1757d3b View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    df49eea View commit details
    Browse the repository at this point in the history
  13. feat: implement helper function to indicate being within reenrollment

    also add view test for this scenario
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    d43a265 View commit details
    Browse the repository at this point in the history
  14. chore: raise error for a scenario that cannot be implemented yet

    we want to remove the expiration date for the scenario of expiration is
    not supported and yet there is an expiration date.
    
    this functionality has not been implemented in cal-itp/littlepay, nor
    have we confirmed that it is possible
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    4fa50a7 View commit details
    Browse the repository at this point in the history
  15. feat: implement scenario - supports expiration, not expired yet

    leave view function and template for #1921 to implement
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    768e3ea View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    945e4c0 View commit details
    Browse the repository at this point in the history
  17. test: make assertion about expiry date more specific

    we know that we should be using the value from session.enrollment_expiry
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    25f6d38 View commit details
    Browse the repository at this point in the history
  18. refactor(view): remove potentially misleading variables

    use the specific condition that is leading to the branch of code, which
    namely is if the concession expiry is None or not.
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    77bb1f8 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    f39d909 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    b9caeed View commit details
    Browse the repository at this point in the history
  21. refactor(view): remove unnecessary log statements

    similar to what was done in 5666973
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    86ea118 View commit details
    Browse the repository at this point in the history
  22. refactor(view): consolidate sending analytics event into success view

    this removes the need for any helper function
    angela-tran committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    8cb5e33 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    96ea690 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. Configuration menu
    Copy the full SHA
    479b249 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump mkdocs-material from 9.5.16 to 9.5.17

    Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.16 to 9.5.17.
    - [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
    - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
    - [Commits](squidfunk/mkdocs-material@9.5.16...9.5.17)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs-material
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    31ce83b View commit details
    Browse the repository at this point in the history
  3. chore(deps-dev): bump cypress from 13.7.1 to 13.7.2 in /tests/cypress

    Bumps [cypress](https://github.com/cypress-io/cypress) from 13.7.1 to 13.7.2.
    - [Release notes](https://github.com/cypress-io/cypress/releases)
    - [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
    - [Commits](cypress-io/cypress@v13.7.1...v13.7.2)
    
    ---
    updated-dependencies:
    - dependency-name: cypress
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    b5c3d77 View commit details
    Browse the repository at this point in the history
  4. Updated initial agency launch date for MST

    As part of the effort to backfill enrollment data from the early days of Benefits when we used the DMV for eligibility verification, @thekaveman did some research to determine the date of our official deployment of Benefits for MST. We're using [this release](https://github.com/cal-itp/benefits/tree/2021.12.0) to denote launch. I updated the documentation accordingly.
    indexing authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    0404e24 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. Configuration menu
    Copy the full SHA
    f882c77 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    56f60a4 View commit details
    Browse the repository at this point in the history
  3. chore(deps-dev): bump sentry-sdk from 1.41.0 to 1.44.1

    Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.41.0 to 1.44.1.
    - [Release notes](https://github.com/getsentry/sentry-python/releases)
    - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
    - [Commits](getsentry/sentry-python@1.41.0...1.44.1)
    
    ---
    updated-dependencies:
    - dependency-name: sentry-sdk
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 3, 2024
    Configuration menu
    Copy the full SHA
    83c89c1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e167b5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    25e8c0e View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. chore(pre-commit): autoupdate hooks

    updates:
    - [github.com/pre-commit/pre-commit-hooks: v4.5.0 → v4.6.0](pre-commit/pre-commit-hooks@v4.5.0...v4.6.0)
    pre-commit-ci[bot] authored Apr 8, 2024
    Configuration menu
    Copy the full SHA
    4127c03 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. chore(deps-dev): bump azure-identity from 1.15.0 to 1.16.0

    Bumps [azure-identity](https://github.com/Azure/azure-sdk-for-python) from 1.15.0 to 1.16.0.
    - [Release notes](https://github.com/Azure/azure-sdk-for-python/releases)
    - [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/esrp_release.md)
    - [Commits](Azure/azure-sdk-for-python@azure-identity_1.15.0...azure-identity_1.16.0)
    
    ---
    updated-dependencies:
    - dependency-name: azure-identity
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 9, 2024
    Configuration menu
    Copy the full SHA
    77ee277 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e94e9b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7cdf5f3 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. Configuration menu
    Copy the full SHA
    c5398e8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3edd64b View commit details
    Browse the repository at this point in the history
  3. Updates to Cal-ITP Benefits product roadmap

    - Updated status labels for Q1, Q2, and Q3.
    - Moved low-income milestone forward to Q2.
    - Rearanged the order of milestones in Q2.
    indexing authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    eda5788 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    340f51e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7d54a6b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f165e2e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d62219c View commit details
    Browse the repository at this point in the history
  8. chore(deps-dev): bump django-google-sso from 6.0.2 to 6.1.1

    Bumps [django-google-sso](https://github.com/megalus/django-google-sso) from 6.0.2 to 6.1.1.
    - [Release notes](https://github.com/megalus/django-google-sso/releases)
    - [Changelog](https://github.com/megalus/django-google-sso/blob/main/CHANGELOG.md)
    - [Commits](megalus/django-google-sso@v6.0.2...v6.1.1)
    
    ---
    updated-dependencies:
    - dependency-name: django-google-sso
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    71d90b1 View commit details
    Browse the repository at this point in the history
  9. Q2 Benefits product roadmap updates

    - Commented out our milestone to enhance the Veterans pathway. The timeline for additional attributes to verify Veteran eligibility is unclear.
    - Added milestone to capture effort to improve UX for the agency card flow.
    - Updated the name of the SBMTD Mobility Pass to Reduced Fare Mobility ID.
    - Moved diagram styling to the end of the code block, as I was seeing a syntax error in another editor when it was placed before the Mermaid diagram type.
    indexing authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    d891746 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a2cd4a1 View commit details
    Browse the repository at this point in the history
  11. chore(deps-dev): bump cypress from 13.7.2 to 13.7.3 in /tests/cypress

    Bumps [cypress](https://github.com/cypress-io/cypress) from 13.7.2 to 13.7.3.
    - [Release notes](https://github.com/cypress-io/cypress/releases)
    - [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
    - [Commits](cypress-io/cypress@v13.7.2...v13.7.3)
    
    ---
    updated-dependencies:
    - dependency-name: cypress
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    017bf38 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c9e81d2 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c4babd1 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    06b5063 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. chore: update English copy for Eligibility Index body text

    this is the copy as shown in Figma
    angela-tran committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    6d17865 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f2269cb View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. chore(pre-commit): autoupdate hooks

    updates:
    - [github.com/psf/black: 24.3.0 → 24.4.0](psf/black@24.3.0...24.4.0)
    pre-commit-ci[bot] authored Apr 15, 2024
    Configuration menu
    Copy the full SHA
    68523f6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc29f91 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    141c674 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc2cb42 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6fb9782 View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump mkdocs-material from 9.5.17 to 9.5.18

    Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.17 to 9.5.18.
    - [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
    - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
    - [Commits](squidfunk/mkdocs-material@9.5.17...9.5.18)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs-material
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 16, 2024
    Configuration menu
    Copy the full SHA
    6716d5f View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2024

  1. fix: disable djlint for the form label element

    whitespace around the tag contents was causing the issue
    angela-tran committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    893fd2e View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. chore(deps): bump calitp-littlepay from 2024.3.3 to 2024.4.1

    Bumps [calitp-littlepay](https://github.com/cal-itp/littlepay) from 2024.3.3 to 2024.4.1.
    - [Release notes](https://github.com/cal-itp/littlepay/releases)
    - [Commits](cal-itp/littlepay@2024.03.3...2024.04.1)
    
    ---
    updated-dependencies:
    - dependency-name: calitp-littlepay
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 18, 2024
    Configuration menu
    Copy the full SHA
    87e0122 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    406554a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2674923 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    420fb6c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    04dea37 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    803e14c View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    f7fbf80 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c2652f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2d6b985 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a1aaf48 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e163643 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    84b0c8b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    733962d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    919530d View commit details
    Browse the repository at this point in the history
  9. refactor(enrollment): retry responds to GET and POST

    this change simplifies the view logic and updates the corresponding tests
    
    throwing an error on GET is unnecessary: the behavior was a kind of an
    assertion on how the user got to the /retry route, but in fact it doesn't
    really matter if they made a GET or POST. Supporting GET makes testing
    the route easier too.
    thekaveman committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    3594df4 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a6bf318 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. chore(deps-dev): bump cypress from 13.7.3 to 13.8.1 in /tests/cypress

    Bumps [cypress](https://github.com/cypress-io/cypress) from 13.7.3 to 13.8.1.
    - [Release notes](https://github.com/cypress-io/cypress/releases)
    - [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
    - [Commits](cypress-io/cypress@v13.7.3...v13.8.1)
    
    ---
    updated-dependencies:
    - dependency-name: cypress
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    22ccf75 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. chore: Revert "Feat: enrollments can expire (#1989)"

    This reverts commit 479b249, reversing
    changes made to 96ea690.
    angela-tran committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    5961eec View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    b6b0f66 View commit details
    Browse the repository at this point in the history
  2. chore: update copy for MST and SBMTD forms

    leave name_helper_text for separate commit
    angela-tran committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    502b297 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5af4404 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b5fcac1 View commit details
    Browse the repository at this point in the history
  5. style: update form field header styles

    letter-spacing was already correct
    angela-tran committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    acfd860 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    88a7624 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    fc26696 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6199045 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    433e119 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ffc2f60 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    ea4407b View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    4e09f0a View commit details
    Browse the repository at this point in the history
  13. chore(deps-dev): bump django from 5.0.3 to 5.0.4

    Bumps [django](https://github.com/django/django) from 5.0.3 to 5.0.4.
    - [Commits](django/django@5.0.3...5.0.4)
    
    ---
    updated-dependencies:
    - dependency-name: django
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    619801e View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    db310ef View commit details
    Browse the repository at this point in the history
  15. chore(deps): bump django-google-sso from 6.1.1 to 6.2.0

    Bumps [django-google-sso](https://github.com/megalus/django-google-sso) from 6.1.1 to 6.2.0.
    - [Release notes](https://github.com/megalus/django-google-sso/releases)
    - [Changelog](https://github.com/megalus/django-google-sso/blob/main/CHANGELOG.md)
    - [Commits](megalus/django-google-sso@v6.1.1...v6.2.0)
    
    ---
    updated-dependencies:
    - dependency-name: django-google-sso
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    19df1b4 View commit details
    Browse the repository at this point in the history
  16. feat(form): set custom validation message for Eligibility Confirm fields

    event listeners on the inputs and form check validity and set a custom
    message if the input is not valid.
    
    the custom message is defined as a data attribute on the input element.
    angela-tran committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    5283517 View commit details
    Browse the repository at this point in the history
  17. chore: remove unused error message dict

    this should've been removed in #1022
    angela-tran committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    922673f View commit details
    Browse the repository at this point in the history
  18. test: add coverage of agency-specific forms

    the data is such that would pass browser validation
    angela-tran committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    a31da91 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    a2c15d8 View commit details
    Browse the repository at this point in the history
  20. refactor: remove adding change listeners from form fields

    this behavior is not included in product requirements
    angela-tran committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    1e5f7f7 View commit details
    Browse the repository at this point in the history
  21. refactor(form): use more reliable method of getting elements to validate

    query for elements with the 'data-custom-validity' attribute instead of
    trying to use form fields.
    
    the eligibility index for example only has 1 field with 4 inputs.
    angela-tran committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    a6c365d View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    ead179b View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    1721a44 View commit details
    Browse the repository at this point in the history
  24. refactor: use variable set on the form itself to enable custom validity

    instead of specifying it in the template
    angela-tran committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    ccff754 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    c48e898 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    b5bfd7f View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    dd3bd7a View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    ea0dbea View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    58e5336 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    3f6b312 View commit details
    Browse the repository at this point in the history
  31. chore(deps): bump mkdocs-material from 9.5.18 to 9.5.19

    Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.18 to 9.5.19.
    - [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
    - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
    - [Commits](squidfunk/mkdocs-material@9.5.18...9.5.19)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs-material
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and thekaveman committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    eb3b944 View commit details
    Browse the repository at this point in the history
  32. chore(deps): bump mkdocs from 1.5.3 to 1.6.0

    Bumps [mkdocs](https://github.com/mkdocs/mkdocs) from 1.5.3 to 1.6.0.
    - [Release notes](https://github.com/mkdocs/mkdocs/releases)
    - [Commits](mkdocs/mkdocs@1.5.3...1.6.0)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and thekaveman committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    1ef446a View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    44c720e View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    bbc7d7f View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    bbb81d4 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. feat(enrollment): success page displays expiration date if any

    with the TIME_ZONE='America/Los_Angeles' setting, Django will display
    the expiration date in that time zone
    
    Django automatically formats the date according to the user's locale
    (e.g. 'en' or 'es')
    
    turned off djlint around this section because the different <p> tags in
    branches of the {% if %} block was throwing errors and causing weird formatting"
    thekaveman committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    ab3055b View commit details
    Browse the repository at this point in the history
  2. style: desktop spacing on enrollment success

    align with the 8-point grid and updated comps in Figma
    thekaveman committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    01c52c9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cb42683 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    77e9e65 View commit details
    Browse the repository at this point in the history
  5. chore(deps): bump sentry-sdk from 1.44.1 to 2.0.1

    Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.44.1 to 2.0.1.
    - [Release notes](https://github.com/getsentry/sentry-python/releases)
    - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
    - [Commits](getsentry/sentry-python@1.44.1...2.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: sentry-sdk
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    01e74d1 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    f21ec32 View commit details
    Browse the repository at this point in the history
  2. chore(pre-commit): autoupdate hooks

    updates:
    - [github.com/psf/black: 24.4.0 → 24.4.2](psf/black@24.4.0...24.4.2)
    pre-commit-ci[bot] authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    cd1b0f2 View commit details
    Browse the repository at this point in the history
  3. test(locale): DATE_FORMAT results in expected str

    adding a few init files here to get test discovery to work with the
    new locale directories
    thekaveman committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    9cdacdc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fecc1cc View commit details
    Browse the repository at this point in the history
  5. chore(deps): bump mkdocs-material from 9.5.19 to 9.5.20

    Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.19 to 9.5.20.
    - [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
    - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
    - [Commits](squidfunk/mkdocs-material@9.5.19...9.5.20)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs-material
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    a02ae01 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6820fca View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. Configuration menu
    Copy the full SHA
    26868df View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7b28386 View commit details
    Browse the repository at this point in the history
  3. feat: implement agency-card-specific templates for unverified view

    the call-to-action takes the user back to the confirm form.
    angela-tran committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    58fd085 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3240003 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6ad6894 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2024

  1. Configuration menu
    Copy the full SHA
    7a58def View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2c5642 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1262a4d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7ab28db View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4227af6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2e048be View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bac56cd View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1bbc20c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c9d4716 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Configuration menu
    Copy the full SHA
    7c45fec View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    718956d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    609a6d2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8de9c1a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3da4597 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0b5d73d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5de64d8 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f94f691 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9b2b180 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    121b852 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    03132c4 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ceb351e View commit details
    Browse the repository at this point in the history

Commits on May 3, 2024

  1. fix(models): allow SecretNameField to be blank

    since it is not a required field on many models
    
    overriding blank=False made it so a model could not be
    saved in the Admin without providing a value
    thekaveman committed May 3, 2024
    Configuration menu
    Copy the full SHA
    20ce4c2 View commit details
    Browse the repository at this point in the history
  2. fix(models): override display string for AuthProvider

    so it gets a more normal label in Admin screens
    thekaveman committed May 3, 2024
    Configuration menu
    Copy the full SHA
    9915910 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7cf6349 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9715ee1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3061000 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3d80f1e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4d08c63 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    497acdb View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

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

Commits on May 7, 2024

  1. chore(deps): bump django from 5.0.4 to 5.0.6

    Bumps [django](https://github.com/django/django) from 5.0.4 to 5.0.6.
    - [Commits](django/django@5.0.4...5.0.6)
    
    ---
    updated-dependencies:
    - dependency-name: django
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored May 7, 2024
    Configuration menu
    Copy the full SHA
    c4795e7 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    de9feca View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump mkdocs-material from 9.5.20 to 9.5.22

    Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.20 to 9.5.22.
    - [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
    - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
    - [Commits](squidfunk/mkdocs-material@9.5.20...9.5.22)
    
    ---
    updated-dependencies:
    - dependency-name: mkdocs-material
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored May 13, 2024
    Configuration menu
    Copy the full SHA
    4a6d484 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. fix(ci): correct syntax in field update step

    uses underscores, not dashes
    thekaveman authored May 14, 2024
    Configuration menu
    Copy the full SHA
    f5e4417 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cba5e3c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    61b6819 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d060bd6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b004ddb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    28d2590 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    955541e View commit details
    Browse the repository at this point in the history
  8. chore(deps-dev): bump cypress from 13.8.1 to 13.9.0 in /tests/cypress

    Bumps [cypress](https://github.com/cypress-io/cypress) from 13.8.1 to 13.9.0.
    - [Release notes](https://github.com/cypress-io/cypress/releases)
    - [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
    - [Commits](cypress-io/cypress@v13.8.1...v13.9.0)
    
    ---
    updated-dependencies:
    - dependency-name: cypress
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and thekaveman committed May 14, 2024
    Configuration menu
    Copy the full SHA
    6e87495 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fc121bd View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    baabcaa View commit details
    Browse the repository at this point in the history
  11. chore(deps): bump sentry-sdk from 2.0.1 to 2.1.1

    Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 2.0.1 to 2.1.1.
    - [Release notes](https://github.com/getsentry/sentry-python/releases)
    - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
    - [Commits](getsentry/sentry-python@2.0.1...2.1.1)
    
    ---
    updated-dependencies:
    - dependency-name: sentry-sdk
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and thekaveman committed May 14, 2024
    Configuration menu
    Copy the full SHA
    4d179a2 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9fd721b View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Configuration menu
    Copy the full SHA
    ac0d748 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    13286a4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    71283ac View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2311f5a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5a9f547 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7e16841 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    43bd7d9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a47456e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    003f2bf View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5a63331 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    52d32c5 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    324c322 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    ea2b1a8 View commit details
    Browse the repository at this point in the history