c09ebe60107ef2d316321cef1c1bccf5c0545df7
[yaffs-website] / vendor / doctrine / annotations / CHANGELOG.md
1 ## Changelog
2
3
4 ### 1.4.0
5
6 This release fix an issue were some annotations could be not loaded if the namespace in the use statement started with a backslash.
7 It also update the tests and drop the support for php 5.X
8
9 - [115: Missing annotations with the latest composer version](https://github.com/doctrine/annotations/issues/115) thanks to @pascalporedda
10 - [120: Missing annotations with the latest composer version](https://github.com/doctrine/annotations/pull/120) thanks to @gnat42
11 - [121: Adding a more detailed explanation of the test](https://github.com/doctrine/annotations/pull/121) thanks to @mikeSimonson
12 - [101: Test annotation parameters containing space](https://github.com/doctrine/annotations/pull/101) thanks to @mikeSimonson
13 - [111: Cleanup: move to correct phpunit assertions](https://github.com/doctrine/annotations/pull/111) thanks to @Ocramius
14 - [112: Removes support for PHP 5.x](https://github.com/doctrine/annotations/pull/112) thanks to @railto
15 - [113: bumped phpunit version to 5.7](https://github.com/doctrine/annotations/pull/113) thanks to @gabbydgab
16 - [114: Enhancement: Use SVG Travis build badge](https://github.com/doctrine/annotations/pull/114) thanks to @localheinz
17 - [118: Integrating PHPStan](https://github.com/doctrine/annotations/pull/118) thanks to @ondrejmirtes
18
19 ### 1.3.1 - 2016-12-30
20
21 This release fixes an issue with ignored annotations that were already
22 autoloaded, causing the `SimpleAnnotationReader` to pick them up
23 anyway. [#110](https://github.com/doctrine/annotations/pull/110)
24
25 Additionally, an issue was fixed in the `CachedReader`, which was
26 not correctly checking the freshness of cached annotations when
27 traits were defined on a class. [#105](https://github.com/doctrine/annotations/pull/105)
28
29 Total issues resolved: **2**
30
31 - [105: Return single max timestamp](https://github.com/doctrine/annotations/pull/105)
32 - [110: setIgnoreNotImportedAnnotations(true) didn’t work for existing classes](https://github.com/doctrine/annotations/pull/110)
33
34 ### 1.3.0
35
36 This release introduces a PHP version bump. `doctrine/annotations` now requires PHP
37 5.6 or later to be installed.
38
39 A series of additional improvements have been introduced:
40
41  * support for PHP 7 "grouped use statements"
42  * support for ignoring entire namespace names
43    via `Doctrine\Common\Annotations\AnnotationReader::addGlobalIgnoredNamespace()` and
44    `Doctrine\Common\Annotations\DocParser::setIgnoredAnnotationNamespaces()`. This will
45    allow you to ignore annotations from namespaces that you cannot autoload
46  * testing all parent classes and interfaces when checking if the annotation cache
47    in the `CachedReader` is fresh
48  * simplifying the cache keys used by the `CachedReader`: keys are no longer artificially
49    namespaced, since `Doctrine\Common\Cache` already supports that
50  * corrected parsing of multibyte strings when `mbstring.func_overload` is enabled
51  * corrected parsing of annotations when `"\t"` is put before the first annotation
52    in a docblock
53  * allow skipping non-imported annotations when a custom `DocParser` is passed to
54    the `AnnotationReader` constructor
55
56 Total issues resolved: **15**
57
58 - [45: DocParser can now ignore whole namespaces](https://github.com/doctrine/annotations/pull/45)
59 - [57: Switch to the docker-based infrastructure on Travis](https://github.com/doctrine/annotations/pull/57)
60 - [59: opcache.load_comments has been removed from PHP 7](https://github.com/doctrine/annotations/pull/59)
61 - [62: [CachedReader\ Test traits and parent class to see if cache is fresh](https://github.com/doctrine/annotations/pull/62)
62 - [65: Remove cache salt making key unnecessarily long](https://github.com/doctrine/annotations/pull/65)
63 - [66: Fix of incorrect parsing multibyte strings](https://github.com/doctrine/annotations/pull/66)
64 - [68: Annotations that are indented by tab are not processed.](https://github.com/doctrine/annotations/issues/68)
65 - [69: Support for Group Use Statements](https://github.com/doctrine/annotations/pull/69)
66 - [70: Allow tab character before first annotation in DocBlock](https://github.com/doctrine/annotations/pull/70)
67 - [74: Ignore not registered annotations fix](https://github.com/doctrine/annotations/pull/74)
68 - [92: Added tests for AnnotationRegistry class.](https://github.com/doctrine/annotations/pull/92)
69 - [96: Fix/#62 check trait and parent class ttl in annotations](https://github.com/doctrine/annotations/pull/96)
70 - [97: Feature - #45 - allow ignoring entire namespaces](https://github.com/doctrine/annotations/pull/97)
71 - [98: Enhancement/#65 remove cache salt from cached reader](https://github.com/doctrine/annotations/pull/98)
72 - [99: Fix - #70 - allow tab character before first annotation in docblock](https://github.com/doctrine/annotations/pull/99)
73
74 ### 1.2.4
75
76 Total issues resolved: **1**
77
78 - [51: FileCacheReader::saveCacheFile::unlink fix](https://github.com/doctrine/annotations/pull/51)
79
80 ### 1.2.3
81
82 Total issues resolved: [**2**](https://github.com/doctrine/annotations/milestones/v1.2.3)
83
84 - [49: #46 - applying correct `chmod()` to generated cache file](https://github.com/doctrine/annotations/pull/49)
85 - [50: Hotfix: match escaped quotes (revert #44)](https://github.com/doctrine/annotations/pull/50)
86
87 ### 1.2.2
88
89 Total issues resolved: **4**
90
91 - [43: Exclude files from distribution with .gitattributes](https://github.com/doctrine/annotations/pull/43)
92 - [44: Update DocLexer.php](https://github.com/doctrine/annotations/pull/44)
93 - [46: A plain "file_put_contents" can cause havoc](https://github.com/doctrine/annotations/pull/46)
94 - [48: Deprecating the `FileCacheReader` in 1.2.2: will be removed in 2.0.0](https://github.com/doctrine/annotations/pull/48)
95
96 ### 1.2.1
97
98 Total issues resolved: **4**
99
100 - [38: fixes doctrine/common#326](https://github.com/doctrine/annotations/pull/38)
101 - [39: Remove superfluous NS](https://github.com/doctrine/annotations/pull/39)
102 - [41: Warn if load_comments is not enabled.](https://github.com/doctrine/annotations/pull/41)
103 - [42: Clean up unused uses](https://github.com/doctrine/annotations/pull/42)
104
105 ### 1.2.0
106
107  * HHVM support
108  * Allowing dangling comma in annotations
109  * Excluded annotations are no longer autoloaded
110  * Importing namespaces also in traits
111  * Added support for `::class` 5.5-style constant, works also in 5.3 and 5.4
112
113 ### 1.1.0
114
115  * Add Exception when ZendOptimizer+ or Opcache is configured to drop comments