Skip to content

Commit

Permalink
Merge release/6.4.0 into trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
Kārlis Janisels authored and Kārlis Janisels committed Aug 31, 2023
2 parents a16368b + ebf4400 commit 4db4181
Show file tree
Hide file tree
Showing 233 changed files with 6,514 additions and 2,549 deletions.
5 changes: 4 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@
"wpcalypso/jsx-classname-namespace": "off",
"react/react-in-jsx-scope": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error"
"@typescript-eslint/no-shadow": "error",
"jsdoc/require-param-type": 0,
"jsdoc/require-returns-type": 0,
"valid-jsdoc": "off"
}
}
]
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ on:
pull_request

env:
WC_MIN_SUPPORTED_VERSION: '7.6.0'
WP_MIN_SUPPORTED_VERSION: '6.0'
WC_MIN_SUPPORTED_VERSION: '7.8.0'
WP_MIN_SUPPORTED_VERSION: '6.1'
PHP_MIN_SUPPORTED_VERSION: '7.3'
GUTENBERG_VERSION_FOR_WP_MIN: '15.7.0'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -23,7 +24,7 @@ jobs:
id: generate_matrix
run: |
WC_VERSIONS=$( echo "[\"$WC_MIN_SUPPORTED_VERSION\", \"latest\", \"beta\"]" )
MATRIX_INCLUDE=$( echo "[{\"woocommerce\":\"$WC_MIN_SUPPORTED_VERSION\",\"wordpress\":\"$WP_MIN_SUPPORTED_VERSION\",\"gutenberg\":\"13.6.0\",\"php\":\"$PHP_MIN_SUPPORTED_VERSION\"}]" )
MATRIX_INCLUDE=$( echo "[{\"woocommerce\":\"$WC_MIN_SUPPORTED_VERSION\",\"wordpress\":\"$WP_MIN_SUPPORTED_VERSION\",\"gutenberg\":\"$GUTENBERG_VERSION_FOR_WP_MIN\",\"php\":\"$PHP_MIN_SUPPORTED_VERSION\"}]" )
echo "matrix={\"woocommerce\":$WC_VERSIONS,\"wordpress\":[\"latest\"],\"gutenberg\":[\"latest\"],\"php\":[\"7.4\"], \"include\":$MATRIX_INCLUDE}" >> $GITHUB_OUTPUT
woocommerce-compatibility:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
E2E_SLACK_TOKEN: ${{ secrets.E2E_SLACK_TOKEN }}
E2E_USE_LOCAL_SERVER: false
E2E_RESULT_FILEPATH: 'tests/e2e/results.json'
WC_MIN_SUPPORTED_VERSION: '7.6.0'
WC_MIN_SUPPORTED_VERSION: '7.8.0'
NODE_ENV: 'test'
FORCE_E2E_DEPS_SETUP: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
WP_VERSION: latest
WC_MIN_SUPPORTED_VERSION: '7.6.0'
WC_MIN_SUPPORTED_VERSION: '7.8.0'
GUTENBERG_VERSION: latest
PHP_MIN_SUPPORTED_VERSION: '7.3'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-build-live-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
#### Option 2. Jurassic Ninja - available for logged-in A12s
:rocket: [Launch a JN site with this branch](https://jurassic.ninja/create/?jetpack-beta&shortlived&nojetpack&woocommerce&branches.woocommerce-payments=${PR_HEAD_REF}) :rocket:
:rocket: [Launch a JN site with this branch](https://jurassic.ninja/create/?jetpack-beta&shortlived&nojetpack&woocommerce&woocommerce-payments-dev-tools&branches.woocommerce-payments=${PR_HEAD_REF}) :rocket:
:information_source: Install this [Tampermonkey script](https://github.com/Automattic/woocommerce-payments/tree/develop/bin/wcpay-live-branches) to get more options.
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
steps:
- name: "Checkout repository"
uses: actions/checkout@v3

with:
token: ${{ SECRETS.BOTWOO_TOKEN }}

- name: "Format the release date"
id: format_date
run: |
Expand All @@ -54,8 +56,8 @@ jobs:

- name: "Commit and push the changes"
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git config user.name "botwoo"
git config user.email "botwoo@users.noreply.github.com"
if ${{ env.CHANGELOG_ACTION == 'amend' }}; then
git commit -am "Amend changelog entries for release $RELEASE_VERSION"
else
Expand Down
1 change: 0 additions & 1 deletion assets/images/subscriptions-empty-state-connected.svg

This file was deleted.

3 changes: 2 additions & 1 deletion bin/wcpay-live-branches/wcpay-live-branches.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name WCPay Live Branches
// @namespace https://wordpress.com/
// @version 1.1
// @version 1.2
// @description Adds links to PRs pointing to Jurassic Ninja sites for live-testing a changeset
// @grant GM_xmlhttpRequest
// @connect jurassic.ninja
Expand Down Expand Up @@ -186,6 +186,7 @@
{
label: 'WooCommerce Payments Dev Tools',
name: 'woocommerce-payments-dev-tools',
checked: true,
},
{
label: 'WooCommerce Smooth Generator',
Expand Down
Loading

0 comments on commit 4db4181

Please sign in to comment.