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

Update b2c and multi-tenant docs for pydantic v2 #154

This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 14, 2021

  1. - Fix broken URL in README.md

    - Better description in pyproject.toml
    JonasKs committed Aug 14, 2021
    Configuration menu
    Copy the full SHA
    03130cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7fcace8 View commit details
    Browse the repository at this point in the history
  3. Add codecov.yml

    JonasKs committed Aug 14, 2021
    Configuration menu
    Copy the full SHA
    33e4427 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bafd4fa View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2021

  1. Configuration menu
    Copy the full SHA
    ec70e05 View commit details
    Browse the repository at this point in the history
  2. Add py.typed. Closes Intility#9

    JonasKs committed Aug 15, 2021
    Configuration menu
    Copy the full SHA
    23e9dcb View commit details
    Browse the repository at this point in the history
  3. Add docs

    JonasKs committed Aug 15, 2021
    Configuration menu
    Copy the full SHA
    fd2d48c View commit details
    Browse the repository at this point in the history
  4. Merge pull request Intility#8 from Intility/request_user

    Request user attached to the request
    JonasKs committed Aug 15, 2021
    Configuration menu
    Copy the full SHA
    33d2e43 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2021

  1. - Improve how key to validate token is chosen, based on kid.

    - Add a testcase for when an evil token is provided, but with the correct `kid`.
    JonasKs committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    bc27616 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2021

  1. Configuration menu
    Copy the full SHA
    158885a View commit details
    Browse the repository at this point in the history
  2. Versionbump 1.1.1

    JonasKs committed Aug 17, 2021
    Configuration menu
    Copy the full SHA
    2c2f3b8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3619255 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    af8ac45 View commit details
    Browse the repository at this point in the history
  5. Merge pull request Intility#10 from Intility/improve_signature_loop

    Signature loop improvement
    JonasKs committed Aug 17, 2021
    Configuration menu
    Copy the full SHA
    6ab060b View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2021

  1. - Remove app parameter from AzureAuthorizationCodeBearer. This re…

    …quires the user to do some more configuration, but makes dependencies easier to make without circular imports
    
    - Add documentation and examples on how to do role checking
    - `AzureAuthorizationCodeBearer` now returns a User object
    - Add docs on how to load provider config on startup
    JonasKs committed Aug 18, 2021
    Configuration menu
    Copy the full SHA
    2199af6 View commit details
    Browse the repository at this point in the history
  2. - v2.0.0 bump

    - Add URL to image in README, for PyPI
    JonasKs committed Aug 18, 2021
    Configuration menu
    Copy the full SHA
    9eb1867 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    18c3257 View commit details
    Browse the repository at this point in the history
  4. Merge pull request Intility#11 from Intility/remove_app_from_init

    v2: Remove `app` parameter from AzureAuthorizationCodeBearer, dependency now returns a User object
    JonasKs committed Aug 18, 2021
    Configuration menu
    Copy the full SHA
    146de7d View commit details
    Browse the repository at this point in the history
  5. Fix formatting in README.md

    JonasKs committed Aug 18, 2021
    Configuration menu
    Copy the full SHA
    649146c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    abf8193 View commit details
    Browse the repository at this point in the history
  7. Merge pull request Intility#12 from Intility/support_claims_without_upn

    Make `upn` optional to support Client Credential Flow
    JonasKs committed Aug 18, 2021
    Configuration menu
    Copy the full SHA
    c8957bb View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2021

  1. Create codeql-analysis.yml

    JonasKs committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    d1c30b9 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2021

  1. v3.0.0 TLDR: Add v2 token support for single-tenant applications, a…

    …dd multi-tenant support.
    
    **Multi-tenant support:**
    - Support for multi-tenant applications
    - Takes a coroutine to fetch valid `iss` for given `tid`
    
    **Single-tenant features:**
    - Support for v2 tokens for single-tenant applications
    - User object is reworked, and now also contains the access_token for easier Azure Graph implementation
    
    **Removal:**
    - `allow_guest_users` setting is removed. This can be done in Azure AD instead. (Also removal of `GuestUserException`)
    
    **Other:**
    - Add SECURITY.md
    - Relax aiohttp requirement
    - Move `InvalidAuth` to `exceptions.py`
    - Add role check example in demo project
    - Add `iss` fetcher example in demo project
    - No longer inheriting `OAuth2AuthorizationCodeBearer`, solving mypy errors.
    - Rename `provider_config.py` to `openid_config.py` and `ProviderConfig()` to `OpenIdConfig()`
    - Removal of pre-instance of `provider_config` due to OpenAPI authorization URL issues. This is now instanced on `SingleTenantAzureAuthorizationCodeBearer` or `MultiTenantAzureAuthorizationCodeBearer`.
    
    **Tests:**
    - 100% codecov for v1 and v2 single-tenant applications
    - 99% codecov for openid_config
    
    **TODO:**
    - Documentation needs full rewrite
    - Tests for multi-tenant
    - Test for `openid_config` `app_id`
    JonasKs committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    b09283b View commit details
    Browse the repository at this point in the history
  2. Fix broken image URL

    JonasKs committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    a47ce46 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a4627ed View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ce71956 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2021

  1. - Add support for denying requests with wrong scopes, when `Securit…

    …y()` (instead of `Depends()`)
    
    - Fix missing `Authorize` button in OpenAPI documentation
      - Add tests for OpenAPI documentation, so this won't happen again.
    JonasKs committed Aug 28, 2021
    Configuration menu
    Copy the full SHA
    7574710 View commit details
    Browse the repository at this point in the history
  2. - Rework test structure

    - Add single-tenant tests for multi-tenant
    JonasKs committed Aug 28, 2021
    Configuration menu
    Copy the full SHA
    afe01ba View commit details
    Browse the repository at this point in the history
  3. Add tests for settings. Remove unnessescary checks now that we use cl…

    …sas inheritance for the different app types
    JonasKs committed Aug 28, 2021
    Configuration menu
    Copy the full SHA
    ba7a013 View commit details
    Browse the repository at this point in the history
  4. - Add test for iss_callable raising exception

    - Add test for validate_iss=False
    JonasKs committed Aug 28, 2021
    Configuration menu
    Copy the full SHA
    114b9a7 View commit details
    Browse the repository at this point in the history
  5. Add issue templates

    (SECURITY.MD will be merged when the multi-tenant branch is merged.)
    JonasKs committed Aug 28, 2021
    Configuration menu
    Copy the full SHA
    f71102a View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2021

  1. Configuration menu
    Copy the full SHA
    d53fc71 View commit details
    Browse the repository at this point in the history
  2. Add docs structure

    JonasKs committed Aug 29, 2021
    Configuration menu
    Copy the full SHA
    94494d6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request Intility#15 from Intility/issue-templates

    Add issue templates
    JonasKs committed Aug 29, 2021
    Configuration menu
    Copy the full SHA
    acb343f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b0e4b35 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2021

  1. Configuration menu
    Copy the full SHA
    81dd30c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    febc079 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d65459c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2b48ec5 View commit details
    Browse the repository at this point in the history
  5. Multi-tenant docs written

    JonasKs committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    0afc52e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    269fc30 View commit details
    Browse the repository at this point in the history
  7. Add docs for settings

    JonasKs committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    a03afdc View commit details
    Browse the repository at this point in the history
  8. Version 3.0.0

    JonasKs committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    1fff164 View commit details
    Browse the repository at this point in the history
  9. Add docs for role checking

    JonasKs committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    5e75a42 View commit details
    Browse the repository at this point in the history
  10. Merge pull request Intility#16 from Intility/multi_tenant_rewrite

    Add `v2` token support for single-tenant applications, add multi-tenant support and a whole lot of other things
    JonasKs committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    5a8bd10 View commit details
    Browse the repository at this point in the history
  11. Merge pull request Intility#17 from Intility/docs

    Add docs
    JonasKs committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    85cc179 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    0deb303 View commit details
    Browse the repository at this point in the history
  13. Fix broken publish_dir

    JonasKs committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    c54d4dd View commit details
    Browse the repository at this point in the history
  14. Fix broken publish_dir

    JonasKs committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    1578023 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    cf9a8e0 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2021

  1. Configuration menu
    Copy the full SHA
    68e53ea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b505d42 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    686da62 View commit details
    Browse the repository at this point in the history
  4. Fix titles in docs

    Version 3.0.0
    JonasKs committed Sep 1, 2021
    Configuration menu
    Copy the full SHA
    cbce7f9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8a2900f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    31dd11d View commit details
    Browse the repository at this point in the history
  7. Merge pull request Intility#19 from Intility/3.0.0-docs

    Docs and versionbump to 3.0.0, preparing for 3.0.0 release
    JonasKs committed Sep 1, 2021
    Configuration menu
    Copy the full SHA
    cdac03c View commit details
    Browse the repository at this point in the history
  8. Minor visual fixes on docs

    JonasKs committed Sep 1, 2021
    Configuration menu
    Copy the full SHA
    19b9ae0 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fc7f6c4 View commit details
    Browse the repository at this point in the history
  10. Rework badges

    JonasKs committed Sep 1, 2021
    Configuration menu
    Copy the full SHA
    7e0f9bd View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2021

  1. Add logo to README.md

    Add re-export of imports in __iniy__.py. This solves mypy errors for library users using `--no-implicit-reexport`.
    JonasKs committed Sep 3, 2021
    Configuration menu
    Copy the full SHA
    8663c82 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2021

  1. Fix typing inconsistency

    JonasKs committed Sep 6, 2021
    Configuration menu
    Copy the full SHA
    f953ff0 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2021

  1. Rewrite description

    JonasKs committed Sep 11, 2021
    Configuration menu
    Copy the full SHA
    63925c0 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2021

  1. Update auth.py

    * Correct scheme name
    sondrelg committed Sep 12, 2021
    Configuration menu
    Copy the full SHA
    6a6b865 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#20 from sondrelg/patch-1

    Update typo in auth.py
    JonasKs committed Sep 12, 2021
    Configuration menu
    Copy the full SHA
    621636e View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2021

  1. Closes Intility#21. Minor changes to the docs will make it even easie…

    …r to adopt the package.
    daniwk committed Sep 19, 2021
    Configuration menu
    Copy the full SHA
    ac544ca View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2021

  1. Configuration menu
    Copy the full SHA
    488bfb6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    50c35ed View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2021

  1. Update the _types module to primitives types

    This is a change in the way the hazmat section of the cryptography module is organized. This fixes the error received when using the most up to date version of cryptography (at the date of writing).
    bmoore committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    704542c View commit details
    Browse the repository at this point in the history
  2. Update pyproject.toml

    incrementing to v35.0.0 or higher.
    bmoore committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    82a122e View commit details
    Browse the repository at this point in the history
  3. Updated venv with -3. Explicitly defined cryptography package in toml…

    … since it is directly imported in project files.
    bmooreatliberty committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    73e21aa View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    daaefa1 View commit details
    Browse the repository at this point in the history
  5. Merge pull request Intility#26 from bmoore/patch-1

    Update the _types module to primitives types
    JonasKs committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    980754c View commit details
    Browse the repository at this point in the history
  6. Version 3.0.1

    JonasKs committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    de756c2 View commit details
    Browse the repository at this point in the history
  7. Merge pull request Intility#27 from Intility/v3.0.1

    Version 3.0.1
    JonasKs committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    1aba500 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2021

  1. Updating version range due to strict fastapi req

    Getting an error now that FastAPI had 2 minor patch releases yesterday.
    bmoore committed Oct 8, 2021
    Configuration menu
    Copy the full SHA
    defab21 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2021

  1. Configuration menu
    Copy the full SHA
    c0dd545 View commit details
    Browse the repository at this point in the history
  2. Bump version 3.0.2

    JonasKs committed Oct 10, 2021
    Configuration menu
    Copy the full SHA
    3212613 View commit details
    Browse the repository at this point in the history
  3. Merge pull request Intility#28 from bmoore/patch-2

    Updating version range due to strict fastapi req
    JonasKs committed Oct 10, 2021
    Configuration menu
    Copy the full SHA
    fffda90 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2021

  1. Fix fastapi versioning.

    Handle restriction in fastapi versioning since they are pre 1.0.0 release.
    
    The previous change was incorrect in the way python handles ^versions. I believe this should be reasonable enough without lurching things towards a breaking change.
    bmoore committed Oct 12, 2021
    Configuration menu
    Copy the full SHA
    a1adaad View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#30 from bmoore/patch-3

    Fix fastapi versioning.
    JonasKs committed Oct 12, 2021
    Configuration menu
    Copy the full SHA
    7dd8fc6 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2021

  1. v3.0.3

    JonasKs committed Oct 13, 2021
    Configuration menu
    Copy the full SHA
    578d70b View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2021

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

Commits on Oct 20, 2021

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

Commits on Oct 23, 2021

  1. - Support trio by replacing aiohttp with httpx

    - Remove unused `end_session_endpoint`
    - Rewrite tests
    JonasKs committed Oct 23, 2021
    Configuration menu
    Copy the full SHA
    975b9e7 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2021

  1. Configuration menu
    Copy the full SHA
    812cefa View commit details
    Browse the repository at this point in the history
  2. Version 3.1.0

    JonasKs committed Oct 24, 2021
    Configuration menu
    Copy the full SHA
    d2fae20 View commit details
    Browse the repository at this point in the history
  3. Fix codeql scan

    JonasKs committed Oct 24, 2021
    Configuration menu
    Copy the full SHA
    d1067dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6788d1c View commit details
    Browse the repository at this point in the history
  5. Merge pull request Intility#35 from Intility/codeql

    Fix codeql scan
    JonasKs committed Oct 24, 2021
    Configuration menu
    Copy the full SHA
    ebd2467 View commit details
    Browse the repository at this point in the history
  6. Merge pull request Intility#34 from Intility/trio

    Trio support
    JonasKs committed Oct 24, 2021
    Configuration menu
    Copy the full SHA
    9672695 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2022

  1. Configuration menu
    Copy the full SHA
    b3a1a09 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cf8d49a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd7b10e View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2022

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

Commits on Jan 15, 2022

  1. Configuration menu
    Copy the full SHA
    3612256 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea0523b View commit details
    Browse the repository at this point in the history
  3. Fix typing in docs

    JonasKs committed Jan 15, 2022
    Configuration menu
    Copy the full SHA
    44cfcee View commit details
    Browse the repository at this point in the history
  4. Merge pull request Intility#44 from bkmetzler/auto_error

    Implement `auto_error` flag - Resolves Intility#43
    JonasKs committed Jan 15, 2022
    Configuration menu
    Copy the full SHA
    3851f49 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2022

  1. support for B2C tokens

    - changed key construction to be generic, instead of depending on x5c
    field
    - added an option openid_config parameter
    robteeuwen committed Feb 7, 2022
    Configuration menu
    Copy the full SHA
    f2d7dca View commit details
    Browse the repository at this point in the history
  2. added n and e to mock keys for testing

    - this doesn't fix all the tests yet
    robteeuwen committed Feb 7, 2022
    Configuration menu
    Copy the full SHA
    656f565 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2022

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

    JonasKs committed Feb 8, 2022
    Configuration menu
    Copy the full SHA
    c0a8bb3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dadfdf9 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2022

  1. Add CONTRIBUTING.md

    JonasKs committed Mar 2, 2022
    Configuration menu
    Copy the full SHA
    cbea5eb View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2022

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

    JonasKs committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    4bfcbfe View commit details
    Browse the repository at this point in the history
  3. Version bump

    JonasKs committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    f5f0f38 View commit details
    Browse the repository at this point in the history
  4. Merge pull request Intility#50 from ravaszf/fix/typing-error

    Fix Python 3.9.0/3.9.1 error, changing Callable import from `collections.abc` to `typing` library
    JonasKs committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    1e09d3d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3493b95 View commit details
    Browse the repository at this point in the history
  6. Documentation maintenance (Intility#51) @h3rmanj

    * Documentation maintenance
    
    Update docusaurus to latest release
    Use node v16
    Bump actions/setup-node
    
    * Remove docs lockfile
    
    Avoids large line changes in commits
    Also harden deps in package.json
    Run npm install instead of ci when publishing
    h3rmanj committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    3229cce View commit details
    Browse the repository at this point in the history
  7. Add dependabot.yml

    h3rmanj committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    442ab6f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e610908 View commit details
    Browse the repository at this point in the history
  9. Merge pull request Intility#52 from Intility/dependabot

    Add dependabot.yml
    h3rmanj committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    8f30ffb View commit details
    Browse the repository at this point in the history
  10. Bump actions/setup-python from 2 to 3

    Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 3.
    - [Release notes](https://github.com/actions/setup-python/releases)
    - [Commits](actions/setup-python@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-python
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    0e8fcd8 View commit details
    Browse the repository at this point in the history
  11. Bump pytest-asyncio from 0.14.0 to 0.18.2

    Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 0.14.0 to 0.18.2.
    - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
    - [Commits](pytest-dev/pytest-asyncio@v0.14.0...v0.18.2)
    
    ---
    updated-dependencies:
    - dependency-name: pytest-asyncio
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    78d2d5d View commit details
    Browse the repository at this point in the history
  12. Merge pull request Intility#59 from Intility/1adcdependabot/pip/pytes…

    …t-asyncio-0.18.2
    
    Bump pytest-asyncio from 0.14.0 to 0.18.2
    JonasKs committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    6736cdf View commit details
    Browse the repository at this point in the history
  13. Merge pull request Intility#54 from Intility/db3edependabot/github_ac…

    …tions/actions/setup-python-3
    
    Bump actions/setup-python from 2 to 3
    JonasKs committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    c017f55 View commit details
    Browse the repository at this point in the history
  14. Bump actions/checkout from 2 to 3

    Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    c9fc2cb View commit details
    Browse the repository at this point in the history
  15. Bump uvicorn from 0.14.0 to 0.17.5

    Bumps [uvicorn](https://github.com/encode/uvicorn) from 0.14.0 to 0.17.5.
    - [Release notes](https://github.com/encode/uvicorn/releases)
    - [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md)
    - [Commits](encode/uvicorn@0.14.0...0.17.5)
    
    ---
    updated-dependencies:
    - dependency-name: uvicorn
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    5a6c51e View commit details
    Browse the repository at this point in the history
  16. Merge pull request Intility#53 from Intility/e6addependabot/github_ac…

    …tions/actions/checkout-3
    
    Bump actions/checkout from 2 to 3
    JonasKs committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    7d278e7 View commit details
    Browse the repository at this point in the history
  17. Merge pull request Intility#58 from Intility/4425dependabot/pip/uvico…

    …rn-0.17.5
    
    Bump uvicorn from 0.14.0 to 0.17.5
    JonasKs committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    2521139 View commit details
    Browse the repository at this point in the history
  18. Bump pytest from 6.2.5 to 7.0.1

    Bumps [pytest](https://github.com/pytest-dev/pytest) from 6.2.5 to 7.0.1.
    - [Release notes](https://github.com/pytest-dev/pytest/releases)
    - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
    - [Commits](pytest-dev/pytest@6.2.5...7.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: pytest
      dependency-type: direct:development
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    ceedbd7 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c632834 View commit details
    Browse the repository at this point in the history
  20. Bump pytest-cov from 2.12.1 to 3.0.0

    Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.12.1 to 3.0.0.
    - [Release notes](https://github.com/pytest-dev/pytest-cov/releases)
    - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
    - [Commits](pytest-dev/pytest-cov@v2.12.1...v3.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: pytest-cov
      dependency-type: direct:development
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    110f9ad View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    dcc79c2 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    6a05620 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2022

  1. Add test, clean up code

    JonasKs committed Mar 12, 2022
    Configuration menu
    Copy the full SHA
    cc3eb6e View commit details
    Browse the repository at this point in the history
  2. Version 3.3.0

    JonasKs committed Mar 12, 2022
    Configuration menu
    Copy the full SHA
    6987124 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    82f1f53 View commit details
    Browse the repository at this point in the history
  4. Merge pull request Intility#48 from robteeuwen/feature/b2c_support

    Feature/b2c support
    JonasKs committed Mar 12, 2022
    Configuration menu
    Copy the full SHA
    1d8e9d1 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2022

  1. Configuration menu
    Copy the full SHA
    9a89f5c View commit details
    Browse the repository at this point in the history
  2. Bump actions/cache from 2 to 3.0.1

    Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v2...v3.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Apr 3, 2022
    Configuration menu
    Copy the full SHA
    f127d9d View commit details
    Browse the repository at this point in the history
  3. Merge pull request Intility#63 from Intility/74b4dependabot/github_ac…

    …tions/actions/cache-3.0.1
    dependabot[bot] committed Apr 3, 2022
    Configuration menu
    Copy the full SHA
    9119a10 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2022

  1. Graph debug branch

    JonasKs committed Apr 4, 2022
    Configuration menu
    Copy the full SHA
    41d7838 View commit details
    Browse the repository at this point in the history
  2. Close Intility#62, Intility#61, Intility#45, Intility#40

      - Intility#62: Tutorial on how to use Python to interact with your APIs
      - Intility#61: Tutorial on how to access user attributes in your APIs
      - Intility#45: Added a page that explains how to solve admin consent when
        signing in. Thank you @bkmetzler
      - Intility#40: Add tutorial on how to set up and use Graph APIs using the On
        Behalf Flow. Thank you @u-iandono & @h3rmanj
    - Add graph endpoint example
    JonasKs committed Apr 4, 2022
    Configuration menu
    Copy the full SHA
    1c21480 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    771bebf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7806bd7 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2022

  1. Fix spelling error in docs

    JonasKs committed Apr 11, 2022
    Configuration menu
    Copy the full SHA
    a4605a6 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2022

  1. Remove package-lock.json

    JonasKs committed Apr 13, 2022
    Configuration menu
    Copy the full SHA
    4115578 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    04e2e98 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1c6c994 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2022

  1. Configuration menu
    Copy the full SHA
    9beb4dd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    89a0add View commit details
    Browse the repository at this point in the history
  3. Updated package version

    manupatel007 committed Apr 28, 2022
    Configuration menu
    Copy the full SHA
    9e9679f View commit details
    Browse the repository at this point in the history
  4. Merge pull request Intility#75 from manupatel007/support-python-3.8

    Support Python 3.8
    JonasKs committed Apr 28, 2022
    Configuration menu
    Copy the full SHA
    92fdbbc View commit details
    Browse the repository at this point in the history

Commits on May 1, 2022

  1. Bump actions/cache from 3.0.1 to 3.0.2

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.1 to 3.0.2.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.1...v3.0.2)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 1, 2022
    Configuration menu
    Copy the full SHA
    51ef16e View commit details
    Browse the repository at this point in the history
  2. Bump codecov/codecov-action from 2 to 3

    Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2 to 3.
    - [Release notes](https://github.com/codecov/codecov-action/releases)
    - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
    - [Commits](codecov/codecov-action@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: codecov/codecov-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 1, 2022
    Configuration menu
    Copy the full SHA
    15a873d View commit details
    Browse the repository at this point in the history
  3. Bump github/codeql-action from 1 to 2

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 1, 2022
    Configuration menu
    Copy the full SHA
    52c394d View commit details
    Browse the repository at this point in the history
  4. Merge pull request Intility#76 from Intility/cf87dependabot/github_ac…

    …tions/actions/cache-3.0.2
    
    Bump actions/cache from 3.0.1 to 3.0.2
    JonasKs committed May 1, 2022
    Configuration menu
    Copy the full SHA
    bcbc9a9 View commit details
    Browse the repository at this point in the history
  5. Merge pull request Intility#77 from Intility/7310dependabot/github_ac…

    …tions/codecov/codecov-action-3
    
    Bump codecov/codecov-action from 2 to 3
    JonasKs committed May 1, 2022
    Configuration menu
    Copy the full SHA
    1fb5c97 View commit details
    Browse the repository at this point in the history
  6. Merge pull request Intility#78 from Intility/aae9dependabot/github_ac…

    …tions/github/codeql-action-2
    
    Bump github/codeql-action from 1 to 2
    JonasKs committed May 1, 2022
    Configuration menu
    Copy the full SHA
    3c6cf79 View commit details
    Browse the repository at this point in the history
  7. Updated docs for py3.8

    manupatel007 committed May 1, 2022
    Configuration menu
    Copy the full SHA
    3bc9ce9 View commit details
    Browse the repository at this point in the history
  8. minor version update

    manupatel007 committed May 1, 2022
    Configuration menu
    Copy the full SHA
    a5119d5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    592a647 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2022

  1. Bump actions/cache from 3.0.2 to 3.0.3

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.0.3.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.2...v3.0.3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    e1fb38e View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2022

  1. Merge pull request Intility#83 from Intility/efbadependabot/github_ac…

    …tions/actions/cache-3.0.3
    JonasKs committed Jun 2, 2022
    Configuration menu
    Copy the full SHA
    c52e221 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

  1. Configuration menu
    Copy the full SHA
    84eb1b1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#84 from piotrgredowski/patch-1

    Fix wrong import in docs
    JonasKs committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    6585f78 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2022

  1. fix(ci): caching

    JonasKs committed Jun 8, 2022
    Configuration menu
    Copy the full SHA
    9bda2f0 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2022

  1. Bump actions/setup-python from 3 to 4

    Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 4.
    - [Release notes](https://github.com/actions/setup-python/releases)
    - [Commits](actions/setup-python@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-python
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    bc69446 View commit details
    Browse the repository at this point in the history
  2. Bump actions/cache from 3.0.3 to 3.0.4

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.3 to 3.0.4.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.3...v3.0.4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    2de2082 View commit details
    Browse the repository at this point in the history
  3. Merge pull request Intility#91 from Intility/da0adependabot/github_ac…

    …tions/actions/setup-python-4
    
    Bump actions/setup-python from 3 to 4
    JonasKs committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    b7a284f View commit details
    Browse the repository at this point in the history
  4. Merge pull request Intility#92 from Intility/1a49dependabot/github_ac…

    …tions/actions/cache-3.0.4
    
    Bump actions/cache from 3.0.3 to 3.0.4
    JonasKs committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    1923289 View commit details
    Browse the repository at this point in the history
  5. WIP

    Kristiyan Tashev committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    6ca5622 View commit details
    Browse the repository at this point in the history
  6. Working Solution

    Kristiyan Tashev committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    b9d363b View commit details
    Browse the repository at this point in the history
  7. Add some tests.

    Kristiyan Tashev committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    22e7513 View commit details
    Browse the repository at this point in the history
  8. Run linters.

    Kristiyan Tashev committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    9a62c3c View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2022

  1. Fix Unittests and Refactor the code a bit.

    Kristiyan Tashev committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    444cf11 View commit details
    Browse the repository at this point in the history
  2. Fix imports

    Kristiyan Tashev committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    b7be955 View commit details
    Browse the repository at this point in the history
  3. Refactor the code.

    Kristiyan Tashev committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    e9b7f6a View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2022

  1. Fix imports

    Kristiyan Tashev committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    b2cbc60 View commit details
    Browse the repository at this point in the history
  2. Fix imports v2 all imports should be from main folder.

    Kristiyan Tashev committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    1b9f9bc View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2022

  1. Fix comments by PR

    Kristiyan Tashev committed Jul 5, 2022
    Configuration menu
    Copy the full SHA
    721879c View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2022

  1. Merge pull request Intility#93 from kristiqntashev/b2c_multi

    Working Solution for B2C MultiTenant
    JonasKs committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    8d1bec9 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2022

  1. Configuration menu
    Copy the full SHA
    9a36967 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#96 from marcinplatek/b2c

    Set tid as optional in the User model
    JonasKs committed Jul 8, 2022
    Configuration menu
    Copy the full SHA
    bd2f622 View commit details
    Browse the repository at this point in the history
  3. bump version

    JonasKs committed Jul 8, 2022
    Configuration menu
    Copy the full SHA
    e5e2c3f View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2022

  1. Bump actions/cache from 3.0.4 to 3.0.5

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.4 to 3.0.5.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.4...v3.0.5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    a697f02 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2022

  1. Merge pull request Intility#98 from Intility/6883dependabot/github_ac…

    …tions/actions/cache-3.0.5
    JonasKs committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    b33b43c View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

  1. Bump actions/cache from 3.0.5 to 3.0.8

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.5 to 3.0.8.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.5...v3.0.8)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    546535c View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#99 from Intility/400cdependabot/github_ac…

    …tions/actions/cache-3.0.8
    
    Bump actions/cache from 3.0.5 to 3.0.8
    JonasKs committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    61fd460 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

  1. Fixes README example scopes usage

    Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com>
    infomiho committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    ba61775 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#102 from infomiho/bugfix/readme-example-fix

    Fixes README example scopes usage
    JonasKs committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    780fcb5 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2022

  1. Bump actions/cache from 3.0.8 to 3.0.9

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.8 to 3.0.9.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.8...v3.0.9)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 1, 2022
    Configuration menu
    Copy the full SHA
    39540e1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#103 from Intility/044adependabot/github_a…

    …ctions/actions/cache-3.0.9
    
    Bump actions/cache from 3.0.8 to 3.0.9
    JonasKs committed Oct 1, 2022
    Configuration menu
    Copy the full SHA
    16c8c7e View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2022

  1. Bump actions/cache from 3.0.9 to 3.0.11

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.9 to 3.0.11.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.9...v3.0.11)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 1, 2022
    Configuration menu
    Copy the full SHA
    dacf6fb View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#105 from Intility/ac70dependabot/github_a…

    …ctions/actions/cache-3.0.11
    JonasKs committed Nov 1, 2022
    Configuration menu
    Copy the full SHA
    b38b9ab View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2022

  1. chore: support python3.11

    JonasKs committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    09d3979 View commit details
    Browse the repository at this point in the history
  2. chore: bump dependencies

    JonasKs committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    b8c93a4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    66ad9de View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ec6014a View commit details
    Browse the repository at this point in the history
  5. Merge pull request Intility#107 from Intility/python/3.11-support

    chore: support python3.11
    JonasKs committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    0989ac5 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2023

  1. Bump actions/cache from 3.0.11 to 3.2.2

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.11 to 3.2.2.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.11...v3.2.2)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 1, 2023
    Configuration menu
    Copy the full SHA
    e38f1c9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#108 from Intility/0609dependabot/github_a…

    …ctions/actions/cache-3.2.2
    JonasKs committed Jan 1, 2023
    Configuration menu
    Copy the full SHA
    d905373 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2023

  1. Bump actions/cache from 3.2.2 to 3.2.4

    Bumps [actions/cache](https://github.com/actions/cache) from 3.2.2 to 3.2.4.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.2.2...v3.2.4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Feb 1, 2023
    Configuration menu
    Copy the full SHA
    6591309 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Intility#112 from Intility/aafddependabot/github_a…

    …ctions/actions/cache-3.2.4
    JonasKs committed Feb 1, 2023
    Configuration menu
    Copy the full SHA
    2a6b272 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2023

  1. Update poetry dev key from deprecated syntax to new group setup

    Update black to non-prerelease
    Update black python version target to match python version in project
    Update flake8 reference to new GitHub locatino
    Update isort to fix broken pre-commit on arm64 based machines
    ingvaldlorentzen committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    d466667 View commit details
    Browse the repository at this point in the history
  2. tests: fix tests

    JonasKs committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    0bf4e8a View commit details
    Browse the repository at this point in the history
  3. Merge pull request Intility#113 from ingvaldlorentzen/poetry-dev

    Poetry Dev Key Update
    JonasKs committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    e5d428c View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2023

  1. chore: uprev versions

    JonasKs committed Feb 26, 2023
    Configuration menu
    Copy the full SHA
    c7747e7 View commit details
    Browse the repository at this point in the history
  2. docs: close Intility#81

    JonasKs committed Feb 26, 2023
    Configuration menu
    Copy the full SHA
    a8484cf View commit details
    Browse the repository at this point in the history
  3. chore: uprev deps

    JonasKs committed Feb 26, 2023
    Configuration menu
    Copy the full SHA
    3f80f09 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    080a620 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2023

  1. Bump actions/cache from 3.2.4 to 3.2.6

    Bumps [actions/cache](https://github.com/actions/cache) from 3.2.4 to 3.2.6.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.2.4...v3.2.6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and JonasKs committed Mar 1, 2023
    Configuration menu
    Copy the full SHA
    8caf648 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2023

  1. docs: update guest user docs

    JonasKs committed Mar 31, 2023
    Configuration menu
    Copy the full SHA
    fde57cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b8564f7 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2023

  1. Bump actions/cache from 3.2.6 to 3.3.1

    Bumps [actions/cache](https://github.com/actions/cache) from 3.2.6 to 3.3.1.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.2.6...v3.3.1)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and JonasKs committed Apr 3, 2023
    Configuration menu
    Copy the full SHA
    79e1e21 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e6e4eac View commit details
    Browse the repository at this point in the history
  3. feat: update dependencies cryptography

    tsw025 authored and JonasKs committed Apr 3, 2023
    Configuration menu
    Copy the full SHA
    da39e3c View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2023

  1. Configuration menu
    Copy the full SHA
    e10e9b8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2cb3938 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e45246d View commit details
    Browse the repository at this point in the history
  4. add!: default deny to guest users in single- and multi-tenant

    applications (not B2C)
    docs: update docs to reflect changes
    
    BREAKING CHANGE: If you want to allow guest users, you must explicitly
    do so with the `allow_guest_user` setting
    JonasKs committed Apr 4, 2023
    Configuration menu
    Copy the full SHA
    abd309a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    932fae4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fdf2296 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    dad0c4c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    db8e9f1 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2023

  1. Add sub and oid field to user model

    enadeau authored and JonasKs committed May 1, 2023
    Configuration menu
    Copy the full SHA
    d7eae80 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65c9832 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

  1. Configuration menu
    Copy the full SHA
    9c04ff2 View commit details
    Browse the repository at this point in the history
  2. chore: version bump

    JonasKs committed May 19, 2023
    Configuration menu
    Copy the full SHA
    666ff17 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2023

  1. Include a default value for scp

    enadeau authored and JonasKs committed May 23, 2023
    Configuration menu
    Copy the full SHA
    0bd2e5c View commit details
    Browse the repository at this point in the history
  2. make scp a list of strings

    enadeau authored and JonasKs committed May 23, 2023
    Configuration menu
    Copy the full SHA
    afab853 View commit details
    Browse the repository at this point in the history
  3. chore: version bump

    JonasKs committed May 23, 2023
    Configuration menu
    Copy the full SHA
    bb1207c View commit details
    Browse the repository at this point in the history

Commits on May 29, 2023

  1. doc: fix testing example

    enadeau authored and JonasKs committed May 29, 2023
    Configuration menu
    Copy the full SHA
    4234e38 View commit details
    Browse the repository at this point in the history
  2. doc: remove the SECRET_KEY config

    enadeau authored and JonasKs committed May 29, 2023
    Configuration menu
    Copy the full SHA
    fbfab9d View commit details
    Browse the repository at this point in the history
  3. doc: fix npm build command instruction

    enadeau authored and JonasKs committed May 29, 2023
    Configuration menu
    Copy the full SHA
    a026290 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2023

  1. Fix optionals claims

    Kristiyan Tashev authored and JonasKs committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    66b2798 View commit details
    Browse the repository at this point in the history
  2. chore: version bump

    JonasKs committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    9057744 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2023

  1. fix: wrong access token required claims (Intility#139)

    * Fix optionals claims
    
    * New behaviour of pydantic
    
    * New behaviour of pydantic
    
    * fix unittest
    
    * Fix description
    
    * Fix linting
    
    ---------
    
    Co-authored-by: Kristiyan Tashev <kristiyan.tashev@gfk.com>
    Bulga-xD and Kristiyan Tashev committed Jun 24, 2023
    Configuration menu
    Copy the full SHA
    3f318a2 View commit details
    Browse the repository at this point in the history
  2. chore: version bump

    JonasKs committed Jun 24, 2023
    Configuration menu
    Copy the full SHA
    3ef26cf View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. Add support for pydantic v2 (Intility#144)

    * update dependencies
    
    * update trio to fix a test issue
    
    * fix pydantic v2 compatibility issue
    
    * add pydantic v2 to ci
    
    * setup pydantic version before fastapi version in ci
    
    * remove pydantic settings before downgrading to pydantic v1
    
    * update python patch version in ci
    
    * update pytest-aiohttp
    
    * no cover for line only run by pydantic v1
    enadeau committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    db3129a View commit details
    Browse the repository at this point in the history
  2. OpenApi schema test (Intility#143)

    * fix version comparison in skip condition
    
    * openapi_version based on fastapi version
    
    * add test to validate openapi spec
    
    * Make the generated openapi spec 3.1 compliant
    
    - Fix two operation that had the same operation id
    - Make the security scheme follow the pattern ^[a-zA-Z0-9._-]+$
    
    * only test schema for version 2 of pydantic
    
    ---------
    
    Co-authored-by: Émile Nadeau <emile.nadeau@ruv.is>
    enadeau and Émile Nadeau committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    1b88171 View commit details
    Browse the repository at this point in the history
  3. fix: make tid and oid optional to allow User validation in B2C (Intil…

    …ity#145)
    
    * fix: make  and  optional to allow User validation in B2C
    
    * fix: adjust testing the openapi schema with optional tid and oid claims
    davidhuser committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    bd5d0a0 View commit details
    Browse the repository at this point in the history
  4. chore: version bump

    JonasKs committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    9b8c65b View commit details
    Browse the repository at this point in the history
  5. move openapi-spec-validator and pydantic-settings to dev deps (Intili…

    …ty#146)
    
    * move openapi-spec-validator and pydantic-settings to dev deps
    
    * version bump
    enadeau committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    83fded6 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2023

  1. doc: add B2C user docs

    davidhuser authored and JonasKs committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    5b0dec9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    62ffb7c View commit details
    Browse the repository at this point in the history
  3. doc: fix AUTH_POLICY_NAME value to be empty

    Co-authored-by: Jonas Krüger Svensson <jonas-ks@hotmail.com>
    davidhuser and JonasKs committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    e88c0ec View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2023

  1. Configuration menu
    Copy the full SHA
    e897283 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8265735 View commit details
    Browse the repository at this point in the history
  3. chore: update pre-commit

    JonasKs committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    30114e3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dde78d6 View commit details
    Browse the repository at this point in the history
  5. chore: remove old FastAPI versions from test pipelines, people should…

    … have upgraded by now :)
    JonasKs committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    a757125 View commit details
    Browse the repository at this point in the history
  6. chore(deps): bump actions/cache from 3.3.1 to 3.3.2

    Bumps [actions/cache](https://github.com/actions/cache) from 3.3.1 to 3.3.2.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.3.1...v3.3.2)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and JonasKs committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    31587ad View commit details
    Browse the repository at this point in the history
  7. chore(deps): bump actions/checkout from 3 to 4

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and JonasKs committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    f05121b View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. Configuration menu
    Copy the full SHA
    3b15d35 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    98f4680 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    83b611f View commit details
    Browse the repository at this point in the history