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

Pods Gravity Forms 1.5.0 #169

Merged
merged 34 commits into from
Mar 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
4668755
Set version to 1.4.6-a-1
sc0ttkclark Mar 2, 2024
6783057
Force view-only current page number to 0
sclark3-godaddy Mar 2, 2024
0e1cf3d
Ensure other custom Pods GF submission handling does not duplicate
sclark3-godaddy Mar 2, 2024
d25b773
Allow filtering of Pods GF options to set custom settings apart from …
sclark3-godaddy Mar 2, 2024
3bbf5b5
Add view-only class to view action
sclark3-godaddy Mar 2, 2024
6c2223d
Limit form feed editing to active status only
sclark3-godaddy Mar 2, 2024
5ee3a07
Additional fixes for secondary submit buttons and their forms
sclark3-godaddy Mar 2, 2024
d2509c3
Update GH workflows
sclark3-godaddy Mar 13, 2024
310edcb
Fixes for cancel/secondary submit logic
sclark3-godaddy Mar 13, 2024
9ab6734
Specify third argument in in_array to avoid ambiguity later
sclark3-godaddy Mar 13, 2024
9bda75c
Fix action name
sclark3-godaddy Mar 13, 2024
7acdfcc
Support value overrides for checkbox fields
sclark3-godaddy Mar 13, 2024
27c029b
Fix php notice
sclark3-godaddy Mar 13, 2024
80ab398
Fix php var usage that did not exist
sclark3-godaddy Mar 13, 2024
7f0e8bc
Integer checks for the paging logic
sclark3-godaddy Mar 13, 2024
bd0747a
Update logic for pre populating values, removing extra comma/pipe cha…
sclark3-godaddy Mar 13, 2024
b6c045f
Return null in pods_gf() by default
sclark3-godaddy Mar 13, 2024
3c20de1
Initial 1.4.6 changelog
sclark3-godaddy Mar 13, 2024
7f03be8
Remove comments from mapping list and remove extra HTML for now
sclark3-godaddy Mar 13, 2024
9752b70
For non-dropdown fields autopopulating, trim the dashes off of the se…
sclark3-godaddy Mar 13, 2024
96bad73
Prevent PHP errors where a list field has no value
sclark3-godaddy Mar 13, 2024
dc3c20a
Add the ability to debug before Pods adds/saves an item from a feed
sclark3-godaddy Mar 13, 2024
612ebc5
Add new filter pods_gf_dynamic_select_show_empty_option
sclark3-godaddy Mar 13, 2024
feccce4
Init 1.5.0
sclark3-godaddy Mar 25, 2024
897fbff
Update readme
sclark3-godaddy Mar 25, 2024
734e67b
Remove unused arg in remove_action
sclark3-godaddy Mar 26, 2024
f465ea5
Update the changelog
sclark3-godaddy Mar 26, 2024
6774c56
Use Strauss and switch to Parsedown instead of the Markdown class
sclark3-godaddy Mar 29, 2024
ac3adcd
Stop populating fields that aren’t opted-in
sclark3-godaddy Mar 29, 2024
b7ab8e7
Update changelog
sclark3-godaddy Mar 29, 2024
3f8e54c
Pods 1.5
sclark3-godaddy Mar 29, 2024
9108295
Update wporg version(s)
sc0ttkclark Mar 29, 2024
f34c90a
Fix wp plugin deploy
sclark3-godaddy Mar 29, 2024
e293fad
Update versions
sclark3-godaddy Mar 29, 2024
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
56 changes: 56 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Export ignore handling

# Directories
/.git
/.github
/.wordpress-org
/bin
/dev
/docs
/github
/tests
/workspace

# Dot-files
.babelrc
.distignore
.editorconfig
.env
.env.example
.env.dist
.env.docker
.env.testing.slic
.eslintignore
.eslintrc.json
.gitattributes
.gitignore
.jshintrc
.nvmrc
.phpstorm.meta.php
.scrutinizer.yml
.travis.yml

# Other files
babel.config.js
CODE_OF_CONDUCT.md
codeception.dist.yml
codeception.example.yml
codeception.slic.yml
CODEOWNERS
composer.json
CONTRIBUTING.md
Gruntfile.js
jest-setup-wordpress-globals.js
jest.config.json
jest.config.js
package-lock.json
package.json
phpcs.xml
phpcs.xml.dist
phpunit.xml.dist
README.md
rollup.config.js
TESTS.md
webpack.common.js
webpack.dev.js
webpack.prod.js
78 changes: 59 additions & 19 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,33 +1,73 @@
# Auto detect text files and perform LF normalization
* text=auto

*.css linguist-generated=true
*.min.css linguist-generated=true
*.min.js linguist-generated=true
*.snap linguist-generated=true
tests/_support/_generated/* linguist-generated=true

# Export ignore handling

# Directories
/.git export-ignore
/.github export-ignore
/.wordpress-org export-ignore
/bin export-ignore
/dev export-ignore
/docs export-ignore
/tests export-ignore

# Ignore other files
/.env.* export-ignore
/codeception.* export-ignore
/composer.* export-ignore
/docs export-ignore
/phpcs.xml export-ignore
/README.md export-ignore
/tests export-ignore
/TESTS.md export-ignore
/vendor export-ignore

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union
# Dot-files
.babelrc export-ignore
.distignore export-ignore
.editorconfig export-ignore
.env export-ignore
.env.example export-ignore
.env.dist export-ignore
.env.docker export-ignore
.env.testing.slic export-ignore
.eslintignore export-ignore
.eslintrc.json export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.jshintrc export-ignore
.nvmrc export-ignore
.phpstorm.meta.php export-ignore
.scrutinizer.yml export-ignore
.travis.yml export-ignore

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
# Other files
babel.config.js export-ignore
CODE_OF_CONDUCT.md export-ignore
codeception.dist.yml export-ignore
codeception.example.yml export-ignore
codeception.slic.yml export-ignore
CODEOWNERS export-ignore
composer.json export-ignore
CONTRIBUTING.md export-ignore
Gruntfile.js export-ignore
jest-setup-wordpress-globals.js export-ignore
jest.config.json export-ignore
jest.config.js export-ignore
package-lock.json export-ignore
package.json export-ignore
phpcs.xml export-ignore
phpcs.xml.dist export-ignore
phpunit.xml.dist export-ignore
README.md export-ignore
rollup.config.js export-ignore
TESTS.md export-ignore
webpack.common.js export-ignore
webpack.dev.js export-ignore
webpack.prod.js export-ignore
67 changes: 0 additions & 67 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/phpcs.yml

This file was deleted.

9 changes: 1 addition & 8 deletions .github/workflows/wordpress-plugin-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,8 @@ jobs:
- name: Checkout the code
uses: actions/checkout@v4
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@master
uses: 10up/action-wordpress-plugin-deploy@develop
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
VERSION: ${{ env.PLUGIN_VERSION }}
- name: Send message to Slack API
uses: archive/[email protected]
id: notify
with:
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }}
slack-channel: C02SWND14
slack-text: The ${{ github.event.repository.name }} tag has been deployed to svn.wordpress.org 🎉
20 changes: 20 additions & 0 deletions .github/workflows/wordpress-version-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "WordPress version checker"
on:
push:
branches:
- main
- release/*
schedule:
- cron: '0 0 * * *'

permissions:
issues: write

jobs:
wordpress-version-checker:
runs-on: ubuntu-latest
steps:
- name: WordPress version checker
uses: skaut/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 0 additions & 3 deletions .github/workflows/wporg-update-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ on:
minimum_php_version:
description: 'Minimum PHP version'
required: false
minimum_mysql_version:
description: 'Minimum MySQL version'
required: false
pull_request:
paths:
- 'package.json'
Expand Down
Loading
Loading