Skip to content

Commit

Permalink
Release/1.2.5 (#30)
Browse files Browse the repository at this point in the history
* Update marketplace styles (#10)

* horizontal tabpanel filter bar.

* 3 card wide layout.

* other style improvements.

* Feature/marketplace update (#9)

* fix typo

* update marketplace module and component

* Update workflows to support Git Flow + WP branch naming conventions

* explicitly update marketplace in composer

* fix tests to reflect module updates

* update marketplace module again and fix nav styles for marketplace page

* npm audit fix

* update node and php used in runner for builds

* composer update to get latest marketplace module

* update versions in i18n workflow too

* Add the SSO module

* package updates (#15)

* package updates

update to latest cypress, wp-env, react-router-dom, testing-library/cypress, cypress-axe
also migrate cypress config and tests for latest version

* also update cypress-axe package

* fixes #13 - replace UpgradeHandler class with forge package (#17)

* add newfold secure passwords module (#18)

* Feature/add brand to container (#27)

* add brand value to container

* add install date to container

* Update/packages (#29)

* update author

* package updates

* use author website

* Update css color pallet / App UI (#28)

- Update css color props to match the Figma file style guide.

Other UI improvements:
- Increase app body top spacing.
- Update marketplace filter UI.
- Fix marketplace product price space when product is on sale.
- Update app home side images with better design.

Co-authored-by: Evan Mullins <evanrm@gmail.com>

* version bump

* tested version bump

* Add dependabot.yml file

* Update Al Ani's username

* set module versions explicitly

* fix marketplace tab arrow visual issue introduced with wp release

* fix marketplace tab arrow visual issue better

---------

Co-authored-by: A. Alani <38976631+aalani95@users.noreply.github.com>
Co-authored-by: Micah Wood <micah@wpscholar.com>
Co-authored-by: A. Alani <38976631+wpalani@users.noreply.github.com>
  • Loading branch information
4 people authored Apr 6, 2023
1 parent 3963805 commit 04396ce
Show file tree
Hide file tree
Showing 20 changed files with 10,928 additions and 13,801 deletions.
68 changes: 68 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "develop"
allow:
- dependency-type: direct
schedule:
interval: "daily"
assignees:
- "wpscholar"
reviewers:
- "wpalani"
- "circlecube"
- "wpscholar"
commit-message:
prefix: "GitHub Actions"
include: "scope"
labels:
- "dependencies"

# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/"
target-branch: "develop"
allow:
- dependency-type: direct
schedule:
interval: "daily"
versioning-strategy: increase-if-necessary
assignees:
- "wpscholar"
reviewers:
- "wpalani"
- "circlecube"
- "wpscholar"
commit-message:
prefix: "NPM"
prefix-development: "NPM Dev"
include: "scope"
labels:
- "dependencies"
- "javascript"

# Maintain dependencies for Composer
- package-ecosystem: "composer"
directory: "/"
target-branch: "develop"
schedule:
interval: "daily"
allow:
- dependency-type: direct
versioning-strategy: increase-if-necessary
assignees:
- "wpscholar"
reviewers:
- "wpalani"
- "circlecube"
- "wpscholar"
commit-message:
prefix: "Composer"
prefix-development: "Composer Dev"
include: "scope"
labels:
- "dependencies"
- "php"
1 change: 0 additions & 1 deletion .newfold-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
},
"author": {
"name": "Evan Mullins",
"email": "evanrm@gmail.com",
"url": "https://evanmullins.com"
},
"text_domain": "wp-plugin-web",
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ This plugin has version number set in 3 distinct places in 2 files:
the release files within a matching version directory for convenient cache busting. All 3 instances need to be
incremented in conjuction with new releases via github tagging.
(In a perfect world, we have a runner increment and/or validate this)

# Style Guide
For color pallet and typography usage: https://www.figma.com/file/yBuNeVogl9Emk7575lKucp/WP-Plugin-Web?t=LXnkBwfedfM4FvHX-1
6 changes: 4 additions & 2 deletions bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@
function() {
return new Plugin(
array(
'id' => 'web',
'file' => WEB_PLUGIN_FILE,
'id' => 'web',
'file' => WEB_PLUGIN_FILE,
'brand' => get_option( 'mm_brand', 'web' ),
'install_date' => get_option( 'web_plugin_install_date' ),
)
);
}
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"authors": [
{
"name": "Evan Mullins",
"email": "evanrm@gmail.com"
"homepage": "https://evanmullins.com"
}
],
"config": {
Expand Down Expand Up @@ -56,13 +56,13 @@
"require": {
"doctrine/inflector": "1.2.0 as 1.3.1",
"newfold-labs/wp-module-coming-soon": "^1.1.0",
"newfold-labs/wp-module-data": "^2.2.5",
"newfold-labs/wp-module-loader": "^1.0",
"newfold-labs/wp-module-marketplace": "^1.4.10",
"newfold-labs/wp-module-data": "^2.3.0",
"newfold-labs/wp-module-loader": "^1.0.10",
"newfold-labs/wp-module-marketplace": "^1.5.0",
"newfold-labs/wp-module-notifications": "^1.1.2",
"newfold-labs/wp-module-performance": "^1.0.1",
"newfold-labs/wp-module-secure-passwords": "^1.1",
"newfold-labs/wp-module-sso": "^1.0",
"newfold-labs/wp-module-sso": "^1.0.3",
"wp-forge/wp-update-handler": "^1.0",
"wp-forge/wp-upgrade-handler": "^1.0"
}
Expand Down
63 changes: 32 additions & 31 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 04396ce

Please sign in to comment.