Skip to content

Commit

Permalink
Init 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sclark3-godaddy committed Mar 25, 2024
1 parent 612ebc5 commit feccce4
Show file tree
Hide file tree
Showing 8 changed files with 129 additions and 134 deletions.
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.

7 changes: 0 additions & 7 deletions .github/workflows/wordpress-plugin-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,3 @@ jobs:
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 🎉
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pods-gravity-forms",
"version": "1.4.6-a-1",
"version": "1.5.0-a-1",
"description": "PIntegration with Gravity Forms; Provides a UI for mapping a Form's submissions into a Pod.",
"author": "Pods Foundation, Inc",
"homepage": "https://pods.io/",
Expand Down
7 changes: 4 additions & 3 deletions pods-gravity-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
/*
Plugin Name: Pods Gravity Forms Add-On
Plugin URI: https://pods.io/
Requires Plugins: pods
Description: Integration with Gravity Forms (https://www.gravityforms.com/); Provides a UI for mapping a Form's submissions into a Pod
Version: 1.4.6-a-1
Version: 1.5.0-a-1
Author: Pods Framework Team
Author URI: https://pods.io/about/
Text Domain: pods-gravity-forms
GitHub Plugin URI: https://github.com/pods-framework/pods-gravity-forms
Copyright 2013-2021 Pods Foundation, Inc (email : [email protected])
Copyright 2013-2024 Pods Foundation, Inc (email : [email protected])
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -30,7 +31,7 @@
* @package Pods\Gravity Forms
*/

define( 'PODS_GF_VERSION', '1.4.6-a-1' );
define( 'PODS_GF_VERSION', '1.5.0-a-1' );
define( 'PODS_GF_FILE', __FILE__ );
define( 'PODS_GF_DIR', plugin_dir_path( PODS_GF_FILE ) );
define( 'PODS_GF_URL', plugin_dir_url( PODS_GF_FILE ) );
Expand Down
18 changes: 9 additions & 9 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
Contributors: sc0ttkclark, jimtrue, naomicbush, gravityplus
Donate link: https://friends.pods.io/
Tags: pods, gravity forms, form mapping
Requires at least: 4.6
Tested up to: 6.4
Requires PHP: 5.4
Stable tag: 1.4.6-a-1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.2
Stable tag: 1.5.0-a-1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Integrate with Gravity Forms to create a Pod item from a form submission.

== Description ==

Requires [Pods](https://wordpress.org/plugins/pods/) 2.4+, [Gravity Forms](http://www.gravityforms.com/) 1.9+.
Requires [Pods](https://wordpress.org/plugins/pods/) 3.0+, [Gravity Forms](http://www.gravityforms.com/) 1.9+.

Check out [pods.io](http://pods.io/) for our User Guide, Forums, and other resources to help you develop with Pods.

Expand Down Expand Up @@ -115,12 +115,12 @@ function my_column_row_override( $row, $columns, $form, $gf_field, $options, $re

== Changelog ==

= 1.4.6 - March TBD, 2024 =
= 1.5.0 - March 24th, 2024 =

* Tested against WP 6.4
* Fixed: Prepopulating field values works more consistently now when passing the prepopulated filter pre-chunked arrays of values.
* New requirements that match Pods: WP 6.0+, PHP 7.2+, and Pods 3.0+ (@sc0ttkclark)
* Fixed: Prepopulating field values works more consistently now when passing the prepopulated filter pre-chunked arrays of values. (@sc0ttkclark)

ALSO: Pods 2.0 is in development and it brings complete compatibility with the latest Gravity Forms releases. We could use your support to help it get over the finish line this year. Please consider [donating to the Pods project](https://friends.pods.io/) to help us get there more quickly.
ALSO: Pods GF 2.0 is in development and it brings complete compatibility with the latest Gravity Forms releases. We could use your support to help it get over the finish line this year. Please consider [donating to the Pods project](https://friends.pods.io/) to help us get there more quickly.

= 1.4.5 - July 22nd, 2022 =

Expand Down

0 comments on commit feccce4

Please sign in to comment.