Skip to content

Commit 6efe42b

Browse files
author
Steve Orvell
authored
Merge pull request #190 from Polymer/update-changelog
Update changelog
2 parents c731935 + b2c8437 commit 6efe42b

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

CHANGELOG.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,36 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
Unreleased section, uncommenting the header as necessary.
1111
-->
1212

13-
## Unreleased
13+
<!-- ## Unreleased -->
14+
15+
## [0.6.0] - 2018-09-13
1416

1517
### Added
1618
* Added `@query()`, `@queryAll()`, and `@customElement` decorators ([#159](https://github.com/Polymer/lit-element/pull/159))
1719

20+
### Changed
21+
* Signficantly changed update/render lifecycle and property API. Render lifecycle
22+
is now `requestUpdate`, `shouldUpdate`, `update`, `render`, `firstUpdated`
23+
(first time only), `updated`, `updateComplete`. Property options are now
24+
`{attribute, reflect, type, hasChanged}`. Properties may be defined in a
25+
`static get properties` or using the `@property` decorator.
26+
(https://github.com/Polymer/lit-element/pull/132).
27+
28+
29+
### Removed
30+
* Removed render helpers `classString` and `styleString`. Similar directives
31+
(`classMap` and `styleMap`) have been added to lit-html and should be used instead
32+
(https://github.com/Polymer/lit-element/pull/165 and
33+
https://github.com/Polymer/lit-html/pull/486).
34+
35+
### Fixed
36+
* The `npm run checksize` command should now return the correct minified size
37+
(https://github.com/Polymer/lit-element/pull/153).
38+
* The `firstUpdated` method should now always be called the first time the element
39+
updates, even if `shouldUpdate` initially returned `false`
40+
(https://github.com/Polymer/lit-element/pull/173).
41+
42+
1843
<!-- ### Changed -->
1944
<!-- ### Removed -->
2045
<!-- ### Fixed -->

0 commit comments

Comments
 (0)