Plugin Directory

Changeset 3102004


Ignore:
Timestamp:
06/12/2024 07:48:36 PM (9 months ago)
Author:
zapier
Message:

Increase expiration of auth

Location:
zapier
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • zapier/tags/1.5.1/readme.txt

    r3097616 r3102004  
    55Tested up to: 6.5
    66Requires PHP: 7.4
    7 Stable tag: 1.5.0
     7Stable tag: 1.5.1
    88License: Expat (MIT License)
    99License URI: https://spdx.org/licenses/MIT.html
     
    123123
    124124* Add updated post hook
     125
     126= 1.5.1 =
     127
     128* Reduce login attempts by increasing expiration of auth tokens
  • zapier/tags/1.5.1/zapier.php

    r3097616 r3102004  
    44 * Plugin Name:       Zapier for WordPress
    55 * Description:       Zapier enables you to automatically share your posts to social media, create WordPress posts from Mailchimp newsletters, and much more. Visit https://zapier.com/apps/wordpress/integrations for more details.
    6  * Version:           1.5.0
     6 * Version:           1.5.1
    77 * Author:            Zapier
    88 * Author URI:        https://zapier.com
     
    148148            'iat' => $issuedAt,
    149149            'nbf' => $issuedAt,
    150             'exp' => $issuedAt + 300,
     150            'exp' => $issuedAt + (60 * 20),
    151151            'data' => array(
    152152                'user_id' => $user->data->ID,
  • zapier/trunk/readme.txt

    r3097616 r3102004  
    55Tested up to: 6.5
    66Requires PHP: 7.4
    7 Stable tag: 1.5.0
     7Stable tag: 1.5.1
    88License: Expat (MIT License)
    99License URI: https://spdx.org/licenses/MIT.html
     
    123123
    124124* Add updated post hook
     125
     126= 1.5.1 =
     127
     128* Reduce login attempts by increasing expiration of auth tokens
  • zapier/trunk/zapier.php

    r3097616 r3102004  
    44 * Plugin Name:       Zapier for WordPress
    55 * Description:       Zapier enables you to automatically share your posts to social media, create WordPress posts from Mailchimp newsletters, and much more. Visit https://zapier.com/apps/wordpress/integrations for more details.
    6  * Version:           1.5.0
     6 * Version:           1.5.1
    77 * Author:            Zapier
    88 * Author URI:        https://zapier.com
     
    148148            'iat' => $issuedAt,
    149149            'nbf' => $issuedAt,
    150             'exp' => $issuedAt + 300,
     150            'exp' => $issuedAt + (60 * 20),
    151151            'data' => array(
    152152                'user_id' => $user->data->ID,
Note: See TracChangeset for help on using the changeset viewer.