diff --git a/CHANGELOG.md b/CHANGELOG.md index c481eb6..bcf5a3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,35 @@ --- +[//]: # (START/v1.2.0) +# 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 name + - `getVaultById` - get the vault with the provided ID + - `getVaultByTitle` - 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 name + - `getItemById` - get the item with the provided ID + - `getItemByTitle` - 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 name + - `deleteItemById` - delete the item with the provided ID + - `deleteItemByTitle` - 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} + +--- + [//]: # (START/v1.1.0) # v1.1.0 diff --git a/package.json b/package.json index d7e8240..d80d2ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@1password/connect", - "version": "1.1.0", + "version": "1.2.0", "homepage": "https://1password.com/secrets/", "repository": "https://github.com/1Password/connect-sdk-js", "description": "JavaScript/Typescript SDK for 1Password Connect",