Skip to content

Commit

Permalink
Merge branch '5.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeholder committed Mar 25, 2024
2 parents 69d3396 + e999451 commit cfc547e
Show file tree
Hide file tree
Showing 9 changed files with 1,646 additions and 1,743 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: ci
uses: craftcms/.github/.github/workflows/ci.yml@v3
with:
craft_version: '4'
craft_version: '5'
jobs: '["ecs", "phpstan", "prettier"]'
notify_slack: true
slack_subteam: <!subteam^S01CWPYH9D5>
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes for Stripe for Craft Commerce

## 5.0.0

- Stripe now requires Craft Commerce 5.0.0-beta.1 or later.

## 4.1.2 - 2024-03-25

- Fixed a bug where redirects could break when adding a new payment source. ([#259](https://github.com/craftcms/commerce-stripe/issues/259), [#289](https://github.com/craftcms/commerce-stripe/issues/289))
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ This plugin provides a [gateway](https://craftcms.com/docs/commerce/4.x/payment-
## Requirements

- Craft CMS 4.0 or later
- Craft Commerce 4.3.3 or later
- Craft CMS 5.0 or later
- Craft Commerce 5.0 or later
- Stripe [API version](https://stripe.com/docs/api/versioning) `2022-11-15`

## Installation
Expand Down Expand Up @@ -93,9 +93,9 @@ Your local environment isn’t often exposed to the public internet, so Stripe w

2. Use DDEV’s `share` command, and use the public Ngrok URL when configuring the webhook manually, in Stripe.

## Upgrading from 3.x
## Upgrading from 4.x to 5.x

Version 4.0 is largely backward-compatible with 3.x. Review the following sections to ensure your site (and any customizations) remain functional.
Version 5.0 is largely backward-compatible with 4.x. Review the following sections to ensure your site (and any customizations) remain functional.

### Payment Forms

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "craftcms/commerce-stripe",
"description": "Stripe integration for Craft Commerce 4.0+",
"description": "Stripe integration for Craft Commerce 5.0+",
"type": "craft-plugin",
"keywords": [
"stripe",
Expand All @@ -25,10 +25,10 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"stripe/stripe-php": "^10.0",
"craftcms/commerce": "^4.3.3"
"php": "^8.2",
"craftcms/cms": "^5.0.0-beta.10",
"craftcms/commerce": "^5.0.0-beta.1",
"stripe/stripe-php": "^13.0"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
Expand All @@ -55,7 +55,7 @@
"craftcms/plugin-installer": true
},
"platform": {
"php": "8.0.2"
"php": "8.2"
}
}
}

0 comments on commit cfc547e

Please sign in to comment.