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 #1601

Merged
merged 2 commits into from
Oct 29, 2024
Merged

Packages for release #1601

merged 2 commits into from
Oct 29, 2024

Conversation

shopify-github-actions-access[bot]
Copy link
Contributor

@shopify-github-actions-access shopify-github-actions-access bot commented Oct 4, 2024

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@shopify/shopify-api@11.6.0

Minor Changes

  • 50634c0: Adds API to update the capped amount for a usage billing plan.

    A new billing helper function has been added to update the capped amount for a usage billing plan.

    const response = await shopify.billing.updateUsageCappedAmount({
      session,
      subscriptionLineItemId: 'gid://shopify/AppSubscriptionLineItem/1234567890',
      cappedAmount: {
        amount: 100,
        currencyCode: 'USD',
      },
    });
    console.log(response);

    Learn more about App Billing.

  • 5c01460: Adding toggle parameter flag to return implied scopes from Remix API Query by returning original scopes from AuthScopes instantiation

    Example:
    const scopes = new AuthScopes(['read_customers', 'write_customers', 'read_products', 'write_channels']);
    scopes.toArray() returns ['write_customers', 'read_products', 'write_channels']
    scopes.toArray(true) returns ['read_customers', 'write_customers', 'read_products', 'write_channels']

Patch Changes

  • 59896e3: Updated isbot dependencies
  • 2e396f3: Updated express dependencies
  • 5efb3a2: Updated express dependencies
  • cd0b3e1: Updated jose dependencies
  • bad62cc: Updated tslib dependencies
  • 10f4fd0: Updated jose dependencies
  • Updated dependencies [f38dfc0]
    • @shopify/graphql-client@1.2.1
    • @shopify/admin-api-client@1.0.4
    • @shopify/storefront-api-client@1.0.3

@shopify/shopify-app-remix@3.4.0

Minor Changes

  • 9b217e5: Adds API to update the capped amount for a usage billing plan.

    A new billing helper function has been added to update the capped amount for a usage billing plan. This function redirects to a confirmation page where the merchant can confirm the update.

    await billing.updateUsageCappedAmount({
      subscriptionLineItemId:
        'gid://shopify/AppSubscriptionLineItem/12345?v=1&index=1',
      cappedAmount: {
        amount: 10,
        currencyCode: 'USD',
      },
    });

    Learn more about App Billing.

Patch Changes

  • 59896e3: Updated isbot dependencies

  • 5c01460: Adding toggle parameter flag to return implied scopes from Remix API Query by returning original scopes from AuthScopes instantiation

    Example:
    const scopes = new AuthScopes(['read_customers', 'write_customers', 'read_products', 'write_channels']);
    scopes.toArray() returns ['write_customers', 'read_products', 'write_channels']
    scopes.toArray(true) returns ['read_customers', 'write_customers', 'read_products', 'write_channels']

  • Updated dependencies [50634c0]

  • Updated dependencies [59896e3]

  • Updated dependencies [2e396f3]

  • Updated dependencies [5efb3a2]

  • Updated dependencies [cd0b3e1]

  • Updated dependencies [bad62cc]

  • Updated dependencies [10f4fd0]

  • Updated dependencies [5c01460]

    • @shopify/shopify-api@11.6.0
    • @shopify/shopify-app-session-storage@3.0.8
    • @shopify/admin-api-client@1.0.4
    • @shopify/storefront-api-client@1.0.3

@shopify/admin-api-client@1.0.4

Patch Changes

  • Updated dependencies [f38dfc0]
    • @shopify/graphql-client@1.2.1

@shopify/api-codegen-preset@1.1.2

Patch Changes

  • 8c089b4: Updated @graphql-codegen/typescript dependencies
  • 0c5501b: Updated @graphql-codegen/cli dependencies
  • 827085d: Updated @graphql-codegen/typescript dependencies

@shopify/graphql-client@1.2.1

Patch Changes

  • f38dfc0: Improved error messages when validating store domain urls

@shopify/storefront-api-client@1.0.3

Patch Changes

  • Updated dependencies [f38dfc0]
    • @shopify/graphql-client@1.2.1

@shopify/shopify-app-session-storage-drizzle@2.0.8

Patch Changes

  • bad62cc: Updated tslib dependencies

@shopify/shopify-app-session-storage-dynamodb@4.0.8

Patch Changes

  • 97c895a: Updated @aws-sdk/util-dynamodb dependencies
  • 649a865: Updated @aws-sdk/util-dynamodb dependencies

@shopify/shopify-app-session-storage-mongodb@4.0.8

Patch Changes

  • 0b76364: Updated mongodb dependencies
  • 401c562: Updated mongodb dependencies

@shopify/shopify-app-session-storage-postgresql@4.0.8

Patch Changes

  • fc0a1f0: Updated pg-connection-string dependencies

@shopify/shopify-app-session-storage-prisma@5.1.5

Patch Changes

  • e7921c0: Log (instead of swallow) errors that may happen during attempts to conenct to DB

@shopify/shopify-app-express@5.0.8

Patch Changes

  • 2e396f3: Updated express dependencies
  • 0b3526d: Updated cookie-parser dependencies
  • 5efb3a2: Updated express dependencies
  • 2faad6c: Changing common connection logs from info level to debug to avoid spam
  • Updated dependencies [50634c0]
  • Updated dependencies [59896e3]
  • Updated dependencies [2e396f3]
  • Updated dependencies [5efb3a2]
  • Updated dependencies [cd0b3e1]
  • Updated dependencies [bad62cc]
  • Updated dependencies [10f4fd0]
  • Updated dependencies [5c01460]
    • @shopify/shopify-api@11.6.0
    • @shopify/shopify-app-session-storage@3.0.8
    • @shopify/shopify-app-session-storage-memory@4.0.8

@shopify/shopify-app-session-storage@3.0.8

@shopify/shopify-app-session-storage-kv@4.0.8

@shopify/shopify-app-session-storage-memory@4.0.8

@shopify/shopify-app-session-storage-mysql@4.0.8

@shopify/shopify-app-session-storage-redis@4.2.1

@shopify/shopify-app-session-storage-sqlite@4.0.8

@shopify/shopify-app-session-storage-test-utils@3.0.8

@shopify-github-actions-access shopify-github-actions-access bot requested a review from a team as a code owner October 4, 2024 15:15
@github-actions github-actions bot force-pushed the changeset-release/main branch 9 times, most recently from ccfbe43 to aff05e9 Compare October 7, 2024 21:27
@github-actions github-actions bot force-pushed the changeset-release/main branch 20 times, most recently from c7a6336 to 743065c Compare October 18, 2024 21:04
@github-actions github-actions bot force-pushed the changeset-release/main branch 22 times, most recently from ae26047 to 740f604 Compare October 29, 2024 11:29
@github-actions github-actions bot force-pushed the changeset-release/main branch from 740f604 to 7e4165a Compare October 29, 2024 13:34
Copy link
Contributor

@andy-liuu andy-liuu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Followed steps in RELEASING.md

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant