Skip to content

Commit

Permalink
Connection: allow provisioning using an application password (#40447)
Browse files Browse the repository at this point in the history
Modify permission check for `/jetpack/v4/remote_provision` endpoint to allow application passwords.

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

Upstream-Ref: Automattic/jetpack@5baf0a9
  • Loading branch information
sergeymitr authored and matticbot committed Dec 5, 2024
1 parent 0820568 commit 9a9daba
Show file tree
Hide file tree
Showing 16 changed files with 144 additions and 119 deletions.
78 changes: 39 additions & 39 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/automattic/jetpack-blaze/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"require": {
"php": ">=7.2",
"automattic/jetpack-assets": "^4.0.1",
"automattic/jetpack-connection": "^6.1.1",
"automattic/jetpack-connection": "^6.2.0-alpha",
"automattic/jetpack-constants": "^3.0.1",
"automattic/jetpack-plans": "^0.5.1",
"automattic/jetpack-redirect": "^3.0.1",
Expand Down
8 changes: 8 additions & 0 deletions vendor/automattic/jetpack-connection/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).

## [6.2.0-alpha] - unreleased

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

### Added
- REST user provisioning with an app password.

## [6.1.1] - 2024-12-04
### Changed
- Updated package dependencies. [#40363]
Expand Down Expand Up @@ -1262,6 +1269,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Separate the connection library into its own package.

[6.2.0-alpha]: https://github.com/Automattic/jetpack-connection/compare/v6.1.1...v6.2.0-alpha
[6.1.1]: https://github.com/Automattic/jetpack-connection/compare/v6.1.0...v6.1.1
[6.1.0]: https://github.com/Automattic/jetpack-connection/compare/v6.0.1...v6.1.0
[6.0.1]: https://github.com/Automattic/jetpack-connection/compare/v6.0.0...v6.0.1
Expand Down
2 changes: 1 addition & 1 deletion vendor/automattic/jetpack-connection/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}"
},
"branch-alias": {
"dev-trunk": "6.1.x-dev"
"dev-trunk": "6.2.x-dev"
},
"dependencies": {
"test-only": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class Package_Version {

const PACKAGE_VERSION = '6.1.1';
const PACKAGE_VERSION = '6.2.0-alpha';

const PACKAGE_SLUG = 'connection';

Expand Down
Loading

0 comments on commit 9a9daba

Please sign in to comment.