|
1 | 1 | # Changelog |
2 | 2 |
|
3 | | -## [v1.1.2](https://github.com/devlooped/css/tree/v1.1.2) (2022-01-21) |
| 3 | +## [v1.0.0-beta](https://github.com/devlooped/web/tree/v1.0.0-beta) (2022-07-15) |
4 | 4 |
|
5 | | -[Full Changelog](https://github.com/devlooped/css/compare/v1.0.0...v1.1.2) |
| 5 | +[Full Changelog](https://github.com/devlooped/web/compare/23dbc1d83526813ee629825930bdda91276be196...v1.0.0-beta) |
6 | 6 |
|
7 | 7 | :sparkles: Implemented enhancements: |
8 | 8 |
|
9 | | -- Attribute value matching does not normalize single quote values [\#30](https://github.com/devlooped/css/issues/30) |
| 9 | +- Attribute value matching does not normalize single quote values [\#30](https://github.com/devlooped/web/issues/30) |
| 10 | +- Document all supported selectors for `text()` in readme [\#28](https://github.com/devlooped/web/issues/28) |
| 11 | +- Add nullable annotations to public surface API [\#26](https://github.com/devlooped/web/issues/26) |
| 12 | +- Add text\(\) pseudo-attribute selector [\#15](https://github.com/devlooped/web/issues/15) |
| 13 | +- Add :has pseudo-class support [\#12](https://github.com/devlooped/web/issues/12) |
| 14 | +- Add :nth-of-type pseudo class [\#11](https://github.com/devlooped/web/issues/11) |
| 15 | +- Add :not pseudo-class [\#10](https://github.com/devlooped/web/issues/10) |
| 16 | +- Add :first-of-type and :last-of-type pseudo classes [\#9](https://github.com/devlooped/web/issues/9) |
| 17 | +- Add :empty pseudo-class support [\#8](https://github.com/devlooped/web/issues/8) |
| 18 | +- Add :only-child pseudo-class selector [\#7](https://github.com/devlooped/web/issues/7) |
| 19 | +- Add :first-child and :last-child pseudo-class selectors [\#6](https://github.com/devlooped/web/issues/6) |
| 20 | +- Add support for :checked pseudo-class [\#5](https://github.com/devlooped/web/issues/5) |
| 21 | +- Add minimal viable implementation of key selectors [\#1](https://github.com/devlooped/web/issues/1) |
10 | 22 |
|
11 | 23 | :bug: Fixed bugs: |
12 | 24 |
|
13 | | -- Child combinator selects only first child [\#36](https://github.com/devlooped/css/issues/36) |
14 | | -- If CSS identifier contains underscore, wrong XPath is built [\#34](https://github.com/devlooped/css/issues/34) |
| 25 | +- Child combinator selects only first child [\#36](https://github.com/devlooped/web/issues/36) |
| 26 | +- If CSS identifier contains underscore, wrong XPath is built [\#34](https://github.com/devlooped/web/issues/34) |
| 27 | +- If attribute value has quoted text with whitespace, fails to convert to XPath [\#22](https://github.com/devlooped/web/issues/22) |
| 28 | +- If attribute value has quotes, XPath conversion fails [\#21](https://github.com/devlooped/web/issues/21) |
15 | 29 |
|
16 | 30 | :hammer: Other: |
17 | 31 |
|
18 | | -- Add support for selector groups [\#32](https://github.com/devlooped/css/issues/32) |
| 32 | +- Add support for simplified syntax for nth-child [\#38](https://github.com/devlooped/web/issues/38) |
| 33 | +- Add support for selector groups [\#32](https://github.com/devlooped/web/issues/32) |
19 | 34 |
|
20 | 35 | :twisted_rightwards_arrows: Merged: |
21 | 36 |
|
22 | | -- Fix child combinator to XPath conversion [\#37](https://github.com/devlooped/css/pull/37) (@kzu) |
23 | | -- Properly parse underscore in CSS identifiers [\#35](https://github.com/devlooped/css/pull/35) (@kzu) |
24 | | -- Add support for selector groups [\#33](https://github.com/devlooped/css/pull/33) (@kzu) |
25 | | -- Apply single quotes normalization to attribute value matching [\#31](https://github.com/devlooped/css/pull/31) (@kzu) |
26 | | - |
27 | | -## [v1.0.0](https://github.com/devlooped/css/tree/v1.0.0) (2022-01-04) |
28 | | - |
29 | | -[Full Changelog](https://github.com/devlooped/css/compare/v0.3.2...v1.0.0) |
30 | | - |
31 | | -:sparkles: Implemented enhancements: |
32 | | - |
33 | | -- Document all supported selectors for `text()` in readme [\#28](https://github.com/devlooped/css/issues/28) |
34 | | -- Add nullable annotations to public surface API [\#26](https://github.com/devlooped/css/issues/26) |
35 | | - |
36 | | -:twisted_rightwards_arrows: Merged: |
37 | | - |
38 | | -- Add nullable annotations to public surface API [\#27](https://github.com/devlooped/css/pull/27) (@kzu) |
39 | | - |
40 | | -## [v0.3.2](https://github.com/devlooped/css/tree/v0.3.2) (2021-11-05) |
41 | | - |
42 | | -[Full Changelog](https://github.com/devlooped/css/compare/v0.3.1...v0.3.2) |
43 | | - |
44 | | -:bug: Fixed bugs: |
45 | | - |
46 | | -- If attribute value has quoted text with whitespace, fails to convert to XPath [\#22](https://github.com/devlooped/css/issues/22) |
47 | | - |
48 | | -## [v0.3.1](https://github.com/devlooped/css/tree/v0.3.1) (2021-11-03) |
49 | | - |
50 | | -[Full Changelog](https://github.com/devlooped/css/compare/v0.3.0...v0.3.1) |
51 | | - |
52 | | -:bug: Fixed bugs: |
53 | | - |
54 | | -- If attribute value has quotes, XPath conversion fails [\#21](https://github.com/devlooped/css/issues/21) |
55 | | - |
56 | | -## [v0.3.0](https://github.com/devlooped/css/tree/v0.3.0) (2021-09-29) |
57 | | - |
58 | | -[Full Changelog](https://github.com/devlooped/css/compare/v0.2.0...v0.3.0) |
59 | | - |
60 | | -:sparkles: Implemented enhancements: |
61 | | - |
62 | | -- Add text\(\) pseudo-attribute selector [\#15](https://github.com/devlooped/css/issues/15) |
63 | | - |
64 | | -## [v0.2.0](https://github.com/devlooped/css/tree/v0.2.0) (2021-09-01) |
65 | | - |
66 | | -[Full Changelog](https://github.com/devlooped/css/compare/v0.1.1...v0.2.0) |
67 | | - |
68 | | -:sparkles: Implemented enhancements: |
69 | | - |
70 | | -- Add :has pseudo-class support [\#12](https://github.com/devlooped/css/issues/12) |
71 | | -- Add :nth-of-type pseudo class [\#11](https://github.com/devlooped/css/issues/11) |
72 | | -- Add :not pseudo-class [\#10](https://github.com/devlooped/css/issues/10) |
73 | | -- Add :first-of-type and :last-of-type pseudo classes [\#9](https://github.com/devlooped/css/issues/9) |
74 | | -- Add :empty pseudo-class support [\#8](https://github.com/devlooped/css/issues/8) |
75 | | -- Add :only-child pseudo-class selector [\#7](https://github.com/devlooped/css/issues/7) |
76 | | -- Add :first-child and :last-child pseudo-class selectors [\#6](https://github.com/devlooped/css/issues/6) |
77 | | -- Add support for :checked pseudo-class [\#5](https://github.com/devlooped/css/issues/5) |
78 | | - |
79 | | -## [v0.1.1](https://github.com/devlooped/css/tree/v0.1.1) (2021-08-31) |
80 | | - |
81 | | -[Full Changelog](https://github.com/devlooped/css/compare/v0.1.0...v0.1.1) |
82 | | - |
83 | | -## [v0.1.0](https://github.com/devlooped/css/tree/v0.1.0) (2021-08-31) |
84 | | - |
85 | | -[Full Changelog](https://github.com/devlooped/css/compare/23dbc1d83526813ee629825930bdda91276be196...v0.1.0) |
86 | | - |
87 | | -:sparkles: Implemented enhancements: |
88 | | - |
89 | | -- Add minimal viable implementation of key selectors [\#1](https://github.com/devlooped/css/issues/1) |
| 37 | +- HTML \> XML + CSS [\#48](https://github.com/devlooped/web/pull/48) (@kzu) |
| 38 | +- Add support for simplified syntax for nth-child [\#39](https://github.com/devlooped/web/pull/39) (@kzu) |
| 39 | +- Fix child combinator to XPath conversion [\#37](https://github.com/devlooped/web/pull/37) (@kzu) |
| 40 | +- Properly parse underscore in CSS identifiers [\#35](https://github.com/devlooped/web/pull/35) (@kzu) |
| 41 | +- Add support for selector groups [\#33](https://github.com/devlooped/web/pull/33) (@kzu) |
| 42 | +- Apply single quotes normalization to attribute value matching [\#31](https://github.com/devlooped/web/pull/31) (@kzu) |
| 43 | +- Add nullable annotations to public surface API [\#27](https://github.com/devlooped/web/pull/27) (@kzu) |
90 | 44 |
|
91 | 45 |
|
92 | 46 |
|
|
0 commit comments