Skip to content

Commit 9a5a8a5

Browse files
committed
chore(docs): sync doc
1 parent 9252c58 commit 9a5a8a5

File tree

1 file changed

+39
-30
lines changed

1 file changed

+39
-30
lines changed

docs/changelog.mdx

Lines changed: 39 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ rss: true
66

77
| Package | Latest version | Summary |
88
| ------- | -------------- | ------- |
9-
| [@lit-protocol/lit-client](#lit-client) | [8.1.0](https://www.npmjs.com/package/%40lit-protocol%2Flit-client) | Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually. |
9+
| [@lit-protocol/lit-client](#lit-client) | [8.2.0](https://www.npmjs.com/package/%40lit-protocol%2Flit-client) | LitClient now offers `getIpfsId` via `@lit-protocol/lit-client/ipfs`, letting apps compute CIDv0 hashes (e.g., `await getIpfsId('hello')`) while keeping bundles lean. |
1010
| [@lit-protocol/auth](#auth) | [8.1.0](https://www.npmjs.com/package/%40lit-protocol%2Fauth) | Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually. |
11-
| [@lit-protocol/networks](#networks) | [8.1.0](https://www.npmjs.com/package/%40lit-protocol%2Fnetworks) | Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually. |
12-
| [@lit-protocol/auth-services](#auth-services) | [2.0.3](https://www.npmjs.com/package/%40lit-protocol%2Fauth-services) | Updated dependencies |
11+
| [@lit-protocol/networks](#networks) | [8.2.0](https://www.npmjs.com/package/%40lit-protocol%2Fnetworks) | introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime |
12+
| [@lit-protocol/auth-services](#auth-services) | [2.0.4](https://www.npmjs.com/package/%40lit-protocol%2Fauth-services) | Updated dependencies |
1313
| [@lit-protocol/access-control-conditions](#access-control-conditions) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Faccess-control-conditions) | - |
1414
| [@lit-protocol/access-control-conditions-schemas](#access-control-conditions-schemas) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Faccess-control-conditions-schemas) | - |
15-
| [@lit-protocol/artillery](#artillery) | [0.0.4](https://www.npmjs.com/package/%40lit-protocol%2Fartillery) | @lit-protocol/e2e@2.0.0 |
15+
| [@lit-protocol/artillery](#artillery) | [0.0.5](https://www.npmjs.com/package/%40lit-protocol%2Fartillery) | Updated dependencies |
1616
| [@lit-protocol/auth-helpers](#auth-helpers) | [8.1.0](https://www.npmjs.com/package/%40lit-protocol%2Fauth-helpers) | Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually. |
17-
| [@lit-protocol/constants](#constants) | [8.0.3](https://www.npmjs.com/package/%40lit-protocol%2Fconstants) | Updated dependencies |
18-
| [@lit-protocol/contracts](#contracts) | [0.6.0](https://www.npmjs.com/package/%40lit-protocol%2Fcontracts) | Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually. |
17+
| [@lit-protocol/constants](#constants) | [8.0.4](https://www.npmjs.com/package/%40lit-protocol%2Fconstants) | Updated dependencies |
18+
| [@lit-protocol/contracts](#contracts) | [0.7.0](https://www.npmjs.com/package/%40lit-protocol%2Fcontracts) | introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime |
1919
| [@lit-protocol/crypto](#crypto) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fcrypto) | - |
20-
| [@lit-protocol/e2e](#e2e) | [2.0.0](https://www.npmjs.com/package/%40lit-protocol%2Fe2e) | Updated dependencies |
20+
| [@lit-protocol/e2e](#e2e) | [3.0.0](https://www.npmjs.com/package/%40lit-protocol%2Fe2e) | introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime |
2121
| [@lit-protocol/logger](#logger) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Flogger) | - |
2222
| [@lit-protocol/schemas](#schemas) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fschemas) | - |
2323
| [@lit-protocol/types](#types) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Ftypes) | - |
@@ -27,15 +27,20 @@ rss: true
2727

2828
<Update
2929
label="lit-client"
30-
description="v8.1.0"
30+
description="v8.2.0"
3131
tags={["Minor Changes"]}
32-
rss={{ title: "lit-client", description: "Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually." }}
32+
rss={{ title: "lit-client", description: "LitClient now offers `getIpfsId` via `@lit-protocol/lit-client/ipfs`, letting apps compute CIDv0 hashes (e.g., `await getIpfsId('hello')`) while keeping bundles lean." }}
3333
id="lit-client"
3434
>
3535

3636
## Minor Changes
3737

38-
- Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually.
38+
- LitClient now offers `getIpfsId` via `@lit-protocol/lit-client/ipfs`, letting apps compute CIDv0 hashes (e.g., `await getIpfsId('hello')`) while keeping bundles lean.
39+
- ```ts
40+
- import { getIpfsId } from '@lit-protocol/lit-client/ipfs';
41+
- const cid = await getIpfsId('hello');
42+
- ```
43+
- introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime
3944
</Update>
4045
4146
<Update
@@ -57,25 +62,25 @@ rss: true
5762
5863
<Update
5964
label="networks"
60-
description="v8.1.0"
65+
description="v8.2.0"
6166
tags={["Minor Changes", "Patch Changes"]}
62-
rss={{ title: "networks", description: "Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually." }}
67+
rss={{ title: "networks", description: "introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime" }}
6368
id="networks"
6469
>
6570
6671
## Minor Changes
6772
68-
- Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually.
73+
- introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime
6974
7075
## Patch Changes
7176
7277
- Updated dependencies
73-
- @lit-protocol/contracts@0.6.0
78+
- @lit-protocol/contracts@0.7.0
7479
</Update>
7580
7681
<Update
7782
label="auth-services"
78-
description="v2.0.3"
83+
description="v2.0.4"
7984
tags={["Patch Changes"]}
8085
rss={{ title: "auth-services", description: "Updated dependencies" }}
8186
id="auth-services"
@@ -84,7 +89,7 @@ rss: true
8489
## Patch Changes
8590
8691
- Updated dependencies
87-
- @lit-protocol/contracts@0.6.0
92+
- @lit-protocol/contracts@0.7.0
8893
</Update>
8994
9095
<Update
@@ -111,15 +116,16 @@ rss: true
111116
112117
<Update
113118
label="artillery"
114-
description="v0.0.4"
119+
description="v0.0.5"
115120
tags={["Patch Changes"]}
116-
rss={{ title: "artillery", description: "@lit-protocol/e2e@2.0.0" }}
121+
rss={{ title: "artillery", description: "Updated dependencies" }}
117122
id="artillery"
118123
>
119124
120125
## Patch Changes
121126
122-
- @lit-protocol/e2e@2.0.0
127+
- Updated dependencies
128+
- @lit-protocol/e2e@3.0.0
123129
</Update>
124130
125131
<Update
@@ -137,7 +143,7 @@ rss: true
137143
138144
<Update
139145
label="constants"
140-
description="v8.0.3"
146+
description="v8.0.4"
141147
tags={["Patch Changes"]}
142148
rss={{ title: "constants", description: "Updated dependencies" }}
143149
id="constants"
@@ -146,20 +152,20 @@ rss: true
146152
## Patch Changes
147153
148154
- Updated dependencies
149-
- @lit-protocol/contracts@0.6.0
155+
- @lit-protocol/contracts@0.7.0
150156
</Update>
151157
152158
<Update
153159
label="contracts"
154-
description="v0.6.0"
160+
description="v0.7.0"
155161
tags={["Minor Changes"]}
156-
rss={{ title: "contracts", description: "Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually." }}
162+
rss={{ title: "contracts", description: "introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime" }}
157163
id="contracts"
158164
>
159165
160166
## Minor Changes
161167
162-
- Converted viem from a bundled dependency to a peer dependency to avoid build errors from version conflicts (e.g., missing exports like sendCallsSync) and improve compatibility by reducing dependency lock-in. Consumers must now install compatible versions manually.
168+
- introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime
163169
</Update>
164170
165171
<Update
@@ -175,19 +181,22 @@ rss: true
175181
176182
<Update
177183
label="e2e"
178-
description="v2.0.0"
179-
tags={["Patch Changes"]}
180-
rss={{ title: "e2e", description: "Updated dependencies" }}
184+
description="v3.0.0"
185+
tags={["Minor Changes", "Patch Changes"]}
186+
rss={{ title: "e2e", description: "introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime" }}
181187
id="e2e"
182188
>
183189
190+
## Minor Changes
191+
192+
- introduce `litClient.utils.getDerivedKeyId` - a little helper to resolve the Lit Action public key outside of the Action runtime
193+
184194
## Patch Changes
185195
186196
- Updated dependencies
187197
- Updated dependencies
188-
- @lit-protocol/auth@8.1.0
189-
- @lit-protocol/lit-client@8.1.0
190-
- @lit-protocol/networks@8.1.0
198+
- @lit-protocol/lit-client@8.2.0
199+
- @lit-protocol/networks@8.2.0
191200
</Update>
192201
193202
<Update

0 commit comments

Comments
 (0)