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

Commit 7a502f9

Browse files
committed
Adding /vendor directory to release
1 parent 5fa5c07 commit 7a502f9

File tree

164 files changed

+9515
-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.

164 files changed

+9515
-0
lines changed

vendor/autoload.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
require_once __DIR__ . '/composer/autoload_real.php';
6+
7+
return ComposerAutoloaderInitce174d4185a47ba6bc9c376c05c702c9::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\jpce174d4185a47ba6bc9c376c05c702c9;
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: 235 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,235 @@
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.10.5] - 2021-08-31
9+
### Changed
10+
- Run composer update on test-php command instead of phpunit
11+
- Tests: update PHPUnit polyfills dependency (yoast/phpunit-polyfills).
12+
13+
## [2.10.4] - 2021-08-10
14+
### Changed
15+
- Updated package dependencies.
16+
17+
## [2.10.3] - 2021-05-25
18+
### Changed
19+
- Updated package dependencies.
20+
21+
## [2.10.2] - 2021-04-27
22+
### Changed
23+
- Updated package dependencies.
24+
25+
## [2.10.1] - 2021-03-30
26+
### Added
27+
- Composer alias for dev-master, to improve dependencies
28+
- Tests: Added code coverage transformation
29+
30+
### Changed
31+
- Update package dependencies.
32+
33+
### Fixed
34+
- Fix coverage test
35+
- Fix uninstallation fatal
36+
- Update tests for changed composer 2.0.9 hash.
37+
- Use `composer update` rather than `install` in scripts, as composer.lock isn't checked in.
38+
39+
## [2.10.0] - 2021-02-09
40+
41+
- Autoloader: test suite refactor
42+
43+
## [2.9.1] - 2021-02-05
44+
45+
- CI: Make tests more generic
46+
- Autoloader: stricter type-checking on WP functions
47+
- Autoloader: prevent transitive plugin execution
48+
49+
## [2.9.0] - 2021-01-25
50+
51+
- Autoloader: revised latest autoloader inclusion semantics
52+
- Add mirror-repo information to all current composer packages
53+
- Monorepo: Reorganize all projects
54+
- Autoloader: Don't cache deactivating plugins
55+
56+
## [2.8.0] - 2020-12-18
57+
58+
## [2.7.1] - 2020-12-18
59+
60+
- Autoloader: Added realpath resolution to plugin paths
61+
62+
## [2.7.0] - 2020-12-08
63+
64+
- Autoloader: Preemptively load unknown plugins from cache
65+
- Removed unwanted dot
66+
- Pin dependencies
67+
- Packages: Update for PHP 8 testing
68+
69+
## [2.6.0] - 2020-11-19
70+
71+
- Autoloader: AutoloadGenerator no longer extends Composer's AutoloadGenerator class
72+
- Autoloader: Reuse an existing autoloader suffix if available
73+
- Updated PHPCS: Packages and Debugger
74+
75+
## [2.5.0] - 2020-10-08
76+
77+
- Autoloader: remove the defined('JETPACK_AUTOLOAD_DEV') checks from the tests
78+
79+
## [2.4.0] - 2020-09-28
80+
81+
- Autoloader: remove the plugins_loaded bullet point from the README
82+
- Packages: avoid PHPCS warnings
83+
- Autoloader: add PSR-0 support
84+
- Autoloader: Detect filtering of active_plugins
85+
- Autoloader: Support unoptimized PSR-4
86+
87+
## [2.3.0] - 2020-08-21
88+
89+
- Autoloader: remove the plugin update hook
90+
91+
## [2.2.0] - 2020-08-14
92+
93+
- Autoloader: don't reset the autoloader version during plugin update
94+
- CI: Try collect js coverage
95+
96+
## [2.1.0] - 2020-07-27
97+
98+
- Autoloader: convert '\' directory separators to '/' in plugin paths
99+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
100+
- Autoloader: Tests: Use a string with define
101+
102+
## [2.0.2] - 2020-07-09
103+
104+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
105+
106+
## [2.0.1] - 2020-07-02
107+
108+
- Autoloader: Tests: Use a string with define
109+
110+
## [2.0.0] - 2020-06-29
111+
112+
## [2.0.0-beta] - 2020-06-29
113+
114+
- Autoloader: Support Composer v2.0
115+
- Autoloader: use paths to identify plugins instead of the directories
116+
- Autoloader: fix the fatal that occurs during plugin update
117+
- Autoloader: add fallback check for plugin path in mu-plugins
118+
- Autoloader: use JETPACK__PLUGIN_DIR when looking for the jetpack plugin directory.
119+
- Feature Branch: Update the Autoloader
120+
- PHPCS: Clean up the packages
121+
- PHPCS Updates after WPCS 2.3
122+
123+
## [1.7.0] - 2020-04-23
124+
125+
- Jetpack: Move comment notification override back to the constructor
126+
127+
## [1.6.0] - 2020-03-26
128+
129+
- Autoloader: Remove file check to improve performance.
130+
131+
## [1.5.0] - 2020-02-25
132+
133+
- Jetpack: instantiate manager object if it's null
134+
135+
## [1.4.1] - 2020-02-14
136+
137+
- Autoloader: Load only latest version of autoload files to avoid conflicts.
138+
139+
## [1.4.0] - 2020-01-23
140+
141+
- Autoloader: Remove the ignored classes
142+
143+
## [1.3.8] - 2020-01-14
144+
145+
- Trying to add deterministic initialization.
146+
- Autoloader: Remove Manager_Interface and Plugin\Tracking from ignored list
147+
- Autoloader: Remove Jetpack_IXR_Client from ignore list
148+
149+
## [1.3.7] - 2019-12-10
150+
151+
## [1.3.6] - 2019-12-09
152+
153+
- Autoloader: Use long-form sytax for array
154+
155+
## [1.3.5] - 2019-11-26
156+
157+
- Fix/php notice status
158+
159+
## [1.3.4] - 2019-11-08
160+
161+
- Deprecate Jetpack::is_development_mode() in favor of the packaged Status()-&gt;is_development_mode()
162+
163+
## [1.3.3] - 2019-10-28
164+
165+
- Packages: Add gitattributes files to all packages that need th…
166+
167+
## [1.3.2] - 2019-09-24
168+
169+
- Autoloader: Cover scenarios where composer/autoload_files.php…
170+
171+
## [1.3.1] - 2019-09-20
172+
173+
- Docs: Unify usage of @package phpdoc tags
174+
175+
## [1.3.0] - 2019-09-14
176+
177+
- Fix for empty namespaces. #13459
178+
- Connection: Move the Jetpack IXR client to the package
179+
- Adds full connection cycle capability to the Connection package.
180+
- Jetpack 7.5: Back compatibility package
181+
182+
## [1.2.0] - 2019-06-24
183+
184+
- Jetpack DNA: Add full classmap support to Autoloader
185+
- Move Jetpack_Sync_Main from legacy to PSR-4
186+
187+
## [1.1.0] - 2019-06-19
188+
189+
- Packages: Move autoloader tests to the package
190+
- DNA: Move Jetpack Usage tracking to its own file
191+
- Jetpack DNA: More isolation of Tracks Package
192+
- Autoloader: Ignore XMLRPC_Connector if called too early
193+
- Autoloader: Ignore Jetpack_Signature if called too early
194+
195+
## 1.0.0 - 2019-06-11
196+
197+
- Add Custom Autoloader
198+
199+
[2.10.5]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.4...v2.10.5
200+
[2.10.4]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.3...v2.10.4
201+
[2.10.3]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.2...v2.10.3
202+
[2.10.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.1...v2.10.2
203+
[2.10.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.0...v2.10.1
204+
[2.10.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.1...v2.10.0
205+
[2.9.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.0...v2.9.1
206+
[2.9.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.8.0...v2.9.0
207+
[2.8.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.1...v2.8.0
208+
[2.7.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.0...v2.7.1
209+
[2.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.6.0...v2.7.0
210+
[2.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.5.0...v2.6.0
211+
[2.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.4.0...v2.5.0
212+
[2.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.3.0...v2.4.0
213+
[2.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.2.0...v2.3.0
214+
[2.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.1.0...v2.2.0
215+
[2.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.2...v2.1.0
216+
[2.0.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.1...v2.0.2
217+
[2.0.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0...v2.0.1
218+
[2.0.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0-beta...v2.0.0
219+
[2.0.0-beta]: https://github.com/Automattic/jetpack-autoloader/compare/v1.7.0...v2.0.0-beta
220+
[1.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.6.0...v1.7.0
221+
[1.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.5.0...v1.6.0
222+
[1.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.1...v1.5.0
223+
[1.4.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.0...v1.4.1
224+
[1.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.8...v1.4.0
225+
[1.3.8]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.7...v1.3.8
226+
[1.3.7]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.6...v1.3.7
227+
[1.3.6]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.5...v1.3.6
228+
[1.3.5]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.4...v1.3.5
229+
[1.3.4]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.3...v1.3.4
230+
[1.3.3]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.2...v1.3.3
231+
[1.3.2]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.1...v1.3.2
232+
[1.3.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.0...v1.3.1
233+
[1.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.2.0...v1.3.0
234+
[1.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.1.0...v1.2.0
235+
[1.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.0.0...v1.1.0

0 commit comments

Comments
 (0)