Skip to content

Commit 2188278

Browse files
chore: version packages (#41)
# Releases ## magicbell@1.1.0 ### Minor Changes - [#39](#39) [`68b2fbd`](68b2fbd) Thanks [@smeijer](https://github.com/smeijer)! - Add support for usage in browsers. - Stop tracking `client-id`. Client id was a random token stored on the filesystem, so we could identify origins across session. - Don't generate HMAC if no `api-secret` is provided, or if HMAC is already provided via request options. - Export `createHmac`, a util that generates MagicBell compatible HMAC digests. ```js import { createHmac } from 'magicbell'; createHmac(process.env.MAGICBELL_API_SECRET, user.email); ``` ## ping-vscode@0.0.3 ### Patch Changes - Updated dependencies \[[`68b2fbd`](68b2fbd)]: - magicbell@1.1.0
1 parent 68b2fbd commit 2188278

File tree

5 files changed

+25
-17
lines changed

5 files changed

+25
-17
lines changed

.changeset/chilly-llamas-trade.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

packages/magicbell/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# magicbell
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [#39](https://github.com/magicbell-io/magicbell-js/pull/39) [`68b2fbd`](https://github.com/magicbell-io/magicbell-js/commit/68b2fbd28fc1a0ca2b182611bc62fdc56a2e3f13) Thanks [@smeijer](https://github.com/smeijer)! - Add support for usage in browsers.
8+
9+
- Stop tracking `client-id`. Client id was a random token stored on the filesystem, so we could identify origins across session.
10+
- Don't generate HMAC if no `api-secret` is provided, or if HMAC is already provided via request options.
11+
- Export `createHmac`, a util that generates MagicBell compatible HMAC digests.
12+
13+
```js
14+
import { createHmac } from 'magicbell';
15+
createHmac(process.env.MAGICBELL_API_SECRET, user.email);
16+
```
17+
318
## 1.0.1
419

520
### Patch Changes

packages/magicbell/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "magicbell",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "MagicBell API wrapper",
55
"author": "MagicBell <bot@magicbell.io> (https://magicbell.com)",
66
"contributors": [

packages/ping-vscode/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# ping-vscode
22

3+
## 0.0.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`68b2fbd`](https://github.com/magicbell-io/magicbell-js/commit/68b2fbd28fc1a0ca2b182611bc62fdc56a2e3f13)]:
8+
- magicbell@1.1.0
9+
310
## 0.0.2
411

512
### Patch Changes

packages/ping-vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ping-vscode",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"private": true,
55
"description": "Ping VSCode extension by Magicbell",
66
"author": "MagicBell <bot@magicbell.io> (https://magicbell.com)",
@@ -109,7 +109,7 @@
109109
"@primer/octicons-react": "^17.9.0",
110110
"@stitches/react": "^1.2.8",
111111
"@vscode/webview-ui-toolkit": "^1.1.0",
112-
"magicbell": "1.0.1",
112+
"magicbell": "1.1.0",
113113
"pluralize": "^8.0.0",
114114
"react": "^17.0.2",
115115
"react-dom": "^17.0.2",

0 commit comments

Comments
 (0)