@ideasonpurpose/build-tools-wordpress 2.8.4 → 2.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,13 +15,9 @@ jobs:
15
15
  # https://github.com/marketplace/actions/checkout
16
16
  - uses: actions/checkout@v6
17
17
 
18
- - name: Set TAG environment variable
19
- run: |
20
- echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
21
-
22
18
  - name: Create GitHub release
23
19
  env:
24
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
21
  run: |
26
- echo "Creating release for tag: ${TAG}"
27
- gh release create "${TAG}" --generate-notes
22
+ echo "Creating release for tag: ${{ github.ref_name }}"
23
+ gh release create "${{ github.ref_name }}" --generate-notes
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### v2.8.4
8
+
9
+ > 23 June 2026
10
+
11
+ - bump deps
12
+ - update SVGO config plus custom plugins
13
+ - extend whitespace handling to paragraphs with attributes
14
+
7
15
  #### v2.8.3
8
16
 
9
17
  > 5 June 2026
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ideasonpurpose/build-tools-wordpress
2
2
 
3
- #### Version 2.8.4
3
+ #### Version 2.8.5
4
4
 
5
5
  [![NPM Version](https://img.shields.io/npm/v/%40ideasonpurpose%2Fbuild-tools-wordpress?logo=npm)](https://www.npmjs.com/package/@ideasonpurpose/build-tools-wordpress)
6
6
  [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/ideasonpurpose/build-tools-wordpress/npm-publish.yml?logo=github&logoColor=white)](https://github.com/ideasonpurpose/build-tools-wordpress#readme)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ideasonpurpose/build-tools-wordpress",
3
- "version": "2.8.4",
3
+ "version": "2.8.5",
4
4
  "description": "Build scripts and dependencies for IOP's WordPress development environments.",
5
5
  "homepage": "https://github.com/ideasonpurpose/build-tools-wordpress#readme",
6
6
  "bugs": {
@@ -181,7 +181,7 @@ services:
181
181
  echo -e "✔️ \033[32mConnected to DB\033[0m" &&
182
182
  export DUMPFILE="/usr/src/'${npm_package_name:-dumpfile}'-$$(date +%FT%H%M%S).sql" &&
183
183
  echo $${DUMPFILE} &&
184
- mysqldump --ssl-mode=DISABLED -hdb --databases $${MYSQL_DATABASE} > "$${DUMPFILE}" &&
184
+ mysqldump --ssl-mode=DISABLED --set-gtid-purged=OFF --single-transaction -hdb --databases $${MYSQL_DATABASE} > "$${DUMPFILE}" &&
185
185
  gzip "$${DUMPFILE}" &&
186
186
  chown -R $${OWNER_GROUP} /usr/src &&
187
187
  echo "Successfully dumped database to \"$${DUMPFILE}.gz\""'