Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Packages for release #481

Merged
merged 2 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .changeset/spotty-teachers-enjoy.md

This file was deleted.

30 changes: 30 additions & 0 deletions packages/shopify-app-remix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# @shopify/shopify-app-remix

## 2.1.0

### Minor Changes

- f34eefd: Added v3_authenticatePublic feature flag to remove `authenticate.public(request)`.

Apps can opt in to the new future at any time, so this is not a breaking change until version 3.

<details>
<summary>See an example</summary>

Without the `v3_authenticatePublic` future flag the deprecated `authenticate.public(request)` is supported:

```ts
await authenticate.public.checkout(request);
await authenticate.public.appProxy(request);

// Deprecated. Use authenticate.public.checkout(request) instead
await authenticate.public(request);
```

With the `v3_authenticatePublic` future flag enabled the deprecated `authenticate.public(request)` is not supported:

```ts
await authenticate.public.checkout(request);
await authenticate.public.appProxy(request);
```

</details>

## 2.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-remix/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/shopify-app-remix",
"version": "2.0.2",
"version": "2.1.0",
"description": "Shopify Remix - to simplify the building of Shopify Apps with Remix",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-remix/src/server/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const SHOPIFY_REMIX_LIBRARY_VERSION = '2.0.2';
export const SHOPIFY_REMIX_LIBRARY_VERSION = '2.1.0';