Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit 3f58c37

Browse files
committed
Adding /vendor directory to release
1 parent 14f0e5f commit 3f58c37

File tree

165 files changed

+9621
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+9621
-0
lines changed

vendor/autoload.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
if (PHP_VERSION_ID < 50600) {
6+
echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
7+
exit(1);
8+
}
9+
10+
require_once __DIR__ . '/composer/autoload_real.php';
11+
12+
return ComposerAutoloaderInit3e91f15bad7605e165f19a4fd78753b4::getLoader();

vendor/autoload_packages.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
/**
3+
* This file was automatically generated by automattic/jetpack-autoloader.
4+
*
5+
* @package automattic/jetpack-autoloader
6+
*/
7+
8+
namespace Automattic\Jetpack\Autoloader\jp3e91f15bad7605e165f19a4fd78753b4;
9+
10+
// phpcs:ignore
11+
12+
require_once __DIR__ . '/jetpack-autoloader/class-autoloader.php';
13+
Autoloader::init();
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tests/php/tmp
Lines changed: 316 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,316 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [2.11.7] - 2022-07-26
9+
### Changed
10+
- Updated package dependencies. [#25158]
11+
12+
## [2.11.6] - 2022-06-21
13+
### Changed
14+
- Renaming `master` to `trunk`.
15+
16+
## [2.11.5] - 2022-05-18
17+
### Fixed
18+
- Fix new PHPCS sniffs. [#24366]
19+
20+
## [2.11.4] - 2022-04-26
21+
### Changed
22+
- Updated package dependencies.
23+
24+
## [2.11.3] - 2022-04-19
25+
### Changed
26+
- PHPCS: Fix `WordPress.Security.ValidatedSanitizedInput`
27+
28+
## [2.11.2] - 2022-03-29
29+
### Changed
30+
- Microperformance: Use === null instead of is_null
31+
32+
## [2.11.1] - 2022-03-08
33+
### Removed
34+
- Removed the Upgrade Handler.
35+
36+
## [2.11.0] - 2022-03-08
37+
### Added
38+
- On plugin update, pre-load all (non-PSR-4) classes from the plugin to avoid mid-upgrade fatals.
39+
40+
## [2.10.13] - 2022-03-01
41+
### Fixed
42+
- Fix tests for upstream phpunit change.
43+
44+
## [2.10.12] - 2022-01-25
45+
### Changed
46+
- Updated package dependencies.
47+
48+
## [2.10.11] - 2022-01-04
49+
### Changed
50+
- Switch to pcov for code coverage.
51+
- Updated package dependencies
52+
53+
## [2.10.10] - 2021-11-16
54+
### Added
55+
- Soft return if autoloader chain is not available.
56+
57+
## [2.10.9] - 2021-11-02
58+
### Changed
59+
- Set `convertDeprecationsToExceptions` true in PHPUnit config.
60+
61+
## [2.10.8] - 2021-10-13
62+
### Changed
63+
- Updated package dependencies.
64+
65+
## [2.10.7] - 2021-10-07
66+
### Changed
67+
- Updated package dependencies
68+
69+
## [2.10.6] - 2021-09-28
70+
### Changed
71+
- Updated package dependencies.
72+
73+
## [2.10.5] - 2021-08-31
74+
### Changed
75+
- Run composer update on test-php command instead of phpunit
76+
- Tests: update PHPUnit polyfills dependency (yoast/phpunit-polyfills).
77+
78+
## [2.10.4] - 2021-08-10
79+
### Changed
80+
- Updated package dependencies.
81+
82+
## [2.10.3] - 2021-05-25
83+
### Changed
84+
- Updated package dependencies.
85+
86+
## [2.10.2] - 2021-04-27
87+
### Changed
88+
- Updated package dependencies.
89+
90+
## [2.10.1] - 2021-03-30
91+
### Added
92+
- Composer alias for dev-master, to improve dependencies
93+
- Tests: Added code coverage transformation
94+
95+
### Changed
96+
- Update package dependencies.
97+
98+
### Fixed
99+
- Fix coverage test
100+
- Fix uninstallation fatal
101+
- Update tests for changed composer 2.0.9 hash.
102+
- Use `composer update` rather than `install` in scripts, as composer.lock isn't checked in.
103+
104+
## [2.10.0] - 2021-02-09
105+
106+
- Autoloader: test suite refactor
107+
108+
## [2.9.1] - 2021-02-05
109+
110+
- CI: Make tests more generic
111+
- Autoloader: stricter type-checking on WP functions
112+
- Autoloader: prevent transitive plugin execution
113+
114+
## [2.9.0] - 2021-01-25
115+
116+
- Autoloader: revised latest autoloader inclusion semantics
117+
- Add mirror-repo information to all current composer packages
118+
- Monorepo: Reorganize all projects
119+
- Autoloader: Don't cache deactivating plugins
120+
121+
## [2.8.0] - 2020-12-18
122+
123+
## [2.7.1] - 2020-12-18
124+
125+
- Autoloader: Added realpath resolution to plugin paths
126+
127+
## [2.7.0] - 2020-12-08
128+
129+
- Autoloader: Preemptively load unknown plugins from cache
130+
- Removed unwanted dot
131+
- Pin dependencies
132+
- Packages: Update for PHP 8 testing
133+
134+
## [2.6.0] - 2020-11-19
135+
136+
- Autoloader: AutoloadGenerator no longer extends Composer's AutoloadGenerator class
137+
- Autoloader: Reuse an existing autoloader suffix if available
138+
- Updated PHPCS: Packages and Debugger
139+
140+
## [2.5.0] - 2020-10-08
141+
142+
- Autoloader: remove the defined('JETPACK_AUTOLOAD_DEV') checks from the tests
143+
144+
## [2.4.0] - 2020-09-28
145+
146+
- Autoloader: remove the plugins_loaded bullet point from the README
147+
- Packages: avoid PHPCS warnings
148+
- Autoloader: add PSR-0 support
149+
- Autoloader: Detect filtering of active_plugins
150+
- Autoloader: Support unoptimized PSR-4
151+
152+
## [2.3.0] - 2020-08-21
153+
154+
- Autoloader: remove the plugin update hook
155+
156+
## [2.2.0] - 2020-08-14
157+
158+
- Autoloader: don't reset the autoloader version during plugin update
159+
- CI: Try collect js coverage
160+
161+
## [2.1.0] - 2020-07-27
162+
163+
- Autoloader: convert '\' directory separators to '/' in plugin paths
164+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
165+
- Autoloader: Tests: Use a string with define
166+
167+
## [2.0.2] - 2020-07-09
168+
169+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
170+
171+
## [2.0.1] - 2020-07-02
172+
173+
- Autoloader: Tests: Use a string with define
174+
175+
## [2.0.0] - 2020-06-29
176+
177+
## [2.0.0-beta] - 2020-06-29
178+
179+
- Autoloader: Support Composer v2.0
180+
- Autoloader: use paths to identify plugins instead of the directories
181+
- Autoloader: fix the fatal that occurs during plugin update
182+
- Autoloader: add fallback check for plugin path in mu-plugins
183+
- Autoloader: use JETPACK__PLUGIN_DIR when looking for the jetpack plugin directory.
184+
- Feature Branch: Update the Autoloader
185+
- PHPCS: Clean up the packages
186+
- PHPCS Updates after WPCS 2.3
187+
188+
## [1.7.0] - 2020-04-23
189+
190+
- Jetpack: Move comment notification override back to the constructor
191+
192+
## [1.6.0] - 2020-03-26
193+
194+
- Autoloader: Remove file check to improve performance.
195+
196+
## [1.5.0] - 2020-02-25
197+
198+
- Jetpack: instantiate manager object if it's null
199+
200+
## [1.4.1] - 2020-02-14
201+
202+
- Autoloader: Load only latest version of autoload files to avoid conflicts.
203+
204+
## [1.4.0] - 2020-01-23
205+
206+
- Autoloader: Remove the ignored classes
207+
208+
## [1.3.8] - 2020-01-14
209+
210+
- Trying to add deterministic initialization.
211+
- Autoloader: Remove Manager_Interface and Plugin\Tracking from ignored list
212+
- Autoloader: Remove Jetpack_IXR_Client from ignore list
213+
214+
## [1.3.7] - 2019-12-10
215+
216+
## [1.3.6] - 2019-12-09
217+
218+
- Autoloader: Use long-form sytax for array
219+
220+
## [1.3.5] - 2019-11-26
221+
222+
- Fix/php notice status
223+
224+
## [1.3.4] - 2019-11-08
225+
226+
- Deprecate Jetpack::is_development_mode() in favor of the packaged Status()-&gt;is_development_mode()
227+
228+
## [1.3.3] - 2019-10-28
229+
230+
- Packages: Add gitattributes files to all packages that need th…
231+
232+
## [1.3.2] - 2019-09-24
233+
234+
- Autoloader: Cover scenarios where composer/autoload_files.php…
235+
236+
## [1.3.1] - 2019-09-20
237+
238+
- Docs: Unify usage of @package phpdoc tags
239+
240+
## [1.3.0] - 2019-09-14
241+
242+
- Fix for empty namespaces. #13459
243+
- Connection: Move the Jetpack IXR client to the package
244+
- Adds full connection cycle capability to the Connection package.
245+
- Jetpack 7.5: Back compatibility package
246+
247+
## [1.2.0] - 2019-06-24
248+
249+
- Jetpack DNA: Add full classmap support to Autoloader
250+
- Move Jetpack_Sync_Main from legacy to PSR-4
251+
252+
## [1.1.0] - 2019-06-19
253+
254+
- Packages: Move autoloader tests to the package
255+
- DNA: Move Jetpack Usage tracking to its own file
256+
- Jetpack DNA: More isolation of Tracks Package
257+
- Autoloader: Ignore XMLRPC_Connector if called too early
258+
- Autoloader: Ignore Jetpack_Signature if called too early
259+
260+
## 1.0.0 - 2019-06-11
261+
262+
- Add Custom Autoloader
263+
264+
[2.11.7]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.6...v2.11.7
265+
[2.11.6]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.5...v2.11.6
266+
[2.11.5]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.4...v2.11.5
267+
[2.11.4]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.3...v2.11.4
268+
[2.11.3]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.2...v2.11.3
269+
[2.11.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.1...v2.11.2
270+
[2.11.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.0...v2.11.1
271+
[2.11.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.13...v2.11.0
272+
[2.10.13]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.12...v2.10.13
273+
[2.10.12]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.11...v2.10.12
274+
[2.10.11]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.10...v2.10.11
275+
[2.10.10]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.9...v2.10.10
276+
[2.10.9]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.8...v2.10.9
277+
[2.10.8]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.7...v2.10.8
278+
[2.10.7]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.6...v2.10.7
279+
[2.10.6]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.5...v2.10.6
280+
[2.10.5]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.4...v2.10.5
281+
[2.10.4]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.3...v2.10.4
282+
[2.10.3]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.2...v2.10.3
283+
[2.10.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.1...v2.10.2
284+
[2.10.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.0...v2.10.1
285+
[2.10.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.1...v2.10.0
286+
[2.9.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.0...v2.9.1
287+
[2.9.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.8.0...v2.9.0
288+
[2.8.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.1...v2.8.0
289+
[2.7.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.0...v2.7.1
290+
[2.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.6.0...v2.7.0
291+
[2.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.5.0...v2.6.0
292+
[2.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.4.0...v2.5.0
293+
[2.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.3.0...v2.4.0
294+
[2.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.2.0...v2.3.0
295+
[2.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.1.0...v2.2.0
296+
[2.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.2...v2.1.0
297+
[2.0.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.1...v2.0.2
298+
[2.0.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0...v2.0.1
299+
[2.0.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0-beta...v2.0.0
300+
[2.0.0-beta]: https://github.com/Automattic/jetpack-autoloader/compare/v1.7.0...v2.0.0-beta
301+
[1.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.6.0...v1.7.0
302+
[1.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.5.0...v1.6.0
303+
[1.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.1...v1.5.0
304+
[1.4.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.0...v1.4.1
305+
[1.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.8...v1.4.0
306+
[1.3.8]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.7...v1.3.8
307+
[1.3.7]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.6...v1.3.7
308+
[1.3.6]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.5...v1.3.6
309+
[1.3.5]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.4...v1.3.5
310+
[1.3.4]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.3...v1.3.4
311+
[1.3.3]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.2...v1.3.3
312+
[1.3.2]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.1...v1.3.2
313+
[1.3.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.0...v1.3.1
314+
[1.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.2.0...v1.3.0
315+
[1.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.1.0...v1.2.0
316+
[1.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.0.0...v1.1.0

0 commit comments

Comments
 (0)