Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9793041
Merge branch 'master' into uat
gabriel-detassigny May 5, 2026
82ffa44
Fix fatal in is_oversize_media when usage data is a string
PatelUtkarsh May 22, 2026
c4e24b4
Guard remaining consumers of usage / last_usage against string values
PatelUtkarsh May 23, 2026
44d6133
Harden additional stored-state consumers against non-array values
PatelUtkarsh May 23, 2026
0887ad5
Guard Elementor CSS replacement when plugin is not connected
PatelUtkarsh Jun 1, 2026
832406d
Fix PHP 8.4 null deprecation warnings in class-delivery.php
PatelUtkarsh Jun 18, 2026
32323cd
Merge remote-tracking branch 'origin/develop' into pr1176-update
PatelUtkarsh Jun 18, 2026
6babc5a
Merge pull request #1179 from cloudinary/bugfix/php84-delivery-null-w…
gabrielcld2 Jun 18, 2026
6d68969
Merge pull request #1176 from PatelUtkarsh/bugfix/is-oversize-media-s…
gabrielcld2 Jun 18, 2026
70adce8
Add filter to disable Elementor background images integration
gabriel-detassigny Jun 22, 2026
2932026
Fix duplicate Cloudinary assets created when upload succeeds but DB w…
gabriel-detassigny Jun 22, 2026
2a51622
Merge branch 'develop' into bugfix/elementor-bg-images
gabriel-detassigny Jun 22, 2026
3ab33cf
Merge pull request #1181 from cloudinary/bugfix/elementor-bg-images
gabrielcld2 Jun 22, 2026
14e661b
Merge pull request #1182 from cloudinary/fix/duplicate-cloudinary-ass…
gabrielcld2 Jun 22, 2026
79621a8
Update i18n files
gabriel-detassigny Jun 22, 2026
b181fdb
Merge pull request #1183 from cloudinary/develop
gabrielcld2 Jun 22, 2026
5887732
Use WP 7.0 within wp-env
gabriel-detassigny Jun 23, 2026
958c30a
Improve deactivation form on WP 7.0
gabriel-detassigny Jun 23, 2026
ecfc542
Merge pull request #1185 from cloudinary/feature/deactivation-form-wp…
gabrielcld2 Jun 24, 2026
189aa5e
Remove release from deploy command for now
gabriel-detassigny Jun 24, 2026
5c7e8bd
Merge pull request #1186 from cloudinary/develop
gabrielcld2 Jun 24, 2026
c3e85db
Add analytics POC infrastructure (activation-funnel custom events)
udil-cloudinary Jun 24, 2026
ecc24e2
version bump
bruckercloud Jun 24, 2026
4090dd8
Merge pull request #1184 from cloudinary/uat
bruckercloud Jun 24, 2026
7188f68
Raise PHPStan to level 1 and fix all findings
PatelUtkarsh Jun 24, 2026
2c12413
Merge branch 'master' into develop
gabriel-detassigny Jun 24, 2026
613ec5b
Merge pull request #1187 from cloudinary/feature/analytics-poc-infra
udil-cloudinary Jun 24, 2026
71a70e8
Wire activation-funnel analytics events
udil-cloudinary Jun 24, 2026
f1ca636
Address PR review: spec-param gaps + boolean serialization
udil-cloudinary Jun 28, 2026
d43c955
Merge pull request #1189 from cloudinary/feature/analytics-poc-wiring
udil-cloudinary Jun 30, 2026
b2f1e21
Merge pull request #1180 from cloudinary/chore/phpstan-setup
gabrielcld2 Jul 6, 2026
78a2a84
Update i18n file
gabriel-detassigny Jul 7, 2026
687f24a
Adjust syntax for docblock
gabriel-detassigny Jul 7, 2026
423ac1b
Merge branch 'develop' into phpstan-level1
PatelUtkarsh Jul 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.3
3.3.4
2 changes: 1 addition & 1 deletion .wp-env.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"core": "WordPress/WordPress#6.9.4",
"core": "WordPress/WordPress#7.0",
"phpVersion": "8.2",
"plugins": ["."],
"config": {
Expand Down
1 change: 1 addition & 0 deletions cloudinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
if ( version_compare( phpversion(), '7.4', '>=' ) ) {
require_once __DIR__ . '/instance.php';
register_activation_hook( __FILE__, array( 'Cloudinary\Utils', 'install' ) );
register_deactivation_hook( __FILE__, array( 'Cloudinary\Analytics', 'record_deactivation' ) );
} else { // phpcs:ignore Universal.ControlStructures.DisallowLonelyIf.Found
if ( defined( 'WP_CLI' ) ) {
WP_CLI::warning( php_version_text() );
Expand Down
2 changes: 1 addition & 1 deletion css/cloudinary.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/cloudinary.js

Large diffs are not rendered by default.

Loading
Loading