-
Notifications
You must be signed in to change notification settings - Fork 64
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
Latest => v4.0 #729
Merged
Latest => v4.0 #729
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Remove Compatibilities (moved to external addons). Addon compatibilities are enabled by default. Update changlogs and readmes. Dynamic image support is part of the core. Google App Engine compatibility is part of the core. Fix issue with Image upload in Statless mode on Google App Engine. Fix - prevent dulicating messages in Admin Panel. Fix - 'View stateless meta' link remove when not in Media Library.
… Addons to readme files
Separate compatibilities
If some posts are deleted from database, this function can be called with a null post, which is caught and throws an error in php 8.3 Make the argument nullable and check it.
Fixed the typo in the readme
fix: defensively check for null post in add_fields() for php 8.3
Cleanup build files. Add security scan for PHP
Dependabot config update
Improve security while processing AJAX requests in Admin Panel
set_time_limit should be set to zero for unlimited
Develop alexey
planv
approved these changes
Mar 28, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
wp_stateless_get_file
, retrieves the GCS file data, should be used instead of gettingsm_cloud
postmeta directly.wp_stateless_get_file_sizes
, retrieves the GCS file data for image sizes, should be used instead of gettingsm_cloud
postmeta directly.wp_stateless_get_file_meta
, retrieves all GCS file meta data, should be used instead of gettingsm_cloud
postmeta directly.wp_stateless_get_file_meta_value
, retrieves the GCS file meta data by meta_key, should be used instead of gettingsm_cloud
postmeta directly.Addons
, which contains the list of WP-Stateless Addons, which replace Compatibilities.Status
, which contains status and health information related to Google Cloud Storage and WP-Stateless.wp stateless migrate
to list and operate data optimizations.WP_STATELESS_POSTMETA
allows to read the GCS file data from postmeta instead of the new custom database tables.WP_STATELESS_BATCH_HEALTHCHECK_INTERVAL
defines an interval in minutes for periodical health checks of a batch background process (like data optimization).wp-background-processing
library from from 1.0.2 to 1.1.1.phpseclib
3.0.34 to 3.0.37.set_time_limit
function to avoid issues with PHP 8.1 and above #704.