[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 # CHANGELOG 2 3 ## 1.1.3 - 2017-09-06 4 5 This release fixes a bug that caused PackageVersions to prevent 6 the `composer remove` and `composer update` commands to fail when 7 this package is removed. 8 9 In addition to that, mutation testing has been added to the suite, 10 ensuring that the package is accurately and extensively tested. 11 12 Total issues resolved: **3** 13 14 - [40: Mutation testing, PHP 7.1 testing](https://github.com/Ocramius/PackageVersions/pull/40) thanks to @Ocramius 15 - [41: Removing this package on install results in file access error](https://github.com/Ocramius/PackageVersions/issues/41) thanks to @Xerkus 16 - [46: #41 Avoid issues when the package is scheduled for removal](https://github.com/Ocramius/PackageVersions/pull/46) thanks to @Jean85 17 18 ## 1.1.2 - 2016-12-30 19 20 This release fixes a bug that caused PackageVersions to be enabled 21 even when it was part of a globally installed package. 22 23 Total issues resolved: **3** 24 25 - [35: remove all temp directories](https://github.com/Ocramius/PackageVersions/pull/35) 26 - [38: Interferes with other projects when installed globally](https://github.com/Ocramius/PackageVersions/issues/38) 27 - [39: Ignore the global plugin when updating local projects](https://github.com/Ocramius/PackageVersions/pull/39) 28 29 ## 1.1.1 - 2016-07-25 30 31 This release removes the [`"files"`](https://getcomposer.org/doc/04-schema.md#files) directive from 32 [`composer.json`](https://github.com/Ocramius/PackageVersions/commit/86f2636f7c5e7b56fa035fa3826d5fcf80b6dc72), 33 as it is no longer needed for `composer install --classmap-authoritative`. 34 Also, that directive was causing issues with HHVM installations, since 35 PackageVersions is not compatible with it. 36 37 Total issues resolved: **1** 38 39 - [34: Fatal error during travis build after update to 1.1.0](https://github.com/Ocramius/PackageVersions/issues/34) 40 41 ## 1.1.0 - 2016-07-22 42 43 This release introduces support for running `composer install --classmap-authoritative` 44 and `composer install --no-scripts`. Please note that performance 45 while using these modes may be degraded, but the package will 46 still work. 47 48 Additionally, the package was tuned to prevent the plugin from 49 running twice at installation. 50 51 Total issues resolved: **10** 52 53 - [18: Fails when using composer install --no-scripts](https://github.com/Ocramius/PackageVersions/issues/18) 54 - [20: CS (spacing)](https://github.com/Ocramius/PackageVersions/pull/20) 55 - [22: Document the way the require-dev section is treated](https://github.com/Ocramius/PackageVersions/issues/22) 56 - [23: Underline that composer.lock is used as source of information](https://github.com/Ocramius/PackageVersions/pull/23) 57 - [27: Fix incompatibility with --classmap-authoritative](https://github.com/Ocramius/PackageVersions/pull/27) 58 - [29: mention optimize-autoloader composer.json config option in README](https://github.com/Ocramius/PackageVersions/pull/29) 59 - [30: The version class is generated twice during composer update](https://github.com/Ocramius/PackageVersions/issues/30) 60 - [31: Remove double registration of the event listeners](https://github.com/Ocramius/PackageVersions/pull/31) 61 - [32: Update the usage of mock APIs to use the new API](https://github.com/Ocramius/PackageVersions/pull/32) 62 - [33: Fix for #18 - support running with --no-scripts flag](https://github.com/Ocramius/PackageVersions/pull/33) 63 64 ## 1.0.4 - 2016-04-23 65 66 This release includes a fix/workaround for composer/composer#5237, 67 which causes `ocramius/package-versions` to sometimes generate a 68 `Versions` class with malformed name (something like 69 `Versions_composer_tmp0`) when running `composer require <package-name>`. 70 71 Total issues resolved: **2** 72 73 - [16: Workaround for composer/composer#5237 - class parsing](https://github.com/Ocramius/PackageVersions/pull/16) 74 - [17: Weird Class name being generated](https://github.com/Ocramius/PackageVersions/issues/17) 75 76 ## 1.0.3 - 2016-02-26 77 78 This release fixes an issue related to concurrent autoloader 79 re-generation caused by multiple composer plugins being installed. 80 The issue was solved by removing autoloader re-generation from this 81 package, but it may still affect other packages. 82 83 It is now recommended that you run `composer dump-autoload --optimize` 84 after installation when using this particular package. 85 Please note that `composer (install|update) -o` is not sufficient 86 to avoid autoload overhead when using this particular package. 87 88 Total issues resolved: **1** 89 90 - [15: Remove autoload re-dump optimization](https://github.com/Ocramius/PackageVersions/pull/15) 91 92 ## 1.0.2 - 2016-02-24 93 94 This release fixes issues related to installing the component without 95 any dev dependencies or with packages that don't have a source or dist 96 reference, which is usual with packages defined directly in the 97 `composer.json`. 98 99 Total issues resolved: **3** 100 101 - [11: fix composer install --no-dev PHP7](https://github.com/Ocramius/PackageVersions/pull/11) 102 - [12: Packages don't always have a source/reference](https://github.com/Ocramius/PackageVersions/issues/12) 103 - [13: Fix #12 - support dist and missing package version references](https://github.com/Ocramius/PackageVersions/pull/13) 104 105 ## 1.0.1 - 2016-02-01 106 107 This release fixes an issue related with composer updates to 108 already installed versions. 109 Using `composer require` within a package that already used 110 `ocramius/package-versions` caused the installation to be unable 111 to write the `PackageVersions\Versions` class to a file. 112 113 Total issues resolved: **6** 114 115 - [2: remove unused use statement](https://github.com/Ocramius/PackageVersions/pull/2) 116 - [3: Remove useless files from dist package](https://github.com/Ocramius/PackageVersions/pull/3) 117 - [5: failed to open stream: phar error: write operations disabled by the php.ini setting phar.readonly](https://github.com/Ocramius/PackageVersions/issues/5) 118 - [6: Fix/#5 use composer vendor dir](https://github.com/Ocramius/PackageVersions/pull/6) 119 - [7: Hotfix - #5 generate package versions also when in phar context](https://github.com/Ocramius/PackageVersions/pull/7) 120 - [8: Versions class should be ignored by VCS, as it is an install-time artifact](https://github.com/Ocramius/PackageVersions/pull/8)
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |