Plugin Directory

Changeset 3042771

Timestamp:
02/28/2024 07:25:17 PM (5 months ago)
Author:
sean212
Message:

Update to version 1.2.1 from GitHub

Location:
rest-api-guard
Files:
2 added
2 deleted
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • rest-api-guard/tags/1.2.1/.gitignore

    r3040295 r3042771  
    1 # Ignore file used during the push to the *-built branches.
     1# Build files
     2build
     3vendor
     4composer.lock
     5node_modules
     6
     7# Log files
     8*.log
     9
     10# Cache files
     11.phpcs/*.json
     12.phpunit.result.cache
     13
     14# Ignore temporary OS files
    215.DS_Store
     16
     17
     18
     19
    320Thumbs.db
    4 wp-cli.local.yml
    5 node_modules/
    6 *.sql
    7 *.tar.gz
    8 *.zip
    9 .phpunit.result.cache
    10 Dockerfile
    11 output.log
    12 tests
    13 bin
    14 composer.lock
    15 phpcs.xml
    16 phpunit.xml
    17 configure.php
    18 DOCKER_ENV
    19 phpunit.xml
    20 tests
    21 .phpcs
    22 Makefile
     21.thumbsdb
     22
     23# IDE files
     24*.code-workspace
     25.idea
     26.vscode
  • rest-api-guard/tags/1.2.1/CHANGELOG.md

    r3040295 r3042771  
    22
    33All notable changes to `wp-rest-guard` will be documented in this file.
     4
     5
     6
     7
    48
    59## v1.2.0 - 2024-02-22
  • rest-api-guard/tags/1.2.1/README.md

    r3040295 r3042771  
    11# REST API Guard
    22
    3 Stable tag: 1.2.0
     3Stable tag: 1.2.
    44
    55Requires at least: 6.0
  • rest-api-guard/tags/1.2.1/plugin.php

    r3040295 r3042771  
    322322 * Generate a JSON Web Token (JWT).
    323323 *
    324  * The JWT payload is intentionally not filtered to prevent
    325  *
    326324 * @param int|null         $expiration The expiration time of the JWT in seconds or null for no expiration.
    327325 * @param WP_User|int|null $user The user to include in the JWT or null for no user.
     
    350348        $payload['sub']        = $user->ID;
    351349        $payload['user_login'] = $user->user_login;
     350
     351
     352
     353
     354
     355
     356
     357
     358
     359
     360
     361
     362
     363
     364
    352365    }
    353366
  • rest-api-guard/tags/1.2.1/readme.txt

    r3040295 r3042771  
    11=== REST API Guard ===
    2 Stable tag: 1.2.0
     2Stable tag: 1.2.
    33Requires at least: 6.0
    44Tested up to: 6.3
  • rest-api-guard/trunk/.gitignore

    r3040295 r3042771  
    1 # Ignore file used during the push to the *-built branches.
     1# Build files
     2build
     3vendor
     4composer.lock
     5node_modules
     6
     7# Log files
     8*.log
     9
     10# Cache files
     11.phpcs/*.json
     12.phpunit.result.cache
     13
     14# Ignore temporary OS files
    215.DS_Store
     16
     17
     18
     19
    320Thumbs.db
    4 wp-cli.local.yml
    5 node_modules/
    6 *.sql
    7 *.tar.gz
    8 *.zip
    9 .phpunit.result.cache
    10 Dockerfile
    11 output.log
    12 tests
    13 bin
    14 composer.lock
    15 phpcs.xml
    16 phpunit.xml
    17 configure.php
    18 DOCKER_ENV
    19 phpunit.xml
    20 tests
    21 .phpcs
    22 Makefile
     21.thumbsdb
     22
     23# IDE files
     24*.code-workspace
     25.idea
     26.vscode
  • rest-api-guard/trunk/CHANGELOG.md

    r3040295 r3042771  
    22
    33All notable changes to `wp-rest-guard` will be documented in this file.
     4
     5
     6
     7
    48
    59## v1.2.0 - 2024-02-22
  • rest-api-guard/trunk/README.md

    r3040295 r3042771  
    11# REST API Guard
    22
    3 Stable tag: 1.2.0
     3Stable tag: 1.2.
    44
    55Requires at least: 6.0
  • rest-api-guard/trunk/plugin.php

    r3040295 r3042771  
    322322 * Generate a JSON Web Token (JWT).
    323323 *
    324  * The JWT payload is intentionally not filtered to prevent
    325  *
    326324 * @param int|null         $expiration The expiration time of the JWT in seconds or null for no expiration.
    327325 * @param WP_User|int|null $user The user to include in the JWT or null for no user.
     
    350348        $payload['sub']        = $user->ID;
    351349        $payload['user_login'] = $user->user_login;
     350
     351
     352
     353
     354
     355
     356
     357
     358
     359
     360
     361
     362
     363
     364
    352365    }
    353366
  • rest-api-guard/trunk/readme.txt

    r3040295 r3042771  
    11=== REST API Guard ===
    2 Stable tag: 1.2.0
     2Stable tag: 1.2.
    33Requires at least: 6.0
    44Tested up to: 6.3
Note: See TracChangeset for help on using the changeset viewer.