Skip to content

Commit 2c38f0a

Browse files
committed
changelog update
1 parent 717b78f commit 2c38f0a

File tree

1 file changed

+97
-49
lines changed

1 file changed

+97
-49
lines changed

CHANGELOG.md

+97-49
Original file line numberDiff line numberDiff line change
@@ -1,121 +1,169 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
56
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
67

78
## [Unreleased]
89

10+
## [2.2.0]
11+
12+
### Added
13+
14+
* react-container-query module
15+
* doc updates
16+
* various refactorings
17+
918
## [2.1.0]
19+
1020
### Added
11-
- [size-limit](https://github.com/ai/size-limit) for limiting bundle sizes
21+
22+
* [size-limit](https://github.com/ai/size-limit) for limiting bundle sizes
1223

1324
### Changed
14-
- Dependency updates
25+
26+
* Dependency updates
1527

1628
### Fixed
17-
- Missing `NodeList.forEach` #72
29+
30+
* Missing `NodeList.forEach` #72
1831

1932
## [2.0.0] - 2017-09-04
33+
2034
### Added
21-
- New diffing algorithm, which keeps track of the container's status (which
22-
query was applied already) and applies / removes the least amount of new styles
23-
possible.
24-
- r-units produce a value with limited precision. This is 2 by default, which
25-
can be changed in the Container options as `valuePrecision`.
26-
- `singleContainer` option (true by default), which makes the use of
27-
`@define-container` unnecessary for single-file containers. (Works well with
28-
Component-based architecture.)
29-
- Support for using r-units with css custom props. ie: `--rw: 1rw;`
35+
36+
* New diffing algorithm, which keeps track of the container's status (which
37+
query was applied already) and applies / removes the least amount of new styles
38+
possible.
39+
* r-units produce a value with limited precision. This is 2 by default, which
40+
can be changed in the Container options as `valuePrecision`.
41+
* `singleContainer` option (true by default), which makes the use of
42+
`@define-container` unnecessary for single-file containers. (Works well with
43+
Component-based architecture.)
44+
* Support for using r-units with css custom props. ie: `--rw: 1rw;`
3045

3146
### Changed
32-
- Published the runtime and the postcss plugin separately, both of which reside
33-
in the same monorepo. (Thanks to [Lerna](https://github.com/lerna/lerna))
34-
- Container instances are auto-adjusting themselves on size change by default.
35-
(`adjustOnResize` option.)
36-
- Bundling with Rollup instead of just transpiling the source. This gives better
37-
control over what is exposed, makes it easy to support other module formats in
38-
the future, and integrates Babel seemlessly.
47+
48+
* Published the runtime and the postcss plugin separately, both of which reside
49+
in the same monorepo. (Thanks to [Lerna](https://github.com/lerna/lerna))
50+
* Container instances are auto-adjusting themselves on size change by default.
51+
(`adjustOnResize` option.)
52+
* Bundling with Rollup instead of just transpiling the source. This gives better
53+
control over what is exposed, makes it easy to support other module formats in
54+
the future, and integrates Babel seemlessly.
3955

4056
### Removed
41-
- Removed support for the container and css unit combinations - like chpx - in
42-
favour of rw/rh/rmin/rmax units.
43-
- Removed `initialiseAllContainers`. It'll be turned to a demo instead in the
44-
future.
45-
- Removed some of the limitation on r-units. Paddings, for example can now use
46-
them.
4757

58+
* Removed support for the container and css unit combinations - like chpx - in
59+
favour of rw/rh/rmin/rmax units.
60+
* Removed `initialiseAllContainers`. It'll be turned to a demo instead in the
61+
future.
62+
* Removed some of the limitation on r-units. Paddings, for example can now use
63+
them.
4864

4965
## [1.3.0] - 2017-06-07
66+
5067
### Added
51-
- Resize Observer can be enabled (will be the default behaviour in 2.0.0)
52-
- Resize observation can be switched on / off.
53-
- First adjustment on Container instantiation can be switched off
68+
69+
* Resize Observer can be enabled (will be the default behaviour in 2.0.0)
70+
* Resize observation can be switched on / off.
71+
* First adjustment on Container instantiation can be switched off
5472

5573
### Changed
56-
- Dependency upgrades
74+
75+
* Dependency upgrades
5776

5877
## [1.2.6] - 2017-03-26
78+
5979
### Fixed
60-
- Fixed exports for non es-6 environments
80+
81+
* Fixed exports for non es-6 environments
6182

6283
## [1.2.5] - 2017-03-25
84+
6385
### Fixed
64-
- Fixed a bug where the postcss plugin processed nodes it shouldn't have
86+
87+
* Fixed a bug where the postcss plugin processed nodes it shouldn't have
6588

6689
## [1.2.4] - 2017-03-20
90+
6791
### Fixed
68-
- Fixed a bug where initialiseAllContainers didn't trigger adjust calls on dom
69-
load
92+
93+
* Fixed a bug where initialiseAllContainers didn't trigger adjust calls on dom
94+
load
7095

7196
## [1.2.3] - 2017-03-03
97+
7298
### Changed
73-
- Made the runtime work with an invalid config
99+
100+
* Made the runtime work with an invalid config
74101

75102
## [1.2.2] - 2017-03-02
103+
76104
### Changed
77-
- Improved browser support:
78-
- Object.assign replacement
79-
- Removed forEach calls on NodeList objects
105+
106+
* Improved browser support:
107+
* Object.assign replacement
108+
* Removed forEach calls on NodeList objects
80109

81110
### Added
82-
- Started working on a new demo
111+
112+
* Started working on a new demo
83113

84114
## [1.2.1] - 2017-03-01
115+
85116
### Changed
86-
- README update
117+
118+
* README update
87119

88120
## [1.2.0] - 2017-02-28
121+
89122
### Added
90-
- Made "or" queries work as they do for @media queries
123+
124+
* Made "or" queries work as they do for @media queries
91125

92126
## [1.1.1] - 2017-02-27
127+
93128
### Fixed
94-
- Attempt to make the readme appear on npm
129+
130+
* Attempt to make the readme appear on npm
95131

96132
## [1.1.0] - 2017-02-27
133+
97134
### Added
98-
- cmin / cmax unit support
135+
136+
* cmin / cmax unit support
99137

100138
## [1.0.4] - 2017-02-27
139+
101140
### Fixed
102-
- Fixed the aspect-ratio query
141+
142+
* Fixed the aspect-ratio query
103143

104144
### Changed
105-
- improved the isEmptyObject tests
145+
146+
* improved the isEmptyObject tests
106147

107148
## [1.0.3] - 2017-02-26
149+
108150
### Changed
109-
- Made Jest a dev-only dependency
151+
152+
* Made Jest a dev-only dependency
110153

111154
## [1.0.2] - 2017-02-22
155+
112156
### Fixed
113-
- BUGFIX (#6): Fixed unitless @container queries
157+
158+
* BUGFIX (#6): Fixed unitless @container queries
114159

115160
### Changed
116-
- Upgraded Jest from v18 to v19
161+
162+
* Upgraded Jest from v18 to v19
117163

118164
## [1.0.1] - 2017-02-21
165+
119166
### Removed
120-
- Removed coverage/ and .babelrc from the installed package, hence making it a
121-
bit lighter.
167+
168+
* Removed coverage/ and .babelrc from the installed package, hence making it a
169+
bit lighter.

0 commit comments

Comments
 (0)