Skip to content

Commit

Permalink
Update wordpress monorepo (#38662)
Browse files Browse the repository at this point in the history
* Update wordpress monorepo
* Fix lint errors in Boost
* js-packages/publicize-components: Fix apiFetch handler in unit test to handle `parse` option.
* plugins/jetpack: Fix unit test for loader recursion inside `@wordpress/components`

---------

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Brad Jorsch <[email protected]>

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10394097476

Upstream-Ref: Automattic/jetpack@d7279d9
  • Loading branch information
anomiex authored and matticbot committed Aug 14, 2024
1 parent 86be0a8 commit 68e74e2
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 17 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.2-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

### Changed
- Updated package dependencies.

## [0.1.1] - 2024-08-01
### Changed
- Internal updates.
Expand All @@ -19,4 +26,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- ExPlat: add condition to prevent fetching the experiment assignment if there's not anon id (meaning that Tracks is likely disabled) [#38327]
- Updated package dependencies. [#38132]

[0.1.2-alpha]: https://github.com/Automattic/jetpack-explat/compare/v0.1.1...v0.1.2-alpha
[0.1.1]: https://github.com/Automattic/jetpack-explat/compare/v0.1.0...v0.1.1
2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-polyfill', 'wp-url'), 'version' => '6b00a7b07d8748dca811');
<?php return array('dependencies' => array('react', 'react-jsx-runtime', 'wp-api-fetch', 'wp-polyfill', 'wp-url'), 'version' => '83bbf8166e53a439d249');
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

10 changes: 0 additions & 10 deletions build/index.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,3 @@
* Copyright(c) 2015 Douglas Christopher Wilson
* MIT Licensed
*/

/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
"automattic/jetpack-connection": "^2.12.0"
"automattic/jetpack-connection": "^2.12.1-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@automattic/jetpack-explat",
"version": "0.1.1",
"version": "0.1.2-alpha",
"description": "A package for running A/B tests on the Experimentation Platform (ExPlat) in the plugin.",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/explat/#readme",
"bugs": {
Expand Down Expand Up @@ -41,8 +41,8 @@
"dependencies": {
"@automattic/explat-client": "0.1.0",
"@automattic/explat-client-react-helpers": "0.1.1",
"@wordpress/api-fetch": "7.2.0",
"@wordpress/url": "4.2.0",
"@wordpress/api-fetch": "7.5.0",
"@wordpress/url": "4.5.0",
"cookie": "0.4.1",
"qs": "6.12.1"
}
Expand Down
2 changes: 1 addition & 1 deletion src/class-explat.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ExPlat {
*
* @var string
*/
const PACKAGE_VERSION = '0.1.1';
const PACKAGE_VERSION = '0.1.2-alpha';

/**
* Initializer.
Expand Down

0 comments on commit 68e74e2

Please sign in to comment.