Skip to content

Commit

Permalink
Merge pull request #481 from Shopify/changeset-release/main
Browse files Browse the repository at this point in the history
Packages for release
  • Loading branch information
byrichardpowell authored Oct 30, 2023
2 parents 5d7b328 + 2d4534c commit 794cdb9
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 31 deletions.
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';

0 comments on commit 794cdb9

Please sign in to comment.