Skip to content

Commit f1bde01

Browse files
committed
Merge commit '157e94762e09aae39968702b4901432e5649f6c2' into feat/prep-for-plugin-repo
# Conflicts: # wpgraphql-acf.php
2 parents add0ef5 + 157e947 commit f1bde01

File tree

14 files changed

+1413
-333
lines changed

14 files changed

+1413
-333
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy to WordPress.org
2+
on:
3+
release:
4+
types: [ published ]
5+
jobs:
6+
tag:
7+
name: New release
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v3
12+
13+
- name: Setup PHP
14+
uses: shivammathur/setup-php@v2
15+
with:
16+
php-version: 8.1
17+
extensions: mbstring, intl
18+
tools: composer
19+
20+
- name: Install PHP dependencies
21+
run: |
22+
composer install --no-dev --optimize-autoloader
23+
24+
- name: WordPress Plugin Deploy
25+
uses: 10up/action-wordpress-plugin-deploy@stable
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
29+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
30+
SLUG: wpgraphql-acf

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 2.0.0-beta.7.0.0
4+
5+
### BREAKING CHANGES
6+
7+
- [#136](https://github.com/wp-graphql/wpgraphql-acf/pull/136): fix: clone fields not respecting "prefix_name" setting
8+
9+
### Chores / Bugfixes
10+
11+
- [#126](https://github.com/wp-graphql/wpgraphql-acf/pull/126): fix: Make sure oembed field is also formatted when part of a flexible_content field. Thanks @kpoelhekke!
12+
- [#131](https://github.com/wp-graphql/wpgraphql-acf/pull/131): ci: replace Appsero Updater.php with a blank class to satisfy WordPress.org reqs.
13+
- [#132](https://github.com/wp-graphql/wpgraphql-acf/pull/132): fix: options page with custom post_id not resolving properly
14+
- [#16](https://github.com/wp-graphql/wpgraphql-acf/pull/16): ci: Build the plugin zip, deploy to WordPress.org
15+
316
## 2.0.0-beta.6.0.0
417

518
### New Features

0 commit comments

Comments
 (0)