Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
CHANGELOG.md
001 # CHANGELOG
002
003 ## 1.1.3 - 2017-09-06
004
005 This release fixes a bug that caused PackageVersions to prevent
006 the `composer remove` and `composer update` commands to fail when
007 this package is removed.
008
009 In addition to that, mutation testing has been added to the suite,
010 ensuring that the package is accurately and extensively tested.
011
012 Total issues resolved: **3**
013
014 - [40: Mutation testing, PHP 7.1 testing](https://github.com/Ocramius/PackageVersions/pull/40) thanks to @Ocramius
015 - [41: Removing this package on install results in file access error](https://github.com/Ocramius/PackageVersions/issues/41) thanks to @Xerkus
016 - [46: #41 Avoid issues when the package is scheduled for removal](https://github.com/Ocramius/PackageVersions/pull/46) thanks to @Jean85
017
018 ## 1.1.2 - 2016-12-30
019
020 This release fixes a bug that caused PackageVersions to be enabled
021 even when it was part of a globally installed package.
022
023 Total issues resolved: **3**
024
025 - [35: remove all temp directories](https://github.com/Ocramius/PackageVersions/pull/35)
026 - [38: Interferes with other projects when installed globally](https://github.com/Ocramius/PackageVersions/issues/38)
027 - [39: Ignore the global plugin when updating local projects](https://github.com/Ocramius/PackageVersions/pull/39)
028
029 ## 1.1.1 - 2016-07-25
030
031 This release removes the [`"files"`](https://getcomposer.org/doc/04-schema.md#files) directive from
032 [`composer.json`](https://github.com/Ocramius/PackageVersions/commit/86f2636f7c5e7b56fa035fa3826d5fcf80b6dc72),
033 as it is no longer needed for `composer install --classmap-authoritative`.
034 Also, that directive was causing issues with HHVM installations, since
035 PackageVersions is not compatible with it.
036
037 Total issues resolved: **1**
038
039 - [34: Fatal error during travis build after update to 1.1.0](https://github.com/Ocramius/PackageVersions/issues/34)
040
041 ## 1.1.0 - 2016-07-22
042
043 This release introduces support for running `composer install --classmap-authoritative`
044 and `composer install --no-scripts`. Please note that performance
045 while using these modes may be degraded, but the package will
046 still work.
047
048 Additionally, the package was tuned to prevent the plugin from
049 running twice at installation.
050
051 Total issues resolved: **10**
052
053 - [18: Fails when using composer install --no-scripts](https://github.com/Ocramius/PackageVersions/issues/18)
054 - [20: CS (spacing)](https://github.com/Ocramius/PackageVersions/pull/20)
055 - [22: Document the way the require-dev section is treated](https://github.com/Ocramius/PackageVersions/issues/22)
056 - [23: Underline that composer.lock is used as source of information](https://github.com/Ocramius/PackageVersions/pull/23)
057 - [27: Fix incompatibility with --classmap-authoritative](https://github.com/Ocramius/PackageVersions/pull/27)
058 - [29: mention optimize-autoloader composer.json config option in README](https://github.com/Ocramius/PackageVersions/pull/29)
059 - [30: The version class is generated twice during composer update](https://github.com/Ocramius/PackageVersions/issues/30)
060 - [31: Remove double registration of the event listeners](https://github.com/Ocramius/PackageVersions/pull/31)
061 - [32: Update the usage of mock APIs to use the new API](https://github.com/Ocramius/PackageVersions/pull/32)
062 - [33: Fix for #18 - support running with --no-scripts flag](https://github.com/Ocramius/PackageVersions/pull/33)
063
064 ## 1.0.4 - 2016-04-23
065
066 This release includes a fix/workaround for composer/composer#5237,
067 which causes `ocramius/package-versions` to sometimes generate a
068 `Versions` class with malformed name (something like
069 `Versions_composer_tmp0`) when running `composer require <package-name>`.
070
071 Total issues resolved: **2**
072
073 - [16: Workaround for composer/composer#5237 - class parsing](https://github.com/Ocramius/PackageVersions/pull/16)
074 - [17: Weird Class name being generated](https://github.com/Ocramius/PackageVersions/issues/17)
075
076 ## 1.0.3 - 2016-02-26
077
078 This release fixes an issue related to concurrent autoloader
079 re-generation caused by multiple composer plugins being installed.
080 The issue was solved by removing autoloader re-generation from this
081 package, but it may still affect other packages.
082
083 It is now recommended that you run `composer dump-autoload --optimize`
084 after installation when using this particular package.
085 Please note that `composer (install|update) -o` is not sufficient
086 to avoid autoload overhead when using this particular package.
087
088 Total issues resolved: **1**
089
090 - [15: Remove autoload re-dump optimization](https://github.com/Ocramius/PackageVersions/pull/15)
091
092 ## 1.0.2 - 2016-02-24
093
094 This release fixes issues related to installing the component without
095 any dev dependencies or with packages that don't have a source or dist
096 reference, which is usual with packages defined directly in the
097 `composer.json`.
098
099 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)
121