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 21KB

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