-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vercel kv exported as non-experimental (#372)
* vercel kv exported as non-experimental * deprecate old symbol * remove not needed variable * better deprecation * restore required var * docs
- Loading branch information
1 parent
587553e
commit 7e9b259
Showing
3 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@saleor/app-sdk": minor | ||
--- | ||
|
||
Added VercelKV APL. It provides out-of-the-box integration. See [docs](https://docs.saleor.io/developer/extending/apps/developing-apps/app-sdk/apl#vercelkvapl) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
// eslint-disable-next-line camelcase | ||
export { VercelKvApl as _experimental_VercelKvApl } from "./vercel-kv-apl"; | ||
import { VercelKvApl } from "./vercel-kv-apl"; | ||
|
||
/** | ||
* @deprecated - use VercelKvApl | ||
*/ | ||
const _experimental_VercelKvApl = VercelKvApl; | ||
|
||
export { | ||
// TODO Remove in next minor | ||
_experimental_VercelKvApl, | ||
VercelKvApl, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters