Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 12 additions & 0 deletions projects/plugins/inspect/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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).

## [2.0.0-a.9] - 2026-01-09
### Added
- IDC: Add revalidation for IDCs. [#46268]
- Tested up to WordPress 6.9 [#45571]

### Changed
- Update package dependencies. [#45478] [#45652] [#45915] [#46143] [#46456]

### Fixed
- Ensure proper flags are used with `json_encode()`. [#46117]

## [2.0.0-a.7] - 2025-10-09
### Added
- Add `typecheck` script to ensure that TypeScript files are type-checked. [#45034]
Expand Down Expand Up @@ -42,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- General: Update minimum PHP version to 7.2. [#40147]
- General: Indicate compatibility with WordPress 6.8. [#42701]

[2.0.0-a.9]: https://github.com/Automattic/jetpack-inspect/compare/v2.0.0-a.7...v2.0.0-a.9
[2.0.0-a.7]: https://github.com/Automattic/jetpack-inspect/compare/v2.0.0-a.5...v2.0.0-a.7
[2.0.0-a.5]: https://github.com/Automattic/jetpack-inspect/compare/v2.0.0-a.3...v2.0.0-a.5
[2.0.0-a.3]: https://github.com/Automattic/jetpack-inspect/compare/v2.0.0-a.1...v2.0.0-a.3
4 changes: 0 additions & 4 deletions projects/plugins/inspect/changelog/add-idc-revalidate

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/inspect/changelog/prerelease

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/inspect/changelog/prerelease#2

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/inspect/changelog/prerelease#3

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/inspect/changelog/renovate-eslint-packages

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/inspect/changelog/renovate-typescript-5.x

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/inspect/changelog/update-composer-2.9

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion projects/plugins/inspect/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
},
"autoloader-suffix": "2662d159b2161b86f56c5059a9d397af_inspectⓥ2_0_0_a_7"
"autoloader-suffix": "2662d159b2161b86f56c5059a9d397af_inspectⓥ2_0_0_a_9"
},
"scripts": {
"phpunit": [
Expand Down
2 changes: 1 addition & 1 deletion projects/plugins/inspect/jetpack-inspect.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @wordpress-plugin
* Plugin Name: Jetpack Inspect
* Version: 2.0.0-a.7
* Version: 2.0.0-a.9
* Plugin URI: https://automattic.com
* Description: Inspect HTTP incoming and outgoing requests and responses.
* Author: pyronaur
Expand Down
2 changes: 1 addition & 1 deletion projects/plugins/inspect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@automattic/jetpack-inspect",
"version": "2.0.0-a.7",
"version": "2.0.0-a.9",
"private": true,
"description": "A debugging plugin to inspect Jetpack interactions with WordPress.com.",
"homepage": "https://jetpack.com",
Expand Down
10 changes: 7 additions & 3 deletions projects/plugins/inspect/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: jetpack, stuff
Requires at least: 6.7
Requires PHP: 7.2
Tested up to: 6.9
Stable tag: 2.0.0-a.7
Stable tag: 2.0.0-a.9
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -33,13 +33,17 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove
2. This is the second screen shot

== Changelog ==
### 2.0.0-a.7 - 2025-10-09
### 2.0.0-a.9 - 2026-01-09
#### Added
- Add `typecheck` script to ensure that TypeScript files are type-checked.
- IDC: Add revalidation for IDCs.
- Tested up to WordPress 6.9

#### Changed
- Update package dependencies.

#### Fixed
- Ensure proper flags are used with `json_encode()`.

== Arbitrary section ==

You may provide arbitrary sections, in the same format as the ones above. This may be of use for extremely complicated
Expand Down
Loading