Skip to content

Commit

Permalink
chore(master): release blossom-lib 0.1.0 (#52)
Browse files Browse the repository at this point in the history
* chore(master): release blossom-lib 0.1.0

* docs: update changelog with description

* chore: replace the ext id with the web store one

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Viktor Levente Tóth <[email protected]>
  • Loading branch information
github-actions[bot] and nugaon authored Sep 1, 2022
1 parent 390c949 commit 72ee217
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
28 changes: 28 additions & 0 deletions library/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

## 0.1.0 (2022-09-01)

This is the first version of JS library of Blossom!

The library knows all required DOM events to communicate with Blossom that supports already
- defining dApp ID # this is the identification of the dApp in Blossom; this ID is the key for the Context within which dApps can perform Blossom actions.
- use fdp-storage functionalities # the FDP Storage Object is a [Proxy Object underneath](https://github.com/fairDataSociety/blossom/issues/19) that only
communicates with Blossom to retreive FDP Storage responses.
- can ping the extension # to check whether the user has Blossom extension in the browser.
- close connection # if there is no need for the Blossom functionalities for the dApp anymore.

### Features

* add option to check if pod exists from library ([#72](https://github.com/fairDataSociety/blossom/issues/72)) ([aa917db](https://github.com/fairDataSociety/blossom/commit/aa917db701cbf6f4d7771d7cc7adbf014790a479))
* fdp storage ([#53](https://github.com/fairDataSociety/blossom/issues/53)) ([04eaa25](https://github.com/fairDataSociety/blossom/commit/04eaa250ed2823067001f8a923d3db74c10f426d))
* login ([#9](https://github.com/fairDataSociety/blossom/issues/9)) ([8cc7514](https://github.com/fairDataSociety/blossom/commit/8cc75140e38bc341d2c6edaa7bf4203500d35e22))


### Bug Fixes

* several library fixes ([#56](https://github.com/fairDataSociety/blossom/issues/56), [#57](https://github.com/fairDataSociety/blossom/issues/57)) ([#62](https://github.com/fairDataSociety/blossom/issues/62)) ([fe66aac](https://github.com/fairDataSociety/blossom/commit/fe66aac75528684017fd7e74a735af5011d07f91))


### Miscellaneous Chores

* release 0.1.0 ([24372f3](https://github.com/fairDataSociety/blossom/commit/24372f31cf9237902129ca9ed2e0588423e0cb9e))
4 changes: 2 additions & 2 deletions library/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fairdatasociety/blossom",
"version": "1.0.0",
"version": "0.1.0",
"description": "JavaScript library for interaction with the Blossom browser extension",
"main": "build/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion library/src/blossom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class Blossom {
*
* @param extensionId The Blossom extension ID
*/
constructor(extensionId = 'lbenhfaonefggjjgnajjepfjdcggkmbm') {
constructor(extensionId = 'caedjloenbhibmaeffockkiallpngmmd') {
this.messages = createBlossomMessages(extensionId)
this.fdpStorage = createFdpStorageProxy(this.messages)
}
Expand Down

0 comments on commit 72ee217

Please sign in to comment.