File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All Notable changes to ` bakame/http-strucured-fields ` will be documented in this file.
4
4
5
+ ## [ 1.2.2] ( https://github.com/bakame-php/http-structured-fields/compare/1.2.1...1.2.2 ) - 2024-01-01
6
+
7
+ ### Added
8
+
9
+ - None
10
+
11
+ ### Fixed
12
+
13
+ - ` Type::ByteSequence ` value is renamed from ` bytesequence ` to ` binary ` to comply with the RFC.
14
+
15
+ ### Deprecated
16
+
17
+ - None
18
+
19
+ ### Removed
20
+
21
+ - None
22
+
5
23
## [ 1.2.1] ( https://github.com/bakame-php/http-structured-fields/compare/1.2.0...1.2.1 ) - 2024-01-01
6
24
7
25
### Added
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ The table below summarizes the item value type.
225
225
| String | ` string ` | ` Type::String ` | ` string ` |
226
226
| Boolean | ` bool ` | ` Type::Boolean ` | ` boolean ` |
227
227
| Token | class ` Token ` | ` Type::Token ` | ` token ` |
228
- | Byte Sequence | class ` ByteSequence ` | ` Type::ByteSequence ` | ` bytesequence ` |
228
+ | Byte Sequence | class ` ByteSequence ` | ` Type::ByteSequence ` | ` binary ` |
229
229
| Date (* ) | class ` DateTimeImmutable ` | ` Type::Date ` | ` date ` |
230
230
| DisplayString (* ) | class ` DisplayString ` | ` Type::DisplayString ` | ` displaystring ` |
231
231
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ enum Type: string
15
15
case Decimal = 'decimal ' ;
16
16
case String = 'string ' ;
17
17
case Token = 'token ' ;
18
- case ByteSequence = 'bytesequence ' ;
18
+ case ByteSequence = 'binary ' ;
19
19
case DisplayString = 'displaystring ' ;
20
20
case Boolean = 'boolean ' ;
21
21
case Date = 'date ' ;
You can’t perform that action at this time.
0 commit comments