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

WDSUS-44 PHP 8.0 dependency updates #1070

Merged
merged 22 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
75a9d9a
WDSUS-44 Update composer dependency packages
asharirfan Sep 20, 2023
84e3a64
WDSUS-44 Remove unused parameter from excerpt-more function
asharirfan Sep 20, 2023
6dad895
WDSUS-44 Remove extra line
asharirfan Sep 20, 2023
0fc0b48
WDSUS-44 Move global constants from blocks scaffold class to function…
asharirfan Sep 20, 2023
28b582f
WDSUS-44 Move wpcli functions from class to separate files
asharirfan Sep 20, 2023
50532ad
WDSUS-44 Fix phpcs properties
asharirfan Sep 20, 2023
2b9b9c8
WDSUS-44 Fix linting issues
asharirfan Sep 20, 2023
975ae45
WDSUS-44 Update package json dependencies
asharirfan Sep 20, 2023
ccb3365
WDSUS-44 Fix cta pattern slug
asharirfan Sep 20, 2023
4f52802
WDSUS-44 Rename block pattern categories registeration functions
asharirfan Sep 20, 2023
a0ab8a1
Merge branch 'release/WDSUS-2-4.0-Theme-Revamp' into feature/WDSUS-44…
asharirfan Sep 29, 2023
e425eb7
Merge branch 'main' into feature/WDSUS-44-dependency-updates
asharirfan Sep 29, 2023
fed3b11
WDSUS-44 Downgrade wordpress/eslint-plugin from 16.0 to 15.1
asharirfan Sep 29, 2023
25ca4df
Merge branch 'main' into feature/WDSUS-44-dependency-updates
khleomix Oct 6, 2023
c34d4b4
WDSUS-44 Update eslint-plugin
khleomix Oct 6, 2023
0cc0849
WDSUS-44 - Update postcss
khleomix Oct 6, 2023
30592a3
WDSUS-44 - Update composer
khleomix Oct 6, 2023
da26fbe
WDSUS-44 - Update package lock
khleomix Oct 6, 2023
8fb7269
WDSUS-44 - Update php tested version
khleomix Oct 6, 2023
36d8482
WDSUS-44 - Update eslint and prettier
khleomix Oct 6, 2023
fa2a4a3
WDSUS-44 - Update assertions and codeql workflows
khleomix Oct 6, 2023
b1027a5
WDSUS-44 - Update changelog and lefthook to ignore changelog
khleomix Oct 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/assertions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Assertions

on:
pull_request:
branches: main
branches: [main]

workflow_dispatch:

Expand All @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ github.token }}

Expand All @@ -28,22 +28,22 @@ jobs:
tools: composer:v2, phpcs

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Use NPM 9
run: npm i -g npm@9

- name: Cache Node dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.OS }}-node-

- name: Cache Composer dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -55,7 +55,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# πŸ“š https://git.io/JvXDl
Expand All @@ -69,4 +69,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
1 change: 1 addition & 0 deletions .markdownlintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
build
node_modules
vendor
CHANGELOG.md
24 changes: 17 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
# Changelog
### Changelog

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

## [v4.0.0](https://github.com/WebDevStudios/wd_s/compare/v3.5...v4.0.0)
#### [v4.0.0](https://github.com/WebDevStudios/wd_s/compare/v4.0...v4.0.0)

- Hotfix/fix footer heading level [`#1101`](https://github.com/WebDevStudios/wd_s/pull/1101)
- WDSUS-44 Update package json dependencies [`975ae45`](https://github.com/WebDevStudios/wd_s/commit/975ae45c8a284362c9d54704f8dfeb6475bf1ef9)
- WDSUS-44 - Update package lock [`da26fbe`](https://github.com/WebDevStudios/wd_s/commit/da26fbe73524ae9d4e3501b34992a5f1d04e384b)
- WDSUS-44 Downgrade wordpress/eslint-plugin from 16.0 to 15.1 [`fed3b11`](https://github.com/WebDevStudios/wd_s/commit/fed3b113d2d18ef30f70185117dbcfdc754a4f71)

### [v4.0](https://github.com/WebDevStudios/wd_s/compare/v3.5...v4.0)

> 29 September 2023

- Release/WDSUS-2 V4.0 [`#1023`](https://github.com/WebDevStudios/wd_s/pull/1023)
- Add scaffolding code for the acf block generated using CLI [`#1094`](https://github.com/WebDevStudios/wd_s/pull/1094)
- Feature/site editor index [`#1097`](https://github.com/WebDevStudios/wd_s/pull/1097)
- Feature/WDSUS-45 WDS Cleanup [`#1072`](https://github.com/WebDevStudios/wd_s/pull/1072)
Expand All @@ -19,7 +29,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- WDSUS-2 - Update packages [`82cde06`](https://github.com/WebDevStudios/wd_s/commit/82cde06325363bd80a79bf63f545d16ea9f20a2a)
- WDSUS-2 Update package lock file [`c1406ab`](https://github.com/WebDevStudios/wd_s/commit/c1406abac10765eb667e81e12352947d7697d8af)

## [v3.5](https://github.com/WebDevStudios/wd_s/compare/3.0...v3.5)
#### [v3.5](https://github.com/WebDevStudios/wd_s/compare/3.0...v3.5)

> 20 May 2023

Expand Down Expand Up @@ -193,7 +203,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- Update text domains and package names [`ddb6fb8`](https://github.com/WebDevStudios/wd_s/commit/ddb6fb8e141edb6b24faf52693eccd5d3b7ced11)
- Fix spacing issues [`0c601aa`](https://github.com/WebDevStudios/wd_s/commit/0c601aa5176bac0d0edcf84a28cd9d7dd5dd8d2c)

## [2.1](https://github.com/WebDevStudios/wd_s/compare/v2.0.1...2.1)
#### [2.1](https://github.com/WebDevStudios/wd_s/compare/v2.0.1...2.1)

> 20 April 2021

Expand Down Expand Up @@ -231,7 +241,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- fix merge conflict [`0abaf96`](https://github.com/WebDevStudios/wd_s/commit/0abaf96a60004bb97652a0185552931de45c61bf)
- Adds browsersync and scripts [`ac9af1b`](https://github.com/WebDevStudios/wd_s/commit/ac9af1bbb386e5042ee6bab4c369f5d127a1ecca)

## [v2.0.1](https://github.com/WebDevStudios/wd_s/compare/v2.0.0...v2.0.1)
#### [v2.0.1](https://github.com/WebDevStudios/wd_s/compare/v2.0.0...v2.0.1)

> 10 November 2020

Expand Down Expand Up @@ -717,13 +727,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- Merges in ACF + Gutenberg update [`43a56d8`](https://github.com/WebDevStudios/wd_s/commit/43a56d8eaf261903cd2b2d74d4d4c0b7421035a9)
- packages & dependencies bump [`7d5f7b4`](https://github.com/WebDevStudios/wd_s/commit/7d5f7b4512fe76b7caf138266e6eaef7616a8327)

## 1.2
#### 1.2

> 28 December 2012

- Remove generic Theme Options page in favor of the Customizer. [`#115`](https://github.com/WebDevStudios/wd_s/pull/115)
- Escape home_url() in #site-title link. props @sixhours [`#113`](https://github.com/WebDevStudios/wd_s/pull/113)
- Introduces a filter for wp_title instead of hard-coding things in header.php [`#79`](https://github.com/WebDevStudios/wd_s/pull/79)
- * Introduces a filter for wp_title instead of hard-coding things in header.php [`#79`](https://github.com/WebDevStudios/wd_s/pull/79)
- Fix tag list separator i18n in content-single.php [`#110`](https://github.com/WebDevStudios/wd_s/pull/110)
- Remove extra word "for" in README.md. props @bryanstedman [`#101`](https://github.com/WebDevStudios/wd_s/pull/101)
- Add a space before colons. props @corvannoorloos [`#102`](https://github.com/WebDevStudios/wd_s/pull/102)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"php-stubs/acf-pro-stubs": "6.0.6",
"php-stubs/acf-pro-stubs": "^6.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.4",
"wp-cli/wp-cli-bundle": "^2.7",
"wp-coding-standards/wpcs": "^2.3.0"
"wp-coding-standards/wpcs": "^3.0"
},
"scripts": {
"format": "phpcbf --report=summary,source",
Expand Down
Loading