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