Releases: 1Password/connect-sdk-js
Releases · 1Password/connect-sdk-js
v1.4.1
v1.4.0
v1.3.0
Features
- Add functionality to fetch a list of the items by title containing provided string. Credits to @ephremAddiss for the contribution on this feature. {#82}
- Add
getItemOTP
client method that returns Item's OTP. {#81} - Add
extractOTP
method for the 1Password Item object which returns the item's OTP. {#81}
v1.2.0
Features
- Return
label
property in ItemUrl object. {#66} - Add functionality to fetch multiple vaults {#67}
- Add functionality to fetch single vault by title {#68}
- Enable fetching a single vault with three separate methods: {#69}
getVault
- get the vault based on its ID or namegetVaultById
- get the vault with the provided IDgetVaultByTitle
- get the vault with the provided title. Note: The title has to be unique. If multiple vaults have the same title, consider getting the vault by its ID instead.
- Add functionality to fetch multiple items by title {#70}
- Enable fetching a single item with three separate methods: {#71}
getItem
- get the item based on its ID or namegetItemById
- get the item with the provided IDgetItemByTitle
- get the item with the provided title. Note: The title has to be unique. If multiple items have the same title, consider getting the item by its ID instead.
- Add functionality to remove single item by title {#72, #74}
- Enable deleting a single item with three separate methods: {#75}
deleteItem
- delete the item based on its ID or namedeleteItemById
- delete the item with the provided IDdeleteItemByTitle
- delete the item with the provided title. Note: The title has to be unique. If multiple items have the same title, consider deleting the item by its ID instead.
- Add functionality to fetch item's files {#76}
- Add functionality to fetch Item's OTP {#81}
Fixes
- Remove
crypto
library {#78}
v1.1.0
Features
- Field recipe now supports a set of characters that should be excluded when generating a password. This is achieved with the
excludeCharacters
property (requires Connectv1.4.0
or later). {#43}
Fixes
Security
- Add shell escaping to GH Action to avoid command injection. {#51}
- Updated some dependencies of this SDK that have open security advisories. Issues found in those dependencies do not directly impact this SDK.