Plugin Directory

Changeset 3342735


Ignore:
Timestamp:
08/11/2025 09:10:21 AM (8 months ago)
Author:
staticsnap
Message:

Add tag 0.3.5

Location:
static-snap
Files:
500 added
5 edited

Legend:

Unmodified
Added
Removed
  • static-snap/trunk/readme.txt

    r3341267 r3342735  
    33Tags: static site generator, performance, SEO, security, headless
    44Requires at least: 6.5.0
    5 Tested up to: 6.8.1
    6 Stable tag: 0.3.4
     5Tested up to: 6.8.2
     6Stable tag: 0.3.5
    77Requires PHP: 7.4
    88License: GPLv3
  • static-snap/trunk/src/api/class-api.php

    r3191166 r3342735  
    1616 */
    1717final class API {
     18
    1819    /**
    1920     * Static snap api request
     
    7879                $params['args'],
    7980                array(
    80                     'body' => wp_json_encode( $body ),
     81                    'body' => $body,
    8182                )
    8283            )
     
    9394     *
    9495     * @param string $action Action.
     96     * @param array  $body Body.
    9597     * @return \WP_REST_Response|\WP_Error
    9698     */
    97     public function delete( $action ) {
     99    public function delete( $action, $body ) {
    98100
    99101        $params = $this->get_request_params( $action );
     
    103105            array_merge(
    104106                $params['args'],
     107                array(
     108                    'body' => $body,
     109                ),
    105110                array(
    106111                    'method' => 'DELETE',
  • static-snap/trunk/src/rest/class-rest-api-proxy.php

    r3191166 r3342735  
    1717 */
    1818final class Rest_Api_Proxy extends WP_REST_Controller {
     19
    1920    /**
    2021     * Namespace
     
    121122        }
    122123
    123         return $this->api->delete( $action );
     124        $body = $request->get_body();
     125
     126        return $this->api->delete( $action, $body );
    124127    }
    125128
  • static-snap/trunk/static-snap.php

    r3341267 r3342735  
    1313 * Plugin URI:      https://staticsnap.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
    1414 * Description:     Static Snap transforms WordPress into a powerful tool for creating static websites.
    15  * Version:         0.3.4
     15 * Version:         0.3.5
    1616 * Author:          Static Snap
    1717 * Author URI:      https://staticsnap.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
  • static-snap/trunk/vendor/composer/installed.php

    r3341267 r3342735  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => 'a0e3240f1af4d7e9b454fd75155ecf2d69226781',
     6        'reference' => '019a627611763abdefc9fbe62da60de5c08abf9d',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => 'a0e3240f1af4d7e9b454fd75155ecf2d69226781',
     16            'reference' => '019a627611763abdefc9fbe62da60de5c08abf9d',
    1717            'type' => 'project',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.