Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mulbc/vaultPass
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.3.2
Choose a base ref
...
head repository: mulbc/vaultPass
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.3.3
Choose a head ref
  • 18 commits
  • 14 files changed
  • 4 contributors

Commits on Jan 9, 2023

  1. Allow password to be auto-filled when on a page of its own

    A number of website now prompts for username and password on separate pages, so made sure the password is auto-filled as soon as found, before trying to find the username field.
    
    Also improve the username matching algorithm.
    
    It will now consider other candidates if one is not 'visible'
    Gerard Chanekon authored and mulbc committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    ee80ebb View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2023

  1. add another common id to autofill

    SamuZad authored and mulbc committed Jan 11, 2023
    Configuration menu
    Copy the full SHA
    73bcbe2 View commit details
    Browse the repository at this point in the history
  2. fix attribute

    SamuZad authored and mulbc committed Jan 11, 2023
    Configuration menu
    Copy the full SHA
    92f1105 View commit details
    Browse the repository at this point in the history
  3. add another common id to autofill

    SamuZad authored and mulbc committed Jan 11, 2023
    Configuration menu
    Copy the full SHA
    eff82d1 View commit details
    Browse the repository at this point in the history
  4. fix attribute

    SamuZad authored and mulbc committed Jan 11, 2023
    Configuration menu
    Copy the full SHA
    350c66c View commit details
    Browse the repository at this point in the history
  5. add token-grabber documentation

    SamuZad authored and mulbc committed Jan 11, 2023
    Configuration menu
    Copy the full SHA
    83777e4 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2023

  1. Autofill visible password fields only

    Some site have their Register form, Reset Password form etc... as hidden panels.
    So only select the first visible password field when autofilling from Vault
    
    If no visible password field can be found, select the first one
    Gerard Chanekon authored and mulbc committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    1e55885 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2023

  1. Update search functionality

    SamuZad authored and mulbc committed Jan 26, 2023
    Configuration menu
    Copy the full SHA
    81bfaac View commit details
    Browse the repository at this point in the history
  2. move event listener to keyup

    SamuZad authored and mulbc committed Jan 26, 2023
    Configuration menu
    Copy the full SHA
    8764a3f View commit details
    Browse the repository at this point in the history
  3. Add eslint

    mulbc committed Jan 26, 2023
    Configuration menu
    Copy the full SHA
    2193e67 View commit details
    Browse the repository at this point in the history
  4. Add secondary login info test to dev setup

    Also try to clean up any old env
    mulbc committed Jan 26, 2023
    Configuration menu
    Copy the full SHA
    1663bec View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2023

  1. Add support for more than one username/password per secret

    Read any other username/password pairs from any given secret on top of the default "username"/"password" pair
    
    For example, if a secret has the following keys:
    {
      "username": "myusername",
      "password": "mypassword",
      "username.2": "other username",
      "password.2": "other password",
      "username for test": "test username",
      "password for test": "test password"
    }
    
    then 3 sets of credentials will be loaded for that one secret:
    myusername/mypassword
    other username/other password
    and
    test username/test password
    Gerard Chanekon authored and mulbc committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    4f36891 View commit details
    Browse the repository at this point in the history
  2. Allow custom secrets path

    Gerard Chanekon authored and mulbc committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    86cc42c View commit details
    Browse the repository at this point in the history
  3. Use const and let when appropriate

    Gerard Chanekon authored and mulbc committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    70e4938 View commit details
    Browse the repository at this point in the history
  4. Update documentation to match the new features

    Gerard Chanekon authored and mulbc committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    288dc55 View commit details
    Browse the repository at this point in the history
  5. Limit matching username field to generic text input

    To avoid to many false positive, only widen the search for a potential username field to generic text fields when a password field is in a form or the user manually requested credentials to be filled on the current web page
    Gerard Chanekon authored and mulbc committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    869b06d View commit details
    Browse the repository at this point in the history
  6. reformat and make eslint happy

    mulbc committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    51b0732 View commit details
    Browse the repository at this point in the history
  7. Release version 2.3.3

    mulbc committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    da8c767 View commit details
    Browse the repository at this point in the history
Loading