Skip to content

Commit 1774f57

Browse files
author
Steven Orvell
committed
Merge branch 'master' into effective-children
2 parents 19aa6eb + 5605634 commit 1774f57

File tree

7 files changed

+259
-17
lines changed

7 files changed

+259
-17
lines changed

CHANGELOG.md

+212-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,217 @@
11
# Change Log
22

3+
##[v1.1.1](https://github.com/Polymer/polymer/tree/v1.1.1) (2015-08-20)
4+
- Fixes #2263: ensure custom-style can parse variable definitions in supported selectors (e.g. /deep/) without exception due to unknown css. ([commit](https://github.com/Polymer/polymer/commit/894492b))
5+
6+
- Fixes #2311, #2323: when elements are removed from their previous position when they are added elsewhere, make sure to remove them from composed, not logical parent. ([commit](https://github.com/Polymer/polymer/commit/3d93116))
7+
8+
- Update Changelog ([commit](https://github.com/Polymer/polymer/commit/039ef93))
9+
10+
- Add selectedItem property ([commit](https://github.com/Polymer/polymer/commit/d65acd0))
11+
12+
- Add test for large splice ([commit](https://github.com/Polymer/polymer/commit/c967583))
13+
14+
- Use numeric sort when removing dom-repeat instances ([commit](https://github.com/Polymer/polymer/commit/fccbd8a))
15+
16+
- Fixes #2267: properly find dom-module for mixed case elements ([commit](https://github.com/Polymer/polymer/commit/76c58b8))
17+
18+
- Fixes #2304: avoid trying to read style data from imports that did not load. ([commit](https://github.com/Polymer/polymer/commit/0d1f206))
19+
20+
- Avoid saving logical info on parent when a content is added inside a fragment + slight factoring. ([commit](https://github.com/Polymer/polymer/commit/36072be))
21+
22+
- Fixes #2276: avoid losing logical information and simplify logical tree handling ([commit](https://github.com/Polymer/polymer/commit/ee61627))
23+
24+
- Moved check earlier. Added test for negative literal. ([commit](https://github.com/Polymer/polymer/commit/1a87ab4))
25+
26+
- Fixes #2253: refine logical tree check and populate parents of insertion points with logical info only if necessary. Fixes #2283: when a node is removed, we need to potentially distribute not only its host but also its parent. ([commit](https://github.com/Polymer/polymer/commit/6619f6c))
27+
28+
- Support for negative numbers in computed bindings ([commit](https://github.com/Polymer/polymer/commit/fc53f50))
29+
30+
##[v1.1.0](https://github.com/Polymer/polymer/tree/v1.1.0) (2015-08-13)
31+
- Add comment. ([commit](https://github.com/Polymer/polymer/commit/337b54a))
32+
33+
- Add tests for key splice fix. ([commit](https://github.com/Polymer/polymer/commit/4bc055b))
34+
35+
- Fixes #2251: resolve imported stylesheets against correct document. ([commit](https://github.com/Polymer/polymer/commit/68af666))
36+
37+
- Reduce keySplices to minimum change set before notifying. Fixes #2261 ([commit](https://github.com/Polymer/polymer/commit/f74d072))
38+
39+
- Make `clearSelection` public. ([commit](https://github.com/Polymer/polymer/commit/7497729))
40+
41+
- Add logical info iff an element being added is an insertion point; do not add logical info for any element in a shady root. ([commit](https://github.com/Polymer/polymer/commit/45cb150))
42+
43+
- Make `clearSelection` public. ([commit](https://github.com/Polymer/polymer/commit/d55be7d))
44+
45+
- Fixes #2235. Manages logical information in shady distribution more directly by capturing it explicitly when needed and not whenever distribution is run. ([commit](https://github.com/Polymer/polymer/commit/21500fb))
46+
47+
- ensure path fixup is applied correctly to styles in templates. ([commit](https://github.com/Polymer/polymer/commit/b22f3cd))
48+
49+
- Based on feedback, change `module` to `include` in custom-style and dom-module style marshaling. ([commit](https://github.com/Polymer/polymer/commit/f469129))
50+
51+
- Document custom-style module property. ([commit](https://github.com/Polymer/polymer/commit/398d9f7))
52+
53+
- Add comment. ([commit](https://github.com/Polymer/polymer/commit/4e640c7))
54+
55+
- Add tests and require `module` to be on `style` elements. ([commit](https://github.com/Polymer/polymer/commit/58d3c3b))
56+
57+
- `custom-style` supports `module` property that accepts a `dom-module` containing style data. `don-module` style data may be specified inside `<template>` elements and style elements also support module attribute for referencing additional modules containing style data. ([commit](https://github.com/Polymer/polymer/commit/3734c4d))
58+
59+
- don-module no longer needs to eagerly upgrade custom elements since the web components polyfills do this automatically. ([commit](https://github.com/Polymer/polymer/commit/051e1bf))
60+
61+
##[v1.0.9](https://github.com/Polymer/polymer/tree/v1.0.9) (2015-08-07)
62+
- Remove undocumented return value. ([commit](https://github.com/Polymer/polymer/commit/1764d0c))
63+
64+
- Add default, update docs. ([commit](https://github.com/Polymer/polymer/commit/ca267a5))
65+
66+
- Add tests for isSelected. ([commit](https://github.com/Polymer/polymer/commit/15d63ef))
67+
68+
- Default selected to empty array. Add isSelected API. ([commit](https://github.com/Polymer/polymer/commit/d4e7140))
69+
70+
- Fixes #2218: match style properties against scope transformed selector (not property unique selector) ([commit](https://github.com/Polymer/polymer/commit/c9e9062))
71+
72+
- Remove notify for items (unnecessary). ([commit](https://github.com/Polymer/polymer/commit/a370860))
73+
74+
- Uncomment line. ([commit](https://github.com/Polymer/polymer/commit/b25330b))
75+
76+
- Give toggle a default. ([commit](https://github.com/Polymer/polymer/commit/db9bda5))
77+
78+
- Use multi-prop observer; default selected to null. ([commit](https://github.com/Polymer/polymer/commit/ba4bf38))
79+
80+
- Add tests. Reset selection on items/multi change. Remove async. ([commit](https://github.com/Polymer/polymer/commit/5bca55b))
81+
82+
- Property matching must check non-transformed rule selector. ([commit](https://github.com/Polymer/polymer/commit/5b9a5ce))
83+
84+
- Make _itemsChanged depend on multi. ([commit](https://github.com/Polymer/polymer/commit/1b21397))
85+
86+
- Make sure mouse position is not a factor for .click() in IE 10 ([commit](https://github.com/Polymer/polymer/commit/1a2fb4d))
87+
88+
- Always trigger tap for synthetic click events ([commit](https://github.com/Polymer/polymer/commit/1eef1a7))
89+
90+
- Fixes #2193: Implements workaround for https://code.google.com/p/chromium/issues/detail?id=516550 by adding Polymer.RenderStatus.whenReady and using it to defer `attached` ([commit](https://github.com/Polymer/polymer/commit/2bffc4c))
91+
92+
- Fix polyfill templates ([commit](https://github.com/Polymer/polymer/commit/d78c934))
93+
94+
- Use `_clientsReadied` to avoid missing attribute->property sets in ready. ([commit](https://github.com/Polymer/polymer/commit/165f716))
95+
96+
- Make propagation of attribute changes at configure time more efficient ([commit](https://github.com/Polymer/polymer/commit/b269c1d))
97+
98+
- add offsetParent smoke tests ([commit](https://github.com/Polymer/polymer/commit/0b2cfae))
99+
100+
- Fixes #1673: ensure instance effects exist before marshaling attributes. ([commit](https://github.com/Polymer/polymer/commit/7c83df5))
101+
102+
- Fix typo. ([commit](https://github.com/Polymer/polymer/commit/97944e4))
103+
104+
- Clarify `fire` option defaults. Fixes #2180 ([commit](https://github.com/Polymer/polymer/commit/7c3e516))
105+
106+
- Add cross-reference for API docs. Fixes #2180 ([commit](https://github.com/Polymer/polymer/commit/9bdcc3b))
107+
108+
- Updated utils & removed fn signatures; defer to API docs. Fixes #2180 ([commit](https://github.com/Polymer/polymer/commit/b9b86d5))
109+
110+
- Update core- to iron-ajax in PRIMER.md as in Polymer/docs#1276, Polymer/docs#1275 ([commit](https://github.com/Polymer/polymer/commit/e99358a))
111+
112+
- Update core- to iron-ajax in jsdoc for dom-bind as in Polymer/docs#1276, Polymer/docs#1275 ([commit](https://github.com/Polymer/polymer/commit/07327c0))
113+
114+
- Make properties replacement robust against properties which start with a leading `;` ([commit](https://github.com/Polymer/polymer/commit/3ea0333))
115+
116+
- Fixes #2154: ensure Polymer.dom always sees wrapped nodes when ShadowDOM polyfill is in use. ([commit](https://github.com/Polymer/polymer/commit/fc90aa0))
117+
118+
- Use css parser's property stripping code in custom-style. ([commit](https://github.com/Polymer/polymer/commit/756ef1b))
119+
120+
- Deduplicate track/untrack document event listener logic ([commit](https://github.com/Polymer/polymer/commit/53037d4))
121+
122+
- Automatically filter mouseevents without the left mouse button ([commit](https://github.com/Polymer/polymer/commit/bbc3b57))
123+
124+
- Fixes #2113: ensures custom-style rules that use @apply combined with defining properties apply correctly. ([commit](https://github.com/Polymer/polymer/commit/69a4aa5))
125+
126+
- Correct & simplify per spec. ([commit](https://github.com/Polymer/polymer/commit/7b8b7fd))
127+
128+
- Clean up logic. ([commit](https://github.com/Polymer/polymer/commit/d4deb5d))
129+
130+
- More loosely match expression function names ([commit](https://github.com/Polymer/polymer/commit/6cfa759))
131+
132+
- Fix link to direct to Cross-scope styling ([commit](https://github.com/Polymer/polymer/commit/f9c58bc))
133+
134+
- Update behaviors order. Fixes #2144. ([commit](https://github.com/Polymer/polymer/commit/2a51661))
135+
136+
- Cache style.display & textContent and re-apply on true. Fixes #2037 ([commit](https://github.com/Polymer/polymer/commit/2611285))
137+
138+
- Fixes #2118: force element `is` to be lowercase: mixing case causes confusion and breaks style shimming for type extensions. ([commit](https://github.com/Polymer/polymer/commit/c8905f9))
139+
140+
- Allow array API's accept string & negative args. Fixes #2062. Brings the API more in line with native splice, etc. ([commit](https://github.com/Polymer/polymer/commit/7e2ceeb))
141+
142+
- Fix #2107: improve binding expression parser to match valid javascript property names. ([commit](https://github.com/Polymer/polymer/commit/7560130))
143+
144+
##[v1.0.8](https://github.com/Polymer/polymer/tree/v1.0.8) (2015-07-23)
145+
- Disable tracking if scrolling ([commit](https://github.com/Polymer/polymer/commit/ee5177d))
146+
147+
- Fixes #2125: adds a register method to dom-module to support imperative creation. ([commit](https://github.com/Polymer/polymer/commit/861f4aa))
148+
149+
- Move recognizer reset into start of event flow ([commit](https://github.com/Polymer/polymer/commit/a7495f7))
150+
151+
- Fixed small typo on PRIMER.md ([commit](https://github.com/Polymer/polymer/commit/bc40821))
152+
153+
- remove alternate calculation for _rootDataHost ([commit](https://github.com/Polymer/polymer/commit/26663cd))
154+
155+
- Don't call `dom-change` when detached. ([commit](https://github.com/Polymer/polymer/commit/bdb8fa3))
156+
157+
- Fix typo. ([commit](https://github.com/Polymer/polymer/commit/65911bd))
158+
159+
- Improve code formatting. ([commit](https://github.com/Polymer/polymer/commit/3968c84))
160+
161+
- Up flush MAX to 100 and add overflow warning. ([commit](https://github.com/Polymer/polymer/commit/8bcc416))
162+
163+
- Fixes #1998: add api doc for `customStyle` property ([commit](https://github.com/Polymer/polymer/commit/91577c9))
164+
165+
- Handle commentnodes correctly for textContent and innerHTML ([commit](https://github.com/Polymer/polymer/commit/6d56d2b))
166+
167+
- Fixes #2098: don't accept undefined values as initial config ([commit](https://github.com/Polymer/polymer/commit/1a5c391))
168+
169+
- Remove key check; int check should guarantee key. ([commit](https://github.com/Polymer/polymer/commit/dbf833e))
170+
171+
- Add unit tests. ([commit](https://github.com/Polymer/polymer/commit/bc4b142))
172+
173+
- Allow setting non-index array properties. Fixes #2096. ([commit](https://github.com/Polymer/polymer/commit/f8cad94))
174+
175+
- update tests. ([commit](https://github.com/Polymer/polymer/commit/8922323))
176+
177+
- added `render` method to dom-bind which can be called when async imports are used; documented template render functions ([commit](https://github.com/Polymer/polymer/commit/348896a))
178+
179+
- Fixes #2039: Polymer.dom.flush now triggers Custom Elements polyfill mutations and includes an api (`Polymer.dom.addDebouncer(debouncer)`) for adding debouncers which should run at flush time. Template rendering debouncers are placed in the flush list. ([commit](https://github.com/Polymer/polymer/commit/89a767c))
180+
181+
- Fixes #2010, fixes #1818: Shady dom mutations which trigger additional mutations are now successfully enqueued. ([commit](https://github.com/Polymer/polymer/commit/a26247b))
182+
183+
- debounce returns debouncer. ([commit](https://github.com/Polymer/polymer/commit/fb52120))
184+
185+
- Update index.html ([commit](https://github.com/Polymer/polymer/commit/119df98))
186+
187+
##[v1.0.7](https://github.com/Polymer/polymer/tree/v1.0.7) (2015-07-16)
188+
- Replace placeholders backwards to simplify. ([commit](https://github.com/Polymer/polymer/commit/5eda235))
189+
190+
- Remove unnecessary keys bookkeeping. ([commit](https://github.com/Polymer/polymer/commit/3e02bfd))
191+
192+
- Minor tweaks to comments, internal API consistency. ([commit](https://github.com/Polymer/polymer/commit/82958d4))
193+
194+
- Always use placeholders; fix insertion reference bug. ([commit](https://github.com/Polymer/polymer/commit/4a45d4f))
195+
196+
- Simplify. ([commit](https://github.com/Polymer/polymer/commit/4eda393))
197+
198+
- Rename variables for clarity. ([commit](https://github.com/Polymer/polymer/commit/15c1241))
199+
200+
- Fix reuse logic to handle multiple mutations in same turn. Fixes #2009. ([commit](https://github.com/Polymer/polymer/commit/1bf5f6d))
201+
202+
- Be more explicit. ([commit](https://github.com/Polymer/polymer/commit/a6bd5a5))
203+
204+
- Add Polymer.instanceof & isInstance. Fixes #2083. ([commit](https://github.com/Polymer/polymer/commit/7954f93))
205+
206+
- Fixes #2081: make Polymer.dom(element).getDistributedNodes and Polymer.dom(element).getDestinationInsertionPoints() always return at least an empty array (was generating exception under Shadow DOM); make element.getContentChildNodes and element.getContentChildren always return at least an empty array when a selector is passed that does not find a <content> (was generating exception under Shadow DOM) ([commit](https://github.com/Polymer/polymer/commit/f966381))
207+
208+
- Fixes #2077: workaround IE text node splitting issue that can make text bindings fail. ([commit](https://github.com/Polymer/polymer/commit/312d11f))
209+
210+
- Fixes #2078: when computing custom style properties, make sure the styling scope is valid when the element is attached to a shadowRoot whose host is not a Polymer element. ([commit](https://github.com/Polymer/polymer/commit/fab2ed7))
211+
212+
- update CHANGELOG for 1.0.6 ([commit](https://github.com/Polymer/polymer/commit/c46ec11))
213+
214+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator) below*
3215
## [v1.0.6](https://github.com/Polymer/polymer/tree/v1.0.6) (2015-07-09)
4216

5217
**Fixed issues:**
@@ -2855,7 +3067,3 @@
28553067
- make workBench live with toollkit [\#2](https://github.com/Polymer/polymer/pull/2) ([sjmiles](https://github.com/sjmiles))
28563068

28573069
- Initial Components [\#1](https://github.com/Polymer/polymer/pull/1) ([sjmiles](https://github.com/sjmiles))
2858-
2859-
2860-
2861-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

bower.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "polymer",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"main": [
55
"polymer.html"
66
],
77
"license": "http://polymer.github.io/LICENSE.txt",
88
"ignore": [
99
"/.*",
10-
"/test/"
10+
"/test/",
11+
"gen-changelog.sh"
1112
],
1213
"authors": [
1314
"The Polymer Authors (http://polymer.github.io/AUTHORS.txt)"

gen-changelog.sh

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
3+
PRETTY="- %s ([commit](https://github.com/Polymer/polymer/commit/%h))%n"
4+
start="$1"
5+
end="$2"
6+
7+
enddate=`git log -1 ${end} --pretty="%ai" | cut -d ' ' -f 1`
8+
9+
startrev="`git show ${start}:build.log | awk '/polymer: / {print $2}'`"
10+
endrev="`git show ${end}:build.log | awk '/polymer: / {print $2}'`"
11+
12+
old=""
13+
if [ -e CHANGELOG.md ]; then
14+
old="`sed -e '1,2d' CHANGELOG.md`"
15+
fi
16+
17+
cat > CHANGELOG.md <<EOD
18+
# Change Log
19+
20+
##[${end}](https://github.com/Polymer/polymer/tree/${end}) (${enddate})
21+
`git log --no-merges "${startrev}".."${endrev}^1" --pretty="${PRETTY}"`
22+
23+
${old}
24+
EOD

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Polymer",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Authors interested in learning the core concepts in 0.8 may be interested in our [primer](https://github.com/Polymer/polymer/blob/0.8-preview/PRIMER.md).",
55
"main": "polymer.html",
66
"directories": {

src/lib/dom-api.html

+12-7
Original file line numberDiff line numberDiff line change
@@ -709,6 +709,15 @@
709709

710710
} else {
711711

712+
var forwardMethods = ['cloneNode', 'appendChild', 'insertBefore',
713+
'removeChild', 'replaceChild'];
714+
715+
forwardMethods.forEach(function(name) {
716+
DomApi.prototype[name] = function() {
717+
return this.node[name].apply(this.node, arguments);
718+
}
719+
});
720+
712721
DomApi.prototype.querySelectorAll = function(selector) {
713722
return Array.prototype.slice.call(this.node.querySelectorAll(selector));
714723
};
@@ -723,10 +732,6 @@
723732
}
724733
};
725734

726-
DomApi.prototype.cloneNode = function(deep) {
727-
return this.node.cloneNode(deep);
728-
}
729-
730735
DomApi.prototype.importNode = function(externalNode, deep) {
731736
var doc = this.node instanceof Document ? this.node :
732737
this.node.ownerDocument;
@@ -814,11 +819,11 @@
814819

815820
});
816821

817-
var forwards = ['parentNode', 'firstChild', 'lastChild', 'nextSibling',
818-
'previousSibling', 'firstElementChild', 'lastElementChild',
822+
var forwardProperties = ['parentNode', 'firstChild', 'lastChild',
823+
'nextSibling', 'previousSibling', 'firstElementChild', 'lastElementChild',
819824
'nextElementSibling', 'previousElementSibling'];
820825

821-
forwards.forEach(function(name) {
826+
forwardProperties.forEach(function(name) {
822827
Object.defineProperty(DomApi.prototype, name, {
823828
get: function() {
824829
return this.node[name];

src/lib/polymer-bootstrap.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
};
3939

4040
var desugar = function(prototype) {
41-
// Note: need to chain user prorotype with the correct type-extended
41+
// Note: need to chain user prototype with the correct type-extended
4242
// version of Polymer.Base; this is especially important when you can't
43-
// prototype swizzle (e.g. IE10), since CustomElemets uses getPrototypeOf
43+
// prototype swizzle (e.g. IE10), since CustomElements uses getPrototypeOf
4444
var base = Polymer.Base;
4545
if (prototype.extends) {
4646
base = Polymer.Base._getExtendedPrototype(prototype.extends);

src/standard/annotations.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,11 @@
123123
} else {
124124
// TODO(sorvell): ad hoc method of plugging behavior into Annotations
125125
Polymer.Annotations.prepElement = this._prepElement.bind(this);
126-
this._notes = Polymer.Annotations.parseAnnotations(this._template);
126+
if (this._template._content && this._template._content._notes) {
127+
this._notes = this._template._content._notes;
128+
} else {
129+
this._notes = Polymer.Annotations.parseAnnotations(this._template);
130+
}
127131
this._processAnnotations(this._notes);
128132
Polymer.Annotations.prepElement = null;
129133
}

0 commit comments

Comments
 (0)