You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 22KB

8 years ago
8 months ago
8 months ago
8 months ago
5 years ago
8 years ago
8 years ago
8 months ago
8 months ago
1 year ago
8 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  1. ## Change Log
  2. All notable changes to this project will be documented in this file.
  3. This project adheres to [Semantic Versioning](http://semver.org/).
  4. ### [Unreleased][unreleased]
  5. #### Fixed
  6. - [#526]: Path Traversal when unzip zip file
  7. - [#527]: Wrong judgment condition for ignoreComments
  8. #### Changed
  9. - Update compile-testing dependency from 0.18 to 0.21.0
  10. - [#514]: Switch to slf4j-2.x and replace log4j with slf4j-simple
  11. - [#515]: Improve class generation for testing
  12. - [#517]: Update Gradle demo to pass plugin dependencies into Manifest
  13. - [#524]: Keep the access modifier consistent
  14. #### Added
  15. #### Removed
  16. ### [3.9.0] - 2023-01-30
  17. #### Changed
  18. - [#512]: Relax Plugin construction (remove dependency on PluginWrapper)
  19. ### [3.8.0] - 2022-10-27
  20. #### Fixed
  21. - [#492]: Loading extensions crashes kotlin application
  22. - [#508]: Not create extensions.idx if no extensions exist
  23. #### Changed
  24. - Make ServiceProviderExtensionFinder optional in demo (commented code)
  25. #### Added
  26. - Add support for reading plugin descriptor from zip
  27. - Use logger instead of System.out.println for demo
  28. ### [3.7.0] - 2022-06-28
  29. #### Fixed
  30. - [#435]: Fix the path separator used in the SingletonExtensionFactoryTest.java
  31. - [#451]: Fix Dependency version check fails even if required is '*'
  32. - [#490]: Fix memory leak in SingletonExtensionFactory
  33. #### Changed
  34. - Update mockito version from 2.24.0 to 3.8.0
  35. - [#426]: Update module-info.java
  36. - [#455]: Do not rely on version from Manifest
  37. - Update Log4j version to 2.17.1
  38. #### Added
  39. - [#430]: Add a unit test in AbstractExtensionFinderTest to reproduce #428
  40. - [#450]: Add wrapper to plugin manager (SecurePluginManagerWrapper)
  41. - Add code analyses via Sonar
  42. - Add support for reading plugin descriptor from zip
  43. ### [3.6.0] - 2021-01-16
  44. #### Fixed
  45. - [#394]: `DependencyResolver` lost dependent info after plugin stop
  46. #### Added
  47. - [#415]: Externalize some useful classes from testing
  48. ### [3.5.0] - 2020-11-08
  49. #### Fixed
  50. - [#378]: Wrong log message
  51. - [#396]: `WrongDependencyVersionException` logs do not contain any info
  52. #### Changed
  53. - [#395]: Make ClassLoadingStrategy's constructor public
  54. - [#398]: Make `DefaultPluginDescriptor#addDependency` usable
  55. - [#402]: Bucketed caching in `SingletonExtensionFactory`
  56. #### Added
  57. - [#400]: Add support for JPMS (`module-info.java`)
  58. - [#404]: Support multiple plugin root directories
  59. ### [3.4.1] - 2020-08-14
  60. #### Fixed
  61. - [#371]: `ClosedFileSystemException` when I run demo (Windows)
  62. - [#391]: Incorrect enum selection in `ClassLoadingStrategy.ADP`
  63. ### [3.3.0] - 2020-04-21
  64. #### Fixed
  65. - [#355]: Cannot remove plugin jar file after unloading
  66. - [#359]: Calls to `File.mkdirs` in unzip logic may silently fail
  67. - [#363]: StackOverflow in `AbstractExtensionFinder.findExtensionAnnotation`
  68. - [#366]: Check proper list for debug logging
  69. #### Changed
  70. - [#364]: Failed plugin state added. When plugin failed to start previous state was kept
  71. - [#370]: Improve annotation processor error messages
  72. #### Added
  73. - [#352]: Add `equals`/`hashCode` to some data classes
  74. - [#365]: `PluginClassLoader` does not resolve classpath resources from plugin dependencies
  75. ### [3.2.0] - 2019-11-29
  76. #### Fixed
  77. - Fix flaky test `DefaultPluginRepositoryTest.testGetPluginArchive`
  78. - [#349]: Fix Gradle demo
  79. #### Changed
  80. - Add more defense in `ExtensionAnnotationProcessor` (error message if something is wrong)
  81. - Add more tests in `ExtensionAnnotationProcessorTest`
  82. #### Added
  83. - [#348]: Found extensions when using decorated annotations
  84. - [#350]: Support any interface as an `ExtensionPoint`
  85. ### [3.1.0] - 2019-09-08
  86. #### Fixed
  87. - [#335]: `DefaultPluginStatusProvider.enablePlugin` function seems to be wrong
  88. #### Changed
  89. - [#328]: Modified `PluginState` to an enum
  90. - [#330]: Make `AbstractPluginManager` fields protected
  91. #### Added
  92. - [#323]: Add IDEA classpath for Development mode
  93. - [#337]: Implement `PluginClassLoader.getResources`
  94. ### [3.0.0] - 2019-06-12
  95. #### Fixed
  96. - [#297]: Loading extensions may shutdown the application
  97. - Fix the plugin directory will be deleted anyway in unzip `extract` method
  98. - [#309]: Can't delete/remove unloaded plugin
  99. - [#311]: Wrong file delete on `JarPluginRepository.deletePluginPath`
  100. - [#322]: Fix `FileSystemException` in Windows on plugin delete
  101. #### Changed
  102. - Improve `run-demo` scripts
  103. - [#294]: Configure compound classes to use JAR plugins first
  104. - [#296]: Return extension classes with wildcard type arguments
  105. - [#298]: update ASM library to version 7.1
  106. - Migrate to JUnit 5
  107. - Improve `PluginZip` (used in tests)
  108. - Improve readability of `PropertiesPluginDescriptorFinderTest`
  109. - Convert `PluginException` in `PluginRuntimeException` and use unchecked exceptions in PF4J
  110. #### Added
  111. - [#278]: Make the project build on Java 11
  112. - [#287]: Check no plugin with same `pluginId` is loaded
  113. - [#288]: Document thread safety of `PluginManager`s
  114. - [#292]: Communicate errors with Exceptions where appropriate
  115. - [#306]: Provide an Archetype for new PF4J based projects
  116. - [#307]: Add `JarPluginManager` and `ZipPluginManager`
  117. - Add constants for manifest's attributes names
  118. - Add constants for properties names
  119. - Add `PluginJar` (used in tests)
  120. - Add `AbstractPluginManagerTest`
  121. - Add `DirectedGraphTest`
  122. - Add `JarPluginManagerTest`
  123. - Extract constants for some system property names
  124. #### Removed
  125. - Remove deprecated constructor in `DefaultPluginManager`
  126. ### [2.6.0] - 2019-02-01
  127. #### Fixed
  128. - [#273]: `ServiceProviderExtensionFinder` should scan the whole classpath
  129. - [#276]: The plugins in the demo did not load successfully
  130. - [#277]: Configures plugin manager to load "HowdyGreeting" using the services
  131. #### Changed
  132. - Improve run demo scripts
  133. - [#248]: Load extensions from plugin libraries
  134. - [#271]: Update `slf4j` dependency to version 1.7.25
  135. #### Added
  136. - [#265]: Explicitly configure extension points for an extension
  137. - [#270]: Optional plugin dependencies
  138. - [#275]: Add automatic module name to `pf4j.jar`
  139. ### [2.5.0] - 2018-12-12
  140. #### Fixed
  141. - [#248]: Plugin upgrade version order not guaranteed
  142. - [#250]: Method `DependencyResolver.resolve` removes dependents in check version block
  143. - [#252]: `java.nio.file.FileSystemNotFoundException`
  144. #### Changed
  145. - [#209]: Why "plugin.properties" is required?
  146. #### Added
  147. - [#242]: Add delete hook method in `Plugin`
  148. - [#256]: Adds ability to configure plugin directory
  149. ### [2.4.0] - 2018-08-01
  150. #### Fixed
  151. - [#222]: Correct the class passed to `DefaultPluginFactory's` logger
  152. - [#223]: A disabled plugin is automatically started by `pluginManager.startPlugins()`
  153. - [#229]: Can't find `plugin.properties` file inside `.jar`
  154. - Fix error in `FileUtils.getFileSystem`
  155. #### Added
  156. - [#229]: Add `SingletonExtensionFactory`
  157. - [#229]: Allow a way to query all extension classes for a given plugin
  158. ### [2.3.0] - 2018-06-04
  159. #### Fixed
  160. - [#202]: Spaces in name produce 'Illegal character in opaque part at index'
  161. - [#203]: File lock on plugin jar not released
  162. #### Changed
  163. - [#171]: Change the copyright text from the head of files
  164. - [#218]: It should not return null after it detects that the plugin has been loaded
  165. - [#219]: Improve support for Gradle and Kotlin
  166. #### Added
  167. - [#199]: Make optional the plugin class attribute of plugin manifest
  168. - [#206]: Support multiple plugin directories
  169. - Add aliases to the runtime modes (`dev` for `development` and `prod` for `deployment`)
  170. ### [2.2.0] - 2018-02-11
  171. #### Fixed
  172. - [#197]: Close `JarFile` stream after `getManifest` in `ManifestPluginDescriptorFinder.find(Path pluginPath)`
  173. - Before start a plugin check if the plugin is resolved
  174. - [#200]: Compiling with Maven under Java9 breaks project
  175. #### Changed
  176. - [#194]: Changing packaging from ZIP to JAR for demo
  177. - Improve `VersionManager` (prepare a new `pf4j-update` release)
  178. #### Added
  179. - [#166]: Simplify main `README` (move the content to http://www.pf4j.org)
  180. - [#190]: Add methods to just get extension classes
  181. - Add `LoggingPluginStateListener` as listener in `DefaultPluginManager` (only for `development` mode)
  182. - Add new `RESOLVED` as plugin state
  183. - Add support for PARENT FIRST loading strategy
  184. ### [2.1.0] - 2018-01-10
  185. #### Fixed
  186. - [#177]: Fix Gradle demo
  187. - [#178]: `@Override` should not change method signature
  188. - [#184]: Bug in FileUtils while creating URI on Windows
  189. #### Changed
  190. - [#180]: Refactoring to make `PluginDescriptor` more usable
  191. ### [2.0.0] - 2017-10-17
  192. #### Fixed
  193. - [#156]: `FileSystemException` when I call `deletePlugin` after `getExtensions`
  194. - Fix Maven warnings
  195. #### Changed
  196. - [#149]: Updated gradle demo dependencies and switched from System.out.println to slf4j log
  197. - Update some code to Java 7
  198. - [#168]: Change root package from `ro.fortsoft.pf4j` to `org.pf4j`
  199. - Open a new extension (protected method) point in `PropertiesPluginDescriptorFinder`
  200. #### Added
  201. - [#146]: Kotlin plugin example added and README updated for Kotlin
  202. - [#150]: Enforce dependencies versions
  203. - [#155]: Add VersionManager abstractization (breaking change)
  204. - [#172]: Add `CompoundPluginDescriptorFinder`
  205. - Add `CompoundPluginLoader`
  206. #### Removed
  207. - Remove `JarPluginManager` (the logic is included in `DefaultPluginManager` via `CompoundXYZ` concept)
  208. ### [1.3.0] - 2017-05-03
  209. #### Fixed
  210. - [#129]: Properties Descriptor finder bug fixes and a test
  211. - [#131]: Fix bug in `loadJars()`, did not add `/lib` to classloader
  212. - [#134]: `getVersion()` use wrong class for calculating PF4J version
  213. - [#135]: `deletePlugin()` failed to delete plugin folder with contents
  214. - [#137]: The requires Expression does not print well
  215. - [#140]: Unzip plugin zip file in `loadPluginFromPath()`
  216. #### Changed
  217. - [#130]: Refactor validation of PluginDescriptors
  218. - [#138]: Refactor of requires in PluginDescriptor (breaking change)
  219. #### Added
  220. - [#133]: Support for adding license information to the plugins
  221. - [#136]: Delete plugin zip on uninstall
  222. - [#139]: Ability to get `pluginsRoot` from PluginManager
  223. - Add constructors with varargs in PluginException
  224. ### [1.2.0] - 2017-03-03
  225. #### Fixed
  226. - [#125]: Fix possible NPE
  227. #### Changed
  228. - [#116]: Updated PF4J to newest version in Gradle demo
  229. - Reactivate protection against the issues similar with [#97]
  230. #### Added
  231. - [#128]: Add `JarPluginManager`, `PluginLoader`, `AbstractPluginManager`
  232. ### [1.1.1] - 2016-11-17
  233. #### Fixed
  234. - [#116]: Default/System extensions are duplicated
  235. #### Added
  236. - [#111]: Add inheritance support on Extension annotation
  237. ### [1.1.0] - 2016-08-22
  238. #### Changed
  239. - [#107]: PluginDescriptor can't be extended
  240. #### Added
  241. - [#108]: Return a list of all extensions from a plugin and optional for an extension point
  242. ### [1.0.0] - 2016-07-07
  243. #### Fixed
  244. - [#99]: NPE in `DefaultPluginManager.stopPlugin()`
  245. - [#100]: Gradle build in demo_gradle is broken
  246. - [#103]: Gradle demos don't build zip with libs
  247. - Fix logging issue in demo
  248. #### Changed
  249. - Rework defense against [#97]
  250. - Eliminate duplicate log messages from demo
  251. - Improve debugging for "no extensions found"
  252. ### [0.13.1] - 2016-04-01
  253. #### Fixed
  254. - [#98]: WARN ro.fortsoft.pf4j.AbstractExtensionFinder (too many log lines)
  255. ### [0.13.0] - 2016-03-28
  256. #### Fixed
  257. - Fix issue with listing files from the jar file in `readPluginsStorages()`
  258. - [#89]: Fix "URI is not hierarchical" issue
  259. - [#91]: Using project lombok with pf4j causes javax.annotation.processing.FilerException
  260. #### Changed
  261. - Log with trace level on PluginClassLoader
  262. #### Added
  263. - Add `distributionManagement` section in `pom.xml`
  264. - Add defense to [#97]
  265. - Add helper `DefaultExtensionFinder.addServiceProviderExtensionFinder()`
  266. #### Removed
  267. - Disable `ServiceProviderExtensionFinder` from `DefaultExtensionFinder`
  268. ### [0.12.0] - 2016-01-29
  269. #### Fixed
  270. - [#83]: `stopPlugin()` throws NPE for dependents check
  271. - In development mode hide `plugins/target` folder (it' is not a plugin)
  272. #### Changed
  273. - Add constructor with vararg and make `addFileFilter()` fluent in `AndFileFilter`
  274. - [#84]: remove warn from `DefaultPluginManager.whichPlugin()`
  275. - Pull method `DefaultPluginManager.whichPlugin()` to PluginManager
  276. - Add `getExtensionFactory()` in PluginManager interface
  277. #### Added
  278. - Add constructor with vararg and make addFileFilter method fluent in `AndFileFilter`
  279. - Add `NameFileFilter` and `OrFileFilter`
  280. - [#85]: ExtensionStorage based on Java Service Provider (META-INf/services)
  281. ### [0.11.0] - 2015-11-19
  282. #### Fixed
  283. - [#78]: `PluginManager.disablePlugin()` throws UnsupportedOperationExeption
  284. #### Changed
  285. - Make more fields protected in DefaultPluginManager
  286. - [#70]: Improve PluginDescriptorFinder implementations
  287. - Make PluginManager available in Plugin via PluginWrapper
  288. #### Added
  289. - [#66]: Add possibility to overwrite DefaultPluginManager (to create a JarPluginManager)
  290. - Added one more fail test to DefaultPluginFactory
  291. - Added one more fail test to DefaultExtensionFactory
  292. - Added ManifestPluginDescriptorFinder tests
  293. ### [0.10.0] - 2015-08-11
  294. #### Fixed
  295. - [#39]: Fix build on JDK 1.8
  296. - [42]: Stop Plugin issue
  297. - [60]: Failed tests
  298. #### Changed
  299. - Improve logging for DefaultExtensionFinder
  300. - Add defense for [#21]: (not find META-INF/extensions.idx)
  301. - [#44]: Replace `Version` class with `semver` lib
  302. - [#55]: Stop plugin leafs first
  303. - [63]: Extended pf4j to allow custom class loaders to be created
  304. #### Added
  305. - [#33]: Add demo build configuration with Gradle
  306. - [#40]: Add Plugin status provider
  307. - [#41]: Added plugin archive source abstraction
  308. - Added test for DefaultPluginRepository
  309. [unreleased]: https://github.com/decebals/pf4j/compare/release-3.9.0...HEAD
  310. [3.9.0]: https://github.com/decebals/pf4j/compare/release-3.8.0...release-3.9.0
  311. [3.8.0]: https://github.com/decebals/pf4j/compare/release-3.7.0...release-3.8.0
  312. [3.7.0]: https://github.com/decebals/pf4j/compare/release-3.6.0...release-3.7.0
  313. [3.6.0]: https://github.com/decebals/pf4j/compare/release-3.5.0...release-3.6.0
  314. [3.5.0]: https://github.com/decebals/pf4j/compare/release-3.4.1...release-3.5.0
  315. [3.4.1]: https://github.com/decebals/pf4j/compare/release-3.4.0...release-3.4.1
  316. [3.4.1]: https://github.com/decebals/pf4j/compare/release-3.3.0...release-3.4.0
  317. [3.3.0]: https://github.com/decebals/pf4j/compare/release-3.2.0...release-3.3.0
  318. [3.2.0]: https://github.com/decebals/pf4j/compare/release-3.1.0...release-3.2.0
  319. [3.1.0]: https://github.com/decebals/pf4j/compare/release-3.0.0...release-3.1.0
  320. [3.0.0]: https://github.com/decebals/pf4j/compare/release-2.6.0...release-3.0.0
  321. [2.6.0]: https://github.com/decebals/pf4j/compare/release-2.5.0...release-2.6.0
  322. [2.5.0]: https://github.com/decebals/pf4j/compare/release-2.4.0...release-2.5.0
  323. [2.4.0]: https://github.com/decebals/pf4j/compare/release-2.3.0...release-2.4.0
  324. [2.3.0]: https://github.com/decebals/pf4j/compare/release-2.2.0...release-2.3.0
  325. [2.2.0]: https://github.com/decebals/pf4j/compare/release-2.1.0...release-2.2.0
  326. [2.1.0]: https://github.com/decebals/pf4j/compare/release-2.0.0...release-2.1.0
  327. [2.0.0]: https://github.com/decebals/pf4j/compare/release-1.3.0...release-2.0.0
  328. [1.3.0]: https://github.com/decebals/pf4j/compare/release-1.2.0...release-1.3.0
  329. [1.2.0]: https://github.com/decebals/pf4j/compare/release-1.1.1...release-1.2.0
  330. [1.1.1]: https://github.com/decebals/pf4j/compare/release-1.1.0...release-1.1.1
  331. [1.1.0]: https://github.com/decebals/pf4j/compare/release-1.0.0...release-1.1.0
  332. [1.0.0]: https://github.com/decebals/pf4j/compare/release-0.13.1...release-1.0.0
  333. [0.13.1]: https://github.com/decebals/pf4j/compare/release-0.13.0...release-0.13.1
  334. [0.13.0]: https://github.com/decebals/pf4j/compare/release-0.12.0...release-0.13.0
  335. [0.12.0]: https://github.com/decebals/pf4j/compare/release-0.11.0...release-0.12.0
  336. [0.11.0]: https://github.com/decebals/pf4j/compare/release-0.10.0...release-0.11.0
  337. [0.10.0]: https://github.com/decebals/pf4j/compare/release-0.9.0...release-0.10.0
  338. [#527]: https://github.com/pf4j/pf4j/issues/527
  339. [#526]: https://github.com/pf4j/pf4j/issues/526
  340. [#524]: https://github.com/pf4j/pf4j/issues/524
  341. [#517]: https://github.com/pf4j/pf4j/pull/517
  342. [#515]: https://github.com/pf4j/pf4j/pull/515
  343. [#514]: https://github.com/pf4j/pf4j/pull/514
  344. [#512]: https://github.com/pf4j/pf4j/pull/512
  345. [#508]: https://github.com/pf4j/pf4j/issues/508
  346. [#492]: https://github.com/pf4j/pf4j/issues/492
  347. [#490]: https://github.com/pf4j/pf4j/pull/490
  348. [#455]: https://github.com/pf4j/pf4j/pull/455
  349. [#451]: https://github.com/pf4j/pf4j/pull/451
  350. [#450]: https://github.com/pf4j/pf4j/pull/450
  351. [#435]: https://github.com/pf4j/pf4j/pull/435
  352. [#430]: https://github.com/pf4j/pf4j/pull/430
  353. [#426]: https://github.com/pf4j/pf4j/pull/426
  354. [#415]: https://github.com/pf4j/pf4j/pull/415
  355. [#404]: https://github.com/pf4j/pf4j/pull/404
  356. [#402]: https://github.com/pf4j/pf4j/pull/402
  357. [#400]: https://github.com/pf4j/pf4j/issues/400
  358. [#398]: https://github.com/pf4j/pf4j/pull/398
  359. [#396]: https://github.com/pf4j/pf4j/issues/396
  360. [#395]: https://github.com/pf4j/pf4j/issues/395
  361. [#394]: https://github.com/pf4j/pf4j/issues/394
  362. [#378]: https://github.com/pf4j/pf4j/issues/378
  363. [#391]: https://github.com/pf4j/pf4j/issues/391
  364. [#371]: https://github.com/pf4j/pf4j/issues/371
  365. [#370]: https://github.com/pf4j/pf4j/pull/370
  366. [#366]: https://github.com/pf4j/pf4j/pull/366
  367. [#365]: https://github.com/pf4j/pf4j/pull/365
  368. [#364]: https://github.com/pf4j/pf4j/pull/364
  369. [#363]: https://github.com/pf4j/pf4j/issues/363
  370. [#359]: https://github.com/pf4j/pf4j/issues/359
  371. [#355]: https://github.com/pf4j/pf4j/issues/355
  372. [#352]: https://github.com/pf4j/pf4j/pull/352
  373. [#350]: https://github.com/pf4j/pf4j/pull/350
  374. [#349]: https://github.com/pf4j/pf4j/pull/349
  375. [#348]: https://github.com/pf4j/pf4j/pull/348
  376. [#337]: https://github.com/pf4j/pf4j/pull/337
  377. [#335]: https://github.com/pf4j/pf4j/issues/335
  378. [#330]: https://github.com/pf4j/pf4j/pull/330
  379. [#328]: https://github.com/pf4j/pf4j/pull/328
  380. [#323]: https://github.com/pf4j/pf4j/pull/323
  381. [#322]: https://github.com/pf4j/pf4j/pull/322
  382. [#311]: https://github.com/pf4j/pf4j/issues/311
  383. [#309]: https://github.com/pf4j/pf4j/issues/309
  384. [#307]: https://github.com/pf4j/pf4j/issues/307
  385. [#306]: https://github.com/pf4j/pf4j/issues/306
  386. [#298]: https://github.com/pf4j/pf4j/pull/298
  387. [#297]: https://github.com/pf4j/pf4j/issues/297
  388. [#296]: https://github.com/pf4j/pf4j/issues/296
  389. [#294]: https://github.com/pf4j/pf4j/issues/294
  390. [#292]: https://github.com/pf4j/pf4j/issues/292
  391. [#288]: https://github.com/pf4j/pf4j/pull/288
  392. [#287]: https://github.com/pf4j/pf4j/pull/287
  393. [#278]: https://github.com/pf4j/pf4j/pull/278
  394. [#277]: https://github.com/pf4j/pf4j/pull/277
  395. [#276]: https://github.com/pf4j/pf4j/pull/276
  396. [#275]: https://github.com/pf4j/pf4j/pull/275
  397. [#273]: https://github.com/pf4j/pf4j/pull/273
  398. [#271]: https://github.com/pf4j/pf4j/pull/271
  399. [#270]: https://github.com/pf4j/pf4j/pull/270
  400. [#265]: https://github.com/pf4j/pf4j/pull/265
  401. [#262]: https://github.com/pf4j/pf4j/pull/262
  402. [#256]: https://github.com/pf4j/pf4j/pull/256
  403. [#252]: https://github.com/pf4j/pf4j/issues/252
  404. [#250]: https://github.com/pf4j/pf4j/issues/250
  405. [#248]: https://github.com/pf4j/pf4j/issues/248
  406. [#242]: https://github.com/pf4j/pf4j/issues/242
  407. [#233]: https://github.com/pf4j/pf4j/pull/233
  408. [#232]: https://github.com/pf4j/pf4j/issues/232
  409. [#229]: https://github.com/pf4j/pf4j/issues/229
  410. [#223]: https://github.com/pf4j/pf4j/issues/223
  411. [#222]: https://github.com/pf4j/pf4j/pull/222
  412. [#219]: https://github.com/pf4j/pf4j/pull/219
  413. [#218]: https://github.com/pf4j/pf4j/issues/218
  414. [#209]: https://github.com/pf4j/pf4j/issues/209
  415. [#206]: https://github.com/pf4j/pf4j/issues/206
  416. [#203]: https://github.com/pf4j/pf4j/issues/203
  417. [#202]: https://github.com/pf4j/pf4j/issues/202
  418. [#200]: https://github.com/decebals/pf4j/issues/200
  419. [#199]: https://github.com/pf4j/pf4j/issues/199
  420. [#197]: https://github.com/decebals/pf4j/pull/197
  421. [#194]: https://github.com/decebals/pf4j/pull/194
  422. [#190]: https://github.com/decebals/pf4j/issues/190
  423. [#184]: https://github.com/decebals/pf4j/issues/184
  424. [#180]: https://github.com/decebals/pf4j/pull/180
  425. [#178]: https://github.com/decebals/pf4j/pull/178
  426. [#177]: https://github.com/decebals/pf4j/pull/177
  427. [#172]: https://github.com/decebals/pf4j/pull/172
  428. [#171]: https://github.com/pf4j/pf4j/issues/171
  429. [#168]: https://github.com/decebals/pf4j/pull/168
  430. [#166]: https://github.com/decebals/pf4j/issues/166
  431. [#156]: https://github.com/decebals/pf4j/issues/156
  432. [#155]: https://github.com/decebals/pf4j/pull/155
  433. [#150]: https://github.com/decebals/pf4j/pull/150
  434. [#149]: https://github.com/decebals/pf4j/pull/149
  435. [#146]: https://github.com/decebals/pf4j/pull/146
  436. [#140]: https://github.com/decebals/pf4j/pull/140
  437. [#139]: https://github.com/decebals/pf4j/pull/139
  438. [#138]: https://github.com/decebals/pf4j/pull/138
  439. [#137]: https://github.com/decebals/pf4j/pull/137
  440. [#136]: https://github.com/decebals/pf4j/pull/136
  441. [#135]: https://github.com/decebals/pf4j/pull/135
  442. [#134]: https://github.com/decebals/pf4j/pull/134
  443. [#133]: https://github.com/decebals/pf4j/pull/133
  444. [#131]: https://github.com/decebals/pf4j/pull/131
  445. [#130]: https://github.com/decebals/pf4j/pull/130
  446. [#129]: https://github.com/decebals/pf4j/pull/129
  447. [#128]: https://github.com/decebals/pf4j/pull/128
  448. [#125]: https://github.com/decebals/pf4j/pull/125
  449. [#122]: https://github.com/decebals/pf4j/pull/122
  450. [#116]: https://github.com/decebals/pf4j/issues/116
  451. [#111]: https://github.com/decebals/pf4j/pull/111
  452. [#108]: https://github.com/decebals/pf4j/pull/108
  453. [#107]: https://github.com/decebals/pf4j/issues/107
  454. [#103]: https://github.com/decebals/pf4j/issues/103
  455. [#100]: https://github.com/decebals/pf4j/issues/100
  456. [#99]: https://github.com/decebals/pf4j/issues/99
  457. [#98]: https://github.com/decebals/pf4j/issues/98
  458. [#97]: https://github.com/decebals/pf4j/issues/97
  459. [#91]: https://github.com/decebals/pf4j/issues/91
  460. [#89]: https://github.com/decebals/pf4j/pull/89
  461. [#85]: https://github.com/decebals/pf4j/issues/85
  462. [#84]: https://github.com/decebals/pf4j/issues/84
  463. [#83]: https://github.com/decebals/pf4j/issues/83
  464. [#78]: https://github.com/decebals/pf4j/issues/78
  465. [#70]: https://github.com/decebals/pf4j/issues/70
  466. [#66]: https://github.com/decebals/pf4j/issues/66
  467. [#63]: https://github.com/decebals/pf4j/issues/63
  468. [#60]: https://github.com/decebals/pf4j/issues/60
  469. [#55]: https://github.com/decebals/pf4j/pull/55
  470. [#44]: https://github.com/decebals/pf4j/pull/44
  471. [#42]: https://github.com/decebals/pf4j/pull/42
  472. [#41]: https://github.com/decebals/pf4j/pull/41
  473. [#40]: https://github.com/decebals/pf4j/pull/40
  474. [#39]: https://github.com/decebals/pf4j/pull/39
  475. [#33]: https://github.com/decebals/pf4j/pull/33
  476. [#21]: https://github.com/decebals/pf4j/issues/21