Skip to content
New issue

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

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

Already on GitHub? # to your account

Bump docker/build-push-action from 2 to 4 #40

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Jan 30, 2023

  1. Support Oauth2 authentication

    With protocol plugins such as mqtt, or stomp, when
    they accept an incoming connection, immediately after,
    an internal amqp connection is created and the credentials received
    during the initial connection are passed to the internal amqp
    connection.
    
    With AMQP 1.0 plugin things are different. It only creates
    an internal amqp connection when a session is created.
    However, the full credentials, i.e. username and password are
    received during the initial connection establishment phase.
    During that phase the user is authenticated and its username is
    kept in User record.
    However, when a session is established and the plugin has to create
    an internal amqp connection, given that we are using Oauth2 backend,
    we still need to pass around the token as password. However, at this
    point we no longer have it.
    
    Therefore, to have to preserve the password. This PR suggests to
    optionally keep the token in the password attribute of the #user record
    and #auth-user record for auth backend which are token based such as
    oauth2. Other backend such as internal, http or ldap, do not need to
    preseve the initial password because to authenticate the internal
    amqp connection, they support "password-less" authentication, i.e. they
    only check the user exists.
    MarcialRosales authored and lemenkov committed Jan 30, 2023
    Configuration menu
    Copy the full SHA
    593f0aa View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2023

  1. Bump docker/build-push-action from 2 to 4

    Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2 to 4.
    - [Release notes](https://github.com/docker/build-push-action/releases)
    - [Commits](docker/build-push-action@v2...v4)
    
    ---
    updated-dependencies:
    - dependency-name: docker/build-push-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 31, 2023
    Configuration menu
    Copy the full SHA
    b204330 View commit details
    Browse the repository at this point in the history