1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779
|
# Change Log
## [v2.6.1](https://github.com/Polymer/polymer/tree/v2.6.1) (2018-08-23)
- Make event notification handler read the value from currentTarget, (#5309) ([commit](https://github.com/Polymer/polymer/commit/ffe8f7e8))
- Regenerate types. ([commit](https://github.com/Polymer/polymer/commit/7f68ab5b))
- Annotate another two ephemeral classes. ([commit](https://github.com/Polymer/polymer/commit/50ba80b8))
- Mark some ephemeral super classes as private. ([commit](https://github.com/Polymer/polymer/commit/0bf03d3c))
- Annotate Node parameter as not null. ([commit](https://github.com/Polymer/polymer/commit/04289ac7))
- Updates for improved type generation. ([commit](https://github.com/Polymer/polymer/commit/748db7ce))
- Disable combined CE+SD polyfill testing on browsers with native support, for test economy. ([commit](https://github.com/Polymer/polymer/commit/e24f4f7e))
- Extend Safari exceptions beyond 10.1 ([commit](https://github.com/Polymer/polymer/commit/fac5f27f))
- Extend Edge exceptions beyond Edge 16 ([commit](https://github.com/Polymer/polymer/commit/2ac2c6e4))
- Ignore shady CSS scoping in getComposedHTML ([commit](https://github.com/Polymer/polymer/commit/2729662b))
- Update gen-typescript-declarations and generate constructor types (#5281) ([commit](https://github.com/Polymer/polymer/commit/2a7c43f3))
- split chrome and firefox runs, maybe fewer timeouts for firefox ([commit](https://github.com/Polymer/polymer/commit/80512201))
- port other fixes as well ([commit](https://github.com/Polymer/polymer/commit/bcd01b96))
- Port Closure Compiler fixes to polymer-externs ([commit](https://github.com/Polymer/polymer/commit/bbaaf727))
- Fix method to force CE polyfill on. Fixes #5267. ([commit](https://github.com/Polymer/polymer/commit/12b6253f))
- Fix lint errors. ([commit](https://github.com/Polymer/polymer/commit/77d4de10))
- Add a test for touches on labels causing clicks on the labelled element. ([commit](https://github.com/Polymer/polymer/commit/6ac4813f))
- Replace an attempt to spread a NodeList to an array with `Array.from` for Safari 9, where NodeList is not iterable. ([commit](https://github.com/Polymer/polymer/commit/cb40bb41))
- IE fixes ([commit](https://github.com/Polymer/polymer/commit/6255cdb9))
- Use node 8 ([commit](https://github.com/Polymer/polymer/commit/28625d61))
- Only disable tabs for "disablable" elements ([commit](https://github.com/Polymer/polymer/commit/2bca0eeb))
- Add `@const` to elements ([commit](https://github.com/Polymer/polymer/commit/8009e497))
- Add user-importable files to `bower.json`'s `main` field for modulizer. ([commit](https://github.com/Polymer/polymer/commit/40e312f8))
- Add reasoning for suppress missingProperties ([commit](https://github.com/Polymer/polymer/commit/61ca60e4))
- Don't rely on dom-module synchronously until WCR. ([commit](https://github.com/Polymer/polymer/commit/e64bd0ba))
- Avoid closure warnings. ([commit](https://github.com/Polymer/polymer/commit/412bb1e0))
- Add ability to define importMeta on legacy elements. Fixes #5163 ([commit](https://github.com/Polymer/polymer/commit/616f6662))
- Allow legacy element property definitions with only a type. Fixes #5173 ([commit](https://github.com/Polymer/polymer/commit/d321c6c9))
- Update docs. ([commit](https://github.com/Polymer/polymer/commit/c8c9e24d))
- Use Polymer.ResolveUrl.pathFromUrl ([commit](https://github.com/Polymer/polymer/commit/d9d3e439))
- Fix test under shadydom. Slight logic refactor. ([commit](https://github.com/Polymer/polymer/commit/2128ebe2))
- Fix lint warning ([commit](https://github.com/Polymer/polymer/commit/fb741ee3))
- Add importMeta getter to derive importPath from modules. Fixes #5163 ([commit](https://github.com/Polymer/polymer/commit/f7672da9))
- Reference dependencies as siblings in tests. ([commit](https://github.com/Polymer/polymer/commit/2561d868))
- Update types ([commit](https://github.com/Polymer/polymer/commit/23ba7dee))
- Add note about performance vs correctness ([commit](https://github.com/Polymer/polymer/commit/89ab7385))
- Update types. ([commit](https://github.com/Polymer/polymer/commit/5357d64a))
- Lint clean. ([commit](https://github.com/Polymer/polymer/commit/f78b0518))
- Pass through fourth namespace param on attributeChangedCallback. ([commit](https://github.com/Polymer/polymer/commit/91d4aeba))
- Add a @const annotation to help the Closure Compiler understand that Polymer.Debouncer is the name of a type. ([commit](https://github.com/Polymer/polymer/commit/e5a5725d))
- [ci skip] update changelog ([commit](https://github.com/Polymer/polymer/commit/92d282a9))
- Update docs and types ([commit](https://github.com/Polymer/polymer/commit/211c223f))
- Update perf test to use strict-binding-parser ([commit](https://github.com/Polymer/polymer/commit/f53e9e8a))
- Correct import paths ([commit](https://github.com/Polymer/polymer/commit/ab93ab08))
- Only store method once for dynamic functions ([commit](https://github.com/Polymer/polymer/commit/0f0ccdad))
- Move strict-binding-parser to lib/mixins ([commit](https://github.com/Polymer/polymer/commit/a4d4eb9a))
- Rename to StrictBindingParser ([commit](https://github.com/Polymer/polymer/commit/19d4b8cb))
- Fix linter errors ([commit](https://github.com/Polymer/polymer/commit/d8cf449e))
- Extract to a mixin ([commit](https://github.com/Polymer/polymer/commit/57a14236))
- Add missing dependency to bower.json ([commit](https://github.com/Polymer/polymer/commit/333a4664))
- Fix linter warning ([commit](https://github.com/Polymer/polymer/commit/14fac019))
- Add documentation ([commit](https://github.com/Polymer/polymer/commit/df0ee354))
- Add performance test for binding-expressions ([commit](https://github.com/Polymer/polymer/commit/42f7d785))
- Rewrite parser to use switch-case instead of functions ([commit](https://github.com/Polymer/polymer/commit/423074d1))
- Remove escaping from bindings ([commit](https://github.com/Polymer/polymer/commit/8cd49479))
- Fix linter warning ([commit](https://github.com/Polymer/polymer/commit/8a5525b0))
- Refactor to be functional and add more tests ([commit](https://github.com/Polymer/polymer/commit/7eb1a627))
- Fix linter warnings ([commit](https://github.com/Polymer/polymer/commit/79d05b8a))
- Rewrite expression parser to state machine ([commit](https://github.com/Polymer/polymer/commit/13b834df))
## [v2.6.0](https://github.com/Polymer/polymer/tree/v2.6.0) (2018-03-22)
- Use function instead of Set ([commit](https://github.com/Polymer/polymer/commit/33d2e1a8))
- [ci skip] Fix typo ([commit](https://github.com/Polymer/polymer/commit/0d1b1c2e))
- Fix test in shady DOM ([commit](https://github.com/Polymer/polymer/commit/a586b72c))
- Deduplicate style includes ([commit](https://github.com/Polymer/polymer/commit/acfef71d))
- use a clearer test for shadowRoot ([commit](https://github.com/Polymer/polymer/commit/b2fb1cfd))
- Returning null in template should nullify parent template ([commit](https://github.com/Polymer/polymer/commit/2a6c0a2a))
- [ci skip] Add clarifying comment ([commit](https://github.com/Polymer/polymer/commit/0573d483))
- Correct the JSBin version ([commit](https://github.com/Polymer/polymer/commit/cb1ae7d3))
- Put attribute capitalization fix in property-effects ([commit](https://github.com/Polymer/polymer/commit/d45dd575))
- Add note about pre v3 releases ([commit](https://github.com/Polymer/polymer/commit/f9391618))
- Add note for npm package ([commit](https://github.com/Polymer/polymer/commit/8f2cc0d5))
- Add iron-component-page dev-dependency ([commit](https://github.com/Polymer/polymer/commit/d93dd1ce))
- Update several gulp dependencies ([commit](https://github.com/Polymer/polymer/commit/ca57a1f3))
- Update dom5 to 3.0.0 ([commit](https://github.com/Polymer/polymer/commit/d4a0914e))
- Update Google Closure Compiler version and fix cast ([commit](https://github.com/Polymer/polymer/commit/4004c9c4))
- Update types ([commit](https://github.com/Polymer/polymer/commit/bb61a20d))
- Fix several issues in the documentation of dom-* elements ([commit](https://github.com/Polymer/polymer/commit/8e1b3f45))
- Handle `disabled` attribute correctly for tap gesture ([commit](https://github.com/Polymer/polymer/commit/5c0f3e6a))
- add test case for nested label ([commit](https://github.com/Polymer/polymer/commit/c11c99b2))
- Add docs and cleanup matchingLabels ([commit](https://github.com/Polymer/polymer/commit/e1df1662))
- Add tests ([commit](https://github.com/Polymer/polymer/commit/70edf1f8))
- update types ([commit](https://github.com/Polymer/polymer/commit/2d674e75))
- fix tests and add dependency import ([commit](https://github.com/Polymer/polymer/commit/a37ba7e2))
- fix typings ([commit](https://github.com/Polymer/polymer/commit/8f8135b2))
- Ensure DisableUpgradeMixin extends PropertiesMixin ([commit](https://github.com/Polymer/polymer/commit/7e74e363))
- Format comment and remove deduping mixin ([commit](https://github.com/Polymer/polymer/commit/b8c66ded))
- update types ([commit](https://github.com/Polymer/polymer/commit/1fd5f9cf))
- update types ([commit](https://github.com/Polymer/polymer/commit/5bc45ce3))
- Add mixin to automatically detect capitalized HTML attributes ([commit](https://github.com/Polymer/polymer/commit/37fd5ffe))
- Add instructions for locally viewing the source documentation ([commit](https://github.com/Polymer/polymer/commit/206d3610))
- Simplify condition checking in stylesFromModule function ([commit](https://github.com/Polymer/polymer/commit/e6903821))
- Bump type generator and generate new typings. (#5119) ([commit](https://github.com/Polymer/polymer/commit/5c027309))
- dispatchEvent returns boolean (#5117) ([commit](https://github.com/Polymer/polymer/commit/9d86135c))
- Update types ([commit](https://github.com/Polymer/polymer/commit/63e7bbc7))
- Fix license links ([commit](https://github.com/Polymer/polymer/commit/f3939875))
- Fix issue with not genering the Templatizer docs ([commit](https://github.com/Polymer/polymer/commit/55708acf))
- Bump TS type generator to pick up transitive mixin handling. ([commit](https://github.com/Polymer/polymer/commit/c3dad540))
- Remove unnecessary mutableData property from MutableData mixin ([commit](https://github.com/Polymer/polymer/commit/92b83249))
- Update types ([commit](https://github.com/Polymer/polymer/commit/868fba7c))
- Add note to updateStyles regarding updates to CSS mixins ([commit](https://github.com/Polymer/polymer/commit/d458bab3))
- Avoid timing issues with polyfilled Promise ([commit](https://github.com/Polymer/polymer/commit/6b3e007e))
- Revert use of async/await due to lack of build/serve support. ([commit](https://github.com/Polymer/polymer/commit/d4a7a45b))
- Revert types. ([commit](https://github.com/Polymer/polymer/commit/dea90802))
- Update eslint parserOptions to es2017 for async/await support. ([commit](https://github.com/Polymer/polymer/commit/ef579e29))
- Use stronger check for PropertyEffects clients. Fixes #5017 ([commit](https://github.com/Polymer/polymer/commit/e6d558ec))
- Remove unneeded file ([commit](https://github.com/Polymer/polymer/commit/a5393b6d))
- [PropertiesChanged]: allow old data to be gc'd after `_propertiesChanged` ([commit](https://github.com/Polymer/polymer/commit/74907b9a))
- Update package-lock.json ([commit](https://github.com/Polymer/polymer/commit/c58f3e0d))
- Make Travis update-types failure style the same as the elements. ([commit](https://github.com/Polymer/polymer/commit/8189382d))
- Bump TypeScript generator version. ([commit](https://github.com/Polymer/polymer/commit/3e432190))
- Make EventApi.path EventTarget type non-nullable. ([commit](https://github.com/Polymer/polymer/commit/3ede9b51))
- Lint and type fixes ([commit](https://github.com/Polymer/polymer/commit/5607a2d8))
- [PropertiesChanged]: adds _shouldPropertiesChange ([commit](https://github.com/Polymer/polymer/commit/c1885a6a))
- Update docs: templatize() cannot be called multiple times ([commit](https://github.com/Polymer/polymer/commit/27fc21c5))
- [ci skip] update changelog ([commit](https://github.com/Polymer/polymer/commit/65b4df86))
- Update types. ([commit](https://github.com/Polymer/polymer/commit/c3b6236a))
- Fix JSDoc example formatting ([commit](https://github.com/Polymer/polymer/commit/699cd87f))
- Use latest webcomponents polyfill bundle ([commit](https://github.com/Polymer/polymer/commit/8fef6776))
- Fix label tap by checking matched label pairs ([commit](https://github.com/Polymer/polymer/commit/a77d64e5))
- Defer creation related work via `disable-upgrade` ([commit](https://github.com/Polymer/polymer/commit/a7eb9754))
- lint fixes ([commit](https://github.com/Polymer/polymer/commit/de0ac5a2))
- Adds `Polymer.DisableUpgradeMixin` ([commit](https://github.com/Polymer/polymer/commit/62ce3148))
## [v2.5.0](https://github.com/Polymer/polymer/tree/v2.5.0) (2018-02-02)
- Update types ([commit](https://github.com/Polymer/polymer/commit/5fa059fa))
- Update JSDocs to use <dom-repeat> tags ([commit](https://github.com/Polymer/polymer/commit/636abae0))
- Fix type declarations inadvertedtly referencing Polymer.Element. (#5084) ([commit](https://github.com/Polymer/polymer/commit/82cd3dad))
- Use class syntax in <dom-repeat> documentation (#5077) ([commit](https://github.com/Polymer/polymer/commit/97837c7c))
- Add hash/abs URL resolution tests. ([commit](https://github.com/Polymer/polymer/commit/d97373dd))
- Update types. ([commit](https://github.com/Polymer/polymer/commit/892df3f3))
- Add comments about resolveUrl idiosyncrasies. ([commit](https://github.com/Polymer/polymer/commit/a829cbce))
- Revert "Move absolute url logic to element-mixin" ([commit](https://github.com/Polymer/polymer/commit/127bc866))
- Added Polymer.version to polymer-externs (#5079) ([commit](https://github.com/Polymer/polymer/commit/b52ab81d))
- Avoid tracking parentNode since it's unncessary ([commit](https://github.com/Polymer/polymer/commit/1463e3b2))
- Update types. ([commit](https://github.com/Polymer/polymer/commit/2253e0db))
- Fix nit. ([commit](https://github.com/Polymer/polymer/commit/c9208fd6))
- Avoid comment constructor for IE support. ([commit](https://github.com/Polymer/polymer/commit/a39cfd11))
- Disallow non-templates as interpolations in Polymer.html (#5023) ([commit](https://github.com/Polymer/polymer/commit/eeb71600))
- Exclude index.html from type generation. (#5076) ([commit](https://github.com/Polymer/polymer/commit/6fc285c4))
- update types ([commit](https://github.com/Polymer/polymer/commit/5521e43e))
- [element-mixin] Do not create property accessors unless a property effect exists ([commit](https://github.com/Polymer/polymer/commit/4177d9ce))
- Use containers for testing again (#5070) ([commit](https://github.com/Polymer/polymer/commit/5e2990e3))
- Invoke JS compiler rename for properties ([commit](https://github.com/Polymer/polymer/commit/74a4626a))
- Add package-lock.json back ([commit](https://github.com/Polymer/polymer/commit/c90eeb67))
- fix test. ([commit](https://github.com/Polymer/polymer/commit/1c74ecde))
- Enhance robustness by replacing slot with a comment ([commit](https://github.com/Polymer/polymer/commit/b76d81ee))
- Avoid use of element accessors on doc frag to fix IE/Edge. ([commit](https://github.com/Polymer/polymer/commit/ecb1005e))
- Fix linter errors ([commit](https://github.com/Polymer/polymer/commit/5e0bee77))
- Fix issue with observers being called twice ([commit](https://github.com/Polymer/polymer/commit/291e4f56))
- Revert package-lock change ([commit](https://github.com/Polymer/polymer/commit/86ecd982))
- [ci-skip] Update changelog (2.4.0) ([commit](https://github.com/Polymer/polymer/commit/cb88252d))
- Add package-lock.json to .gitignore ([commit](https://github.com/Polymer/polymer/commit/e53db30f))
- Update types ([commit](https://github.com/Polymer/polymer/commit/7a52cda2))
- Add comments re: instanceProps ([commit](https://github.com/Polymer/polymer/commit/cf5f818e))
- Change if-condition to check for arguments.length ([commit](https://github.com/Polymer/polymer/commit/27750109))
- Delete package-lock.json ([commit](https://github.com/Polymer/polymer/commit/e77149e2))
- [ci skip] Fix test case name ([commit](https://github.com/Polymer/polymer/commit/eee609d4))
- Fix issue where el.splice could not clear full array ([commit](https://github.com/Polymer/polymer/commit/a51de9e3))
- Make owner optional as well. ([commit](https://github.com/Polymer/polymer/commit/b52c315e))
- Update package-lock.json ([commit](https://github.com/Polymer/polymer/commit/38c0e443))
- Update typescript types again, after fixing jsdoc. ([commit](https://github.com/Polymer/polymer/commit/3045e4b7))
- Fix lint warnings. ([commit](https://github.com/Polymer/polymer/commit/715cde47))
- Update typescript types. ([commit](https://github.com/Polymer/polymer/commit/c218ae62))
- Ensure path notifications from templatized instances don't throw. Fixes #3422 ([commit](https://github.com/Polymer/polymer/commit/a9f71bd1))
- Allow templatizer to be used without owner or host prop forwarding. Fixes #4458 ([commit](https://github.com/Polymer/polymer/commit/bde5898e))
- Templatize: remove slots when hiding children ([commit](https://github.com/Polymer/polymer/commit/ea0abb95))
- Clarify API docs for PropertyAccessors mixin ([commit](https://github.com/Polymer/polymer/commit/ae58e88b))
## [v2.4.0](https://github.com/Polymer/polymer/tree/v2.4.0) (2018-01-26)
- Simplify code for <dom-repeat>'s `sort` and `filter` properties ([commit](https://github.com/Polymer/polymer/commit/88cca860))
- fix test for normal escaping ([commit](https://github.com/Polymer/polymer/commit/5fa02aa2))
- Use javascript string escaping in Polymer.html ([commit](https://github.com/Polymer/polymer/commit/4c662141))
- [ci skip] Add CODEOWNERS file (#5061) ([commit](https://github.com/Polymer/polymer/commit/90199f3b))
- Fix incorrect path modification in dom-repeat __handleObservedPaths() (#4983) (#5048) ([commit](https://github.com/Polymer/polymer/commit/4b58f54b))
- Skip certain tests in Edge 16 ([commit](https://github.com/Polymer/polymer/commit/09897d18))
- add Edge 16 testing ([commit](https://github.com/Polymer/polymer/commit/36fa08ae))
- Fix tests (#5050) ([commit](https://github.com/Polymer/polymer/commit/ecd1ba3a))
- Update to latest wct. ([commit](https://github.com/Polymer/polymer/commit/a85ff3fc))
- HTTPS, please ([commit](https://github.com/Polymer/polymer/commit/c868575c))
- Remove unnecessary limit check ([commit](https://github.com/Polymer/polymer/commit/5fb9c559))
- Fix documentation in typescript ([commit](https://github.com/Polymer/polymer/commit/bc95c5ad))
- test(logging): improve _log with single parameter with sinon.spy ([commit](https://github.com/Polymer/polymer/commit/9891f31a))
- Add article "a" ([commit](https://github.com/Polymer/polymer/commit/cefdaa93))
- Update mixinBehaviors annotation. Behaviors don't satisfy PolymerInit. (#5036) ([commit](https://github.com/Polymer/polymer/commit/d7ea2464))
- add correct return type for `querySelectorAll` (#5034) ([commit](https://github.com/Polymer/polymer/commit/6ab5c4a4))
- Gestures: fall back to event.target when composedPath is empty. (#5029) ([commit](https://github.com/Polymer/polymer/commit/98b5aadc))
- add void return type annotations (#5000) ([commit](https://github.com/Polymer/polymer/commit/589684a5))
- Easy script to update closure and typescript typings (#5026) ([commit](https://github.com/Polymer/polymer/commit/60e7121d))
- Prefer jsBin since glitch.me requires signin to not be gc'ed. ([commit](https://github.com/Polymer/polymer/commit/e7722243))
- Note that glitch editing environment is not IE11 friendly. ([commit](https://github.com/Polymer/polymer/commit/06ca708b))
- Add links to glitch.me template using polyserve. Fixes #5016 ([commit](https://github.com/Polymer/polymer/commit/9f2ec5f6))
- Update .travis.yml ([commit](https://github.com/Polymer/polymer/commit/9715ab8f))
- [ci skip] Add comment to aid archeology ([commit](https://github.com/Polymer/polymer/commit/e76a2b90))
- Move absolute url logic to element-mixin ([commit](https://github.com/Polymer/polymer/commit/9c189ac9))
- Use double tabs ([commit](https://github.com/Polymer/polymer/commit/6f7b8608))
- indentation fix ([commit](https://github.com/Polymer/polymer/commit/5dca5cd0))
- Remove trailing spaces and extra lines in CONTRIBUTING.md ([commit](https://github.com/Polymer/polymer/commit/8ed376e6))
- test(logging.html): #5007 make sure _logger called one time ([commit](https://github.com/Polymer/polymer/commit/fe48dfa4))
- _loggertest(logging.html): make seperate test suite for _logger ([commit](https://github.com/Polymer/polymer/commit/bd5821b6))
- test(logging.html): missing semicolon ([commit](https://github.com/Polymer/polymer/commit/df3c3c02))
- test(logging): _log with single parameter #5007 ([commit](https://github.com/Polymer/polymer/commit/818c537d))
- fix(legacy-element-mixin): syntax error in _logger ([commit](https://github.com/Polymer/polymer/commit/e0affe3f))
- fix(legacy-element-mixin): _log with single parameter #5006 ([commit](https://github.com/Polymer/polymer/commit/f4ecbae5))
- Fix settings so that its properly picked up by both gen-ts and modulizer ([commit](https://github.com/Polymer/polymer/commit/0356b2df))
- Unbreak the build by changing back the type ([commit](https://github.com/Polymer/polymer/commit/d5dc2a21))
- Enable gulp generate-typescript on Travis ([commit](https://github.com/Polymer/polymer/commit/764146cd))
- Make sure that Travis fails when there are non-updated generated files ([commit](https://github.com/Polymer/polymer/commit/b2cd4370))
- run `gulp generate-typescript` ([commit](https://github.com/Polymer/polymer/commit/541d1f89))
- fix ArraySplice types to more closely match code ([commit](https://github.com/Polymer/polymer/commit/f6182b34))
- [ProperitesChanged] Fix deserialization (#4996) ([commit](https://github.com/Polymer/polymer/commit/2719a9d6))
- fix(FlattenedNodesObserver): do not fail on node without children ([commit](https://github.com/Polymer/polymer/commit/09bb6cd8))
- Address latest round of comments. ([commit](https://github.com/Polymer/polymer/commit/7b581de9))
- Update PropertyEffects interface name in remap config. ([commit](https://github.com/Polymer/polymer/commit/0ebfc24d))
- Tighten more types for TypeScript and Closure (#4998) ([commit](https://github.com/Polymer/polymer/commit/e8729822))
- Add renameTypes config. ([commit](https://github.com/Polymer/polymer/commit/73666c39))
- New typings. ([commit](https://github.com/Polymer/polymer/commit/a1f33174))
- Bump gen-typescript version. ([commit](https://github.com/Polymer/polymer/commit/266d599a))
- Tighten Closure type annotations. (#4997) ([commit](https://github.com/Polymer/polymer/commit/ee4445f8))
- Mark some FlattenedNodesObserver things private. ([commit](https://github.com/Polymer/polymer/commit/5190a89c))
- Add TypeScript equivalent to Closure ITemplateArray. ([commit](https://github.com/Polymer/polymer/commit/a77310af))
- Fix compilation errors. ([commit](https://github.com/Polymer/polymer/commit/f0e31f2d))
- Use glob patterns instead of RegExps to exclude files. ([commit](https://github.com/Polymer/polymer/commit/8f8e54ca))
- Bump version of gen-typescript-declarations. ([commit](https://github.com/Polymer/polymer/commit/cf11a826))
- Handle case where there are no elements in the template ([commit](https://github.com/Polymer/polymer/commit/2d6b4684))
- Update various Polymer annotations to constrain generated types. ([commit](https://github.com/Polymer/polymer/commit/ffc35e48))
- Fix typo in comment ([commit](https://github.com/Polymer/polymer/commit/ade5e796))
- Fix regression with imported css ([commit](https://github.com/Polymer/polymer/commit/706e6021))
- Bring in latest gen-typescript-declarations updates. ([commit](https://github.com/Polymer/polymer/commit/6a0d214d))
- Apply `listeners` in constructor rather than `ready` ([commit](https://github.com/Polymer/polymer/commit/35e3c54b))
- Replace `disconnectedCallback` stub since this change is breaking. ([commit](https://github.com/Polymer/polymer/commit/c8acc183))
- Minor fixes ([commit](https://github.com/Polymer/polymer/commit/1b514b4f))
- Fix html-tag import path. ([commit](https://github.com/Polymer/polymer/commit/c9be530d))
- Update CHANGELOG. ([commit](https://github.com/Polymer/polymer/commit/3ffb895e))
- Fix import path for html-tag. ([commit](https://github.com/Polymer/polymer/commit/eb309934))
- Add generated TypeScript declarations. ([commit](https://github.com/Polymer/polymer/commit/60450bf4))
- Add script to generate TypeScript declarations. ([commit](https://github.com/Polymer/polymer/commit/1f9be786))
- Annotate klass class as @private. Annotate that dedupingMixin returns T. ([commit](https://github.com/Polymer/polymer/commit/b02c4583))
- fix eslint error for unused var in _setPendingProperty ([commit](https://github.com/Polymer/polymer/commit/a89c9ba0))
- fix closure typing with Polymer.html function ([commit](https://github.com/Polymer/polymer/commit/c519796f))
- re-add AsyncInterface definition, fix comment ([commit](https://github.com/Polymer/polymer/commit/986fb3e9))
- Avoid _setPendingProperty warning due to types not understanding deduping mixin. ([commit](https://github.com/Polymer/polymer/commit/40d47f24))
- [ci skip] Update changelog ([commit](https://github.com/Polymer/polymer/commit/f6cc61bd))
- add test for legacy Polymer({}) elements ([commit](https://github.com/Polymer/polymer/commit/8a1c76cd))
- Rename html-fn to html-tag ([commit](https://github.com/Polymer/polymer/commit/02c06aa3))
- Fix most closure warnings. ([commit](https://github.com/Polymer/polymer/commit/a12934c5))
- Add back disconnectedCallback. ([commit](https://github.com/Polymer/polymer/commit/fa40f205))
- Merge with master ([commit](https://github.com/Polymer/polymer/commit/b158e082))
- Move function out of closure. Add comments. ([commit](https://github.com/Polymer/polymer/commit/ad539fe7))
- [ci skip] TODO for link to docs and comment spellcheck ([commit](https://github.com/Polymer/polymer/commit/5c919850))
- Use values.reduce instead of a temporary array ([commit](https://github.com/Polymer/polymer/commit/be9d6210))
- Add deprecation notice for class.template returning a string ([commit](https://github.com/Polymer/polymer/commit/530a68b4))
- [skip-ci] update comment for Polymer.html ([commit](https://github.com/Polymer/polymer/commit/bdfa5fcb))
- remove null/undefined to empty string ([commit](https://github.com/Polymer/polymer/commit/75d873a0))
- Address feedback ([commit](https://github.com/Polymer/polymer/commit/d5070bbe))
- `html` tag function for generating templates ([commit](https://github.com/Polymer/polymer/commit/1bba3abb))
- Add example for flattened-nodes-observer ([commit](https://github.com/Polymer/polymer/commit/08ad6e37))
- Minor updates based on review. ([commit](https://github.com/Polymer/polymer/commit/ed1454d6))
- Use correct assertation. ([commit](https://github.com/Polymer/polymer/commit/4692510f))
- Add tests for non-JSON literals on object props. ([commit](https://github.com/Polymer/polymer/commit/7d49e803))
- Remove PropertiesElement in favor of PropertiesMixin. ([commit](https://github.com/Polymer/polymer/commit/40f02ea1))
- FIx typo ([commit](https://github.com/Polymer/polymer/commit/8af14800))
- Skip test in old browsers. ([commit](https://github.com/Polymer/polymer/commit/a1bd9a4f))
- Remove `propertyNameForAttribute` since it's never needed. ([commit](https://github.com/Polymer/polymer/commit/8d57a6e9))
- Fix subclassing and simplify. ([commit](https://github.com/Polymer/polymer/commit/e09285db))
- Move property<->attribute case mapping to PropertiesChanged. ([commit](https://github.com/Polymer/polymer/commit/603123e1))
- Allow non-JSON literals when property type is "Object". ([commit](https://github.com/Polymer/polymer/commit/77b17b43))
- Update tests ([commit](https://github.com/Polymer/polymer/commit/82cf96bb))
- [PropertiesMixin] Fix mapping property names from attributes ([commit](https://github.com/Polymer/polymer/commit/feac9328))
- Add test for observing id attribute. ([commit](https://github.com/Polymer/polymer/commit/c56f74f9))
- Cleanup based on review. ([commit](https://github.com/Polymer/polymer/commit/4b9170ab))
- Fix deserializing dates. ([commit](https://github.com/Polymer/polymer/commit/8d24c212))
- Factoring improvements around attribute serialize/deserialize ([commit](https://github.com/Polymer/polymer/commit/a7b46b15))
- Remove crufty comment. ([commit](https://github.com/Polymer/polymer/commit/fb0f90bc))
- Lint fix ([commit](https://github.com/Polymer/polymer/commit/e8c27671))
- Add tests for setting custom `attribute` name ([commit](https://github.com/Polymer/polymer/commit/1e903a94))
- Expose less protected data. ([commit](https://github.com/Polymer/polymer/commit/74fb5151))
- ElementMixin uses PropertiesMixin for ([commit](https://github.com/Polymer/polymer/commit/0fe9434f))
- PropertiesMixin ([commit](https://github.com/Polymer/polymer/commit/3c50f44a))
- PropertyAccessors ([commit](https://github.com/Polymer/polymer/commit/5846d582))
- PropertiesChanged ([commit](https://github.com/Polymer/polymer/commit/05cb5d2c))
- Force literal true` to be set as an attribute with a value of empty string. ([commit](https://github.com/Polymer/polymer/commit/1b501944))
- Better attribute suppport ([commit](https://github.com/Polymer/polymer/commit/c91b9d19))
- fix some formatting and closure linting ([commit](https://github.com/Polymer/polymer/commit/5ae21a08))
- Lint fixes. ([commit](https://github.com/Polymer/polymer/commit/946aad5c))
- Renamed basic element to properties element ([commit](https://github.com/Polymer/polymer/commit/e3e128ba))
- Implement `basic-element` with `properties-changed` ([commit](https://github.com/Polymer/polymer/commit/d26955b4))
- Fix lint issues ([commit](https://github.com/Polymer/polymer/commit/b8fd241a))
- Improve docs and add test for case conversion. ([commit](https://github.com/Polymer/polymer/commit/152f896f))
- Add test to runner. ([commit](https://github.com/Polymer/polymer/commit/dcdb750b))
- Adds `Polymer.BasicElement` ([commit](https://github.com/Polymer/polymer/commit/717a4f41))
- Factor PropertiesChanged out of PropertyAccessors ([commit](https://github.com/Polymer/polymer/commit/aa4f186e))
- Add `accessor` property to properties object ([commit](https://github.com/Polymer/polymer/commit/c7b43f78))
- Factor to treeshake better ([commit](https://github.com/Polymer/polymer/commit/e91b6a75))
## [v2.3.1](https://github.com/Polymer/polymer/tree/v2.3.1) (2017-12-07)
- Add test that would fail with the "last style" behavior in master ([commit](https://github.com/Polymer/polymer/commit/913dfce6))
- Use padding-top to get correct computed style on older safari ([commit](https://github.com/Polymer/polymer/commit/b7c56173))
- Handle styles that are not direct children of templates correctly ([commit](https://github.com/Polymer/polymer/commit/0b1cd70a))
- [ci skip] update changelog again ([commit](https://github.com/Polymer/polymer/commit/2d739c75))
## [v2.3.0](https://github.com/Polymer/polymer/tree/v2.3.0) (2017-12-05)
- [ci skip] update changelog ([commit](https://github.com/Polymer/polymer/commit/c727d35d))
## [v2.2.1](https://github.com/Polymer/polymer/tree/v2.2.1) (2017-12-05)
- [ci skip] commit new version in lib/utils/boot.html when using npm version ([commit](https://github.com/Polymer/polymer/commit/71fbf6ef))
- change PolymerElement extern to var ([commit](https://github.com/Polymer/polymer/commit/5c3d58aa))
- update node devDependencies ([commit](https://github.com/Polymer/polymer/commit/a39f3f41))
- fix lint error ([commit](https://github.com/Polymer/polymer/commit/f242e197))
- Fix :dir selectors with nested custom elements ([commit](https://github.com/Polymer/polymer/commit/3b76e86f))
- Update test to be more descriptive ([commit](https://github.com/Polymer/polymer/commit/86a64b6c))
- Annotate Polymer function with @global. (#4967) ([commit](https://github.com/Polymer/polymer/commit/b124b707))
- make PASSIVE_TOUCH take an argument ([commit](https://github.com/Polymer/polymer/commit/c5407a8b))
- Do not set touchend listeners to passive ([commit](https://github.com/Polymer/polymer/commit/84fa3bf3))
- Add some @function annotations to APIs that are defined by assignment. ([commit](https://github.com/Polymer/polymer/commit/29f2a0e7))
- add return jsdoc to void functions ([commit](https://github.com/Polymer/polymer/commit/a8105e55))
- Update CONTRIBUTING.md ([commit](https://github.com/Polymer/polymer/commit/14fd53c3))
- Fix typo. ([commit](https://github.com/Polymer/polymer/commit/581483f2))
- Comment reworded based on feedback. ([commit](https://github.com/Polymer/polymer/commit/80a7f1e5))
- Semantic issue (proposal) plus minor fixes ([commit](https://github.com/Polymer/polymer/commit/42ec14bf))
- Depend on webcomponents and shadycss with shady-unscoped support ([commit](https://github.com/Polymer/polymer/commit/8241b887))
- Also clarify `delay` units. Fixes #4707 ([commit](https://github.com/Polymer/polymer/commit/348ed92c))
- Ensure re-sort/filter always happens after array item set. Fixes #3626 ([commit](https://github.com/Polymer/polymer/commit/f6d4771c))
- Clarify docs on target-framerate. Fixes #4897 ([commit](https://github.com/Polymer/polymer/commit/c18a5349))
- move test after ([commit](https://github.com/Polymer/polymer/commit/45598302))
- test more permutations ([commit](https://github.com/Polymer/polymer/commit/f03e8d1b))
- Fix missing comma in `Path.translate` JSDoc ([commit](https://github.com/Polymer/polymer/commit/41616c6f))
- fix(bower): standardized version tagging (#4921) ([commit](https://github.com/Polymer/polymer/commit/6e3ae2e5))
- Minor fixes (update URLs) ([commit](https://github.com/Polymer/polymer/commit/8e7024e6))
- add license headers ([commit](https://github.com/Polymer/polymer/commit/518b4699))
- Prep for processing of `shady-unscoped` moving to ShadyCSS ([commit](https://github.com/Polymer/polymer/commit/08c3a02e))
- Implement type change in Polymer.ElementMixin ([commit](https://github.com/Polymer/polymer/commit/cda62d5f))
- instance.$.foo should only give Elements ([commit](https://github.com/Polymer/polymer/commit/4837e4a8))
- Annotate DomApi with @memberof Polymer ([commit](https://github.com/Polymer/polymer/commit/7308d8b6))
- Clarify all elements between changes must apply mixing. Fixes #4914 ([commit](https://github.com/Polymer/polymer/commit/7360f42a))
- add safari 11 to sauce testing ([commit](https://github.com/Polymer/polymer/commit/428ad8c2))
- Fix tests on Firefox. ([commit](https://github.com/Polymer/polymer/commit/9a468335))
- Update externs again. ([commit](https://github.com/Polymer/polymer/commit/1c5b731f))
- Update externs. ([commit](https://github.com/Polymer/polymer/commit/8683b27c))
- Lint fixes ([commit](https://github.com/Polymer/polymer/commit/092b210f))
- Allow style elements to be separate in the element template. ([commit](https://github.com/Polymer/polymer/commit/819652eb))
- Lint fix. ([commit](https://github.com/Polymer/polymer/commit/982d28c6))
- Add support for styles with a `shady-unscoped` attribute ([commit](https://github.com/Polymer/polymer/commit/d77e073e))
- [ci skip] Update CHANGELOG ([commit](https://github.com/Polymer/polymer/commit/314bada5))
- [ci skip] version script did not work as expected ([commit](https://github.com/Polymer/polymer/commit/4265cba1))
- adding test case for 4696 4706 ([commit](https://github.com/Polymer/polymer/commit/939ce63c))
- Support property observers which are direct function references in addition to strings. Provides better static analysis and refactoring support in multiple tools. Alleviates the need for property reflection with Closure-compiler renaming. ([commit](https://github.com/Polymer/polymer/commit/4bae2b62))
- removing package-lock.json from PR ([commit](https://github.com/Polymer/polymer/commit/0da00a1d))
- implementing the code review suggestions ([commit](https://github.com/Polymer/polymer/commit/1b51f601))
- Updating deserialize function (use of ternary operation). Fixes #4696 ([commit](https://github.com/Polymer/polymer/commit/ca139ed0))
- Updating deserialize function. Fixes #4696 ([commit](https://github.com/Polymer/polymer/commit/277ca89a))
## [v2.2.0](https://github.com/Polymer/polymer/tree/v2.2.0) (2017-10-18)
- [ci skip] Autoupdate version when releasing ([commit](https://github.com/Polymer/polymer/commit/d893d6ae))
- add edge 15, use chrome stable ([commit](https://github.com/Polymer/polymer/commit/c6f2d817))
- super it and put back takeRecords ([commit](https://github.com/Polymer/polymer/commit/02e2f148))
- more feedback ([commit](https://github.com/Polymer/polymer/commit/15cbdff5))
- Address feedback ([commit](https://github.com/Polymer/polymer/commit/e71b84a8))
- add some description of the dir mixin ([commit](https://github.com/Polymer/polymer/commit/f98ad117))
- Fix linting ([commit](https://github.com/Polymer/polymer/commit/624189a3))
- Always do the :dir transform ([commit](https://github.com/Polymer/polymer/commit/31c0ebc7))
- Clean up closure externs ([commit](https://github.com/Polymer/polymer/commit/1e5ea942))
- remove bogus semicolon ([commit](https://github.com/Polymer/polymer/commit/7d044b49))
- Declare Polymer.Templatizer directly, for Closure. (#4870) ([commit](https://github.com/Polymer/polymer/commit/3b155173))
- First draft of a `:dir` aware element mixin ([commit](https://github.com/Polymer/polymer/commit/2ef65aa6))
- [ci-skip] Update CHANGELOG ([commit](https://github.com/Polymer/polymer/commit/28e60271))
## [v2.1.1](https://github.com/Polymer/polymer/tree/v2.1.1) (2017-09-28)
- Prepare for release 2.1.1 ([commit](https://github.com/Polymer/polymer/commit/f049dd91))
- Move @externs before @license because Closure likes that. ([commit](https://github.com/Polymer/polymer/commit/c3f31455))
- just move the style instead ([commit](https://github.com/Polymer/polymer/commit/61b2c8a5))
- Copy <custom-style> styles to main document ([commit](https://github.com/Polymer/polymer/commit/155ab8a2))
- Fix typos and jsdoc (#4846) ([commit](https://github.com/Polymer/polymer/commit/b19e180a))
- [ci skip] update changelog ([commit](https://github.com/Polymer/polymer/commit/44fd1eaa))
- Fix shady dom style querySelector ([commit](https://github.com/Polymer/polymer/commit/d5b6bad3))
- Fix linter error ([commit](https://github.com/Polymer/polymer/commit/2da30c33))
- Exclude script and style tags for parsing bindings ([commit](https://github.com/Polymer/polymer/commit/41fa90b3))
- Special-case undefined textarea.value same as input. Fixes #4630 ([commit](https://github.com/Polymer/polymer/commit/8aa201b9))
## [v2.1.0](https://github.com/Polymer/polymer/tree/v2.1.0) (2017-09-19)
- [ci skip] bump version to 2.1.0 ([commit](https://github.com/Polymer/polymer/commit/64788aad))
- Port #3844 to 2.x ([commit](https://github.com/Polymer/polymer/commit/00bc76e4))
- Provide a `Polymer.setPassiveTouchGestures()` function ([commit](https://github.com/Polymer/polymer/commit/3547fd37))
- Make sure closure types have braces ([commit](https://github.com/Polymer/polymer/commit/fb8039e0))
- a few more comments in return ([commit](https://github.com/Polymer/polymer/commit/f6f0a3b7))
- Fix setting, add smoke test ([commit](https://github.com/Polymer/polymer/commit/6312da57))
- Optional passive touch listeners for gestures ([commit](https://github.com/Polymer/polymer/commit/5f7597f7))
- Don't have `return /** comment */` lines ([commit](https://github.com/Polymer/polymer/commit/c802b8b2))
- [ci skip] disable closure lint for now (travis java errors) ([commit](https://github.com/Polymer/polymer/commit/e45e5bba))
- try to avoid introducing spelling errors in changelogs ([commit](https://github.com/Polymer/polymer/commit/7616e3c9))
- spelling: webcomponents ([commit](https://github.com/Polymer/polymer/commit/70504627))
- spelling: veiling ([commit](https://github.com/Polymer/polymer/commit/43f6b971))
- spelling: unnecessary ([commit](https://github.com/Polymer/polymer/commit/dc0573f8))
- spelling: toolkit ([commit](https://github.com/Polymer/polymer/commit/42edf634))
- spelling: together ([commit](https://github.com/Polymer/polymer/commit/7d6e4351))
- spelling: there-when ([commit](https://github.com/Polymer/polymer/commit/240701ec))
- spelling: theming ([commit](https://github.com/Polymer/polymer/commit/d991cce1))
- spelling: supported ([commit](https://github.com/Polymer/polymer/commit/4a2e7750))
- spelling: stylesheet ([commit](https://github.com/Polymer/polymer/commit/d138df3c))
- spelling: static ([commit](https://github.com/Polymer/polymer/commit/4354e710))
- spelling: sometimes ([commit](https://github.com/Polymer/polymer/commit/802817dc))
- spelling: shuffling ([commit](https://github.com/Polymer/polymer/commit/93a18c58))
- spelling: returns ([commit](https://github.com/Polymer/polymer/commit/3f744c3c))
- spelling: restart ([commit](https://github.com/Polymer/polymer/commit/58111054))
- spelling: responsive ([commit](https://github.com/Polymer/polymer/commit/d1da7314))
- spelling: resilient ([commit](https://github.com/Polymer/polymer/commit/d45855d9))
- spelling: resetting ([commit](https://github.com/Polymer/polymer/commit/8fb47431))
- spelling: reentrancy ([commit](https://github.com/Polymer/polymer/commit/5ea03d60))
- spelling: readonly ([commit](https://github.com/Polymer/polymer/commit/ff294a90))
- spelling: prototype ([commit](https://github.com/Polymer/polymer/commit/bbe54cc2))
- spelling: protocols ([commit](https://github.com/Polymer/polymer/commit/83df6dad))
- spelling: properties ([commit](https://github.com/Polymer/polymer/commit/bb74d2da))
- spelling: preferring ([commit](https://github.com/Polymer/polymer/commit/00e0567e))
- spelling: polyfill ([commit](https://github.com/Polymer/polymer/commit/ce0ca630))
- spelling: parameterize ([commit](https://github.com/Polymer/polymer/commit/141cefe3))
- spelling: omit ([commit](https://github.com/Polymer/polymer/commit/e3b04e51))
- spelling: offset ([commit](https://github.com/Polymer/polymer/commit/ea0acb0d))
- spelling: notification ([commit](https://github.com/Polymer/polymer/commit/ee741143))
- spelling: name ([commit](https://github.com/Polymer/polymer/commit/159803a7))
- spelling: multiple ([commit](https://github.com/Polymer/polymer/commit/602ee780))
- spelling: loaded ([commit](https://github.com/Polymer/polymer/commit/f4529864))
- spelling: jquery ([commit](https://github.com/Polymer/polymer/commit/88ce972d))
- spelling: javascript ([commit](https://github.com/Polymer/polymer/commit/f1f7f669))
- spelling: instead ([commit](https://github.com/Polymer/polymer/commit/c4be7f60))
- spelling: initial ([commit](https://github.com/Polymer/polymer/commit/3862ce0a))
- spelling: increments ([commit](https://github.com/Polymer/polymer/commit/8bda7f93))
- spelling: identify ([commit](https://github.com/Polymer/polymer/commit/17678e1a))
- spelling: github ([commit](https://github.com/Polymer/polymer/commit/0781b322))
- spelling: getting ([commit](https://github.com/Polymer/polymer/commit/c1d7c3e8))
- spelling: function ([commit](https://github.com/Polymer/polymer/commit/b9b22854))
- spelling: falsy ([commit](https://github.com/Polymer/polymer/commit/d472919a))
- spelling: enqueuing ([commit](https://github.com/Polymer/polymer/commit/96c8ed81))
- spelling: element ([commit](https://github.com/Polymer/polymer/commit/d4e54c72))
- spelling: effective ([commit](https://github.com/Polymer/polymer/commit/139edd00))
- spelling: doesn't ([commit](https://github.com/Polymer/polymer/commit/aa35d779))
- spelling: does ([commit](https://github.com/Polymer/polymer/commit/01f943d9))
- spelling: disappearing ([commit](https://github.com/Polymer/polymer/commit/508c005a))
- spelling: deserialized ([commit](https://github.com/Polymer/polymer/commit/2acbf5df))
- spelling: customize ([commit](https://github.com/Polymer/polymer/commit/0a0ac248))
- spelling: containing ([commit](https://github.com/Polymer/polymer/commit/2b09e75c))
- spelling: components ([commit](https://github.com/Polymer/polymer/commit/e11d4d6b))
- spelling: collection ([commit](https://github.com/Polymer/polymer/commit/38645c08))
- spelling: children ([commit](https://github.com/Polymer/polymer/commit/c30c5d03))
- spelling: changed ([commit](https://github.com/Polymer/polymer/commit/1579bf36))
- spelling: behavior ([commit](https://github.com/Polymer/polymer/commit/65f27655))
- spelling: attribute ([commit](https://github.com/Polymer/polymer/commit/d8f3f57d))
- spelling: attached ([commit](https://github.com/Polymer/polymer/commit/adc4f0e1))
- spelling: asynchronous ([commit](https://github.com/Polymer/polymer/commit/6c59f53b))
- Explicitly set display none on dom-* elements (#4821) ([commit](https://github.com/Polymer/polymer/commit/65859b1c))
- Publish DomBind in Polymer. scope ([commit](https://github.com/Polymer/polymer/commit/60054350))
- Fix missing semi-colons in test folder ([commit](https://github.com/Polymer/polymer/commit/72a59f77))
- Enable ESLint 'semi' rule ([commit](https://github.com/Polymer/polymer/commit/75c6fff7))
- [ci skip] update package-lock ([commit](https://github.com/Polymer/polymer/commit/ca1ce196))
- [ci skip] Add license headers to externs ([commit](https://github.com/Polymer/polymer/commit/f4a9e06e))
- Polymer.Path.get accepts both a string path or an Array path, so functions that call this should allow for either as well. Already changed for Polymer.prototype.push here: ([commit](https://github.com/Polymer/polymer/commit/42ce5a88))
- lint with closure as well ([commit](https://github.com/Polymer/polymer/commit/cc649e97))
- Update closure compiler to support polymer pass v2 ([commit](https://github.com/Polymer/polymer/commit/a4591abc))
- Revert "Adds `restamp` mode to dom-repeat." ([commit](https://github.com/Polymer/polymer/commit/d439960a))
- Add test to verify that importHref can be called twice ([commit](https://github.com/Polymer/polymer/commit/6ce904b3))
- Fix compiling with Polymer({}) calls ([commit](https://github.com/Polymer/polymer/commit/d937d5fe))
- Remove double space ([commit](https://github.com/Polymer/polymer/commit/bbf0e7c8))
- Add development workflow-related files to gitignore (#4612) ([commit](https://github.com/Polymer/polymer/commit/d5c2629f))
- Allow arbitrary whitespace in CSS imports ([commit](https://github.com/Polymer/polymer/commit/5c250d44))
- Fix dom-module API docs with static `import` function ([commit](https://github.com/Polymer/polymer/commit/9f7df4cf))
- [ci skip] update externs more from #4776 ([commit](https://github.com/Polymer/polymer/commit/c20b6574))
- imported css modules should always be before element's styles ([commit](https://github.com/Polymer/polymer/commit/679a49e4))
- Update closure annotation for Polymer.prototype.push ([commit](https://github.com/Polymer/polymer/commit/eb170cbb))
- Fixed formatting. ([commit](https://github.com/Polymer/polymer/commit/48fac922))
- Fix formatting of code in API docs (#4771) ([commit](https://github.com/Polymer/polymer/commit/eb406c71))
- Lint clean. ([commit](https://github.com/Polymer/polymer/commit/4095e12d))
- Separate scripts that modify configuration properties, as their ordering constraints are unusual. ([commit](https://github.com/Polymer/polymer/commit/49dbacb6))
- test: convert XNestedRepeat to use an inlined string template. ([commit](https://github.com/Polymer/polymer/commit/c89155ba))
- Don't rely on implicitly creating a global, does not. ([commit](https://github.com/Polymer/polymer/commit/28ed27e0))
- Refer to Gestures.recognizers consistently. ([commit](https://github.com/Polymer/polymer/commit/3555b458))
- Make test work in strict mode. ([commit](https://github.com/Polymer/polymer/commit/328ce594))
- In tests, explicitly write to window when creating a new global for clarity. ([commit](https://github.com/Polymer/polymer/commit/674d4685))
- [ci skip] remove duplicate definition for __dataHost in externs ([commit](https://github.com/Polymer/polymer/commit/5ab9032c))
- [ci skip] update polymer-build and run-sequence ([commit](https://github.com/Polymer/polymer/commit/0c6aa882))
- Fix tests in non-Chrome browsers ([commit](https://github.com/Polymer/polymer/commit/5a54c32b))
- Better distinguish param name from namespaced name ([commit](https://github.com/Polymer/polymer/commit/a3d6e56b))
- use wct 6 npm package ([commit](https://github.com/Polymer/polymer/commit/fbe8dcc4))
- add mixin class instance properties to externs ([commit](https://github.com/Polymer/polymer/commit/34d22acd))
- Add sanitizeDOMValue to settings.html ([commit](https://github.com/Polymer/polymer/commit/4d730e16))
- Remove reference to Polymer._toOverride, it seems like an incomplete feature/part of the test. ([commit](https://github.com/Polymer/polymer/commit/981a7600))
- Update custom-style API doc ([commit](https://github.com/Polymer/polymer/commit/52a7328e))
- Use customElements.get rather than referring to the global for Polymer.DomModule ([commit](https://github.com/Polymer/polymer/commit/bb202378))
- Add import of dom-module to file that uses it. ([commit](https://github.com/Polymer/polymer/commit/dbedcfc0))
- Do not assign to a readonly property on window ([commit](https://github.com/Polymer/polymer/commit/b64e4862))
- [ci skip] Fix documentation in PropertyAccessors ([commit](https://github.com/Polymer/polymer/commit/0f695d90))
- [ci skip] fix closure warning ([commit](https://github.com/Polymer/polymer/commit/2e7dc00b))
- Fix event path for tap event on touch ([commit](https://github.com/Polymer/polymer/commit/50bf45c3))
- [ci skip] Update changelog ([commit](https://github.com/Polymer/polymer/commit/466624ae))
- Update web-component-tester to stable version ([commit](https://github.com/Polymer/polymer/commit/ae78564c))
- Disable closure linting until the count is driven down to a reasonable level ([commit](https://github.com/Polymer/polymer/commit/6335b24f))
- Adds `restamp` mode to dom-repeat. ([commit](https://github.com/Polymer/polymer/commit/6cebeace))
## [v2.0.2](https://github.com/Polymer/polymer/tree/v2.0.2) (2017-07-14)
- remove broken npm script ([commit](https://github.com/Polymer/polymer/commit/27c67125))
- depend on webcomponentsjs 1.0.2 ([commit](https://github.com/Polymer/polymer/commit/d522de0f))
- cleanup and update npm dependencies ([commit](https://github.com/Polymer/polymer/commit/4176c6c2))
- Update LegacyElementMixin.distributeContent ([commit](https://github.com/Polymer/polymer/commit/2daf9de2))
- Remove crufty test ([commit](https://github.com/Polymer/polymer/commit/c96350b4))
- [ci skip] remove one new closure warning for updating closure ([commit](https://github.com/Polymer/polymer/commit/0cb560a4))
- Meaningful closure fixes from @ChadKillingsworth ([commit](https://github.com/Polymer/polymer/commit/88043077))
- [ci skip] clean up mixin fn and regen externs ([commit](https://github.com/Polymer/polymer/commit/72022f27))
- address some concerns from kschaaf ([commit](https://github.com/Polymer/polymer/commit/44653813))
- zero warnings left ([commit](https://github.com/Polymer/polymer/commit/3e14a1d8))
- [ci skip] Fix link closing quotes. ([commit](https://github.com/Polymer/polymer/commit/d1ad0c33))
- Remove @suppress {missingProperties} ([commit](https://github.com/Polymer/polymer/commit/2efccb95))
- Annotate Debouncer summary. (#4691) ([commit](https://github.com/Polymer/polymer/commit/806119ae))
- Fix typo in templatize.html ([commit](https://github.com/Polymer/polymer/commit/de181d6e))
- Move Debouncer memberof annotation to right place, and add a summary. (#4690) ([commit](https://github.com/Polymer/polymer/commit/77f06712))
- remove PolymerPropertyEffects type, inline DataTrigger and DataEffect types ([commit](https://github.com/Polymer/polymer/commit/7612df67))
- remove polymer-element dependency introduced by a merge conflict ([commit](https://github.com/Polymer/polymer/commit/3b7eedb8))
- update closure log ([commit](https://github.com/Polymer/polymer/commit/344ebb4c))
- remove dommodule imports ([commit](https://github.com/Polymer/polymer/commit/fc886306))
- Create style-gather.html ([commit](https://github.com/Polymer/polymer/commit/73fbbb45))
- README: fix typo ([commit](https://github.com/Polymer/polymer/commit/5355252a))
- Remove unused `__needFullRefresh` ([commit](https://github.com/Polymer/polymer/commit/bdbbfa19))
- Fixes #4650: if an observed path changes, the repeat should render but in addition, the path should be notified. This is necessary since “mutableData” is optional. ([commit](https://github.com/Polymer/polymer/commit/22d27aa0))
- last two stragglers ([commit](https://github.com/Polymer/polymer/commit/9bd89203))
- fix eslint warnings ([commit](https://github.com/Polymer/polymer/commit/ba720124))
- Down to 30ish warnings, need PolymerPass v2 ([commit](https://github.com/Polymer/polymer/commit/de87c585))
- Add lib/utils/settings.html to hold legacy settings and rootPath ([commit](https://github.com/Polymer/polymer/commit/3183e3f7))
- Fix typo in dom-repeat.html ([commit](https://github.com/Polymer/polymer/commit/d6941a34))
- guard all dommodule references ([commit](https://github.com/Polymer/polymer/commit/c3866a59))
- add more missing imports ([commit](https://github.com/Polymer/polymer/commit/8c71456d))
- Add mixin.html import to gesture-event-listeners.html ([commit](https://github.com/Polymer/polymer/commit/352dc33a))
- more fixes ([commit](https://github.com/Polymer/polymer/commit/872e1c27))
- rebaseline warnings with NTI specific warnings disabled, for now ([commit](https://github.com/Polymer/polymer/commit/abc229e5))
- Fix parsing for argument whitespace. Fixes #4643. ([commit](https://github.com/Polymer/polymer/commit/a29d8876))
- Upgrade babel-preset-babili to include RegExp fix from https://github.com/babel/babili/pull/490 ([commit](https://github.com/Polymer/polymer/commit/308cae6e))
- Not an RC anymore ([commit](https://github.com/Polymer/polymer/commit/8290002b))
- Just ensure content frag from _contentForTemplate is inert. Edge does not seem to always use the exact same owner document for templates. ([commit](https://github.com/Polymer/polymer/commit/b73caea0))
- Fix typo in prop of FlattenedNodesObserver ([commit](https://github.com/Polymer/polymer/commit/57fe7dca))
- [ci skip] Update Changelog ([commit](https://github.com/Polymer/polymer/commit/e03b2cce))
- Fix some ElementMixin warnings. ([commit](https://github.com/Polymer/polymer/commit/c0a816f6))
- Fix template.assetpath with typedef ([commit](https://github.com/Polymer/polymer/commit/ec3e948d))
- fix dom-module related errors ([commit](https://github.com/Polymer/polymer/commit/07443645))
- Fix fn binding error ([commit](https://github.com/Polymer/polymer/commit/bc504f64))
- Reduce closure warnings in PropertyAccessors ([commit](https://github.com/Polymer/polymer/commit/3591be8b))
- reduce closure warnings in TemplateStamp ([commit](https://github.com/Polymer/polymer/commit/c34ef0b2))
- [ci skip] parameterize entries for closure task ([commit](https://github.com/Polymer/polymer/commit/3a80ad8f))
- [ci skip] generating externs should be explicit ([commit](https://github.com/Polymer/polymer/commit/a8a57bf5))
- Avoid firstElementChild on DocFrag for IE11 ([commit](https://github.com/Polymer/polymer/commit/02e31d78))
- update externs for merge, update dependencies ([commit](https://github.com/Polymer/polymer/commit/e927bc9a))
- Fix impl of _contentForTemplate. Add template-stamp tests. Fixes #4597 ([commit](https://github.com/Polymer/polymer/commit/06190c9d))
- ensure latest closure, stay on polymer-build 1.1 until warnings can be ignored ([commit](https://github.com/Polymer/polymer/commit/7abd7037))
- @mixes -> @appliesMixin ([commit](https://github.com/Polymer/polymer/commit/1f21ab1a))
- @polymerMixin/@polymerMixinClass -> @mixinFunction/@mixinClass ([commit](https://github.com/Polymer/polymer/commit/f7e8021e))
- @polymerElement -> @customElement/@polymer ([commit](https://github.com/Polymer/polymer/commit/231b21c0))
- fix lint error ([commit](https://github.com/Polymer/polymer/commit/e5de1782))
- remove all "global this" warnings ([commit](https://github.com/Polymer/polymer/commit/c0ddc60b))
- remove `TemplateStamp`’s implicit dependency on `_initializeProperties` ([commit](https://github.com/Polymer/polymer/commit/f821e46a))
- fix typing for Polymer.Element ([commit](https://github.com/Polymer/polymer/commit/0b152938))
- inline cachingMixin into deduplicatingMixin ([commit](https://github.com/Polymer/polymer/commit/c3da5073))
- initialize properties in `_initializeProperties` rather than `constructor` (allows work to be done before `_initializeProperties` and is needed for proto/instance property initialization . ([commit](https://github.com/Polymer/polymer/commit/f15e4ee6))
- LegacyElementMixin to `@unrestricted` ([commit](https://github.com/Polymer/polymer/commit/c1eda7af))
- set `isAttached` constructor (for closure) but set to undefined so not picked up as proto property (avoids initial binding value) ([commit](https://github.com/Polymer/polymer/commit/6a995a23))
- Fix dedupingMixin ([commit](https://github.com/Polymer/polymer/commit/2c9ffac3))
- Fix more closure warnings ([commit](https://github.com/Polymer/polymer/commit/f04d6311))
- Fix more closure warnings ([commit](https://github.com/Polymer/polymer/commit/d0f78122))
- Fix more closure warnings. ([commit](https://github.com/Polymer/polymer/commit/0c3e3c5f))
- Fix more closure warnings. ([commit](https://github.com/Polymer/polymer/commit/b686cd77))
- Fix more closure warnings. ([commit](https://github.com/Polymer/polymer/commit/0b22959f))
- Fix more closure warnings. ([commit](https://github.com/Polymer/polymer/commit/2627e63a))
- slighly better typing for mixin function ([commit](https://github.com/Polymer/polymer/commit/b3dfd38e))
- gesture fixes ([commit](https://github.com/Polymer/polymer/commit/346e2d57))
- Fix more closure warnings. ([commit](https://github.com/Polymer/polymer/commit/fa9823f7))
- Fix some closure warnings. ([commit](https://github.com/Polymer/polymer/commit/f1a14982))
- Fix some closure warnings. ([commit](https://github.com/Polymer/polymer/commit/51855541))
- automate generating closure externs ([commit](https://github.com/Polymer/polymer/commit/89b12301))
- Fix some closure warnings. ([commit](https://github.com/Polymer/polymer/commit/37abc4e3))
- fix some closure warnings. ([commit](https://github.com/Polymer/polymer/commit/80f54421))
## [v2.0.1](https://github.com/Polymer/polymer/tree/v2.0.1) (2017-05-25)
- [ci skip] Prepare 2.0.1 ([commit](https://github.com/Polymer/polymer/commit/061b1048))
- Improve comment more ([commit](https://github.com/Polymer/polymer/commit/39877086))
- Improve comment ([commit](https://github.com/Polymer/polymer/commit/fa1469a9))
- Add comment. ([commit](https://github.com/Polymer/polymer/commit/250067b3))
- * Improve clarity: change `__dataInitialized` to `__dataReady` * When `_flushClients` is called, ensure that clients are always enabled or flushed as appropriate. This ensures that (1) clients that are enabled before the host is enabled flush properly, and (2) clients that are stamped but not enabled properly enable when the host flushes. ([commit](https://github.com/Polymer/polymer/commit/8e8692f7))
- Fix typo in runBindingEffect documentation ([commit](https://github.com/Polymer/polymer/commit/6bd8dcfa))
- Fixes #4601. Client elements can be readied that have already enabled properties. This can happen when templatize is used to create instances with no properties. In this case, in order for properties to flush properly to clients, clients must be flushed. ([commit](https://github.com/Polymer/polymer/commit/06df53d9))
- [ci skip] Update Changelog ([commit](https://github.com/Polymer/polymer/commit/c4e516f6))
## [v2.0.0](https://github.com/Polymer/polymer/tree/v2.0.0) (2017-05-15)
- [ci skip] bump version to 2.0.0 ([commit](https://github.com/Polymer/polymer/commit/712230fc))
- [ci skip] Update Changelog ([commit](https://github.com/Polymer/polymer/commit/21ee3b4d))
## [v2.0.0-rc.9](https://github.com/Polymer/polymer/tree/v2.0.0-rc.9) (2017-05-12)
- [ci skip] Add alacarte usage smoke tests. ([commit](https://github.com/Polymer/polymer/commit/e54bc5f8))
- [skip ci] doc fixes ([commit](https://github.com/Polymer/polymer/commit/b943aa0d))
- Docs and slight renaming. ([commit](https://github.com/Polymer/polymer/commit/4eb252fe))
- Add tests. ([commit](https://github.com/Polymer/polymer/commit/1f83fd7c))
- Move hostStack to property-effects and make readyClients explicit ([commit](https://github.com/Polymer/polymer/commit/c7a81ea8))
- Turn on accessors (via __dataInitialized) only after clients have completely flushed. ([commit](https://github.com/Polymer/polymer/commit/2f1e964c))
- Adds `_enableProperties` as a new entry point that must be called to turn on properties. Prevents a bug where `_readyClients` can be called twice. ([commit](https://github.com/Polymer/polymer/commit/c6f9b315))
- [ci skip] Fix doc createPropertyEffect -> addPropertyEffect ([commit](https://github.com/Polymer/polymer/commit/90e8cd95))
- [ci skip] Update Changelog ([commit](https://github.com/Polymer/polymer/commit/448149d2))
## [v2.0.0-rc.8](https://github.com/Polymer/polymer/tree/v2.0.0-rc.8) (2017-05-11)
- Add test for boolean dynamicFn ([commit](https://github.com/Polymer/polymer/commit/03d21ce8))
- Accept boolean or object map for dynamicFns ([commit](https://github.com/Polymer/polymer/commit/f197ce24))
- update dependencies for v1 polyfills ([commit](https://github.com/Polymer/polymer/commit/d9b5b8f9))
- Null the links when unbinding. ([commit](https://github.com/Polymer/polymer/commit/42230437))
- Dedupe API docs. ([commit](https://github.com/Polymer/polymer/commit/e97a6eb7))
- Move setup to suiteSetup ([commit](https://github.com/Polymer/polymer/commit/d5b282fa))
- Uncomment previous tests ([commit](https://github.com/Polymer/polymer/commit/55b2d160))
- Add tests ([commit](https://github.com/Polymer/polymer/commit/0f4ebf62))
- [ci skip] port gen-changelog from 1.x ([commit](https://github.com/Polymer/polymer/commit/24dd897d))
- Add static API for creating property fx and minor code refactoring. ([commit](https://github.com/Polymer/polymer/commit/7497065a))
- [ci skip] remove bower.json version, add npm devDependencies & np publish config ([commit](https://github.com/Polymer/polymer/commit/6b6092e0))
- Fix comment. ([commit](https://github.com/Polymer/polymer/commit/6f1dde76))
- Fixes #4585. Data notifications do not flush host if host has not initialized clients. This preserves the Polymer 1.x guarantee that client dom is fully “readied” when data observers run. ([commit](https://github.com/Polymer/polymer/commit/3b6981d4))
- Ensure no warnings for dynamic fns. Fixes #4575 ([commit](https://github.com/Polymer/polymer/commit/d72baf9d))
- Corrected minor Method comments ([commit](https://github.com/Polymer/polymer/commit/8a2aeb65))
- Removes the `disable-upgrade` feature from Polymer 2.0. Due to #4550, the feature has a flaw for native ES6 classes and would be better implemented as either a mixin or patch to `customElements.define`. ([commit](https://github.com/Polymer/polymer/commit/972b2bab))
- Fix jsBin link. ([commit](https://github.com/Polymer/polymer/commit/811c334e))
- Ensure tags in markdown are backtracked. Short-term stopgap to ensure they are not rendered in HTML. ([commit](https://github.com/Polymer/polymer/commit/e90ef30d))
- Clean up gulpfile ([commit](https://github.com/Polymer/polymer/commit/764448c9))
- bump wct version ([commit](https://github.com/Polymer/polymer/commit/bafa1ecd))
- Disabling `lint-closure` until the error count is driven to 0 ([commit](https://github.com/Polymer/polymer/commit/c98e3799))
- fix test failures on safari 9 and chrome 41 w/focus event ([commit](https://github.com/Polymer/polymer/commit/0b00f2d9))
- update debounce example. ([commit](https://github.com/Polymer/polymer/commit/5be7ec99))
- Fixes #4553, #4554 ([commit](https://github.com/Polymer/polymer/commit/36792f94))
- save closure warnings to "closure.log" file ([commit](https://github.com/Polymer/polymer/commit/25cfc882))
- use shadycss externs directly, now only 498 warnings ([commit](https://github.com/Polymer/polymer/commit/c21a63db))
- add gulp task to lint for closure warnings ([commit](https://github.com/Polymer/polymer/commit/4e782741))
## [v2.0.0-rc.7](https://github.com/Polymer/polymer/tree/v2.0.0-rc.7) (2017-04-19)
- Add more tests. ([commit](https://github.com/Polymer/polymer/commit/73df8c5b))
- Update jsBin template for 2.0 ([commit](https://github.com/Polymer/polymer/commit/4a2db9ca))
- [ci skip] Update link to jsBin template for 2.0. ([commit](https://github.com/Polymer/polymer/commit/0aeb3170))
- Move computeLinkedPaths out of hot path and into sync setter. ([commit](https://github.com/Polymer/polymer/commit/d722cb9c))
- [ci skip] Add note re: purpose of test ([commit](https://github.com/Polymer/polymer/commit/7ecbf258))
- Fix test for fallback \_readyClients. Fixes #4547 ([commit](https://github.com/Polymer/polymer/commit/85184e8b))
- Process paths regardless of accessor, & loop on computeLinkedPaths. Fixes #4542 ([commit](https://github.com/Polymer/polymer/commit/e2d17020))
## [v2.0.0-rc.6](https://github.com/Polymer/polymer/tree/v2.0.0-rc.6) (2017-04-17)
- [ci skip] Fix API docs ([commit](https://github.com/Polymer/polymer/commit/5a4427bf))
- Guard against overwriting bound values with hasOwnProperty. Fixes #4540 ([commit](https://github.com/Polymer/polymer/commit/4c023740))
- [ci skip] reduce warnings ([commit](https://github.com/Polymer/polymer/commit/00f9e3eb))
- fix globals for goog.reflect.objectProperty -> JSCompiler_renameProperty swap ([commit](https://github.com/Polymer/polymer/commit/8867fde5))
- [ci skip] remove outdated externs file ([commit](https://github.com/Polymer/polymer/commit/626a085d))
- lint and compile successfully ([commit](https://github.com/Polymer/polymer/commit/a2fa1005))
- update dependencies ([commit](https://github.com/Polymer/polymer/commit/36603bc4))
- Rename `setPrivate` -> `setReadOnly` ([commit](https://github.com/Polymer/polymer/commit/521ed3de))
- Add `setPrivate` arg to `setProperties` ([commit](https://github.com/Polymer/polymer/commit/e6e4803f))
- Never accidental test change ([commit](https://github.com/Polymer/polymer/commit/28c15caa))
- Remove unused @method ([commit](https://github.com/Polymer/polymer/commit/6d636138))
- Standardize @return, @param, type case. ([commit](https://github.com/Polymer/polymer/commit/8cab18b1))
- Fix jsdoc warnings. ([commit](https://github.com/Polymer/polymer/commit/dab794b2))
- jsdoc fixes. ([commit](https://github.com/Polymer/polymer/commit/38a13f66))
- Fix jsdoc issues. ([commit](https://github.com/Polymer/polymer/commit/86d2eebc))
- Fix jsdoc issues. ([commit](https://github.com/Polymer/polymer/commit/8a11c8c3))
- Enable error on jsdoc mistake. ([commit](https://github.com/Polymer/polymer/commit/72a454e9))
- fix @license comments & shadycss imports. Remove custom style from externs ([commit](https://github.com/Polymer/polymer/commit/59350ad4))
- closure advanced compilation ([commit](https://github.com/Polymer/polymer/commit/eea1ca23))
## [v2.0.0-rc.5](https://github.com/Polymer/polymer/tree/v2.0.0-rc.5) (2017-04-13)
- Eliminate rest args for better perf on stable chrome. ([commit](https://github.com/Polymer/polymer/commit/fa67457c))
- Fix perf regressions. ([commit](https://github.com/Polymer/polymer/commit/86e35e3a))
- Move second tap test to the correct spot. ([commit](https://github.com/Polymer/polymer/commit/6e4b87c1))
- Add GestureEventListeners to dom-bind. ([commit](https://github.com/Polymer/polymer/commit/4f628fd9))
- Add more comments ([commit](https://github.com/Polymer/polymer/commit/d0bd96d4))
- [ci skip] Fix comment. ([commit](https://github.com/Polymer/polymer/commit/becd1d3b))
- alias another way ([commit](https://github.com/Polymer/polymer/commit/d297047e))
- use chrome beta ([commit](https://github.com/Polymer/polymer/commit/0724f187))
- Add more HTMLImports.whenReady ([commit](https://github.com/Polymer/polymer/commit/bc713187))
- Address feedback from review: * Refactor `_bindTemplate` to remove problematic `hasCreatedAccessors` * Remove vestigial `dom` from `_bindTemplate` call * Rename `_unstampTemplate` to `_removeBoundDom` * Add `infoIndex` to `nodeInfo` (and renamed parent & index) * Add test to ensure runtime accessors created for new props in runtime stamped template * Changed custom binding test to use different prop names * Added test for #first count after removing bound dom ([commit](https://github.com/Polymer/polymer/commit/b9fafb7e))
- Fix lint error. ([commit](https://github.com/Polymer/polymer/commit/dff5f2bc))
- Ensure prototype wasn't affected by runtime effects. ([commit](https://github.com/Polymer/polymer/commit/bf2dbe0a))
- Add tests for adding/removing runtime property effects. ([commit](https://github.com/Polymer/polymer/commit/14711067))
- Added tests for custom parsing, effects, and binding. ([commit](https://github.com/Polymer/polymer/commit/1cf955b9))
- Add initial runtime stamping tests. ([commit](https://github.com/Polymer/polymer/commit/eb6ab63e))
- Fix changelog generation ([commit](https://github.com/Polymer/polymer/commit/8c103d98))
- Address feedback based on review. * PropertyAccessors must call `_flushProperties` to enable * Avoid tearing off oldProps (unnecessary) * Add `addBinding` docs * Merge notifyListeners into `setupBindings` * Add comment re: path-bindings not being overridable * Remove `dom` argument from `_bindTemplate` * Rename `_stampBoundTemplate` back to `_stampTemplate` ([commit](https://github.com/Polymer/polymer/commit/6af84c45))
- Put $ on dom, and assign to element as needed. Eliminate _templateInfo reference. ([commit](https://github.com/Polymer/polymer/commit/03bed19d))
- Fix _hasAccessor for readOnly. Collapse addBinding & addBindingEffects ([commit](https://github.com/Polymer/polymer/commit/396c102c))
- Improvements to binding API: - Adds override points for _parseBindings and _evaluateBinding - Adds support for runtime template binding - Moves ready(), _hasAccessor tracking, and instance property swizzle at ready time to PropertyAccessors ([commit](https://github.com/Polymer/polymer/commit/ea4e7d97))
## [v2.0.0-rc.4](https://github.com/Polymer/polymer/tree/v2.0.0-rc.4) (2017-04-12)
- fix lint error ([commit](https://github.com/Polymer/polymer/commit/e397c434))
- Only style elements with templates ([commit](https://github.com/Polymer/polymer/commit/2356f7b8))
- [ci skip] note safari bugs ([commit](https://github.com/Polymer/polymer/commit/ef90168b))
- Various Safari 10.1 fixes ([commit](https://github.com/Polymer/polymer/commit/dea052a2))
- Add `@memberof` annotation for Polymer.Debouncer ([commit](https://github.com/Polymer/polymer/commit/352878d5))
- Import mutable-data.html in dom-bind ([commit](https://github.com/Polymer/polymer/commit/bbc0373c))
- Correct changelog version title ([commit](https://github.com/Polymer/polymer/commit/9555ca34))
- Fix readme. ([commit](https://github.com/Polymer/polymer/commit/bbfea905))
- tighten up custom-style-late test ([commit](https://github.com/Polymer/polymer/commit/2106f656))
- Fixes #4478 by adding a better warning for attributes that cannot deserialize from JSON. ([commit](https://github.com/Polymer/polymer/commit/dba28c06))
- Adds back the `beforeRegister` method. Users can no longer set the `is` property in this method; however, dynamic property effects can still be installed here. ([commit](https://github.com/Polymer/polymer/commit/7639cf81))
- Fixes #4447. Re-introduce the `hostStack` in order to maintain “client before host” ordering when `_flushProperties` is called before `connectedCallback` (e.g. as Templatize does). ([commit](https://github.com/Polymer/polymer/commit/8467a696))
- Fix custom-style-late tests ([commit](https://github.com/Polymer/polymer/commit/caafef79))
- Add test for ensuring complicated mixin ordering is correct ([commit](https://github.com/Polymer/polymer/commit/6d663354))
- move lazy-upgrade out to separate mixins repo ([commit](https://github.com/Polymer/polymer/commit/deb5a9a5))
- Only check bounding client rect on clicks that target elements ([commit](https://github.com/Polymer/polymer/commit/af37d04c))
- Adds tests from https://github.com/Polymer/polymer/pull/4099. The other changes from the PR are no longer needed. ([commit](https://github.com/Polymer/polymer/commit/c5710666))
- clean up code, factor processing lazy candidates, better docs ([commit](https://github.com/Polymer/polymer/commit/189a2083))
- Update templatize.html ([commit](https://github.com/Polymer/polymer/commit/2abfe09e))
- Doc fix (correct callback name) ([commit](https://github.com/Polymer/polymer/commit/57d22f4c))
- Fixed templatize typo ([commit](https://github.com/Polymer/polymer/commit/b6b43f36))
- Work around IE/Edge bug with :not([attr]) selectors ([commit](https://github.com/Polymer/polymer/commit/c3036232))
- Remove support for lazy-upgrade inside dom-if and dom-repeat ([commit](https://github.com/Polymer/polymer/commit/1b4a9781))
- Fix image in README ([commit](https://github.com/Polymer/polymer/commit/b860594a))
- Remove useless id check on mixins ([commit](https://github.com/Polymer/polymer/commit/8c1a5765))
- move dom-change listener for lazy-upgrade before `super.ready()` ([commit](https://github.com/Polymer/polymer/commit/ba60b820))
- [ci skip] Update doc ([commit](https://github.com/Polymer/polymer/commit/f87790d6))
- [ci skip] Update doc ([commit](https://github.com/Polymer/polymer/commit/b9774801))
- Add API docs. ([commit](https://github.com/Polymer/polymer/commit/1eb0df49))
- nodeInfo -> nodeInfoList ([commit](https://github.com/Polymer/polymer/commit/eed67504))
- Updates based on PR feedback. API docs in progress. ([commit](https://github.com/Polymer/polymer/commit/627352db))
- * ensure element cannot return to “disabled” state after upgrading. * ensure nested `beforeNextRender` calls always go before the next render * ensure nested `afterNextRender` are called after additional renders ([commit](https://github.com/Polymer/polymer/commit/e9c58add))
- Fixes #4437. Ensure `_registered` is called 1x for each element class using `LegacyElementMixin`. Ensure that a behaviors’s `registered` method is called for any extending class. ([commit](https://github.com/Polymer/polymer/commit/de09d730))
- Separate binding-specific code from template stamp. Expose override points. ([commit](https://github.com/Polymer/polymer/commit/e95afeb1))
- Use webcomponents-lite for test ([commit](https://github.com/Polymer/polymer/commit/50ae3bb7))
- add lazy-upgrade tests ([commit](https://github.com/Polymer/polymer/commit/71b70aaa))
- make a mixin for lazy upgrading ([commit](https://github.com/Polymer/polymer/commit/9891e484))
- implements `disable-upgrade` attribute which prevents readying an element until the attribute is removed. ([commit](https://github.com/Polymer/polymer/commit/a222078e))
## [v2.0.0-rc.3](https://github.com/Polymer/polymer/tree/v2.0.0-rc.3) (2017-03-15)
- add properties, behaviors, observers, hostAttributes, listeners on prototype ([commit](https://github.com/Polymer/polymer/commit/93cf3246))
- [skip ci] update test comments ([commit](https://github.com/Polymer/polymer/commit/bb52071b))
- better comment ([commit](https://github.com/Polymer/polymer/commit/a081e669))
- get behaviors only from prototypes ([commit](https://github.com/Polymer/polymer/commit/8bac5c60))
- behaviors ONLY on the prototype ([commit](https://github.com/Polymer/polymer/commit/444c043c))
- add instance behaviors ([commit](https://github.com/Polymer/polymer/commit/4bf7bdd7))
- [ci skip] minor doc edits. ([commit](https://github.com/Polymer/polymer/commit/4ae65ba2))
- [ci skip] expand range of dependencies to all rcs ([commit](https://github.com/Polymer/polymer/commit/46c10465))
## [v2.0.0-rc.2](https://github.com/Polymer/polymer/tree/v2.0.0-rc.2) (2017-03-07)
- another test fix. ([commit](https://github.com/Polymer/polymer/commit/d9418e1a))
- fix behavior warn test. ([commit](https://github.com/Polymer/polymer/commit/4439436f))
- update to latest webcomponents rc. ([commit](https://github.com/Polymer/polymer/commit/46219a39))
- move mutable data mixin to be loaded by polymer.html ([commit](https://github.com/Polymer/polymer/commit/7cebe120))
- Fix 4387. Ensure `dom-change` fired with `composed: true`. ([commit](https://github.com/Polymer/polymer/commit/3e683297))
- Allow hybrid elements (like iron-list) to make template instances with mutable data ([commit](https://github.com/Polymer/polymer/commit/ea392e3f))
- Don't override the goog namespace if it already exists ([commit](https://github.com/Polymer/polymer/commit/b30deb22))
- Use correct version ([commit](https://github.com/Polymer/polymer/commit/3b7d4484))
- Fix spelling error ([commit](https://github.com/Polymer/polymer/commit/c14ea57f))
- [ci skip] Fix note re: transpilation ([commit](https://github.com/Polymer/polymer/commit/8fd1b212))
- [ci skip] Remove obsolete note re: pre-upgrade attribute vs. property priority ([commit](https://github.com/Polymer/polymer/commit/3dd776fe))
- [ci skip] Fix note re: attached ([commit](https://github.com/Polymer/polymer/commit/b67736ec))
- [ci skip] Add back intro README content from 1.x, updated to 2.x syntax. ([commit](https://github.com/Polymer/polymer/commit/1235f449))
## [v2.0.0-rc.1](https://github.com/Polymer/polymer/tree/v2.0.0-rc.1) (2017-03-06)
<!-- the changelog tool broke, so this is ported from https://www.polymer-project.org/2.0/docs/release-notes#v-2-0-0-rc.1 -->
The following notable changes have been made since the 2.0 Preview announcement.
- The `config` getter on element classes has been replaced by individual `properties` and
`observers` getters, more closely resembling the 1.x syntax.
```js
static get properties() {
return {
aProp: String,
bProp: Number
}
}
static get observers() {
return [
'_observeStuff(aProp,bProp)'
]
}
```
- 1.x-style dirty checking has been reinstated for better performance. An optional mixin is
available for elements to skip dirty checking of objects and arrays, which may be more easy to
integrate with some state management systems. For details, see
[Using the MutableData mixin](devguide/data-system#mutable-data) in Data system concepts.
- Support for dynamically-created `custom-style` elements has been added.
- Support for the external style sheet syntax, `<link rel="import" type="css">` has
been added. This was deprecated in 1.x, but will be retained until an alternate solution is
available for importing unprocessed CSS.
- New properties `rootPath` and `basePath` were added to `Polymer.Element` to allow authors
to configure how URLs are rewritten inside templates. For details, see the
[Update URLs in templates](./upgrade#urls-in-templates) in the Upgrade guide.
## [v1.9.1-dev](https://github.com/Polymer/polymer/tree/v1.9.1-dev) (2017-04-17)
- Remove use of ES6 API. ([commit](https://github.com/Polymer/polymer/commit/96010657))
- Remove use of ES6 API. ([commit](https://github.com/Polymer/polymer/commit/646dce69))
- Ensure optimization uses hybrid parentNode ([commit](https://github.com/Polymer/polymer/commit/b7f00992))
- Use local `parentNode` ([commit](https://github.com/Polymer/polymer/commit/2e4290f8))
- Capture hybridDomRepeat. ([commit](https://github.com/Polymer/polymer/commit/ee3b9a69))
- Fix dom-if detachment ([commit](https://github.com/Polymer/polymer/commit/2722532b))
- Add dom-if test for add/remove. ([commit](https://github.com/Polymer/polymer/commit/a2825650))
- Add test for add & remove ([commit](https://github.com/Polymer/polymer/commit/4c87e1d9))
- Add 2.x hybrid affordances for stamping template content. Fixes #4536 ([commit](https://github.com/Polymer/polymer/commit/53053eb4))
- Fix lint ([commit](https://github.com/Polymer/polymer/commit/f29104f2))
- Make tests more strict. ([commit](https://github.com/Polymer/polymer/commit/ea65a6d0))
- Use `_importPath` in `resolveUrl` so it available early. Fixes #4532 ([commit](https://github.com/Polymer/polymer/commit/1a7d3b11))
- [ci skip] update Changelog ([commit](https://github.com/Polymer/polymer/commit/3ce4e176))
## [v1.9.0-dev](https://github.com/Polymer/polymer/tree/v1.9.0-dev) (2017-04-13)
- [ci skip] skip looking in build log, again ([commit](https://github.com/Polymer/polymer/commit/1d282c7f))
- [ci skip] backport changelog fixes ([commit](https://github.com/Polymer/polymer/commit/d6a7ac71))
- * allow setting `rootPath` * disallow setting `importPath` (this is supported in 2.x but not 1.x) ([commit](https://github.com/Polymer/polymer/commit/ac067652))
- Add `importPath` and `rootPath` to support 2.x hybrid compatible elements. ([commit](https://github.com/Polymer/polymer/commit/daaf460a))
- [ci skip] Update Changelog ([commit](https://github.com/Polymer/polymer/commit/80c899f4))
- Add missing semicolon after variable assignment ([commit](https://github.com/Polymer/polymer/commit/afb21c8f))
- Update PRIMER.md ([commit](https://github.com/Polymer/polymer/commit/4d66a353))
## [v1.8.1-dev](https://github.com/Polymer/polymer/tree/v1.8.1-dev) (2017-02-27)
- Exclude SD polyfill tests for Edge due to lack of workarounds for Edge DocFrag bugs. ([commit](https://github.com/Polymer/polymer/commit/de45ba02))
- [ci skip] Update comment to include reference to problem browser. ([commit](https://github.com/Polymer/polymer/commit/72f21fe6))
- Check documentElement instead of body to guarantee it's there. ([commit](https://github.com/Polymer/polymer/commit/a0ad3bbe))
- add tests ([commit](https://github.com/Polymer/polymer/commit/20de9287))
- Adds a setting `preserveStyleIncludes` which, when used with a shadow dom targeted css build and native custom properties, will copy styles into the Shadow DOM template rather than collapsing them into a single style. This will (1) allow the browser to optimize parsing of shared styles because they remain intact, (2) reduce the size of the css build resources when shared styles are used since they are not pre-collapsed. This option does perform registration runtime work to add included styles to element templates. ([commit](https://github.com/Polymer/polymer/commit/2315547e))
- Fix test failures by feature detecting instance `properties` accessors. Can't rely on `__proto__` on IE10, but that browser doesn't need to avoid `properties`. ([commit](https://github.com/Polymer/polymer/commit/f2a12cb1))
- Read properties off of proto during configuration. ([commit](https://github.com/Polymer/polymer/commit/a68c0b3e))
- remove cruft. ([commit](https://github.com/Polymer/polymer/commit/632f0e47))
- Ensure disable-upgrade elements are not "configured". Fixes #4302 ([commit](https://github.com/Polymer/polymer/commit/b36915f6))
- change lastresponse to last-response in dom-bind example ([commit](https://github.com/Polymer/polymer/commit/4427b0b6))
- [ci skip] Update Changelog ([commit](https://github.com/Polymer/polymer/commit/2d804a28))
## [v1.8.0-dev](https://github.com/Polymer/polymer/tree/v1.8.0-dev) (2017-02-06)
- Add comment. ([commit](https://github.com/Polymer/polymer/commit/a42cb209))
- Only keep `disable-upgrade` attribute if it is an attribute binding. ([commit](https://github.com/Polymer/polymer/commit/62e9b84b))
- spacing. ([commit](https://github.com/Polymer/polymer/commit/5030c1b9))
- Update webcomponentsjs dependency ([commit](https://github.com/Polymer/polymer/commit/ca7dbb84))
- Change `isInert` to `disable-upgrade` and feature is now supported only via the `disable-upgrade` attribute. ([commit](https://github.com/Polymer/polymer/commit/f8f903cf))
- Add tests for `is-inert` ([commit](https://github.com/Polymer/polymer/commit/e1561f65))
- Prevent annotator from removing the `is-inert` attribute. ([commit](https://github.com/Polymer/polymer/commit/91925148))
- fixes for users of Polymer.Class ([commit](https://github.com/Polymer/polymer/commit/0f53bef4))
- Add support for `isInert` to allow elements to boot up in an inert state. e.g. `<x-foo is-inert></x-foo>`. Setting `xFoo.isInert = false` causes the element to boot up. ([commit](https://github.com/Polymer/polymer/commit/ca3f59d3))
- Small typos updated ([commit](https://github.com/Polymer/polymer/commit/bc023648))
- work around older firefox handling of the "properties" property on HTMLElement prototype ([commit](https://github.com/Polymer/polymer/commit/13f36c7f))
- improve comments ([commit](https://github.com/Polymer/polymer/commit/c76ba5b9))
- Add comments. Behavior fast copy flag changed to `_noAccessors`. ([commit](https://github.com/Polymer/polymer/commit/52ea6002))
- Fix tests on IE10 and simplify constructor shortcut. ([commit](https://github.com/Polymer/polymer/commit/e588f1f5))
- Make dom-module work on older Safari. ([commit](https://github.com/Polymer/polymer/commit/73b62a63))
- micro-optimizations: (1) favor mixin over extends where possible, (2) unroll behavior lifecycle calls, (3) avoid creating a custom constructor when not used, (4) provide `_skipDefineProperty` setting on behaviors which copies properties via assignment rather than `copyOwnProperty` ([commit](https://github.com/Polymer/polymer/commit/a1c1285d))
- Ensure done. ([commit](https://github.com/Polymer/polymer/commit/08753237))
- Test positive case of suppressBindingNotifications ([commit](https://github.com/Polymer/polymer/commit/1b19b784))
- Add notifyDomBind to dom-bind. ([commit](https://github.com/Polymer/polymer/commit/ad7f91d6))
- Test Polymer.Settings inside test. ([commit](https://github.com/Polymer/polymer/commit/4b286f19))
- Revert unnecessary change. ([commit](https://github.com/Polymer/polymer/commit/dcde6d4c))
- Fix test lint issue. ([commit](https://github.com/Polymer/polymer/commit/26c669ce))
- Add global flags to suppress unnecessary notification events. Fixes #4262. * `Polymer.Settings.suppressTemplateNotifications `- disables `dom-change` and `rendered-item-count` events from `dom-if`, `dom-repeat`, and `don-bind`. Users can opt back into `dom-change` events by setting the `notify-dom-change` attribute (`notifyDomChange: true` property) to `dom-if`/`don-repeat` instances. * `Polymer.Settings.suppressBindingNotifications` - disables notify effects when propagating data downward via bindings. Generally these are never useful unless users are explicitly doing something like `<my-el foo="{{foo}} on-foo-changed="{{handleFoo}}">` or calling `addEventListener('foo-changed', ...)` on an element where `foo` is bound (we attempted to make this the default some time back but needed to revert it when we found via https://github.com/Polymer/polymer/issues/3077 that users were indeed doing this). Users that avoid these patterns can enjoy the potentially significant benefit of suppressing unnecessary events during downward data flow by opting into this flag. ([commit](https://github.com/Polymer/polymer/commit/83e14c43))
- Fix `strip-whitespace` for nested templates. ([commit](https://github.com/Polymer/polymer/commit/a3b75eb3))
- [ci skip] update changelog v1.7.1 ([commit](https://github.com/Polymer/polymer/commit/03e22a1c))
- Close backtick in ISSUE_TEMPLATE.md ([commit](https://github.com/Polymer/polymer/commit/b0dea8bc))
## [v1.7.1-dev](https://github.com/Polymer/polymer/tree/v1.7.1-dev) (2016-12-14)
- Remove dependency on WebComponents for IE detection ([commit](https://github.com/Polymer/polymer/commit/650c16a9))
- Make sure text nodes are distributed when translating slot to content ([commit](https://github.com/Polymer/polymer/commit/87e312f1))
- always use the document listener ([commit](https://github.com/Polymer/polymer/commit/5ddcb8d1))
- Add tests for no-gesture interop ([commit](https://github.com/Polymer/polymer/commit/4be7e9f6))
- fix lint error ([commit](https://github.com/Polymer/polymer/commit/9c8eaa9d))
- Use document-wide passive touch listener to update ghostclick blocker target ([commit](https://github.com/Polymer/polymer/commit/947172f8))
- only need to recalc if styleProperties missing ([commit](https://github.com/Polymer/polymer/commit/5bfe2792))
- simpler implementation, only recompute when using shim variables ([commit](https://github.com/Polymer/polymer/commit/5231d87f))
- [ci skip] update travis.yml from 2.0 ([commit](https://github.com/Polymer/polymer/commit/1a9c5c8c))
- Always update style properties when calling getComputedStyleValue ([commit](https://github.com/Polymer/polymer/commit/fb8575c6))
- Add tests ([commit](https://github.com/Polymer/polymer/commit/29de0055))
- Fix #4123: Memory leak when using `importHref` ([commit](https://github.com/Polymer/polymer/commit/132010ea))
- Prevent _showHideChildren from being called on placeholders. ([commit](https://github.com/Polymer/polymer/commit/0468c60a))
- fix broken link to Google JavaScript syle guide in documentation ([commit](https://github.com/Polymer/polymer/commit/376d146f))
- Better explanation thanks to @kevinpschaaf ([commit](https://github.com/Polymer/polymer/commit/0dae8f0d))
- [ci skip] fix changelog title ([commit](https://github.com/Polymer/polymer/commit/16712cb6))
- [ci skip] Update Changelog for 1.7.0 ([commit](https://github.com/Polymer/polymer/commit/d6af21b5))
- Resolving issue #1745 with Polymer docs ([commit](https://github.com/Polymer/polymer/commit/bb875275))
- fixed broken tests/missing web components ([commit](https://github.com/Polymer/polymer/commit/f2b01e34))
- 3430 - ie memory leak fixes - disable event caching, fixed resolver url adding to root doc, and weak map ie issues ([commit](https://github.com/Polymer/polymer/commit/a6e66f92))
- Briefly explain how to split element definition ([commit](https://github.com/Polymer/polymer/commit/c6462286))
- Fix copy&pasted comment ([commit](https://github.com/Polymer/polymer/commit/d595c0cc))
## [v1.7.0](https://github.com/Polymer/polymer/tree/v1.7.0) (2016-09-28)
- Fix IE style cache performance ([commit](https://github.com/Polymer/polymer/commit/d08b694))
- no need for :root to be first in the selector ([commit](https://github.com/Polymer/polymer/commit/63433c8))
- fix tests on !chrome browsers ([commit](https://github.com/Polymer/polymer/commit/7ce981b))
- Translate `:root` to `:host > *` for element styles ([commit](https://github.com/Polymer/polymer/commit/fea64b9))
- Define checkRoot only once ([commit](https://github.com/Polymer/polymer/commit/a49b366))
- Fix normalizeRootSelector ([commit](https://github.com/Polymer/polymer/commit/c2278a0))
- Comment on using the ast walker to replace selector ([commit](https://github.com/Polymer/polymer/commit/9658665))
- update travis config ([commit](https://github.com/Polymer/polymer/commit/c00687a))
- Transform ::slotted() to ::content ([commit](https://github.com/Polymer/polymer/commit/541fdfb))
- Test on native shadow DOM also. ([commit](https://github.com/Polymer/polymer/commit/11afc1f))
- Reorder. ([commit](https://github.com/Polymer/polymer/commit/cbae058))
- Remove unused. ([commit](https://github.com/Polymer/polymer/commit/92d1d8a))
- Add fallback support/test. ([commit](https://github.com/Polymer/polymer/commit/037abdd))
- A little more dry. ([commit](https://github.com/Polymer/polymer/commit/6fd0e1f))
- Use name. ([commit](https://github.com/Polymer/polymer/commit/4aa8da2))
- Support default slot semantics. ([commit](https://github.com/Polymer/polymer/commit/d458dd3))
- Remove opt-in. Exclude content from copy. ([commit](https://github.com/Polymer/polymer/commit/41e5dc0))
- Make sure click events can always trigger tap, even on touch only devices ([commit](https://github.com/Polymer/polymer/commit/02441ca))
- Add support for slot->content transformation. Need to bikeshed opt-in attribute (currently "auto-content") ([commit](https://github.com/Polymer/polymer/commit/ebf31ca))
- Support more expressive `:root` and `html` selectors ([commit](https://github.com/Polymer/polymer/commit/2a8f21a))
- Fix typo ([commit](https://github.com/Polymer/polymer/commit/192eb56))
- test for mixins in custom-style ordering ([commit](https://github.com/Polymer/polymer/commit/37646f7))
- Do not insert semicolon when fixing var() syntax ([commit](https://github.com/Polymer/polymer/commit/0a338a7))
- Make sure mixins are applied no matter the ordering of definition ([commit](https://github.com/Polymer/polymer/commit/9daea3d))
- Update gulp-eslint to 3.x ([commit](https://github.com/Polymer/polymer/commit/8b89f02))
- Fixes #3676: retain `<style>` in `<template preserve-content/>` ([commit](https://github.com/Polymer/polymer/commit/8a4c00c))
- [ci skip] Update Changelog for v1.6.1 ([commit](https://github.com/Polymer/polymer/commit/ec04461))
- Apply to _marshalArgs. ([commit](https://github.com/Polymer/polymer/commit/b2cd932))
- Rename Path.head() to Path.root(). ([commit](https://github.com/Polymer/polymer/commit/77808d9))
- Use head in templatizer ([commit](https://github.com/Polymer/polymer/commit/478978d))
- Modify _annotationPathEffect ([commit](https://github.com/Polymer/polymer/commit/852aba0))
- Use isDescendant ([commit](https://github.com/Polymer/polymer/commit/b9944fe))
- Use isDeep ([commit](https://github.com/Polymer/polymer/commit/5627a55))
- Replace _fixPath. ([commit](https://github.com/Polymer/polymer/commit/6d1dd88))
- Replace _modelForPath. ([commit](https://github.com/Polymer/polymer/commit/b02eda0))
- Replace _patchMatchesEffect. ([commit](https://github.com/Polymer/polymer/commit/6ad9295))
- Add path library. ([commit](https://github.com/Polymer/polymer/commit/0320763))
- Revert "Fix _patchMatchesEffect. (#3631)" ([commit](https://github.com/Polymer/polymer/commit/a64f227))
## [v1.6.1](https://github.com/Polymer/polymer/tree/v1.6.1) (2016-08-01)
- Property Shim needs to handle build output from apply shim ([commit](https://github.com/Polymer/polymer/commit/d726a51))
- Do not resolve urls with leading slash and other protocols ([commit](https://github.com/Polymer/polymer/commit/94f95ec))
- Mark that non-inheritable properties being set to `inherit` is not supported ([commit](https://github.com/Polymer/polymer/commit/0a2b31e))
- Put `getInitialValueForProperty` on ApplyShim ([commit](https://github.com/Polymer/polymer/commit/0489ccf))
- Skip `initial` and `inherit` on IE 10 and 11 ([commit](https://github.com/Polymer/polymer/commit/63c3bfb))
- Handle mixins with property values of inherit and initial ([commit](https://github.com/Polymer/polymer/commit/c7571e5))
- Split tests for use-before-create and reusing mixin names for variables ([commit](https://github.com/Polymer/polymer/commit/8de1bec))
- Make sure we don't populate the mixin map for every variable ([commit](https://github.com/Polymer/polymer/commit/6265ade))
- [apply shim] Track dependencies for mixins before creation ([commit](https://github.com/Polymer/polymer/commit/2cab461))
- [property shim] Make sure "initial" and "inherit" behave as they would natively ([commit](https://github.com/Polymer/polymer/commit/0887dba))
- fix lint issue. ([commit](https://github.com/Polymer/polymer/commit/95eadbd))
- Fixes #3801. Ensure style host calculates custom properties before element. This ensures the scope's styles are prepared to be inspected by the element for matching rules. ([commit](https://github.com/Polymer/polymer/commit/5967f2d))
- Clean up custom-style use of apply shim ([commit](https://github.com/Polymer/polymer/commit/0859803))
- gate comparing css text on using native css properties ([commit](https://github.com/Polymer/polymer/commit/8fcb5f6))
- Only invalidate mixin if it defines new properties ([commit](https://github.com/Polymer/polymer/commit/b27f842))
- Make __currentElementProto optional for build tool ([commit](https://github.com/Polymer/polymer/commit/64d41e6))
- Rerun Apply Shim when mixins with consumers are redefined ([commit](https://github.com/Polymer/polymer/commit/498e23f))
- updateNativeStyles should only remove styles set by updateNativeStyles ([commit](https://github.com/Polymer/polymer/commit/831be4f))
- [ci skip] add smoke test for scope caching with custom-style ([commit](https://github.com/Polymer/polymer/commit/43955ea))
- Remove unused arg. ([commit](https://github.com/Polymer/polymer/commit/95cd415))
- Remove dirty check for custom events; unnecessary after #3678. Fixes #3677. ([commit](https://github.com/Polymer/polymer/commit/92a9398))
- Use _configValue to avoid setting readOnly. Add tests. ([commit](https://github.com/Polymer/polymer/commit/36467fa))
- Missing piece to fixing #3094 ([commit](https://github.com/Polymer/polymer/commit/694b35e))
- Opt in to "even lazier" behavior by setting `lazyRegister` to "max". This was done to preserve compatibility with the existing feature. Specifically, when "max" is used, setting `is` in `beforeRegister` and defining `factoryImpl` may only be done on an element's prototype and not its behaviors. In addition, the element's `beforeRegister` is called *before* its behaviors' `beforeRegisters` rather than *after* as in the normal case. ([commit](https://github.com/Polymer/polymer/commit/b271a88))
- Replace 'iff' with 'if and only if' ([commit](https://github.com/Polymer/polymer/commit/f7659eb))
- Fix test in IE10. ([commit](https://github.com/Polymer/polymer/commit/fb95dc8))
- cleanup check for sourceCapabilities ([commit](https://github.com/Polymer/polymer/commit/4c44fb7))
- Fix #3786 by adding a `noUrlSettings` flag to Polymer.Settings ([commit](https://github.com/Polymer/polymer/commit/8a26759))
- Fix mouse input delay on systems with a touchscreen ([commit](https://github.com/Polymer/polymer/commit/ed4c18a))
- Ensure properties override attributes at upgrade time. Fixes #3779. ([commit](https://github.com/Polymer/polymer/commit/f2938ec))
- Refresh cache'd styles contents in IE 10 and 11 ([commit](https://github.com/Polymer/polymer/commit/80be0df))
- change travis config ([commit](https://github.com/Polymer/polymer/commit/1256301))
- Fix css shady build mistakenly matching root rules as host rules ([commit](https://github.com/Polymer/polymer/commit/5dfb9c9))
- [ci skip] update changelog for v1.6.0 ([commit](https://github.com/Polymer/polymer/commit/d8bab9c))
- Make lazyRegister have 'even lazier' behavior such that behaviors are not mixed in until first-instance time. ([commit](https://github.com/Polymer/polymer/commit/9676d6d))
- need takeRecords in complex var example ([commit](https://github.com/Polymer/polymer/commit/b40561b))
- add reduced test case ([commit](https://github.com/Polymer/polymer/commit/26fe9b9))
- Replace VAR_MATCH regex with a simple state machine / callback ([commit](https://github.com/Polymer/polymer/commit/4ebec15))
- Expose an `lazierRegister` flag to defer additional work until first create time. This change requires that a behavior not implement a custom constructor or set the element's `is` property. ([commit](https://github.com/Polymer/polymer/commit/5c5b18e))
- Improve type signatures: `Polymer.Base.extend` and `Polymer.Base.mixin` ([commit](https://github.com/Polymer/polymer/commit/8382aa7))
- Fix for changing property to the same value ([commit](https://github.com/Polymer/polymer/commit/66e6e22))
- Include iron-component-page in devDependencies ([commit](https://github.com/Polymer/polymer/commit/639d5d8))
- Ensure fromAbove in _forwardParentProp. ([commit](https://github.com/Polymer/polymer/commit/072dcff))
## [v1.6.0](https://github.com/Polymer/polymer/tree/v1.6.0) (2016-06-29)
- Fix test to account for pseudo element differences x-browser. ([commit](https://github.com/Polymer/polymer/commit/54a462d))
- Restore functionality of selectors like `:host(.foo)::after`. ([commit](https://github.com/Polymer/polymer/commit/ff88e17))
- add comment. ([commit](https://github.com/Polymer/polymer/commit/e770343))
- re-support selectors like `:host[inline]` since this was previously supported under shady-dom. ([commit](https://github.com/Polymer/polymer/commit/4e51ef6))
- fix linting ([commit](https://github.com/Polymer/polymer/commit/4817d61))
- Add test for not matching `x-foox-bar` given `:host(x-bar)` used inside `x-foo` ([commit](https://github.com/Polymer/polymer/commit/4e08fa1))
- fix test in IE/FF. ([commit](https://github.com/Polymer/polymer/commit/ec111f1))
- simplify :host fixup ([commit](https://github.com/Polymer/polymer/commit/c3355fd))
- Fixes #3739: correctly shim `:host(.element-name)` as `element-name.element-name`. ([commit](https://github.com/Polymer/polymer/commit/997240a))
- Fixes #3734: address HI/CE timing issue in importHref. Fixes upgrade time dependencies of scripts on previous elements in async imports. ([commit](https://github.com/Polymer/polymer/commit/84662b9))
- Ensure element scope selectors are updated correctly when updateStyles is called when element is not in dom. ([commit](https://github.com/Polymer/polymer/commit/6d90480))
- add comment. ([commit](https://github.com/Polymer/polymer/commit/620e59f))
- remove unneeded flag. ([commit](https://github.com/Polymer/polymer/commit/b5b8a2a))
- Fixes #3730 and inspired by (https://github.com/Polymer/polymer/pull/3585) ([commit](https://github.com/Polymer/polymer/commit/ab431ed))
- custom-style triggers updateStyles if root scope (StyleDefaults) has style properties when the custom-style is created. ([commit](https://github.com/Polymer/polymer/commit/4852f6c))
- Fix _patchMatchesEffect. (#3631) ([commit](https://github.com/Polymer/polymer/commit/b78e5af))
- Fixes #3555. Ensure selectors including `::content` without a prefix … (#3721) ([commit](https://github.com/Polymer/polymer/commit/1058896))
- Fixes #3530. When `updateStyles` is called and an element is not attached, invalidate its styling so that when it is attached, its custom properties will be updated. ([commit](https://github.com/Polymer/polymer/commit/ae4a07e))
- Make sure effect functions receive latest values ([commit](https://github.com/Polymer/polymer/commit/34b2c79))
- [ci skip] data binding edge case smoke test ([commit](https://github.com/Polymer/polymer/commit/a54c1f2))
- Use `whenReady` to apply custom styles. ([commit](https://github.com/Polymer/polymer/commit/129488b))
- Use firefox 46 for testing ([commit](https://github.com/Polymer/polymer/commit/fbe5b0f))
- Need to wait until render to test. ([commit](https://github.com/Polymer/polymer/commit/92293f9))
- address feedback ([commit](https://github.com/Polymer/polymer/commit/4dc780a))
- Fix lint, use query params instead of duplicate file. ([commit](https://github.com/Polymer/polymer/commit/e4880d9))
- Ensure custom styles updated after adding custom-style async. Fixes #3705. ([commit](https://github.com/Polymer/polymer/commit/f770438))
- Store cacheablility on the scope ([commit](https://github.com/Polymer/polymer/commit/bc9519e))
- fix decorateStyles with custom-style ([commit](https://github.com/Polymer/polymer/commit/57a6769))
- Do not scope cache elements with media rules, :host(), or :host-context() selectors ([commit](https://github.com/Polymer/polymer/commit/5c3b917))
- Support preventDefault() on touch (#3693) ([commit](https://github.com/Polymer/polymer/commit/b9c874e))
- Shim CSS Mixins in terms of CSS Custom Properties (#3587) ([commit](https://github.com/Polymer/polymer/commit/6c0acef))
- [ci skip] update changelog ([commit](https://github.com/Polymer/polymer/commit/adef722))
## [v1.5.0](https://github.com/Polymer/polymer/tree/v1.5.0) (2016-05-31)
- Fix test in Firefox that was hacked to work in Canary (instead filed https://bugs.chromium.org/p/chromium/issues/detail?id=614198). ([commit](https://github.com/Polymer/polymer/commit/1e2aed5))
- remove unneeded argument ([commit](https://github.com/Polymer/polymer/commit/4a99b83))
- slight optimization, avoid work if no cssText is set. ([commit](https://github.com/Polymer/polymer/commit/ce0bf86))
- More efficient fix for #3661. Re-uses cached style element that needs to be replaced in the document rather than creating a new one. ([commit](https://github.com/Polymer/polymer/commit/63f91ae))
- Fixes #3661: ensure that cached style points to the applied style for Shady DOM styling. This ensures that the cache can be used to determine if a style needs to be applied to the document and prevents extra unnecessary styles from being added. This could happen when a property cascaded to a nested element and updateStyles was called after properties have changed. ([commit](https://github.com/Polymer/polymer/commit/717fc3a))
- Fix flakey attached/detached timing test. ([commit](https://github.com/Polymer/polymer/commit/04da868))
- remove HTML comment ([commit](https://github.com/Polymer/polymer/commit/d339b28))
- add more style[include] doc ([commit](https://github.com/Polymer/polymer/commit/b8fd12d))
- Update the package.json name to match the actual npm published package. (#3570) ([commit](https://github.com/Polymer/polymer/commit/e57eb49))
- Remove unused event cache store (#3591) ([commit](https://github.com/Polymer/polymer/commit/364ede9))
- [ci skip] sudo should be "required" ([commit](https://github.com/Polymer/polymer/commit/c0e0a73))
- transition to travis trusty images ([commit](https://github.com/Polymer/polymer/commit/b7c0b1f))
- fine, console.dir then ([commit](https://github.com/Polymer/polymer/commit/c8cb3be))
- fix ie missing console.table for stubbing ([commit](https://github.com/Polymer/polymer/commit/6d39644))
- Support the devtools console.log api (multiple strings) for polymer logging ([commit](https://github.com/Polymer/polymer/commit/909ee82))
- Compute and use correct annotation value during config ([commit](https://github.com/Polymer/polymer/commit/1b02e96))
- Set propertyName on parent props for config phase. ([commit](https://github.com/Polymer/polymer/commit/d9c03a4))
- Refactorings around how computational expressions get their arguments ([commit](https://github.com/Polymer/polymer/commit/677f10c))
- Fix safari 7 again ([commit](https://github.com/Polymer/polymer/commit/b30f962))
- Expose public API to reset mouse cancelling for testing touch ([commit](https://github.com/Polymer/polymer/commit/18bf9d4))
- Delay detached callback with the same strategy as attached callback ([commit](https://github.com/Polymer/polymer/commit/7a244fa))
- [ci skip] Add missing dom5 devDependency ([commit](https://github.com/Polymer/polymer/commit/5e2050a))
- Don't use `translate` as a method for testing ([commit](https://github.com/Polymer/polymer/commit/f80346f))
- Only fix prototype when registering at first create time. ([commit](https://github.com/Polymer/polymer/commit/7ad2bff))
- Fixes #3525: Makes lazy registration compatible with platforms (like IE10) on which a custom element's prototype must be simulated. ([commit](https://github.com/Polymer/polymer/commit/4834651))
- make sure gulp-cli 1 is used ([commit](https://github.com/Polymer/polymer/commit/29067ca))
- Ensure Annotator recognizes dynamic fn as dependency for parent props. ([commit](https://github.com/Polymer/polymer/commit/15ff463))
- [ci skip] Update CHANGELOG ([commit](https://github.com/Polymer/polymer/commit/223aa34))
- Enabling caching of node_modules on Travis ([commit](https://github.com/Polymer/polymer/commit/6b6ec5d))
- Fix undefined class attribute in undefined template scope ([commit](https://github.com/Polymer/polymer/commit/e21c59e))
- Use a parser based html minification ([commit](https://github.com/Polymer/polymer/commit/0536e35))
- Call _notifyPath instead of notifyPath in templatizer ([commit](https://github.com/Polymer/polymer/commit/067b7ed))
- Keep it real for notifyPath. ([commit](https://github.com/Polymer/polymer/commit/40a1f79))
- Null debounced callback to set for GC. ([commit](https://github.com/Polymer/polymer/commit/f366c1c))
## [v1.4.0](https://github.com/Polymer/polymer/tree/v1.4.0) (2016-03-18)
- Fast check in createdCallback to see if registration has finished. ([commit](https://github.com/Polymer/polymer/commit/a3fce19))
- even more lazy: defer template lookup and style collection until finish register time. ([commit](https://github.com/Polymer/polymer/commit/103f790))
- fix lint errors. ([commit](https://github.com/Polymer/polymer/commit/d7a2baa))
- * turn on lazy registration via `Polymer.Settings.lazyRegister` * ensure registration finished by calling `Element.prototype.ensureRegisterFinished()` ([commit](https://github.com/Polymer/polymer/commit/31c785d))
- remove crufty smoke test. ([commit](https://github.com/Polymer/polymer/commit/3dd1b61))
- fix lint issues ([commit](https://github.com/Polymer/polymer/commit/0447228))
- Change `forceRegister` to `eagerRegister` and add `Polymer.Settings.eagerRegister` flag. ([commit](https://github.com/Polymer/polymer/commit/f6597ec))
- Add `forceRegister` flag to force an element to fully register when `Polymer` is called. Normally, some work is deferred until the first element instance is created. ([commit](https://github.com/Polymer/polymer/commit/d53323d))
- Call registered no prototype. ([commit](https://github.com/Polymer/polymer/commit/812db6a))
- Lazy register features we can be deferred until first instance. This is an optimization which can speed up page load time when elements are registered but not needed at time of first paint/interaction ([commit](https://github.com/Polymer/polymer/commit/31702ff))
- Do not reflect uppercase properties ([commit](https://github.com/Polymer/polymer/commit/72d35e0))
- Make sure event.path is an array ([commit](https://github.com/Polymer/polymer/commit/2dfdd7b))
- fix testing failures on assert.notInclude of null ([commit](https://github.com/Polymer/polymer/commit/8066919))
- [ci skip] update changelog ([commit](https://github.com/Polymer/polymer/commit/58e6713))
## [v1.3.1](https://github.com/Polymer/polymer/tree/v1.3.1) (2016-03-02)
- Fix lint errors. ([commit](https://github.com/Polymer/polymer/commit/44d06f1))
- Add test. ([commit](https://github.com/Polymer/polymer/commit/02660c1))
- Fix lint error. ([commit](https://github.com/Polymer/polymer/commit/e2c5f9e))
- Ensure that dom-bind always waits until DOMContentLoaded to render. This ensures a script can install api on the dom-bind prior to it rendering. Previously dom-bind waited for first render, but an early parser yield can make this occur unexpectedly early. ([commit](https://github.com/Polymer/polymer/commit/cc0e9df))
- Refine fix for #3461 so that the decision to apply a static or property stylesheet relies on the same info. ([commit](https://github.com/Polymer/polymer/commit/ff96f9e))
- Clean the .eslintignore ([commit](https://github.com/Polymer/polymer/commit/04d06a5))
- [ci skip] Add header for those asking questions ([commit](https://github.com/Polymer/polymer/commit/9d6111c))
- Fixes #3461: Only avoid creating a statically scoped stylesheet when properties are consumed in an element, properly excluding properties produced as a result of consumption. ([commit](https://github.com/Polymer/polymer/commit/e26a806))
- tweaks to new README ([commit](https://github.com/Polymer/polymer/commit/809352d))
- [ci skip] Update Changelog ([commit](https://github.com/Polymer/polymer/commit/4f3f463))
- Updated the README.md for a non-technical user to understand ([commit](https://github.com/Polymer/polymer/commit/0729cef))
## [v1.3.0](https://github.com/Polymer/polymer/tree/v1.3.0) (2016-02-22)
- [ci skip] Add instructions to pull request template ([commit](https://github.com/Polymer/polymer/commit/933c920))
- [ci skip] markdown fail ([commit](https://github.com/Polymer/polymer/commit/a8e01e2))
- [ci skip] Add instructions to issue template ([commit](https://github.com/Polymer/polymer/commit/ace0f72))
- Make sure to configure properties on polymer elements that do not have property effects. ([commit](https://github.com/Polymer/polymer/commit/f93c3e5))
- Fix lint errors. ([commit](https://github.com/Polymer/polymer/commit/5ac5ee7))
- Add comment. Ensure Date deserializes to String for correctness. ([commit](https://github.com/Polymer/polymer/commit/69c7087))
- Serialize before deserialize when configuring attrs. Fixes #3433. ([commit](https://github.com/Polymer/polymer/commit/ec85582))
- Restrict early property set to properties that have accessors. This allows users to set properties in `created` which are listed in `properties` but which have no accessor. ([commit](https://github.com/Polymer/polymer/commit/4cfb245))
- fix crlf once and for all ([commit](https://github.com/Polymer/polymer/commit/6c5afe5))
- fix test linting from #3350 ([commit](https://github.com/Polymer/polymer/commit/37f7157))
- Use the new .github folder for issue and pull request templates ([commit](https://github.com/Polymer/polymer/commit/58529c2))
- [ci skip] Use https for jsbin ([commit](https://github.com/Polymer/polymer/commit/3e33fd4))
- [ci skip] Add issue and pr template ([commit](https://github.com/Polymer/polymer/commit/cc1ef9a))
- Update to gulp-eslint v2 ([commit](https://github.com/Polymer/polymer/commit/dca0dda))
- fix lint errors ([commit](https://github.com/Polymer/polymer/commit/7da9a38))
- Minor fixes based on review. ([commit](https://github.com/Polymer/polymer/commit/f2c1d4a))
- Undo fix on IE10 where the custom elements polyfill's mixin strategy makes this unfeasible. ([commit](https://github.com/Polymer/polymer/commit/ef629f4))
- Update comments. ([commit](https://github.com/Polymer/polymer/commit/b870fe0))
- Add test that late resolved functions don't warn ([commit](https://github.com/Polymer/polymer/commit/0037c53))
- Add support for properties defined in a behavior. ([commit](https://github.com/Polymer/polymer/commit/b6abf26))
- Generalized approach supporting compute and observers ([commit](https://github.com/Polymer/polymer/commit/f4486a2))
- Proper implementation ([commit](https://github.com/Polymer/polymer/commit/3c12178))
- Support dynamic functions for computed annotations. ([commit](https://github.com/Polymer/polymer/commit/3f1bc4e))
- ordering issue for when assert is defined in native html imports ([commit](https://github.com/Polymer/polymer/commit/d81f6bc))
- Lint the tests ([commit](https://github.com/Polymer/polymer/commit/e5063ca))
- Add support for one-of attribute selector while not breaking support for general sibling combinator. Fixes #3023. Fix taken from #3067. ([commit](https://github.com/Polymer/polymer/commit/5a493d8))
- Fix bindings with special characters ([commit](https://github.com/Polymer/polymer/commit/d385873))
- [ci skip] move linting into before_script stage ([commit](https://github.com/Polymer/polymer/commit/1b5fc9a))
- Fix lint error and uncomment test. ([commit](https://github.com/Polymer/polymer/commit/c00c47f))
- Add test for overriding property based :host selector from outside. ([commit](https://github.com/Polymer/polymer/commit/71c41ed))
- Add comment and fix typo ([commit](https://github.com/Polymer/polymer/commit/b0e16f0))
- Ensure _propertySetter is installed first. Fixes #3063 ([commit](https://github.com/Polymer/polymer/commit/6362f60))
- Disable tap gesture when track gesture is firing for ancestor node ([commit](https://github.com/Polymer/polymer/commit/6f2c1fc))
- Fix parsing of parenthesis in default of variable declaration ([commit](https://github.com/Polymer/polymer/commit/926d0e5))
- Rename _mapRule to _mapRuleOntoParent ([commit](https://github.com/Polymer/polymer/commit/cd42595))
- Test with ESLint enabled ([commit](https://github.com/Polymer/polymer/commit/acdfc1e))
- Make behaviors array unique ([commit](https://github.com/Polymer/polymer/commit/4cde38a))
- Use deserialize from the node. ([commit](https://github.com/Polymer/polymer/commit/a3641e2))
- Actually execute case-map ([commit](https://github.com/Polymer/polymer/commit/d84d75b))
- [ci skip] .eslintrc is deprecated, add .json suffix ([commit](https://github.com/Polymer/polymer/commit/c7554d9))
- Make the test more look like a spec ([commit](https://github.com/Polymer/polymer/commit/db7c324))
- Configure attr's with property effects. More robust fix for #3288. ([commit](https://github.com/Polymer/polymer/commit/0f55d1d))
- Use ESLint for Polymer ([commit](https://github.com/Polymer/polymer/commit/f3c4bb1))
- Add test suite for effects order ([commit](https://github.com/Polymer/polymer/commit/56df8f7))
- Fix negation when a negated binding is changed ([commit](https://github.com/Polymer/polymer/commit/21383a3))
- Add unit test suite for CaseMap ([commit](https://github.com/Polymer/polymer/commit/ee9a600))
- Fixes for IE style ordering issue. ([commit](https://github.com/Polymer/polymer/commit/162f81e))
- Fixes #3326. Changes inspired by #3276 and #3344 ([commit](https://github.com/Polymer/polymer/commit/b5ba9a8))
- Fix for getters/setters for property become inaccessible when property set on element before it is ready ([commit](https://github.com/Polymer/polymer/commit/ecd9b09))
- Non-destructive `@keyframes` rule transformation. ([commit](https://github.com/Polymer/polymer/commit/b9f2482))
- Fix test regression from PR 3289 ([commit](https://github.com/Polymer/polymer/commit/5205d6a))
- Move test and add to runner. ([commit](https://github.com/Polymer/polymer/commit/aeb44de))
- make isDebouncerActive actually return a bool ([commit](https://github.com/Polymer/polymer/commit/dee9b98))
- Lint the javascript code with eslint ([commit](https://github.com/Polymer/polymer/commit/f7d2bdf))
- i suck at git ([commit](https://github.com/Polymer/polymer/commit/b40f639))
- Fix for scoping when class is not specified on element (null was prepended instead of empty string) ([commit](https://github.com/Polymer/polymer/commit/24e9fc7))
- Using constant rather than plain `:host` and `::content`, also create regexp object only once ([commit](https://github.com/Polymer/polymer/commit/c6c28f5))
- Eliminate the need to write `:host ::content` instead of just `::content`, while keeping the same processing under the hood ([commit](https://github.com/Polymer/polymer/commit/d9f3dda))
- Fix: There is no effect of kind 'computedAnnotation' ([commit](https://github.com/Polymer/polymer/commit/06cd560))
- fix test case in 5d17efc ([commit](https://github.com/Polymer/polymer/commit/4a9ef8e))
- add test for 3326 ([commit](https://github.com/Polymer/polymer/commit/854fdbf))
- [ci skip] update CHANGELOG ([commit](https://github.com/Polymer/polymer/commit/3d2cb71))
- Exclude attribute bindings from configuration. Fixes #3288. ([commit](https://github.com/Polymer/polymer/commit/246ea72))
- Doubled `Polymer.CaseMap.dashToCamelCase` performance with simplified and once compiled RegExp. 5 times faster `Polymer.CaseMap.camelToDashCase` using simplified replace part, simplified and once compiled RegExp. ([commit](https://github.com/Polymer/polymer/commit/90938e3))
- Update PRIMER.md ([commit](https://github.com/Polymer/polymer/commit/bb4d558))
- Unit tests ([commit](https://github.com/Polymer/polymer/commit/de371bb))
- Allow newlines in computed binding argument list ([commit](https://github.com/Polymer/polymer/commit/b745f45))
- Remove redundant assign to window.Polymer ([commit](https://github.com/Polymer/polymer/commit/b2f8e8f))
- parentProps should not override argument based props ([commit](https://github.com/Polymer/polymer/commit/898fe89))
## [v1.2.4](https://github.com/Polymer/polymer/tree/v1.2.4) (2016-01-27)
- Fixes #3337. When a doc fragment is added, only update the invalidation state of the insertion point list of the shadyRoot IFF it is not already invalid. This fixes an issue that was detected when an a doc fragment that did not include an insertion point was added after one that did but before distribution. ([commit](https://github.com/Polymer/polymer/commit/d26b003))
- fix build output with new vulcanize ([commit](https://github.com/Polymer/polymer/commit/c317711))
- Revert style properties change from fd5778470551f677c2aa5827398681abb1994a88 ([commit](https://github.com/Polymer/polymer/commit/0a0b580))
- Fix shadow dom test. ([commit](https://github.com/Polymer/polymer/commit/6b83911))
- Add shadow root support. (tests broken) ([commit](https://github.com/Polymer/polymer/commit/4b7da35))
- Ensure dom-if moved into doc fragment is torn down. Fixes #3324 ([commit](https://github.com/Polymer/polymer/commit/6c4f5d5))
- improve test. ([commit](https://github.com/Polymer/polymer/commit/d70c40a))
- Update comment. ([commit](https://github.com/Polymer/polymer/commit/aa14687))
- In addition to fragments, also handle non-distributed elements more completely. ([commit](https://github.com/Polymer/polymer/commit/fe2699e))
- Simplify fix for fragment children management. ([commit](https://github.com/Polymer/polymer/commit/713377e))
- Fix test under polyfill. ([commit](https://github.com/Polymer/polymer/commit/25da63d))
- Ensure fragments added via Polymer.dom always have elements removed, even when distribution does not select those elements. ([commit](https://github.com/Polymer/polymer/commit/101eb3d))
- Fixes #3321. Only let dom-repeat insert elements in attached if it has been previously detached; correctly avoid re-adding children in document fragments to an element's logical linked list if they are already there. ([commit](https://github.com/Polymer/polymer/commit/9f2464d))
- Ugh ([commit](https://github.com/Polymer/polymer/commit/172d93c))
- Fixes #3308. Use an explicit undefined check to test if logical tree information exists. ([commit](https://github.com/Polymer/polymer/commit/9106398))
- add test ([commit](https://github.com/Polymer/polymer/commit/b1ea014))
- use class attribute in applyElementScopeSelector ([commit](https://github.com/Polymer/polymer/commit/07d8c06))
- Remove reference to _composedChildren ([commit](https://github.com/Polymer/polymer/commit/9f85acd))
- Fix typo in documentation for set() ([commit](https://github.com/Polymer/polymer/commit/aa47515))
- Fix typo in dom-tree-api ([commit](https://github.com/Polymer/polymer/commit/ae98a7c))
- Correct use of document.contains to document.documentElement.contains on IE. ([commit](https://github.com/Polymer/polymer/commit/0e74810))
- Ensure querySelector always returns `null` when a node is not found. Also optimize querySelector such that the matcher halts on the first result. ([commit](https://github.com/Polymer/polymer/commit/b9e5cce))
- Fixes #3295. Only cache a false-y result for an element's owner shady root iff the element is currently in the document. ([commit](https://github.com/Polymer/polymer/commit/6e16619))
- Use local references to wrapper functions; add test element tree to native shadow tests; reorder test elements. ([commit](https://github.com/Polymer/polymer/commit/47ee2ca))
- Remove leftover garbage line ([commit](https://github.com/Polymer/polymer/commit/d7567b7))
- Removes the case where activeElement could be in the light DOM of a ShadowRoot. ([commit](https://github.com/Polymer/polymer/commit/e848af8))
- DOM API implementation of `activeElement`. ([commit](https://github.com/Polymer/polymer/commit/2984576))
- Remove call to `wrap` in deepContains ([commit](https://github.com/Polymer/polymer/commit/4cbdef7))
- Fixes #3270. ([commit](https://github.com/Polymer/polymer/commit/7d0485b))
- Include more styling tests under ShadowDOM. Fix custom-style media query test to work under both shadow/shady. ([commit](https://github.com/Polymer/polymer/commit/33a24bb))
- Remove duplicate code related to dom traversal in Polymer.dom. ([commit](https://github.com/Polymer/polymer/commit/555252b))
- Fix parsing of minimized css output also for mixins ([commit](https://github.com/Polymer/polymer/commit/87d02e0))
- Set position to relative to make Safari to succeed top/bottom tests ([commit](https://github.com/Polymer/polymer/commit/94f505a))
- Fix parsing of minimized css output ([commit](https://github.com/Polymer/polymer/commit/f92f9ff))
- Fix for `Polymer.dom(...)._query()` method doesn't exist which causes `Polymer.updateStyles()` to fail ([commit](https://github.com/Polymer/polymer/commit/0eea7a6))
- Minor factoring of dom patching. ([commit](https://github.com/Polymer/polymer/commit/8c95014))
- use destination insertion points when calculating the path ([commit](https://github.com/Polymer/polymer/commit/3f8b6ee))
- Store all dom tree data in `__dom` private storage; implement composed patching via a linked list. ([commit](https://github.com/Polymer/polymer/commit/9a3bead))
- Modernize the build ([commit](https://github.com/Polymer/polymer/commit/2b69bb1))
- Add more globals to whitelist for safari ([commit](https://github.com/Polymer/polymer/commit/82b2443))
- Shady patching: patch element accessors in composed tree; fixes HTMLImports polyfill support. ([commit](https://github.com/Polymer/polymer/commit/d135fef))
- remove unused code; minor changes based on review. ([commit](https://github.com/Polymer/polymer/commit/c3fbd10))
- added polymer-mini and polymer-micro to main ([commit](https://github.com/Polymer/polymer/commit/da5d781))
- Updates the patch-don experiment to work with recent changes. ([commit](https://github.com/Polymer/polymer/commit/b9e6859))
- Fixes #3113 ([commit](https://github.com/Polymer/polymer/commit/fadd455))
- Polymer.dom: when adding a node, only remove the node from its existing location if it's not a fragment and has a parent. ([commit](https://github.com/Polymer/polymer/commit/9915627))
- Consistently use TreeApi.Composed api for composed dom manipulation; use TreeApi.Logical methods to get node leaves. Avoid making a Polymer.dom when TreeApi.Logical can provide the needed info. ([commit](https://github.com/Polymer/polymer/commit/5033fdb))
- Produce nicer error on malformed observer ([commit](https://github.com/Polymer/polymer/commit/0e248f5))
- Deduplicate setup and verifying in notify-path test suite ([commit](https://github.com/Polymer/polymer/commit/68707ad))
- more explicit tests for debouncer wait and no-wait behavior ([commit](https://github.com/Polymer/polymer/commit/8ef7bac))
- speed up microtask testing ([commit](https://github.com/Polymer/polymer/commit/9bef4c0))
- ensure isDebouncerActive returns a Boolean ([commit](https://github.com/Polymer/polymer/commit/3916493))
- add more debouncer tests ([commit](https://github.com/Polymer/polymer/commit/0206852))
- remove dead debounce test assertion ([commit](https://github.com/Polymer/polymer/commit/9b898c2))
- Factoring of distribution logic in both add and remove cases. ([commit](https://github.com/Polymer/polymer/commit/8272d5e))
- Minor typo in docs: call the debounce callback ([commit](https://github.com/Polymer/polymer/commit/02c5c79))
- Correct test to avoid using `firstElementChild` on a documentFragment since it is not universally supported. ([commit](https://github.com/Polymer/polymer/commit/dfa6a44))
- Remove all TODOs ([commit](https://github.com/Polymer/polymer/commit/6467ae1))
- Revert "Add .gitattributes to solve line endings cross-OS (merge after other PRs)" ([commit](https://github.com/Polymer/polymer/commit/b6b8293))
- Make renderedItemCount readOnly & add tests. ([commit](https://github.com/Polymer/polymer/commit/e39d5ba))
- Revert "Fix parsing of minimized css output" ([commit](https://github.com/Polymer/polymer/commit/d3145e8))
- Custom setProperty for bindings to hidden textNodes. Fixes #3157. ([commit](https://github.com/Polymer/polymer/commit/c6be10d))
- Ensure dom-if in host does not restamp when host detaches. Fixes #3125. ([commit](https://github.com/Polymer/polymer/commit/bb85e2b))
- Avoid making a copy of childNodes when a dom fragment is inserted in the logical tree. ([commit](https://github.com/Polymer/polymer/commit/dcbafbf))
- Slightly faster `findAnnotatedNodes` ([commit](https://github.com/Polymer/polymer/commit/43fc853))
- Add .gitattributes to solve line endings cross-OS ([commit](https://github.com/Polymer/polymer/commit/94c2bc2))
- Ensure literals are excluded from parent props. Fixes #3128. Fixes #3121. ([commit](https://github.com/Polymer/polymer/commit/526fa3c))
- Fix parsing of minimized css output ([commit](https://github.com/Polymer/polymer/commit/d458690))
- Disable chunked dom-repeat tests on IE due to CI rAF flakiness. ([commit](https://github.com/Polymer/polymer/commit/7fe5e2b))
- Add comment. ([commit](https://github.com/Polymer/polymer/commit/d8ecd45))
- Make Polymer.dom.flush reentrant-safe. Fixes #3115. ([commit](https://github.com/Polymer/polymer/commit/644105a))
- Fixes #3108. Moves `debounce` functionality from polymer-micro to polymer-mini. The functionality belongs at the mini tier and was never actually functional in micro. ([commit](https://github.com/Polymer/polymer/commit/3df4ef2))
- Clarify this is for IE. ([commit](https://github.com/Polymer/polymer/commit/63782fa))
- Patch rAF to setTimeout to reduce flakiness on CI. ([commit](https://github.com/Polymer/polymer/commit/35abadc))
- added missing semicolons, removed some unused variables ([commit](https://github.com/Polymer/polymer/commit/00ed797))
- ?Node ([commit](https://github.com/Polymer/polymer/commit/9385891))
- Remove closures holding element references after mouseup/touchend ([commit](https://github.com/Polymer/polymer/commit/811f766))
- set class attribute instead of using classname ([commit](https://github.com/Polymer/polymer/commit/690838a))
- Include wildcard character in identifier. Fixes #3084. ([commit](https://github.com/Polymer/polymer/commit/c36d6c1))
- Revert fromAbove in applyEffectValue. Add test. Fixes #3077. ([commit](https://github.com/Polymer/polymer/commit/156122c))
- loosen isLightDescendant's @param type to Node ([commit](https://github.com/Polymer/polymer/commit/c635797))
- Put beforeRegister in the behaviorProperties. ([commit](https://github.com/Polymer/polymer/commit/445b6cd))
- ES5 strict doesn't like function declarations inside inner blocks. ([commit](https://github.com/Polymer/polymer/commit/51d3fa6))
- Fixes #3065: Add dom-repeat.renderedItemCount property ([commit](https://github.com/Polymer/polymer/commit/b589f70))
- Minor factoring; ensure base properties set on instance. ([commit](https://github.com/Polymer/polymer/commit/da15ff0))
- Fix typos. ([commit](https://github.com/Polymer/polymer/commit/c12d3ed))
- Simplify more. ([commit](https://github.com/Polymer/polymer/commit/186e053))
- Improvements to regex. ([commit](https://github.com/Polymer/polymer/commit/a3d17d5))
- Give dom-repeat#_targetFrameTime a type ([commit](https://github.com/Polymer/polymer/commit/adad9ce))
- [skip ci] update travis config to firefox latest ([commit](https://github.com/Polymer/polymer/commit/608ce9f))
- Add a couple of tests. ([commit](https://github.com/Polymer/polymer/commit/108b7f9))
- Suppress warnings and expected errors in test suite ([commit](https://github.com/Polymer/polymer/commit/92d6fcb))
- Use linked-list for element tree traversal. Factor Polymer.DomApi into shadow/shady modules. ([commit](https://github.com/Polymer/polymer/commit/306cc81))
- Avoid throwing with invalid keys/paths. Fixes #3018. ([commit](https://github.com/Polymer/polymer/commit/5076ee0))
- Use stricter binding parsing for efficiency and correctness. Fixes #2705. ([commit](https://github.com/Polymer/polymer/commit/04cd184))
- Simpler travis config ([commit](https://github.com/Polymer/polymer/commit/68b457d))
- [ci skip] Update Changelog ([commit](https://github.com/Polymer/polymer/commit/7e7600a))
- Fix for incorrect CSS selectors specificity as reported in #2531 Fix for overriding mixin properties, fixes #1873 Added awareness from `@apply()` position among other rules so that it is preserved after CSS variables/mixing substitution. `Polymer.StyleUtil.clearStyleRules()` method removed as it is not used anywhere. Some unused variables removed. Typos, unused variables and unnecessary escaping in regexps corrected. Tests added. ([commit](https://github.com/Polymer/polymer/commit/fd57784))
- Fix for method parsing in computed binding ([commit](https://github.com/Polymer/polymer/commit/c2e43d3))
- Fix doc typo. ([commit](https://github.com/Polymer/polymer/commit/8886c2c))
- Filtering causes unexpected issues ([commit](https://github.com/Polymer/polymer/commit/df22564))
- Fix using value$ on input element ([commit](https://github.com/Polymer/polymer/commit/05a1e95))
- added missing semicolons, removed some unused variables ([commit](https://github.com/Polymer/polymer/commit/338574d))
## [v1.2.3](https://github.com/Polymer/polymer/tree/v1.2.3) (2015-11-16)
- Call decorate instead of bootstrap for template prepping ([commit](https://github.com/Polymer/polymer/commit/e2a2cfd))
- Fix global leak test. Necessary due to changes to test harness. ([commit](https://github.com/Polymer/polymer/commit/134766f))
- Defer property application only when a custom-style is first created. ([commit](https://github.com/Polymer/polymer/commit/4bf0e13))
- Update comment. ([commit](https://github.com/Polymer/polymer/commit/27e1dcd))
- Simplify custom-style property deferment. ([commit](https://github.com/Polymer/polymer/commit/a970493))
- [ci skip] update changelog ([commit](https://github.com/Polymer/polymer/commit/98acb3a))
- Fixes #2692. Ensures that custom-style properties are applied async but before next render so that all properties are defined before any are consumed by custom-styles. Also refines dom-module's early upgrade code so that it does not affect other elements (corrects for example, custom-styles upgrading before expected). ([commit](https://github.com/Polymer/polymer/commit/b829f2a))
- Remove undesired full-stop from outputs ([commit](https://github.com/Polymer/polymer/commit/68d5c55))
- Fix Formatting ([commit](https://github.com/Polymer/polymer/commit/724e1bc))
## [v1.2.2](https://github.com/Polymer/polymer/tree/v1.2.2) (2015-11-12)
- use local reference for wrap. ([commit](https://github.com/Polymer/polymer/commit/b15e5b9))
- Add Polymer.DomApi.wrap ([commit](https://github.com/Polymer/polymer/commit/6cf974a))
- For correctness, bind listeners must use a property's current value rather than its passed value. ([commit](https://github.com/Polymer/polymer/commit/aca404f))
- Explicitly making an element's `_template` falsy is now considered an allowable setting. This means the element stamps no content, doesn't collect any styles, and avoids looking up a dom-module. This helps address #2708 and the 5 elements Polymer registers that have no template have been set with `_template: null`. ([commit](https://github.com/Polymer/polymer/commit/b905a37))
- Make test work under native Shadow DOM. ([commit](https://github.com/Polymer/polymer/commit/4f9c2bd))
- In `_notifyListener`, only use `e.detail` if the event has a detail. This is necessary for `::eventName` compatibility where `eventName` is a native event like `change`. ([commit](https://github.com/Polymer/polymer/commit/3ece552))
- Fix TOC re: host event listeners. ([commit](https://github.com/Polymer/polymer/commit/ce32459))
- Fix compound bindings with braces in literals ([commit](https://github.com/Polymer/polymer/commit/561b28b))
- Re-enable listeners of the form 'a.b' (todo: make this more efficient). ([commit](https://github.com/Polymer/polymer/commit/139257b))
- Avoid stomping on property objects when mixing behaviors. ([commit](https://github.com/Polymer/polymer/commit/ec4d313))
- Update test to avoid template polyfill issues. ([commit](https://github.com/Polymer/polymer/commit/fa96ff3))
- Ensure parent node exists when stamping. Fixes #2685. ([commit](https://github.com/Polymer/polymer/commit/62f2d2a))
- Add global leak test to runner. ([commit](https://github.com/Polymer/polymer/commit/dc2255c))
- Add global leak test. ([commit](https://github.com/Polymer/polymer/commit/7f71b4c))
- Fix typo that prevented correct functioning of Polymer.dom under Shadow DOM and add tests to catch. ([commit](https://github.com/Polymer/polymer/commit/cdc9fde))
- maintain compatibility with older `_notifyChange` arguments. ([commit](https://github.com/Polymer/polymer/commit/f5aec30))
- Weird assignment fix ([commit](https://github.com/Polymer/polymer/commit/9e6f77a))
- add comment. ([commit](https://github.com/Polymer/polymer/commit/f2d5f44))
- For efficiency, use cached events in data system, for property and path changes. ([commit](https://github.com/Polymer/polymer/commit/da71dfe))
- Fixes #2690 ([commit](https://github.com/Polymer/polymer/commit/d8b78d4))
- change after render method to `Polymer.RenderStatus.afterNextRender` ([commit](https://github.com/Polymer/polymer/commit/8949c04))
- When effect values are applied via bindings, use fromAbove gambit to avoid unnecessary wheel spinning. (This is now possible since we have fast lookup for readOnly where we want to avoid doing the set at all). ([commit](https://github.com/Polymer/polymer/commit/c520907))
- do readOnly check for configured properties where they are handed down, rather than when they are consumed. ([commit](https://github.com/Polymer/polymer/commit/24bcedb))
- Minor cleanup. ([commit](https://github.com/Polymer/polymer/commit/0b21506))
- Avoid creating unnecessary placeholders for full refresh. ([commit](https://github.com/Polymer/polymer/commit/996289a))
- Simplify ([commit](https://github.com/Polymer/polymer/commit/c5e1135))
- Fix typo. ([commit](https://github.com/Polymer/polymer/commit/680c56d))
- Update docs. ([commit](https://github.com/Polymer/polymer/commit/352ccbe))
- _removeInstance -> _detachAndRemoveInstance ([commit](https://github.com/Polymer/polymer/commit/ba7a16f))
- Remove limit & chunkCount API. Refactor insert/remove. ([commit](https://github.com/Polymer/polymer/commit/f447c0e))
- add back deepContains (got removed incorrectly in merge). ([commit](https://github.com/Polymer/polymer/commit/d53ab57))
- fix line endings. ([commit](https://github.com/Polymer/polymer/commit/0233d6d))
- revert host attributes ordering change optimization as it was not worth the trouble (barely measurable and more cumbersome impl). ([commit](https://github.com/Polymer/polymer/commit/f9894a0))
- rename host functions fix typos afterFirstRender is now raf+setTimeout dom-repeat: remove cruft ([commit](https://github.com/Polymer/polymer/commit/d82840b))
- Fix Gestures when using SD polyfill ([commit](https://github.com/Polymer/polymer/commit/96e4bfa))
- Fix for multiple consequent spaces present in CSS selectors, fixes #2670 ([commit](https://github.com/Polymer/polymer/commit/ecddb56))
- avoid configuration work when unnecessary ([commit](https://github.com/Polymer/polymer/commit/e0fbfbe))
- lazily create effect objects so we can more easily abort processing. avoid forEach ([commit](https://github.com/Polymer/polymer/commit/66df196))
- provides support for memoizing pathFn on effect; only process effects/listeners if they exist. ([commit](https://github.com/Polymer/polymer/commit/a2376b6))
- memoize pathFn on effect (note: notifyPath change made in previous commit); avoid forEach. ([commit](https://github.com/Polymer/polymer/commit/d93340a))
- Avoid using .slice and .forEach ([commit](https://github.com/Polymer/polymer/commit/d2c02a9))
- Added support for short unicode escape sequences, fixes #2650 ([commit](https://github.com/Polymer/polymer/commit/2c87145))
- Fix for BEM-like CSS selectors under media queries, fixes #2639. Small optimization for produced CSS (empty rules produced semicolon before, now empty string). ([commit](https://github.com/Polymer/polymer/commit/35c89f1))
- Fix parsing of custom properties with 'var' in value ([commit](https://github.com/Polymer/polymer/commit/61abfbd))
- Clean up cruft. ([commit](https://github.com/Polymer/polymer/commit/59c27fa))
- Add tests and fix issues. ([commit](https://github.com/Polymer/polymer/commit/e99e5fa))
- dom-repeat chunked/throttled render API ([commit](https://github.com/Polymer/polymer/commit/e9aebd7))
- Fix formatting. ([commit](https://github.com/Polymer/polymer/commit/56734a7))
- Add notes on running unit tests. ([commit](https://github.com/Polymer/polymer/commit/492f310))
- Corrected method name. Fixes #2649. ([commit](https://github.com/Polymer/polymer/commit/5168604))
- Fix typos in more efficient array copying. ([commit](https://github.com/Polymer/polymer/commit/53f3a7d))
- Adds `Polymer.RenderStatus.afterFirstRender` method. Call to perform tasks after an element first renders. ([commit](https://github.com/Polymer/polymer/commit/71b5c2a))
- More efficient array management in Polymer.DomApi. ([commit](https://github.com/Polymer/polymer/commit/320d5c7))
- Fixes #2652 ([commit](https://github.com/Polymer/polymer/commit/e35c4e9))
- [ci skip] update changelog ([commit](https://github.com/Polymer/polymer/commit/0dc69df))
- Fix whitespace around bindings. ([commit](https://github.com/Polymer/polymer/commit/d7d0ed6))
- Add support for `strip-whitespace`. Should fix #2511. ([commit](https://github.com/Polymer/polymer/commit/35a1b94))
- Improve efficiency of attribute configuration. ([commit](https://github.com/Polymer/polymer/commit/f7d86e9))
- Remove use of Function.bind ([commit](https://github.com/Polymer/polymer/commit/25aab8b))
- fix typos. ([commit](https://github.com/Polymer/polymer/commit/5fb20da))
- Re-use data change events. Remove unused/undocumented listener object specific node listening feature. ([commit](https://github.com/Polymer/polymer/commit/8bdedf3))
- Add flattened properties to dom-bind, templatizer, optimize by 'liming properties that are protected/private and not readOnly from list. ([commit](https://github.com/Polymer/polymer/commit/2ba08ec))
- Use flattened list of properties for fast access during configuration and attribute->property ([commit](https://github.com/Polymer/polymer/commit/acdd242))
- Assemble effect strings at prototype time. ([commit](https://github.com/Polymer/polymer/commit/4745e8f))
- Fallback to string lookup to fix support for extra effects. ([commit](https://github.com/Polymer/polymer/commit/d3c4611))
- Fix typo. ([commit](https://github.com/Polymer/polymer/commit/ead9adb))
- Correct NodeList copying. ([commit](https://github.com/Polymer/polymer/commit/1d29e19))
- Avoid Polymer.dom.setAttribute when unneeded. ([commit](https://github.com/Polymer/polymer/commit/9c5a404))
- More efficient iteration. ([commit](https://github.com/Polymer/polymer/commit/23a9a06))
- Avoid forEach ([commit](https://github.com/Polymer/polymer/commit/ebeaf80))
- Copy dom NodeList faster than slice. ([commit](https://github.com/Polymer/polymer/commit/8cad475))
- Avoid function lookup by string. ([commit](https://github.com/Polymer/polymer/commit/e2674bc))
- Add test for parsing multi-line css comments ([commit](https://github.com/Polymer/polymer/commit/6f21ae6))
## [v1.2.1](https://github.com/Polymer/polymer/tree/v1.2.1) (2015-10-29)
- Fix test for SD polyfill ([commit](https://github.com/Polymer/polymer/commit/dd8b3e9))
- Add pre-condition check for completeness. ([commit](https://github.com/Polymer/polymer/commit/89304dc))
- Find non distributed children with deepContains ([commit](https://github.com/Polymer/polymer/commit/8e6f55a))
- Ensure outer paths aren't forwarded to instance props. Fixes #2556. ([commit](https://github.com/Polymer/polymer/commit/01273e9))
- Add `Polymer.dom.deepContains` ([commit](https://github.com/Polymer/polymer/commit/279bf63))
- [ci skip] Update CHANGELOG ([commit](https://github.com/Polymer/polymer/commit/e1f83d2))
- isLightDescendant should return false for self ([commit](https://github.com/Polymer/polymer/commit/a0debf4))
- Fix for mixins declaration with space before colon. Allow any space character or even `{` and `}` (before and after capturing pattern correspondingly) as pattern boundaries instead of new lines only. In minified sources there might be no space, semicolon or line start, so we need to account that as well. ([commit](https://github.com/Polymer/polymer/commit/883aa5c))
## [v1.2.0](https://github.com/Polymer/polymer/tree/v1.2.0) (2015-10-22)
- A simpler travis config ([commit](https://github.com/Polymer/polymer/commit/3338b67))
- Fix #2587: When Polymer.dom(el).appendChild(node) is called, cleanup work must be performed on the existing parent of node. This change fixes a missing case in this cleanup work: if the existing parent has a observer via `Polymer.dom(parent).observeNodes`, it needs to be notified that node is being removed even if the node does not have specific logical info. For example, if an observed node has no Shady DOM and has a child that is removed. A test for this case was added. ([commit](https://github.com/Polymer/polymer/commit/0d4f418))
- add fancy travis status badge to the readme ([commit](https://github.com/Polymer/polymer/commit/e29fca8))
- Do not configure compound property/attribute binding if literal if empty. Fixes #2583. ([commit](https://github.com/Polymer/polymer/commit/ca4724a))
- Update .travis.yml ([commit](https://github.com/Polymer/polymer/commit/ef366c5))
- Remove web-component-tester cache. ([commit](https://github.com/Polymer/polymer/commit/4ae23ce))
- Fix IE10 regressions. Fixes #2582 * Copy attribute list before modifying it * Fall back to document for current document if no currentScript ([commit](https://github.com/Polymer/polymer/commit/ee65e68))
- Allow _atEndOfMicrotask to be patchable. ([commit](https://github.com/Polymer/polymer/commit/e2d8446))
- contributing copy fixup ([commit](https://github.com/Polymer/polymer/commit/ed22c50))
- Update CONTRIBUTING.md ([commit](https://github.com/Polymer/polymer/commit/0c21efc))
- Add travis config ([commit](https://github.com/Polymer/polymer/commit/6fb7684))
- Factor into functions. ([commit](https://github.com/Polymer/polymer/commit/b2117dc))
- Fix deepEqual on Safari 9 due to Safari enumeration bug. ([commit](https://github.com/Polymer/polymer/commit/445d603))
- ensure distribution observers see all changes that can come from attributes under native Shadow DOM; +minor factoring ([commit](https://github.com/Polymer/polymer/commit/344f5cc))
- Add <content>.getDistributedNodes observation. Refactor flush. ([commit](https://github.com/Polymer/polymer/commit/8b1face))
- Add docs ([commit](https://github.com/Polymer/polymer/commit/0ede79a))
- Make shadow attribute tracking automatic based on detecting a <content select> that depends on attributes; add tests. ([commit](https://github.com/Polymer/polymer/commit/54911a7))
- Add comments. ([commit](https://github.com/Polymer/polymer/commit/758c483))
- Fix typo. ([commit](https://github.com/Polymer/polymer/commit/74a87a0))
- Replace _compoundInitializationEffect with statically-initialized literals in the template for attributes & textContent, and by configuring literal values of properties in _configureAnnotationReferences. ([commit](https://github.com/Polymer/polymer/commit/2f1bd31))
- Simplify change tracking by always dirty checking at the observer level. Under Shadow DOM, use a deep MO to watch for attributes. ([commit](https://github.com/Polymer/polymer/commit/669acaa))
- Fix URL to component.kitchen ([commit](https://github.com/Polymer/polymer/commit/d9af504))
- Update the Google+ community link ([commit](https://github.com/Polymer/polymer/commit/c6684e5))
- Fixes from review. ([commit](https://github.com/Polymer/polymer/commit/a300862))
- Remove compound binding limitation from primer. ([commit](https://github.com/Polymer/polymer/commit/b1c1b35))
- Exclude compound bindings from configure; revisit later. ([commit](https://github.com/Polymer/polymer/commit/1035e2d))
- Apply effect value from compound parts. ([commit](https://github.com/Polymer/polymer/commit/c30ac10))
- Store binding parts in notes. ([commit](https://github.com/Polymer/polymer/commit/1026498))
- Fix missing var ([commit](https://github.com/Polymer/polymer/commit/68edb83))
- Add radix for correctness. ([commit](https://github.com/Polymer/polymer/commit/a79f012))
- Separate public & private get, flip conditions, add notifyPath API. ([commit](https://github.com/Polymer/polymer/commit/97503ec))
- Fix typo in comments. ([commit](https://github.com/Polymer/polymer/commit/e59dbef))
- Improvements to path API. Fixes #2509. * Allows `set` to take paths with array #keys * Allows `notifyPath` to take paths with array indices * Exposes public notifySplices API ([commit](https://github.com/Polymer/polymer/commit/10021cc))
- Fix merge issue. ([commit](https://github.com/Polymer/polymer/commit/85c23e1))
- Denote keys with # to disambiguate from index. Fixes #2007. ([commit](https://github.com/Polymer/polymer/commit/85d8a3a))
- update CHANGELOG to 1.1.5 ([commit](https://github.com/Polymer/polymer/commit/b2b23c4))
- make tests work on polyfill. ([commit](https://github.com/Polymer/polymer/commit/9ff2ee4))
- add `observeNodes` tests. ([commit](https://github.com/Polymer/polymer/commit/bd90b57))
- Add optional attribute tracking to support better distributed node notifications under shadow dom. ([commit](https://github.com/Polymer/polymer/commit/8242a98))
- Add `Polymer.dom().notifyObservers` method to 'kick' observers, for example, when attributes change under Shadow DOM. ([commit](https://github.com/Polymer/polymer/commit/07261e4))
- Add mutation tracking for distributedNodes. ([commit](https://github.com/Polymer/polymer/commit/b11f86b))
- Factor dom-api's into separate helpers. ([commit](https://github.com/Polymer/polymer/commit/effedcb))
- Adds `Polymer.dom(element).observeChildren(callback)` api ([commit](https://github.com/Polymer/polymer/commit/6499e83))
- Adds `getEffectiveChildNodes`, `getEffectiveChildren`, `getEffectiveTextContent` ([commit](https://github.com/Polymer/polymer/commit/f34fb45))
## [v1.1.5](https://github.com/Polymer/polymer/tree/v1.1.5) (2015-10-08)
- Simplify ([commit](https://github.com/Polymer/polymer/commit/79dfe1f))
- Clean up templatizer _pathEffectorImpl. ([commit](https://github.com/Polymer/polymer/commit/1a89bcf))
- Add issue link. ([commit](https://github.com/Polymer/polymer/commit/e4c2433))
- Missing var keyword ([commit](https://github.com/Polymer/polymer/commit/45fcbcf))
- Make sure we only actually call _listen once ([commit](https://github.com/Polymer/polymer/commit/837e9b8))
- Add templatizer tests. Fix issues from tests. ([commit](https://github.com/Polymer/polymer/commit/2d97cd7))
- Use 'value' in place of 'object' when referring to detail. ([commit](https://github.com/Polymer/polymer/commit/f17be35))
- Allow any type, not just objects, as the detail for fire. ([commit](https://github.com/Polymer/polymer/commit/ec59f57))
- Make model param of stamp method optional. ([commit](https://github.com/Polymer/polymer/commit/a2e1e64))
- add test to ensure unlisten events do not fire ([commit](https://github.com/Polymer/polymer/commit/bf2f694))
- add tests ([commit](https://github.com/Polymer/polymer/commit/900d82b))
- Only one real listener per `listen` call ([commit](https://github.com/Polymer/polymer/commit/8bd380a))
- add util method for shadow children ([commit](https://github.com/Polymer/polymer/commit/1e9110a))
- Add notify-path API to templatized template. Fixes #2505. ([commit](https://github.com/Polymer/polymer/commit/2e086fe))
- Parent property values should come from template. Fixes #2504. ([commit](https://github.com/Polymer/polymer/commit/23c883b))
- Added note about including a clear repro case. ([commit](https://github.com/Polymer/polymer/commit/e18f009))
- added request to submit an issue before sending a PR ([commit](https://github.com/Polymer/polymer/commit/6ed836f))
- update CHANGELOG to 1.1.4 ([commit](https://github.com/Polymer/polymer/commit/c2b7c31))
## [v1.1.4](https://github.com/Polymer/polymer/tree/v1.1.4) (2015-09-25)
- :memo: Update description ([commit](https://github.com/Polymer/polymer/commit/6afb8be))
- :art: Use npm command bin lookup ([commit](https://github.com/Polymer/polymer/commit/84258d4))
- :grapes: Add missing test dependency ([commit](https://github.com/Polymer/polymer/commit/5726b8e))
- Reset handlers queue after finished replaying events ([commit](https://github.com/Polymer/polymer/commit/76a5f17))
- Update the README.md to Polymer 1.1 ([commit](https://github.com/Polymer/polymer/commit/40c455a))
- Add note on arrayDelete with array vs. path ([commit](https://github.com/Polymer/polymer/commit/d2b71a5))
- Add unlinkPath tests. ([commit](https://github.com/Polymer/polymer/commit/bee110b))
- Update changelog ([commit](https://github.com/Polymer/polymer/commit/573ca29))
- Remove dead code; add tests. ([commit](https://github.com/Polymer/polymer/commit/ab85884))
- Allow multiple paths to be linked using linkPath. Fixes #2048 ([commit](https://github.com/Polymer/polymer/commit/b221dbe))
- Fix docs for stamp method ([commit](https://github.com/Polymer/polymer/commit/8adbe60))
- http to https for jsbin ([commit](https://github.com/Polymer/polymer/commit/d842435))
- Typo ([commit](https://github.com/Polymer/polymer/commit/d558c0d))
- Fix typos in PRIMER.md ([commit](https://github.com/Polymer/polymer/commit/cf793f4))
## [v1.1.3](https://github.com/Polymer/polymer/tree/v1.1.3) (2015-09-04)
- Fixes #2403 ([commit](https://github.com/Polymer/polymer/commit/a6694b7))
- Only try to decrement gesture dependency counter if dependency exists ([commit](https://github.com/Polymer/polymer/commit/8886e8c))
- update changelog with v1.1.2 ([commit](https://github.com/Polymer/polymer/commit/d3a7c93))
- prepare v1.1.2 ([commit](https://github.com/Polymer/polymer/commit/e78be4f))
## [v1.1.2](https://github.com/Polymer/polymer/tree/v1.1.2) (2015-08-28)
- Improve composed parent tracking. ([commit](https://github.com/Polymer/polymer/commit/4d15789))
- move the mixing-in of behaviors so that it happens before `register` behaviors are invoked ([commit](https://github.com/Polymer/polymer/commit/637367c))
- Fixes #2378 ([commit](https://github.com/Polymer/polymer/commit/a9f081b))
- Fixes #2356: issue a warning and don't throw an exception when a style include cannot be found. Fixes #2357: include data now comes before any textContent in a style element. ([commit](https://github.com/Polymer/polymer/commit/a16ada1))
- remove unneeded protection code for extends. ([commit](https://github.com/Polymer/polymer/commit/8eada87))
- Add test ([commit](https://github.com/Polymer/polymer/commit/47ff0e8))
- add test for `registered` behavior affecting a value then used by features ([commit](https://github.com/Polymer/polymer/commit/230528c))
- add tests for new Polymer() argument support (and make Base tests aware of new abstract method `_desugarBehaviors`) ([commit](https://github.com/Polymer/polymer/commit/9734a3a))
- invoke `registration` behavior before registering features, so behaviors can alter features, this requires calling behavior flattening as part of prototype desugaring instead of as part of behavior prep, so the flattened list is available early ([commit](https://github.com/Polymer/polymer/commit/6224dc3))
- do `registered` behaviors before invoking `registerFeatures` so `registered` can affect properties used by features (ref #2329) ([commit](https://github.com/Polymer/polymer/commit/61d611c))
- specifically create `Polymer` object on `window` to satisfy strict mode (fixes #2363) ([commit](https://github.com/Polymer/polymer/commit/a75133d))
- Remove forceUpgraded check in dom-module.import ([commit](https://github.com/Polymer/polymer/commit/b85b641))
- Fixes #2341: branch Polymer.dom to use native dom methods under Shadow DOM for: appendChild, insertBefore, removeChild, replaceChild, cloneNode. ([commit](https://github.com/Polymer/polymer/commit/9b1f706))
- Fixes #2334: when composing nodes in shady dom, check if a node is where we expect it to be before removing it from its distributed position. We do this because the node may have been moved by Polymer.dom in a way that triggered distribution of its previous location. The node is already where it needs to be so removing it from its parent when it's no longer distributed is destructive. ([commit](https://github.com/Polymer/polymer/commit/4ea69c2))
- use cached template annotations when possible ([commit](https://github.com/Polymer/polymer/commit/b0733d3))
- fix comment typos ([commit](https://github.com/Polymer/polymer/commit/a0a3e0c))
- Update changelog with v1.1.1 release ([commit](https://github.com/Polymer/polymer/commit/12fa867))
## [v1.1.1](https://github.com/Polymer/polymer/tree/v1.1.1) (2015-08-20)
- 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))
- 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))
- Update Changelog ([commit](https://github.com/Polymer/polymer/commit/039ef93))
- Add selectedItem property ([commit](https://github.com/Polymer/polymer/commit/d65acd0))
- Add test for large splice ([commit](https://github.com/Polymer/polymer/commit/c967583))
- Use numeric sort when removing dom-repeat instances ([commit](https://github.com/Polymer/polymer/commit/fccbd8a))
- Fixes #2267: properly find dom-module for mixed case elements ([commit](https://github.com/Polymer/polymer/commit/76c58b8))
- Fixes #2304: avoid trying to read style data from imports that did not load. ([commit](https://github.com/Polymer/polymer/commit/0d1f206))
- Avoid saving logical info on parent when a content is added inside a fragment + slight factoring. ([commit](https://github.com/Polymer/polymer/commit/36072be))
- Fixes #2276: avoid losing logical information and simplify logical tree handling ([commit](https://github.com/Polymer/polymer/commit/ee61627))
- Moved check earlier. Added test for negative literal. ([commit](https://github.com/Polymer/polymer/commit/1a87ab4))
- 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))
- Support for negative numbers in computed bindings ([commit](https://github.com/Polymer/polymer/commit/fc53f50))
## [v1.1.0](https://github.com/Polymer/polymer/tree/v1.1.0) (2015-08-13)
- Add comment. ([commit](https://github.com/Polymer/polymer/commit/337b54a))
- Add tests for key splice fix. ([commit](https://github.com/Polymer/polymer/commit/4bc055b))
- Fixes #2251: resolve imported stylesheets against correct document. ([commit](https://github.com/Polymer/polymer/commit/68af666))
- Reduce keySplices to minimum change set before notifying. Fixes #2261 ([commit](https://github.com/Polymer/polymer/commit/f74d072))
- Make `clearSelection` public. ([commit](https://github.com/Polymer/polymer/commit/7497729))
- 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))
- Make `clearSelection` public. ([commit](https://github.com/Polymer/polymer/commit/d55be7d))
- 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))
- ensure path fixup is applied correctly to styles in templates. ([commit](https://github.com/Polymer/polymer/commit/b22f3cd))
- Based on feedback, change `module` to `include` in custom-style and dom-module style marshaling. ([commit](https://github.com/Polymer/polymer/commit/f469129))
- Document custom-style module property. ([commit](https://github.com/Polymer/polymer/commit/398d9f7))
- Add comment. ([commit](https://github.com/Polymer/polymer/commit/4e640c7))
- Add tests and require `module` to be on `style` elements. ([commit](https://github.com/Polymer/polymer/commit/58d3c3b))
- `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))
- 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))
## [v1.0.9](https://github.com/Polymer/polymer/tree/v1.0.9) (2015-08-07)
- Remove undocumented return value. ([commit](https://github.com/Polymer/polymer/commit/1764d0c))
- Add default, update docs. ([commit](https://github.com/Polymer/polymer/commit/ca267a5))
- Add tests for isSelected. ([commit](https://github.com/Polymer/polymer/commit/15d63ef))
- Default selected to empty array. Add isSelected API. ([commit](https://github.com/Polymer/polymer/commit/d4e7140))
- Fixes #2218: match style properties against scope transformed selector (not property unique selector) ([commit](https://github.com/Polymer/polymer/commit/c9e9062))
- Remove notify for items (unnecessary). ([commit](https://github.com/Polymer/polymer/commit/a370860))
- Uncomment line. ([commit](https://github.com/Polymer/polymer/commit/b25330b))
- Give toggle a default. ([commit](https://github.com/Polymer/polymer/commit/db9bda5))
- Use multi-prop observer; default selected to null. ([commit](https://github.com/Polymer/polymer/commit/ba4bf38))
- Add tests. Reset selection on items/multi change. Remove async. ([commit](https://github.com/Polymer/polymer/commit/5bca55b))
- Property matching must check non-transformed rule selector. ([commit](https://github.com/Polymer/polymer/commit/5b9a5ce))
- Make _itemsChanged depend on multi. ([commit](https://github.com/Polymer/polymer/commit/1b21397))
- Make sure mouse position is not a factor for .click() in IE 10 ([commit](https://github.com/Polymer/polymer/commit/1a2fb4d))
- Always trigger tap for synthetic click events ([commit](https://github.com/Polymer/polymer/commit/1eef1a7))
- 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))
- Fix polyfill templates ([commit](https://github.com/Polymer/polymer/commit/d78c934))
- Use `_clientsReadied` to avoid missing attribute->property sets in ready. ([commit](https://github.com/Polymer/polymer/commit/165f716))
- Make propagation of attribute changes at configure time more efficient ([commit](https://github.com/Polymer/polymer/commit/b269c1d))
- add offsetParent smoke tests ([commit](https://github.com/Polymer/polymer/commit/0b2cfae))
- Fixes #1673: ensure instance effects exist before marshaling attributes. ([commit](https://github.com/Polymer/polymer/commit/7c83df5))
- Fix typo. ([commit](https://github.com/Polymer/polymer/commit/97944e4))
- Clarify `fire` option defaults. Fixes #2180 ([commit](https://github.com/Polymer/polymer/commit/7c3e516))
- Add cross-reference for API docs. Fixes #2180 ([commit](https://github.com/Polymer/polymer/commit/9bdcc3b))
- Updated utils & removed fn signatures; defer to API docs. Fixes #2180 ([commit](https://github.com/Polymer/polymer/commit/b9b86d5))
- Update core- to iron-ajax in PRIMER.md as in Polymer/docs#1276, Polymer/docs#1275 ([commit](https://github.com/Polymer/polymer/commit/e99358a))
- 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))
- Make properties replacement robust against properties which start with a leading `;` ([commit](https://github.com/Polymer/polymer/commit/3ea0333))
- Fixes #2154: ensure Polymer.dom always sees wrapped nodes when ShadowDOM polyfill is in use. ([commit](https://github.com/Polymer/polymer/commit/fc90aa0))
- Use css parser's property stripping code in custom-style. ([commit](https://github.com/Polymer/polymer/commit/756ef1b))
- Deduplicate track/untrack document event listener logic ([commit](https://github.com/Polymer/polymer/commit/53037d4))
- Automatically filter mouseevents without the left mouse button ([commit](https://github.com/Polymer/polymer/commit/bbc3b57))
- Fixes #2113: ensures custom-style rules that use @apply combined with defining properties apply correctly. ([commit](https://github.com/Polymer/polymer/commit/69a4aa5))
- Correct & simplify per spec. ([commit](https://github.com/Polymer/polymer/commit/7b8b7fd))
- Clean up logic. ([commit](https://github.com/Polymer/polymer/commit/d4deb5d))
- More loosely match expression function names ([commit](https://github.com/Polymer/polymer/commit/6cfa759))
- Fix link to direct to Cross-scope styling ([commit](https://github.com/Polymer/polymer/commit/f9c58bc))
- Update behaviors order. Fixes #2144. ([commit](https://github.com/Polymer/polymer/commit/2a51661))
- Cache style.display & textContent and re-apply on true. Fixes #2037 ([commit](https://github.com/Polymer/polymer/commit/2611285))
- 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))
- 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))
- Fix #2107: improve binding expression parser to match valid javascript property names. ([commit](https://github.com/Polymer/polymer/commit/7560130))
## [v1.0.8](https://github.com/Polymer/polymer/tree/v1.0.8) (2015-07-23)
- Disable tracking if scrolling ([commit](https://github.com/Polymer/polymer/commit/ee5177d))
- Fixes #2125: adds a register method to dom-module to support imperative creation. ([commit](https://github.com/Polymer/polymer/commit/861f4aa))
- Move recognizer reset into start of event flow ([commit](https://github.com/Polymer/polymer/commit/a7495f7))
- Fixed small typo on PRIMER.md ([commit](https://github.com/Polymer/polymer/commit/bc40821))
- remove alternate calculation for _rootDataHost ([commit](https://github.com/Polymer/polymer/commit/26663cd))
- Don't call `dom-change` when detached. ([commit](https://github.com/Polymer/polymer/commit/bdb8fa3))
- Fix typo. ([commit](https://github.com/Polymer/polymer/commit/65911bd))
- Improve code formatting. ([commit](https://github.com/Polymer/polymer/commit/3968c84))
- Up flush MAX to 100 and add overflow warning. ([commit](https://github.com/Polymer/polymer/commit/8bcc416))
- Fixes #1998: add api doc for `customStyle` property ([commit](https://github.com/Polymer/polymer/commit/91577c9))
- Handle commentnodes correctly for textContent and innerHTML ([commit](https://github.com/Polymer/polymer/commit/6d56d2b))
- Fixes #2098: don't accept undefined values as initial config ([commit](https://github.com/Polymer/polymer/commit/1a5c391))
- Remove key check; int check should guarantee key. ([commit](https://github.com/Polymer/polymer/commit/dbf833e))
- Add unit tests. ([commit](https://github.com/Polymer/polymer/commit/bc4b142))
- Allow setting non-index array properties. Fixes #2096. ([commit](https://github.com/Polymer/polymer/commit/f8cad94))
- update tests. ([commit](https://github.com/Polymer/polymer/commit/8922323))
- 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))
- 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))
- Fixes #2010, fixes #1818: Shady dom mutations which trigger additional mutations are now successfully enqueued. ([commit](https://github.com/Polymer/polymer/commit/a26247b))
- debounce returns debouncer. ([commit](https://github.com/Polymer/polymer/commit/fb52120))
- Update index.html ([commit](https://github.com/Polymer/polymer/commit/119df98))
## [v1.0.7](https://github.com/Polymer/polymer/tree/v1.0.7) (2015-07-16)
- Replace placeholders backwards to simplify. ([commit](https://github.com/Polymer/polymer/commit/5eda235))
- Remove unnecessary keys bookkeeping. ([commit](https://github.com/Polymer/polymer/commit/3e02bfd))
- Minor tweaks to comments, internal API consistency. ([commit](https://github.com/Polymer/polymer/commit/82958d4))
- Always use placeholders; fix insertion reference bug. ([commit](https://github.com/Polymer/polymer/commit/4a45d4f))
- Simplify. ([commit](https://github.com/Polymer/polymer/commit/4eda393))
- Rename variables for clarity. ([commit](https://github.com/Polymer/polymer/commit/15c1241))
- Fix reuse logic to handle multiple mutations in same turn. Fixes #2009. ([commit](https://github.com/Polymer/polymer/commit/1bf5f6d))
- Be more explicit. ([commit](https://github.com/Polymer/polymer/commit/a6bd5a5))
- Add Polymer.instanceof & isInstance. Fixes #2083. ([commit](https://github.com/Polymer/polymer/commit/7954f93))
- 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))
- Fixes #2077: workaround IE text node splitting issue that can make text bindings fail. ([commit](https://github.com/Polymer/polymer/commit/312d11f))
- 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))
- update CHANGELOG for 1.0.6 ([commit](https://github.com/Polymer/polymer/commit/c46ec11))
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/GitHub-Changelog-Generator) below*
## [v1.0.6](https://github.com/Polymer/polymer/tree/v1.0.6) (2015-07-09)
**Fixed issues:**
- Basic support for host-context [\#1895](https://github.com/Polymer/polymer/issues/1895)
- custom property resolver tripping over some selectors? [\#1938](https://github.com/Polymer/polymer/issues/1938)
- Parsing compressed CSS does not work [\#1927](https://github.com/Polymer/polymer/issues/1927)
- Support Polymer.dom().classList.contains [\#1907](https://github.com/Polymer/polymer/issues/1907)
- Add support for :host-context [\#1900](https://github.com/Polymer/polymer/issues/1900)
- Grey overlay in mobile Safari [\#1970](https://github.com/Polymer/polymer/issues/1970)
- `node.unlisten` removes native event listeners too often [\#1988](https://github.com/Polymer/polymer/issues/1988)
- `notifyPath` doesn't return as its documentation says [\#1966](https://github.com/Polymer/polymer/issues/1966)
- "TypeError: Cannot set property 'display' of undefined" when HTML comment is present inside a dom-if template that evaluates to truthy [\#1786](https://github.com/Polymer/polymer/issues/1786)
- `dom-repeat` in a falsy `dom-if` should hide newly stamped children [\#1751](https://github.com/Polymer/polymer/issues/1751)
- Typo in Polymer.mixin API documentation [\#2001](https://github.com/Polymer/polymer/issues/2001)
- Low-level changes for `iron-list` integration (`fire` & `modelForElement`) [\#2003](https://github.com/Polymer/polymer/issues/2003)
- Normalized event difference with ShadowDOM and Shady [\#1921](https://github.com/Polymer/polymer/issues/1921)
- DOM API innerHTML adds only first element [\#1972](https://github.com/Polymer/polymer/issues/1972)
- with Polymer\#1.05-update, style-sheets and custom-style-elements are not parsed in my project anymore [\#1974](https://github.com/Polymer/polymer/issues/1974)
- Expected behavior for importNode,cloneNode [\#1888](https://github.com/Polymer/polymer/issues/1888)
- \#1.0.5 computed property function name limitations? [\#2016](https://github.com/Polymer/polymer/issues/2016)
## [v1.0.5](https://github.com/Polymer/polymer/tree/v1.0.5) (2015-06-25)
**Fixed issues:**
- Bindings to concrete types not propagating correctly from template to collection [\#1839](https://github.com/Polymer/polymer/issues/1839)
- Setting individual array elements not working [\#1854](https://github.com/Polymer/polymer/issues/1854)
- `CustomStyle` change has no effect [\#1851](https://github.com/Polymer/polymer/issues/1851)
- With Shady DOM, `<content>` doesn't get passed to another element inside `dom-if` [\#1902](https://github.com/Polymer/polymer/issues/1902)
- Provide a convenience method for setting `customStyle` and calling `updateStyles` [\#1915](https://github.com/Polymer/polymer/issues/1915)
- If an `async` callback throws an error, it's never removed from the callback list [\#1759](https://github.com/Polymer/polymer/issues/1759)
- `dom-if`: undefined is considered falsy only once [\#1742](https://github.com/Polymer/polymer/issues/1742)
- Setting `readOnly` AND `computed` on properties [\#1925](https://github.com/Polymer/polymer/issues/1925)
- `Uncaught TypeError: this.mixin is not a function` [\#1911](https://github.com/Polymer/polymer/issues/1911)
- `Polymer.Base.async` "infinite loop" condition [\#1933](https://github.com/Polymer/polymer/issues/1933)
- Custom property resolver tripping over some selectors? [\#1938](https://github.com/Polymer/polymer/issues/1938)
- Annotated attribute binding issues [\#1874](https://github.com/Polymer/polymer/issues/1874)
- Parsing compressed CSS does not work [\#1927](https://github.com/Polymer/polymer/issues/1927)
## [v1.0.4](https://github.com/Polymer/polymer/tree/v1.0.4) (2015-06-17)
**Closed issues:**
- Error when i put a paper-input inside a paper-drawer-panel [\#1893](https://github.com/Polymer/polymer/issues/1893)
- Open the website country restrictions [\#1885](https://github.com/Polymer/polymer/issues/1885)
- Observers executed twice if defined in both the properties and the observers array [\#1884](https://github.com/Polymer/polymer/issues/1884)
- If I set element property before component registered I cannot change it anymore [\#1882](https://github.com/Polymer/polymer/issues/1882)
- Polymer icon set not scaling with size [\#1881](https://github.com/Polymer/polymer/issues/1881)
- How binding a JSON in Polymer 1.0 [\#1878](https://github.com/Polymer/polymer/issues/1878)
- Annotated attribute binding issues [\#1874](https://github.com/Polymer/polymer/issues/1874)
- Paper Elements don't appear on site [\#1868](https://github.com/Polymer/polymer/issues/1868)
- \[1.0\] Inserted content not toggled when inside dom-if [\#1862](https://github.com/Polymer/polymer/issues/1862)
- Polymer Catalog -- link-related usability issue [\#1860](https://github.com/Polymer/polymer/issues/1860)
- Issues with catalog on Chromium 37.0.2062.120, 41.0.2272.76, and Firefox 38.0 [\#1859](https://github.com/Polymer/polymer/issues/1859)
- documentation bug; search elements [\#1858](https://github.com/Polymer/polymer/issues/1858)
- can I two way binding a properties type of 'Number' to attribute? [\#1856](https://github.com/Polymer/polymer/issues/1856)
- 'this' points to Window rather than custom element when called through setTimeOut\(\) [\#1853](https://github.com/Polymer/polymer/issues/1853)
- Cannot define an element in the main document \(Firefox and Internet explorer\) [\#1850](https://github.com/Polymer/polymer/issues/1850)
- Feature: array variable accessor [\#1849](https://github.com/Polymer/polymer/issues/1849)
- Support for expressions and filters [\#1847](https://github.com/Polymer/polymer/issues/1847)
- key/value iteration support for template dom-repeat [\#1846](https://github.com/Polymer/polymer/issues/1846)
- Styling local DOM [\#1842](https://github.com/Polymer/polymer/issues/1842)
- Polymer bouded property not updating - or getting reset \(sometimes\) [\#1840](https://github.com/Polymer/polymer/issues/1840)
- insertRule\('body /deep/ myclass' + ' {' + cssText + '}', index\); throws error in ff and ie [\#1836](https://github.com/Polymer/polymer/issues/1836)
- this.insertRule\("body /deep/ someclass", index\); error [\#1835](https://github.com/Polymer/polymer/issues/1835)
- \<core-scaffold\> 0.5 toolbar background coloring broken [\#1834](https://github.com/Polymer/polymer/issues/1834)
- Radio buttons break when using border-box [\#1832](https://github.com/Polymer/polymer/issues/1832)
- polymer 1.0 how to use dom-if ? [\#1828](https://github.com/Polymer/polymer/issues/1828)
- Remove the undocumented "find nearest template" feature when registering [\#1827](https://github.com/Polymer/polymer/issues/1827)
- Remove `preventDefault` from track [\#1824](https://github.com/Polymer/polymer/issues/1824)
- Need a way to cancel track and tap from down [\#1823](https://github.com/Polymer/polymer/issues/1823)
- Computed bindings are not updated when using polymer's this.push to add elements [\#1822](https://github.com/Polymer/polymer/issues/1822)
- Two-way bindings to array members not updating when data edited in dom-repeat template \(bug or feature?\) [\#1821](https://github.com/Polymer/polymer/issues/1821)
- Binding undefined does not work as expected [\#1813](https://github.com/Polymer/polymer/issues/1813)
- Can't declare Boolean attributes with default of true? [\#1812](https://github.com/Polymer/polymer/issues/1812)
- array-selector doesn't work with `multi` unless `toggle` is specified [\#1810](https://github.com/Polymer/polymer/issues/1810)
- Style shim only converts a single ::shadow or /deep/ in a selector [\#1809](https://github.com/Polymer/polymer/issues/1809)
- Incorrect style for custom CSS properties when extending a native element [\#1807](https://github.com/Polymer/polymer/issues/1807)
- Document compatibility with browser [\#1805](https://github.com/Polymer/polymer/issues/1805)
- Unwrapped dom-if causes DOMException [\#1804](https://github.com/Polymer/polymer/issues/1804)
- \<template is=dom-if\> fails to add rows to a table if they contain \<content\> [\#1800](https://github.com/Polymer/polymer/issues/1800)
- Data binding causes infinite loop if value is NaN [\#1799](https://github.com/Polymer/polymer/issues/1799)
- Issues with polymer 1.0 dom-repeat templates using paper-radio-group and the selected property [\#1792](https://github.com/Polymer/polymer/issues/1792)
- bind attribute replacement [\#1790](https://github.com/Polymer/polymer/issues/1790)
- The Shadows sucks [\#1788](https://github.com/Polymer/polymer/issues/1788)
- Is there a list of Polymer 1.0 elements in the documentations? as it used to be 0.5! [\#1782](https://github.com/Polymer/polymer/issues/1782)
- Custom style variables for elements added outside of polymer [\#1781](https://github.com/Polymer/polymer/issues/1781)
- Can I recover the contaminated DOM? [\#1779](https://github.com/Polymer/polymer/issues/1779)
- \[1.0\] Data-binding: Is there any way to do this imperatively? [\#1778](https://github.com/Polymer/polymer/issues/1778)
- DATA-BINDING [\#1772](https://github.com/Polymer/polymer/issues/1772)
- \[1.0\] polymer attribute used in a string behaving differently from 0.5 [\#1770](https://github.com/Polymer/polymer/issues/1770)
- \[1.0.2\] Setting property treated as idempotent, but isn't [\#1768](https://github.com/Polymer/polymer/issues/1768)
- official element-table bower package [\#1767](https://github.com/Polymer/polymer/issues/1767)
- Shopping card polymer element [\#1766](https://github.com/Polymer/polymer/issues/1766)
- How to create a polymer element from iron-ajax element response [\#1764](https://github.com/Polymer/polymer/issues/1764)
- iron-collapse is focusable \(by clicking or tabbing into it\), which produces a focus outline in browsers [\#1760](https://github.com/Polymer/polymer/issues/1760)
- dom-repeat data binding: not working as expected [\#1758](https://github.com/Polymer/polymer/issues/1758)
- \[1.0.3\] Do not resolve hash-only urls used for routing [\#1757](https://github.com/Polymer/polymer/issues/1757)
- \[1.0.3\]Cannot start up after upgrade [\#1754](https://github.com/Polymer/polymer/issues/1754)
- Content nodes in `dom-if` template do not distribute correctly [\#1753](https://github.com/Polymer/polymer/issues/1753)
- overriding the custom css variables only works for the first dom element on the page [\#1752](https://github.com/Polymer/polymer/issues/1752)
- paper-checkbox should have an indeterminate state [\#1749](https://github.com/Polymer/polymer/issues/1749)
- nested dom-repeat with sort attribute shows duplicate entries when adding new items. [\#1744](https://github.com/Polymer/polymer/issues/1744)
- `attached` handler executed in wrong order in chrome browser. [\#1743](https://github.com/Polymer/polymer/issues/1743)
- \[1.0.2\] '$' is undefined when 'created' is being called [\#1728](https://github.com/Polymer/polymer/issues/1728)
- \[1.0\] ::before / ::after psudo selectors in a custom-style [\#1668](https://github.com/Polymer/polymer/issues/1668)
- Need Polymer.Base.unlisten to remove the event listener [\#1639](https://github.com/Polymer/polymer/issues/1639)
- custom-style sometimes does not apply variables [\#1637](https://github.com/Polymer/polymer/issues/1637)
- \[0.9.4\] Dom-if template doesn't stamp when its content contains a wrapped insertion point [\#1631](https://github.com/Polymer/polymer/issues/1631)
- With \<template if=\> missing how can I have several different styles applied? [\#1419](https://github.com/Polymer/polymer/issues/1419)
**Merged pull requests:**
- Includes element defaults in the list of own properties by which elements are styled. [\#1891](https://github.com/Polymer/polymer/pull/1891) ([sorvell](https://github.com/sorvell))
- Style shimming fixes [\#1857](https://github.com/Polymer/polymer/pull/1857) ([sorvell](https://github.com/sorvell))
- Clear composedNodes when an element upgrades without an insertion point [\#1845](https://github.com/Polymer/polymer/pull/1845) ([sorvell](https://github.com/sorvell))
- Allow user prevention of `tap` and `track` gestures from `down` [\#1843](https://github.com/Polymer/polymer/pull/1843) ([azakus](https://github.com/azakus))
- Fix incorrect test for `toggle`. Fixes \#1810. [\#1841](https://github.com/Polymer/polymer/pull/1841) ([arthurevans](https://github.com/arthurevans))
- Use var keyword when declaring local variable so it doesn't leak to global scope. [\#1838](https://github.com/Polymer/polymer/pull/1838) ([trevordixon](https://github.com/trevordixon))
- No implicit template \(fixes \#1827\) [\#1837](https://github.com/Polymer/polymer/pull/1837) ([sjmiles](https://github.com/sjmiles))
- Fix jsdoc for splice [\#1820](https://github.com/Polymer/polymer/pull/1820) ([jscissr](https://github.com/jscissr))
- Fix dynamic insertion of wrapped or redistributing content. [\#1816](https://github.com/Polymer/polymer/pull/1816) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Handle NaN correctly in bindings [\#1811](https://github.com/Polymer/polymer/pull/1811) ([azakus](https://github.com/azakus))
- Fix 1752 [\#1797](https://github.com/Polymer/polymer/pull/1797) ([sorvell](https://github.com/sorvell))
- Do not apply/notify keySplices if array has not been Collectionified. Fixes \#1744 [\#1795](https://github.com/Polymer/polymer/pull/1795) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Use gulp-vulcanize concurrently for faster builds [\#1793](https://github.com/Polymer/polymer/pull/1793) ([azakus](https://github.com/azakus))
- Fixes \#1757, do not resolve hash-only urls used for routing [\#1780](https://github.com/Polymer/polymer/pull/1780) ([nippur72](https://github.com/nippur72))
- Add `unlisten` function [\#1740](https://github.com/Polymer/polymer/pull/1740) ([azakus](https://github.com/azakus))
- Custom style fix [\#1638](https://github.com/Polymer/polymer/pull/1638) ([sorvell](https://github.com/sorvell))
## [v1.0.3](https://github.com/Polymer/polymer/tree/v1.0.3) (2015-06-05)
**Closed issues:**
- paper-toolbar \[title\] conflicts with HTML \[title\] [\#1745](https://github.com/Polymer/polymer/issues/1745)
- Bound data-\* attributes being stripped from template children [\#1737](https://github.com/Polymer/polymer/issues/1737)
- Polymer.Base.splice and dom-repeat [\#1733](https://github.com/Polymer/polymer/issues/1733)
- \[1.0.0\] Light DOM being replaced by shady DOM on ready [\#1732](https://github.com/Polymer/polymer/issues/1732)
- \[1.0.2\] Databinding and nested objects [\#1731](https://github.com/Polymer/polymer/issues/1731)
- Paper-tabs in Flexbox [\#1730](https://github.com/Polymer/polymer/issues/1730)
- When not including `webcomponentsjs`, a script in `\<head\>` after imports will break `unresolved` attribute [\#1723](https://github.com/Polymer/polymer/issues/1723)
- Create 1.0.x Release [\#1721](https://github.com/Polymer/polymer/issues/1721)
- RENAME listeners TO events [\#1719](https://github.com/Polymer/polymer/issues/1719)
- Uncaught TypeError When splicing an array into emptiness [\#1714](https://github.com/Polymer/polymer/issues/1714)
- Paper-Button references \<core-icon\> [\#1709](https://github.com/Polymer/polymer/issues/1709)
- Events for paper-menu or paper-item [\#1708](https://github.com/Polymer/polymer/issues/1708)
- Why is there no javascript file? [\#1707](https://github.com/Polymer/polymer/issues/1707)
- Evergreen browser incompatibility [\#1706](https://github.com/Polymer/polymer/issues/1706)
- \[1.0\] shady dom inserts '\<content\>' more than once [\#1704](https://github.com/Polymer/polymer/issues/1704)
- Issue running Polymer Started Kit 1.0.0 [\#1703](https://github.com/Polymer/polymer/issues/1703)
- iron-form body data malformed [\#1702](https://github.com/Polymer/polymer/issues/1702)
- \[1.0\] Attached callback is differently resolved on chrome and ff [\#1699](https://github.com/Polymer/polymer/issues/1699)
- Polymer 1.0 and WebComponents.js [\#1698](https://github.com/Polymer/polymer/issues/1698)
- \[dom-if\] is not as inert as \<template\> should be [\#1695](https://github.com/Polymer/polymer/issues/1695)
- can't use flex inside neon-animated-pages [\#1694](https://github.com/Polymer/polymer/issues/1694)
- Polymer::Attributes: couldn`t decode Array as JSON [\#1693](https://github.com/Polymer/polymer/issues/1693)
- Mobile links off homepage dont work [\#1692](https://github.com/Polymer/polymer/issues/1692)
- Computed property doesn't work in dom-repeat [\#1691](https://github.com/Polymer/polymer/issues/1691)
- core-animated-pages any plans? [\#1689](https://github.com/Polymer/polymer/issues/1689)
- Where's paper-dropdown-menu 1.0? [\#1684](https://github.com/Polymer/polymer/issues/1684)
- \[1.0\] dom-repeat observe non-array values [\#1683](https://github.com/Polymer/polymer/issues/1683)
- Element catalog, google-analytics, docs missing [\#1681](https://github.com/Polymer/polymer/issues/1681)
- Binding not working for open text [\#1677](https://github.com/Polymer/polymer/issues/1677)
- Blog link in README.md and CONTRIBUTING.md is wrong [\#1676](https://github.com/Polymer/polymer/issues/1676)
- Strange lines on polymer site menu [\#1675](https://github.com/Polymer/polymer/issues/1675)
- Need to parameterize path to fonts [\#1674](https://github.com/Polymer/polymer/issues/1674)
- How to add dynamic classes in dom-repeat 1.0 [\#1671](https://github.com/Polymer/polymer/issues/1671)
- Array mutation without using helper methods [\#1666](https://github.com/Polymer/polymer/issues/1666)
- Wrapping non interpolated strings with span in 1.0 [\#1664](https://github.com/Polymer/polymer/issues/1664)
- dom-if template got rendered once even if the condition is false [\#1663](https://github.com/Polymer/polymer/issues/1663)
- Cannot read property 'slice' of undefined on firebase update [\#1661](https://github.com/Polymer/polymer/issues/1661)
- \[1.0.2\] Global leak found in \_marshalArgs [\#1660](https://github.com/Polymer/polymer/issues/1660)
- \[1.0\] Changes in appendChild from 0.9 to 1.0? [\#1657](https://github.com/Polymer/polymer/issues/1657)
- Using scroll header panel together with dialog will cause backdrop to cover up dialog [\#1656](https://github.com/Polymer/polymer/issues/1656)
- Color Extraction [\#1654](https://github.com/Polymer/polymer/issues/1654)
- using AngularJS with paper elements [\#1649](https://github.com/Polymer/polymer/issues/1649)
- Gestures event issue - No offsets management [\#1646](https://github.com/Polymer/polymer/issues/1646)
- \[0.9\] event on-blur does not work on paper-input [\#1634](https://github.com/Polymer/polymer/issues/1634)
- \[0.9.4\] Nested dom-if templates show invalid content [\#1632](https://github.com/Polymer/polymer/issues/1632)
- paper-slider input box overflow. [\#1611](https://github.com/Polymer/polymer/issues/1611)
- \[0.9\] Documentation issue \(unbind & dispose\) [\#1607](https://github.com/Polymer/polymer/issues/1607)
- Better dependency management [\#1592](https://github.com/Polymer/polymer/issues/1592)
**Merged pull requests:**
- Make \_\_styleScoped a one-time optimization. Fixes \#1733 [\#1739](https://github.com/Polymer/polymer/pull/1739) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Move non-webcomponents script unresolved case to `load` instead of synchronous [\#1724](https://github.com/Polymer/polymer/pull/1724) ([azakus](https://github.com/azakus))
- Fix for IE. [\#1717](https://github.com/Polymer/polymer/pull/1717) ([achimnol](https://github.com/achimnol))
- Fix broken link [\#1688](https://github.com/Polymer/polymer/pull/1688) ([weiland](https://github.com/weiland))
- Fix syntax highlighting [\#1687](https://github.com/Polymer/polymer/pull/1687) ([weiland](https://github.com/weiland))
- Fixes link license [\#1685](https://github.com/Polymer/polymer/pull/1685) ([mateusortiz](https://github.com/mateusortiz))
- fixed a little typo [\#1682](https://github.com/Polymer/polymer/pull/1682) ([fredpedro](https://github.com/fredpedro))
- fix html comment in README.md [\#1680](https://github.com/Polymer/polymer/pull/1680) ([campersau](https://github.com/campersau))
- Changed to https like other links [\#1653](https://github.com/Polymer/polymer/pull/1653) ([henricavalcante](https://github.com/henricavalcante))
- dom-if hidden state is \(this.\_hideTemplateChildren || !this.if\). [\#1635](https://github.com/Polymer/polymer/pull/1635) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Re-insert rows when re-attaching. Fixes \#1498. Fixes \#1714. [\#1629](https://github.com/Polymer/polymer/pull/1629) ([kevinpschaaf](https://github.com/kevinpschaaf))
## [v1.0.2](https://github.com/Polymer/polymer/tree/v1.0.2) (2015-05-29)
## [v1.0.1](https://github.com/Polymer/polymer/tree/v1.0.1) (2015-05-29)
**Implemented enhancements:**
- using javascript core functions [\#1641](https://github.com/Polymer/polymer/issues/1641)
**Fixed bugs:**
- \[1.0\] Tap gesture does not trigger when calling `this.click` in IE10 [\#1640](https://github.com/Polymer/polymer/issues/1640)
**Closed issues:**
- Logic for tap distance should be "both axes within TAP\_DISTANCE" [\#1652](https://github.com/Polymer/polymer/issues/1652)
- Site is not looking good in Mac Chrome Versión 43.0.2357.81 \(64-bit\) [\#1650](https://github.com/Polymer/polymer/issues/1650)
- Different result is shown. [\#1647](https://github.com/Polymer/polymer/issues/1647)
- Wrong end tag name in README.md [\#1645](https://github.com/Polymer/polymer/issues/1645)
- on-tap doesn't trigger on checkbox 0.5 [\#1586](https://github.com/Polymer/polymer/issues/1586)
**Merged pull requests:**
- I want to put a space before Jim. [\#1648](https://github.com/Polymer/polymer/pull/1648) ([yutori](https://github.com/yutori))
- Fixes link url [\#1643](https://github.com/Polymer/polymer/pull/1643) ([zenorocha](https://github.com/zenorocha))
- Fixes typo [\#1642](https://github.com/Polymer/polymer/pull/1642) ([zenorocha](https://github.com/zenorocha))
- updated readme and added contributing file [\#1628](https://github.com/Polymer/polymer/pull/1628) ([tjsavage](https://github.com/tjsavage))
## [v1.0.0](https://github.com/Polymer/polymer/tree/v1.0.0) (2015-05-27)
**Closed issues:**
- \[0.9.4\] Data binding works only for "id" attribute? [\#1633](https://github.com/Polymer/polymer/issues/1633)
- \[0.9\] when I move a dom-repeat element from one parent to another, the items will gone [\#1498](https://github.com/Polymer/polymer/issues/1498)
## [v0.9.4](https://github.com/Polymer/polymer/tree/v0.9.4) (2015-05-27)
**Closed issues:**
- Polymer.version undefined in 0.9 [\#1625](https://github.com/Polymer/polymer/issues/1625)
**Merged pull requests:**
- Add back Polymer.version string [\#1626](https://github.com/Polymer/polymer/pull/1626) ([azakus](https://github.com/azakus))
## [v0.9.3](https://github.com/Polymer/polymer/tree/v0.9.3) (2015-05-26)
**Closed issues:**
- Property values that contain a `:` inside a mixin. [\#1623](https://github.com/Polymer/polymer/issues/1623)
- \[0.9.2\] dom-repeat issues in 0.9.2 [\#1615](https://github.com/Polymer/polymer/issues/1615)
- \[0.9.1, 0.9.2\] Polymer.dom\(\).appendChild\(\) no longer working [\#1612](https://github.com/Polymer/polymer/issues/1612)
- \[0.9\] "dom-if" not binding to an object's boolean property [\#1606](https://github.com/Polymer/polymer/issues/1606)
- \[0.9\] Custom attributes on elements not working \(original: iron-icon styling troubles\) [\#1604](https://github.com/Polymer/polymer/issues/1604)
- Blog down https://blog.polymer-project.org/ [\#1603](https://github.com/Polymer/polymer/issues/1603)
- Improve error message if observer is missing [\#1538](https://github.com/Polymer/polymer/issues/1538)
- \[0.9\] New gulp build hangs until enter key is pressed [\#1519](https://github.com/Polymer/polymer/issues/1519)
- \[0.8\] better error when bound change handler is missing [\#1206](https://github.com/Polymer/polymer/issues/1206)
**Merged pull requests:**
- Fixes url's in style mixins. [\#1624](https://github.com/Polymer/polymer/pull/1624) ([sorvell](https://github.com/sorvell))
- Initialize \_config with values set before creating accessors. [\#1618](https://github.com/Polymer/polymer/pull/1618) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Update docs. Add warnings. [\#1614](https://github.com/Polymer/polymer/pull/1614) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Refactor build process [\#1613](https://github.com/Polymer/polymer/pull/1613) ([azakus](https://github.com/azakus))
## [v0.9.2](https://github.com/Polymer/polymer/tree/v0.9.2) (2015-05-25)
**Fixed bugs:**
- Default values for custom variables [\#1543](https://github.com/Polymer/polymer/issues/1543)
**Closed issues:**
- \[0.9.1\] Regression in styling with custom css mixins [\#1601](https://github.com/Polymer/polymer/issues/1601)
- Dynamic distribution fails when using SD polyfill and host is nested in another host and has filtering insertion points [\#1595](https://github.com/Polymer/polymer/issues/1595)
- Custom properties defined on `:host` shouldn't override document styles. [\#1555](https://github.com/Polymer/polymer/issues/1555)
**Merged pull requests:**
- Native xstyle fix [\#1605](https://github.com/Polymer/polymer/pull/1605) ([sorvell](https://github.com/sorvell))
- Xstyle 1555 [\#1602](https://github.com/Polymer/polymer/pull/1602) ([sorvell](https://github.com/sorvell))
## [v0.9.1](https://github.com/Polymer/polymer/tree/v0.9.1) (2015-05-23)
**Implemented enhancements:**
- Array helpers don't notify length change [\#1573](https://github.com/Polymer/polymer/issues/1573)
- \[0.9.0-rc.1\] Method expression without arguments is not invoked [\#1516](https://github.com/Polymer/polymer/issues/1516)
- \[0.8\] Polymer.dom\(\) should expose innerHTML and textContent [\#1429](https://github.com/Polymer/polymer/issues/1429)
- How do you cancel job1 completely before its timeout value occur? [\#1374](https://github.com/Polymer/polymer/issues/1374)
- \[0.8\] Feature request: computed properties in x-repeat [\#1337](https://github.com/Polymer/polymer/issues/1337)
**Fixed bugs:**
- Computed properties with no dependencies generate a syntax error [\#1348](https://github.com/Polymer/polymer/issues/1348)
- \[0.8\] host-context improperly shimmed [\#1346](https://github.com/Polymer/polymer/issues/1346)
**Closed issues:**
- Tap event not firing the first time after tracking another element [\#1590](https://github.com/Polymer/polymer/issues/1590)
- domReady [\#1587](https://github.com/Polymer/polymer/issues/1587)
- Content tag does not work inside dom-if template [\#1584](https://github.com/Polymer/polymer/issues/1584)
- /deep/ css selector not work in chrome browser [\#1583](https://github.com/Polymer/polymer/issues/1583)
- Under native ShadowDOM "dom-if" doesn't stamp out the content even when "if" property is true [\#1582](https://github.com/Polymer/polymer/issues/1582)
- Iron-Input hint not turning into label on ChromeBook apps [\#1581](https://github.com/Polymer/polymer/issues/1581)
- Binding text remains in \<input value="{{value::input}}"\> on IE10 [\#1578](https://github.com/Polymer/polymer/issues/1578)
- \[0.9\] Extends delays/breaks polymer element setup [\#1575](https://github.com/Polymer/polymer/issues/1575)
- \[0.9\] Gesture event throws exception when dragged outside document [\#1574](https://github.com/Polymer/polymer/issues/1574)
- dom-repeat filter/sort needs to be able to observe parent scope [\#1572](https://github.com/Polymer/polymer/issues/1572)
- Logical Operators doesn't work anymore in 0.9 [\#1568](https://github.com/Polymer/polymer/issues/1568)
- Reposted from Angular Issue \#1723: Unable to define correct CSS @Rules when CSS shimming is enabled [\#1566](https://github.com/Polymer/polymer/issues/1566)
- \[0.9.0\] Problem putting a dom-if template in a light DOM when the component's \<content\> itself is wrapped in a dom-if [\#1565](https://github.com/Polymer/polymer/issues/1565)
- hypergrid is a polymer custom component [\#1561](https://github.com/Polymer/polymer/issues/1561)
- serializeValueToAttribute returns undefined [\#1559](https://github.com/Polymer/polymer/issues/1559)
- Offsetting core drawer panel [\#1557](https://github.com/Polymer/polymer/issues/1557)
- \[0.9\] How to dynamically import elements? [\#1554](https://github.com/Polymer/polymer/issues/1554)
- Release process should have change log [\#1553](https://github.com/Polymer/polymer/issues/1553)
- \[0.9\] on-click="kickAction\(\)" [\#1552](https://github.com/Polymer/polymer/issues/1552)
- Layout functionality in 0.9 [\#1551](https://github.com/Polymer/polymer/issues/1551)
- \[0.9\] hostAttributes: Noooooooo! [\#1549](https://github.com/Polymer/polymer/issues/1549)
- \[0.9\] hidden$="{{isHidden}}" vs hidden=$"{{isHidden}}" [\#1548](https://github.com/Polymer/polymer/issues/1548)
- seems that case sensitive properties doesn't work [\#1547](https://github.com/Polymer/polymer/issues/1547)
- webcomponents loading order [\#1544](https://github.com/Polymer/polymer/issues/1544)
- Data-binding to native DOM element inside of auto-binding template invokes style scoping [\#1542](https://github.com/Polymer/polymer/issues/1542)
- 0.9 zip file nearly empty [\#1541](https://github.com/Polymer/polymer/issues/1541)
- Polymer.dom\(parent\).querySelector polyfill is broken in 0.8 [\#1540](https://github.com/Polymer/polymer/issues/1540)
- Imported resource from origin 'file://' has been blocked from loading by Cross-Origin Resource Sharing policy: Received an invalid response. Origin 'null' is therefore not allowed access. [\#1535](https://github.com/Polymer/polymer/issues/1535)
- \[0.9.0-rc.1\] Cannot set property 'touchAction' of undefinedGestures.setTouchAction [\#1533](https://github.com/Polymer/polymer/issues/1533)
- Could I disable the two-way binding? [\#1529](https://github.com/Polymer/polymer/issues/1529)
- \[0.9\] Can't override the css property if the property is already set on the host via custom property [\#1525](https://github.com/Polymer/polymer/issues/1525)
- \[0.5.6\] Hang in loading polymer [\#1524](https://github.com/Polymer/polymer/issues/1524)
- \[0.0.9-rc.1\] Array changes event is not delivered [\#1523](https://github.com/Polymer/polymer/issues/1523)
- \[0.9\] dom-bind not working with document.createElement [\#1515](https://github.com/Polymer/polymer/issues/1515)
- Please, more info about new releases [\#1507](https://github.com/Polymer/polymer/issues/1507)
- \[0.9\] Annotated computed properties don't work on autobinding template [\#1500](https://github.com/Polymer/polymer/issues/1500)
- Upgrade from polymer 0.5 to 0.8 [\#1492](https://github.com/Polymer/polymer/issues/1492)
- \[0.8\] Binding a property with value 'undefined' to an input value on IE11 shows the raw binding [\#1491](https://github.com/Polymer/polymer/issues/1491)
- \[0.8\] SVG elements fail on IE11 due to missing classList [\#1490](https://github.com/Polymer/polymer/issues/1490)
- Cross domain HTML import [\#1489](https://github.com/Polymer/polymer/issues/1489)
- Using Polymer with NW.js [\#1481](https://github.com/Polymer/polymer/issues/1481)
- 0.9: String literals as parameters of computed properties [\#1475](https://github.com/Polymer/polymer/issues/1475)
- Inheritance of CSS Variables [\#1470](https://github.com/Polymer/polymer/issues/1470)
- support data binding with ES6 module? [\#1465](https://github.com/Polymer/polymer/issues/1465)
- \[0.8\] IE9 styles broken [\#1464](https://github.com/Polymer/polymer/issues/1464)
- how to get polymer and requirejs working together? [\#1463](https://github.com/Polymer/polymer/issues/1463)
- .8 domReady never being called [\#1460](https://github.com/Polymer/polymer/issues/1460)
- TODO in polymer.js references fixed bug [\#1457](https://github.com/Polymer/polymer/issues/1457)
- \[0.8\] Self-closing p tag breaks template [\#1455](https://github.com/Polymer/polymer/issues/1455)
- \[0.8\] x-repeat failing to stamp instances on safari [\#1443](https://github.com/Polymer/polymer/issues/1443)
- \[0.8\] `\<content select=".class"\>` and `hostAttributes` don't work together [\#1431](https://github.com/Polymer/polymer/issues/1431)
- \[0.8\] Binding to "id" is not working [\#1426](https://github.com/Polymer/polymer/issues/1426)
- Event handlers within x-repeat always target the first instance of an element [\#1425](https://github.com/Polymer/polymer/issues/1425)
- \[0.8\] host, port, etc are reserved for anchor elements; let's avoid them [\#1417](https://github.com/Polymer/polymer/issues/1417)
- \[0.8\] IE11 displays and then hides Custom Elements [\#1412](https://github.com/Polymer/polymer/issues/1412)
- \[0.8\] x-repeat objectizes arrays of strings [\#1411](https://github.com/Polymer/polymer/issues/1411)
- \[0.8\] style scope missing [\#1410](https://github.com/Polymer/polymer/issues/1410)
- Polymer 0.8 cant bind to array item. [\#1409](https://github.com/Polymer/polymer/issues/1409)
- \[0.8\]\[styling\] Want to define custom variables in the same scope as their references [\#1406](https://github.com/Polymer/polymer/issues/1406)
- \[0.8\]\[styling\] Should be able to mixin sibling properties [\#1399](https://github.com/Polymer/polymer/issues/1399)
- \[0.8\] Properties deserialized from native inputs lose their type [\#1396](https://github.com/Polymer/polymer/issues/1396)
- Shady DOM doesn't correctly parse custom property rules. [\#1389](https://github.com/Polymer/polymer/issues/1389)
- Shady DOM custom properties don't inherit. [\#1388](https://github.com/Polymer/polymer/issues/1388)
- \[0.8\] dom-module nice but not perfect [\#1380](https://github.com/Polymer/polymer/issues/1380)
- \[0.8\] notify: true Bad idea unless it has a huge performance gain [\#1379](https://github.com/Polymer/polymer/issues/1379)
- Style mixin syntax is incompatible with Sass [\#1373](https://github.com/Polymer/polymer/issues/1373)
- \[x-repeat\] can't bind to childNodes under Shadow DOM [\#1367](https://github.com/Polymer/polymer/issues/1367)
- \[0.8\] - default property values are not set by the time observers are called [\#1364](https://github.com/Polymer/polymer/issues/1364)
- \[0.8\]: observer callbacks changed parameter ordering [\#1363](https://github.com/Polymer/polymer/issues/1363)
- \[0.8\] HTMLAnchor has a `host` property, breaks the intended behavior of `Polymer.Base.\_queryHost` [\#1359](https://github.com/Polymer/polymer/issues/1359)
- \[0.8\] Style scoped immediate descendant selector no longer matches projected content [\#1312](https://github.com/Polymer/polymer/issues/1312)
- Spaces in binding causes SyntaxError: Unexpected identifier. [\#1311](https://github.com/Polymer/polymer/issues/1311)
- Tracking issue: Supporting CSP in 0.8+ [\#1306](https://github.com/Polymer/polymer/issues/1306)
- \[0.8\] `readOnly` property without `notify` will not be `readOnly` [\#1294](https://github.com/Polymer/polymer/issues/1294)
- Shady styling increases selector specificity [\#1279](https://github.com/Polymer/polymer/issues/1279)
- \[0.8\] body unresolved broken [\#1271](https://github.com/Polymer/polymer/issues/1271)
- \[0.8\] accidental shared state in configure value? [\#1269](https://github.com/Polymer/polymer/issues/1269)
- \[0.8\] Properties observers registered too early [\#1258](https://github.com/Polymer/polymer/issues/1258)
- \[0.8\] Polymer.import missing [\#1248](https://github.com/Polymer/polymer/issues/1248)
- \[0.8\] Consider always assigning to native properties [\#1226](https://github.com/Polymer/polymer/issues/1226)
**Merged pull requests:**
- Notify array.length changes. Fixes \#1573. [\#1600](https://github.com/Polymer/polymer/pull/1600) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Make `dom-bind` not scope element classes. Fixes \#1542 [\#1599](https://github.com/Polymer/polymer/pull/1599) ([sorvell](https://github.com/sorvell))
- 1565,1582,1584 fix [\#1597](https://github.com/Polymer/polymer/pull/1597) ([sorvell](https://github.com/sorvell))
- Wait until imports resolve to stamp. Fixes \#1500 [\#1594](https://github.com/Polymer/polymer/pull/1594) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Perform dom-bind work in attached/detached. Add tests. [\#1591](https://github.com/Polymer/polymer/pull/1591) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Clear input.value attribute before removing for IE. Fixes \#1491. Fixe… [\#1589](https://github.com/Polymer/polymer/pull/1589) ([kevinpschaaf](https://github.com/kevinpschaaf))
- iterate behavior mixins in reverse order as the `hasOwnProperty` chec… [\#1588](https://github.com/Polymer/polymer/pull/1588) ([sjmiles](https://github.com/sjmiles))
- serializeValueToAttribute always provokes distribute if necessary [\#1580](https://github.com/Polymer/polymer/pull/1580) ([sorvell](https://github.com/sorvell))
- Use more resilient shadowroot checking [\#1579](https://github.com/Polymer/polymer/pull/1579) ([azakus](https://github.com/azakus))
- Literal args comma fix [\#1577](https://github.com/Polymer/polymer/pull/1577) ([sjmiles](https://github.com/sjmiles))
- allow behavior arrays to contain nested behavior arrays [\#1576](https://github.com/Polymer/polymer/pull/1576) ([sjmiles](https://github.com/sjmiles))
- X style fixes [\#1570](https://github.com/Polymer/polymer/pull/1570) ([sorvell](https://github.com/sorvell))
- Fix typo in PRIMER.md [\#1569](https://github.com/Polymer/polymer/pull/1569) ([ragingwind](https://github.com/ragingwind))
- Remove unused keyCodes enum [\#1564](https://github.com/Polymer/polymer/pull/1564) ([jklein24](https://github.com/jklein24))
- Xstyle [\#1556](https://github.com/Polymer/polymer/pull/1556) ([sorvell](https://github.com/sorvell))
## [v0.9.0](https://github.com/Polymer/polymer/tree/v0.9.0) (2015-05-14)
**Implemented enhancements:**
- Expose dom-repeat.\_instanceForElement [\#1501](https://github.com/Polymer/polymer/issues/1501)
**Closed issues:**
- Change color of main panel [\#1536](https://github.com/Polymer/polymer/issues/1536)
- \[0.8.0-rc.5\] observers as an array [\#1527](https://github.com/Polymer/polymer/issues/1527)
- \[0.9\] Touch scroll gesture, setScrollDirection doesn't work any longer [\#1520](https://github.com/Polymer/polymer/issues/1520)
- \[0.9\] Data binding? [\#1517](https://github.com/Polymer/polymer/issues/1517)
- `this.$.\*` isn't set if an element \* is inside a `dom-if` block and the condition evaluates to true [\#1513](https://github.com/Polymer/polymer/issues/1513)
- Paper-action-dialog with backdrop disables window [\#1509](https://github.com/Polymer/polymer/issues/1509)
- How to pass data from polymer element [\#1503](https://github.com/Polymer/polymer/issues/1503)
- \[0.9\] auto-binding, x-repeat template not working [\#1502](https://github.com/Polymer/polymer/issues/1502)
- \[0.9\] if="{{ 1 \< 2 }}" not supported?! [\#1499](https://github.com/Polymer/polymer/issues/1499)
- \[0.9\] touch track fails on iPhone, .touchIdentifier vs .identifier [\#1496](https://github.com/Polymer/polymer/issues/1496)
- Internet Explorer 11 "Failed to open data:text/javascript;charset=utf-8," [\#1485](https://github.com/Polymer/polymer/issues/1485)
- \[0.5.5\] Function calling is not working in custom element [\#1484](https://github.com/Polymer/polymer/issues/1484)
- \[0.8\] Nested insertion points lose elements after distributeContent [\#1480](https://github.com/Polymer/polymer/issues/1480)
- \[0.8\] Binding the value of an input box with {{value::input}} loses caret index [\#1471](https://github.com/Polymer/polymer/issues/1471)
- \[0.8\] Nested property binding not working on Firefox/IE [\#1391](https://github.com/Polymer/polymer/issues/1391)
- Memory Leak when using Data Bindings [\#1116](https://github.com/Polymer/polymer/issues/1116)
**Merged pull requests:**
- Update to wcjs 0.7.0. [\#1532](https://github.com/Polymer/polymer/pull/1532) ([kevinpschaaf](https://github.com/kevinpschaaf))
- 0.8 negate annotated computation [\#1528](https://github.com/Polymer/polymer/pull/1528) ([sjmiles](https://github.com/sjmiles))
- Add commands to test build [\#1522](https://github.com/Polymer/polymer/pull/1522) ([azakus](https://github.com/azakus))
- Implement a minimum track distance [\#1518](https://github.com/Polymer/polymer/pull/1518) ([azakus](https://github.com/azakus))
- Process nested templates in base, parse method args for parentProps. [\#1514](https://github.com/Polymer/polymer/pull/1514) ([kevinpschaaf](https://github.com/kevinpschaaf))
- trasnacted -\> transacted in PRIMER.md [\#1512](https://github.com/Polymer/polymer/pull/1512) ([Shrugs](https://github.com/Shrugs))
- Add missing comma in code example [\#1510](https://github.com/Polymer/polymer/pull/1510) ([fredj](https://github.com/fredj))
- 0.8 shady api [\#1508](https://github.com/Polymer/polymer/pull/1508) ([sorvell](https://github.com/sorvell))
- Fix dom-module closing tag [\#1497](https://github.com/Polymer/polymer/pull/1497) ([fredj](https://github.com/fredj))
- Add more docs for Gestures [\#1495](https://github.com/Polymer/polymer/pull/1495) ([azakus](https://github.com/azakus))
- Fix nits from \#1486 [\#1494](https://github.com/Polymer/polymer/pull/1494) ([azakus](https://github.com/azakus))
- Change x-style to custom-style in comments [\#1493](https://github.com/Polymer/polymer/pull/1493) ([chuckh](https://github.com/chuckh))
## [v0.9.0-rc.1](https://github.com/Polymer/polymer/tree/v0.9.0-rc.1) (2015-05-06)
**Merged pull requests:**
- Rename x-\* elements. [\#1488](https://github.com/Polymer/polymer/pull/1488) ([sorvell](https://github.com/sorvell))
- 0.8 lexical template scope [\#1487](https://github.com/Polymer/polymer/pull/1487) ([kevinpschaaf](https://github.com/kevinpschaaf))
- 0.8 gestures in core [\#1486](https://github.com/Polymer/polymer/pull/1486) ([sjmiles](https://github.com/sjmiles))
## [0.5.6](https://github.com/Polymer/polymer/tree/0.5.6) (2015-05-05)
**Implemented enhancements:**
- \[0.8\] `hostAttributes` should respect user-provided defaults [\#1458](https://github.com/Polymer/polymer/issues/1458)
**Closed issues:**
- Unable to connect to github.com... [\#1468](https://github.com/Polymer/polymer/issues/1468)
- error using mixins as computed property or in template methods in 0.8.0-rc.7 [\#1456](https://github.com/Polymer/polymer/issues/1456)
- \[0.8\] observers as an object. [\#1452](https://github.com/Polymer/polymer/issues/1452)
- \[0.8\] getDistributedNodes\(\) does not update when distributed content changes [\#1449](https://github.com/Polymer/polymer/issues/1449)
- \[0.8\] behaviors override properties on elements [\#1444](https://github.com/Polymer/polymer/issues/1444)
- \[0.8\] bower.json license does not follow specification [\#1435](https://github.com/Polymer/polymer/issues/1435)
- Error in 0.8 RC6 - not present in RC4 [\#1428](https://github.com/Polymer/polymer/issues/1428)
- \[0.8\] Support :root in x-style [\#1415](https://github.com/Polymer/polymer/issues/1415)
- \[0.8\] 'style-scope undefined' when combined with hostAttributes and x-if template [\#1400](https://github.com/Polymer/polymer/issues/1400)
- \[0.8\] `\<link rel="import" type="css"\>` styles are shimmed out of order [\#1349](https://github.com/Polymer/polymer/issues/1349)
- Polymer 0.5.2 release have version 0.5.1 [\#1033](https://github.com/Polymer/polymer/issues/1033)
**Merged pull requests:**
- 0.8 x style [\#1482](https://github.com/Polymer/polymer/pull/1482) ([sorvell](https://github.com/sorvell))
- Fix translate3d call after transform refactor [\#1478](https://github.com/Polymer/polymer/pull/1478) ([azakus](https://github.com/azakus))
- 0.8 array notification [\#1477](https://github.com/Polymer/polymer/pull/1477) ([kevinpschaaf](https://github.com/kevinpschaaf))
- don't trap `id` for marshalling if it's a binding directive + test [\#1474](https://github.com/Polymer/polymer/pull/1474) ([sjmiles](https://github.com/sjmiles))
- use `hasOwnProperty` to avoid overwriting prototype methods when mixing in behaviors \(+test\) [\#1473](https://github.com/Polymer/polymer/pull/1473) ([sjmiles](https://github.com/sjmiles))
- 0.8 fix xif polyfill [\#1469](https://github.com/Polymer/polymer/pull/1469) ([kevinpschaaf](https://github.com/kevinpschaaf))
- 0.8 patching [\#1462](https://github.com/Polymer/polymer/pull/1462) ([sorvell](https://github.com/sorvell))
- 0.8 api scrub [\#1440](https://github.com/Polymer/polymer/pull/1440) ([kevinpschaaf](https://github.com/kevinpschaaf))
- typo in PRIMER.md [\#1430](https://github.com/Polymer/polymer/pull/1430) ([batista](https://github.com/batista))
- Build polymer 0.8. [\#1402](https://github.com/Polymer/polymer/pull/1402) ([garlicnation](https://github.com/garlicnation))
## [v0.8.0-rc.7](https://github.com/Polymer/polymer/tree/v0.8.0-rc.7) (2015-04-22)
**Closed issues:**
- \[0.8\] `readOnly` properties do not receive the initial value specified by `value` [\#1393](https://github.com/Polymer/polymer/issues/1393)
**Merged pull requests:**
- Fixes style scoping when elements are stamped inside repeats. [\#1439](https://github.com/Polymer/polymer/pull/1439) ([sorvell](https://github.com/sorvell))
- 0.8 repeat fixes [\#1438](https://github.com/Polymer/polymer/pull/1438) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Change user `constructor` to `factoryImpl` as an aid to compilation tool... [\#1437](https://github.com/Polymer/polymer/pull/1437) ([sorvell](https://github.com/sorvell))
- No more circular dependencies, because bower. [\#1436](https://github.com/Polymer/polymer/pull/1436) ([nevir](https://github.com/nevir))
- 0.8 behaviors [\#1433](https://github.com/Polymer/polymer/pull/1433) ([kevinpschaaf](https://github.com/kevinpschaaf))
- defeated -\> disabled [\#1423](https://github.com/Polymer/polymer/pull/1423) ([MetaMemoryT](https://github.com/MetaMemoryT))
## [v0.8.0-rc.6](https://github.com/Polymer/polymer/tree/v0.8.0-rc.6) (2015-04-20)
## [v0.8.0-rc.5](https://github.com/Polymer/polymer/tree/v0.8.0-rc.5) (2015-04-20)
**Closed issues:**
- \[0.8\] Global settings overwritten by webcomponents [\#1404](https://github.com/Polymer/polymer/issues/1404)
- \[0.8\] distributeContent loses light children [\#1394](https://github.com/Polymer/polymer/issues/1394)
- \[ShadyDOM\] Exception when removing non-distributed nodes [\#1366](https://github.com/Polymer/polymer/issues/1366)
**Merged pull requests:**
- 0.8 path effects [\#1422](https://github.com/Polymer/polymer/pull/1422) ([kevinpschaaf](https://github.com/kevinpschaaf))
- 0.8 nested template [\#1398](https://github.com/Polymer/polymer/pull/1398) ([kevinpschaaf](https://github.com/kevinpschaaf))
- 0.8 shim class [\#1397](https://github.com/Polymer/polymer/pull/1397) ([sorvell](https://github.com/sorvell))
- \<iron-doc-viewer\> based index for local dev [\#1395](https://github.com/Polymer/polymer/pull/1395) ([nevir](https://github.com/nevir))
- Add license to css-parse.html [\#1378](https://github.com/Polymer/polymer/pull/1378) ([garlicnation](https://github.com/garlicnation))
## [v0.8.0-rc.4](https://github.com/Polymer/polymer/tree/v0.8.0-rc.4) (2015-04-10)
## [v0.8.0-rc.3](https://github.com/Polymer/polymer/tree/v0.8.0-rc.3) (2015-04-09)
**Closed issues:**
- Polymer-micro.html broken? [\#1390](https://github.com/Polymer/polymer/issues/1390)
- listener for DOMContentLoaded and window resize [\#1384](https://github.com/Polymer/polymer/issues/1384)
- \[0.8\] Opting into native Shadow DOM isn't documented [\#1382](https://github.com/Polymer/polymer/issues/1382)
- Polymer in 10 Minutes - 3. Create an app [\#1371](https://github.com/Polymer/polymer/issues/1371)
- Polymer in 10 Minutes - Reusing other elements [\#1370](https://github.com/Polymer/polymer/issues/1370)
- \[0.5.5\] Event fire error on safari [\#1362](https://github.com/Polymer/polymer/issues/1362)
- \[0.8\] importHref fails in IE/FF [\#1343](https://github.com/Polymer/polymer/issues/1343)
- Attribute Value of "selected" in the tutorial [\#1228](https://github.com/Polymer/polymer/issues/1228)
**Merged pull requests:**
- 0.8 machined [\#1386](https://github.com/Polymer/polymer/pull/1386) ([sorvell](https://github.com/sorvell))
- Clarify concept of host to mean dom host. Related: [\#1372](https://github.com/Polymer/polymer/pull/1372) ([sorvell](https://github.com/sorvell))
## [v0.8.0-rc.2](https://github.com/Polymer/polymer/tree/v0.8.0-rc.2) (2015-04-02)
**Closed issues:**
- \[0.8\] Using one-way binding to propagate upward [\#1360](https://github.com/Polymer/polymer/issues/1360)
## [v0.8.0](https://github.com/Polymer/polymer/tree/v0.8.0) (2015-04-02)
**Implemented enhancements:**
- \[Shadow DOM\] Make Shadow DOM optional [\#1042](https://github.com/Polymer/polymer/issues/1042)
**Closed issues:**
- \[0.8\] extended my-input element isn't shown [\#1350](https://github.com/Polymer/polymer/issues/1350)
- Polymer function not accessible in firefox/safari [\#1316](https://github.com/Polymer/polymer/issues/1316)
**Merged pull requests:**
- Fix undeclared variable exception in \_distributeInsertionPoint. [\#1351](https://github.com/Polymer/polymer/pull/1351) ([icetraxx](https://github.com/icetraxx))
- 0.8 custom notify event [\#1335](https://github.com/Polymer/polymer/pull/1335) ([kevinpschaaf](https://github.com/kevinpschaaf))
## [v0.8.0-rc.1](https://github.com/Polymer/polymer/tree/v0.8.0-rc.1) (2015-03-26)
**Fixed bugs:**
- \[0.8-preview\] Throws exception if left-hand-side of a property binding contains a dash [\#1161](https://github.com/Polymer/polymer/issues/1161)
- Bindings in \<style\> no longer work under polyfill [\#270](https://github.com/Polymer/polymer/issues/270)
**Closed issues:**
- core-list needs your attention [\#1333](https://github.com/Polymer/polymer/issues/1333)
- Icons oversized on Firefox on polymer-project.org [\#1328](https://github.com/Polymer/polymer/issues/1328)
- \[0.8\] Unable to observe property 'hidden' [\#1322](https://github.com/Polymer/polymer/issues/1322)
- \[0.8\] Unexpected token \] [\#1298](https://github.com/Polymer/polymer/issues/1298)
- \[0.8\] Text bindings break if parenthesis are used [\#1297](https://github.com/Polymer/polymer/issues/1297)
- \[0.8\] Shady style processor doesn't drop operator for ::content [\#1293](https://github.com/Polymer/polymer/issues/1293)
- Polymer layout collision with another frameworks like Angular Material [\#1289](https://github.com/Polymer/polymer/issues/1289)
- Polymer Project Site - Broken Link [\#1288](https://github.com/Polymer/polymer/issues/1288)
- core-ajax [\#1287](https://github.com/Polymer/polymer/issues/1287)
- demo portions of documentation are missing/404 [\#1286](https://github.com/Polymer/polymer/issues/1286)
- \[0.8\] `attached` is called at different points in lifecycle for ShadeyDOM vs ShadowDOM [\#1285](https://github.com/Polymer/polymer/issues/1285)
- \[0.8\] Listening to events on an element produces different results under ShadowDOM v. ShadyDOM [\#1284](https://github.com/Polymer/polymer/issues/1284)
- Attribute selectors incorrectly scoped [\#1282](https://github.com/Polymer/polymer/issues/1282)
- \[0.8-preview\] Shadey styles have incorrect order of precedence [\#1277](https://github.com/Polymer/polymer/issues/1277)
- \[0.8\] Styling scoping not working with type extension elements [\#1275](https://github.com/Polymer/polymer/issues/1275)
- Typo on website [\#1273](https://github.com/Polymer/polymer/issues/1273)
- \[0.8-preview\] All properties are available for data binding [\#1262](https://github.com/Polymer/polymer/issues/1262)
- \[0.8\] camel-case attributes do not deserialize to properties correctly. [\#1257](https://github.com/Polymer/polymer/issues/1257)
- paper-autogrow-textarea bug [\#1255](https://github.com/Polymer/polymer/issues/1255)
- \<paper-input-decorator label=“birthday”\> [\#1251](https://github.com/Polymer/polymer/issues/1251)
- How addEventListener in nested template? [\#1250](https://github.com/Polymer/polymer/issues/1250)
- \<paper-input-decorator label="test" autoValidate?="{{autoValidate}}"\> [\#1249](https://github.com/Polymer/polymer/issues/1249)
- Installing with Bower not working [\#1246](https://github.com/Polymer/polymer/issues/1246)
- Bower package not found [\#1245](https://github.com/Polymer/polymer/issues/1245)
- \[0.8\] template x-repeat throws error under native ShadowDOM [\#1244](https://github.com/Polymer/polymer/issues/1244)
- \[0.8\] Multiple computed properties call same method [\#1242](https://github.com/Polymer/polymer/issues/1242)
- \[0.8\] value binding not working in samples.html [\#1241](https://github.com/Polymer/polymer/issues/1241)
- \[0.8\] encapsulate and class binding not working well together [\#1240](https://github.com/Polymer/polymer/issues/1240)
- Links in SPA tutorial are broken [\#1239](https://github.com/Polymer/polymer/issues/1239)
- What is the complete Polymer Public API? [\#1233](https://github.com/Polymer/polymer/issues/1233)
- content does not get wrapped on mobile devices [\#1221](https://github.com/Polymer/polymer/issues/1221)
- BUG: web-component-tester, sauce-connect-launcher dependency [\#1214](https://github.com/Polymer/polymer/issues/1214)
- Why calling polymer.js instead of polymer.min.js? [\#1213](https://github.com/Polymer/polymer/issues/1213)
- Imperatively declared element's custom fired event does not bubble up. [\#1212](https://github.com/Polymer/polymer/issues/1212)
- \[0.8\] Attribute deserialization possibly busted? [\#1208](https://github.com/Polymer/polymer/issues/1208)
- \[0.8\] Undefined method in constructor [\#1207](https://github.com/Polymer/polymer/issues/1207)
- Typo [\#1205](https://github.com/Polymer/polymer/issues/1205)
- \[0.8\] x-template should provide bound values to elements' configure [\#1200](https://github.com/Polymer/polymer/issues/1200)
- Dynamically publishing attributes [\#1198](https://github.com/Polymer/polymer/issues/1198)
- Template's script doesn't execute when imported from another document \(polyfill\) [\#1197](https://github.com/Polymer/polymer/issues/1197)
- \[0.8-preview\] x-repeat standalone issue [\#1192](https://github.com/Polymer/polymer/issues/1192)
- Polymer.Import - handle 404's [\#1184](https://github.com/Polymer/polymer/issues/1184)
- Get Started Tutorial [\#1181](https://github.com/Polymer/polymer/issues/1181)
- Initialization might fail when surrounded by p-element [\#1180](https://github.com/Polymer/polymer/issues/1180)
- Why no paper-label? [\#1174](https://github.com/Polymer/polymer/issues/1174)
- Polymer \(inline styling\) inconsistent between Chrome and Firefox [\#1172](https://github.com/Polymer/polymer/issues/1172)
- \[0.8-preview\] Bespoke element constructors [\#1151](https://github.com/Polymer/polymer/issues/1151)
- \[0.8-preview\] detached not getting called when the element being removed is in the localDom of another element. [\#1145](https://github.com/Polymer/polymer/issues/1145)
- \[0.8-preview\] Boolean attribute change handlers are called before `localDom` or `lightDom` are available. [\#1131](https://github.com/Polymer/polymer/issues/1131)
- Reference to `HTMLLinkElement` in `Polymer.import` callback [\#1127](https://github.com/Polymer/polymer/issues/1127)
- 0.8-preview: multiple arguments to computed method [\#1092](https://github.com/Polymer/polymer/issues/1092)
- 0.8-preview: handle case-sensitivity problems around attributes [\#1080](https://github.com/Polymer/polymer/issues/1080)
- 0.8-preview: "ready" fires before "created"? [\#1079](https://github.com/Polymer/polymer/issues/1079)
- Wrong Bindings types documentation [\#980](https://github.com/Polymer/polymer/issues/980)
**Merged pull requests:**
- update webcomponents dependency [\#1339](https://github.com/Polymer/polymer/pull/1339) ([garlicnation](https://github.com/garlicnation))
- Update bower.json to point to wcjs at 0.6.0 instead of master. [\#1338](https://github.com/Polymer/polymer/pull/1338) ([garlicnation](https://github.com/garlicnation))
- Fix typo an -\> and [\#1330](https://github.com/Polymer/polymer/pull/1330) ([ragingwind](https://github.com/ragingwind))
- Update PRIMER.md [\#1327](https://github.com/Polymer/polymer/pull/1327) ([mohanaravind](https://github.com/mohanaravind))
- Move notify event target check to \_notifyListener. [\#1323](https://github.com/Polymer/polymer/pull/1323) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Shady DOM optimizations: \(1\) fast path distribution when no insertion po... [\#1320](https://github.com/Polymer/polymer/pull/1320) ([sorvell](https://github.com/sorvell))
- \[0.8\] Minor doc typo [\#1313](https://github.com/Polymer/polymer/pull/1313) ([fredj](https://github.com/fredj))
- \[0.8\] Bye bye bowerrc [\#1310](https://github.com/Polymer/polymer/pull/1310) ([nevir](https://github.com/nevir))
- 0.8 gestures [\#1309](https://github.com/Polymer/polymer/pull/1309) ([frankiefu](https://github.com/frankiefu))
- Make webcomponentsjs a bower dependency [\#1307](https://github.com/Polymer/polymer/pull/1307) ([robdodson](https://github.com/robdodson))
- Walk attributes backward to avoid IE veto on removeAttribute. [\#1302](https://github.com/Polymer/polymer/pull/1302) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Update PRIMER.md [\#1301](https://github.com/Polymer/polymer/pull/1301) ([mohanaravind](https://github.com/mohanaravind))
- Separate attributes function from annotations [\#1300](https://github.com/Polymer/polymer/pull/1300) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Bugfix: ReferenceError: c is not defined [\#1295](https://github.com/Polymer/polymer/pull/1295) ([atotic](https://github.com/atotic))
- Minor text edits on DOM API description [\#1281](https://github.com/Polymer/polymer/pull/1281) ([arthurevans](https://github.com/arthurevans))
- Fixes typo and broken link in PRIMER. [\#1274](https://github.com/Polymer/polymer/pull/1274) ([batista](https://github.com/batista))
- 0.8 demodulate [\#1264](https://github.com/Polymer/polymer/pull/1264) ([sjmiles](https://github.com/sjmiles))
- 0.8 property config [\#1256](https://github.com/Polymer/polymer/pull/1256) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Fixed insertion of numbers and booleans in the weakmap in 0.8-preview [\#1253](https://github.com/Polymer/polymer/pull/1253) ([cedric-marcone](https://github.com/cedric-marcone))
- Unique comp props [\#1243](https://github.com/Polymer/polymer/pull/1243) ([ssorallen](https://github.com/ssorallen))
- Standardize indentation across examples in Primer [\#1235](https://github.com/Polymer/polymer/pull/1235) ([ssorallen](https://github.com/ssorallen))
- Use correct `Dom` capitalization in Primer doc [\#1222](https://github.com/Polymer/polymer/pull/1222) ([ssorallen](https://github.com/ssorallen))
- Collection repeat [\#1215](https://github.com/Polymer/polymer/pull/1215) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Fix typo in PRIMER.md [\#1204](https://github.com/Polymer/polymer/pull/1204) ([fredj](https://github.com/fredj))
## [0.5.5](https://github.com/Polymer/polymer/tree/0.5.5) (2015-02-18)
**Closed issues:**
- Need a Polymer Core \(team member\) representative asap? [\#1194](https://github.com/Polymer/polymer/issues/1194)
**Merged pull requests:**
- possible fix for \[0.8-preview\] \#1192 [\#1202](https://github.com/Polymer/polymer/pull/1202) ([sjmiles](https://github.com/sjmiles))
- Basic test for x-template stamping [\#1199](https://github.com/Polymer/polymer/pull/1199) ([nevir](https://github.com/nevir))
## [0.5.5-rc1](https://github.com/Polymer/polymer/tree/0.5.5-rc1) (2015-02-13)
**Closed issues:**
- How Polymer handle elements' model communication? [\#1187](https://github.com/Polymer/polymer/issues/1187)
- Polymer is failing silently without any console error [\#1171](https://github.com/Polymer/polymer/issues/1171)
- Elements created at runtime, can't know when ready [\#1158](https://github.com/Polymer/polymer/issues/1158)
- core-dropdown-menu is ugly magugly [\#1146](https://github.com/Polymer/polymer/issues/1146)
- polymer element not compatible with IE [\#1143](https://github.com/Polymer/polymer/issues/1143)
- polymer element not compatible with IE [\#1142](https://github.com/Polymer/polymer/issues/1142)
- Please improve home site's colors [\#1141](https://github.com/Polymer/polymer/issues/1141)
- polymer element not compatible with IE [\#1140](https://github.com/Polymer/polymer/issues/1140)
- polymer element not compatible with IE [\#1139](https://github.com/Polymer/polymer/issues/1139)
- polymer element not compatible with IE [\#1138](https://github.com/Polymer/polymer/issues/1138)
- Element with id="exports" results in uncaught "Observer is not defined" exception [\#1134](https://github.com/Polymer/polymer/issues/1134)
- Data-binding in \<template\> on objects attributes have strange behaviour \[bug?\] [\#1129](https://github.com/Polymer/polymer/issues/1129)
- tipAttribute is not working properly [\#1126](https://github.com/Polymer/polymer/issues/1126)
- IE 10+11 + data binding in inline style not working in Polymer v0.5.4 [\#1124](https://github.com/Polymer/polymer/issues/1124)
- webcomponents.min.js:11 Uncaught TypeError: undefined is not a function [\#1122](https://github.com/Polymer/polymer/issues/1122)
- TypeError: Attempting to configurable attribute of unconfigurable property. [\#1119](https://github.com/Polymer/polymer/issues/1119)
- Template with svg style url\(\#id\) is shimmed with file name [\#751](https://github.com/Polymer/polymer/issues/751)
**Merged pull requests:**
- 0.8 dash case [\#1191](https://github.com/Polymer/polymer/pull/1191) ([sjmiles](https://github.com/sjmiles))
- Add externs. [\#1165](https://github.com/Polymer/polymer/pull/1165) ([garlicnation](https://github.com/garlicnation))
- primer: fix module syntax [\#1162](https://github.com/Polymer/polymer/pull/1162) ([morethanreal](https://github.com/morethanreal))
- nit: fix typo in PRIMER.md [\#1147](https://github.com/Polymer/polymer/pull/1147) ([rictic](https://github.com/rictic))
- Add build script for autoclave [\#1132](https://github.com/Polymer/polymer/pull/1132) ([azakus](https://github.com/azakus))
## [0.5.4](https://github.com/Polymer/polymer/tree/0.5.4) (2015-01-24)
**Closed issues:**
- Dropdown Menu [\#1118](https://github.com/Polymer/polymer/issues/1118)
- Extracting an unknown archive [\#1103](https://github.com/Polymer/polymer/issues/1103)
## [0.5.3](https://github.com/Polymer/polymer/tree/0.5.3) (2015-01-21)
## [0.5.3-rc2](https://github.com/Polymer/polymer/tree/0.5.3-rc2) (2015-01-21)
**Closed issues:**
- problems trying 0.5.3-rc [\#1117](https://github.com/Polymer/polymer/issues/1117)
- Missing e in function - Tutorial [\#1110](https://github.com/Polymer/polymer/issues/1110)
- Cannot find function or filter [\#1102](https://github.com/Polymer/polymer/issues/1102)
- core-icons:work bug [\#1100](https://github.com/Polymer/polymer/issues/1100)
- https://www.polymer-project.org/components/all-of-them/all-of-them.html [\#1096](https://github.com/Polymer/polymer/issues/1096)
- Safari is not opening the demo page of polymer [\#1088](https://github.com/Polymer/polymer/issues/1088)
- 0.8-preview: newline confuses findAnnotatedNode [\#1078](https://github.com/Polymer/polymer/issues/1078)
**Merged pull requests:**
- \[0.8\] name -\> is [\#1112](https://github.com/Polymer/polymer/pull/1112) ([nevir](https://github.com/nevir))
- \[0.8\] Fix small typos in PRIMER.md [\#1098](https://github.com/Polymer/polymer/pull/1098) ([peterwmwong](https://github.com/peterwmwong))
## [0.5.3-rc](https://github.com/Polymer/polymer/tree/0.5.3-rc) (2015-01-15)
**Fixed bugs:**
- Need consistent path behavior [\#651](https://github.com/Polymer/polymer/issues/651)
**Closed issues:**
- Missing scrollbars, and mouse wheel not working [\#1089](https://github.com/Polymer/polymer/issues/1089)
- Very noticeable sluggishness when scrolling [\#1084](https://github.com/Polymer/polymer/issues/1084)
- Can't build 0.8-preview and there is no build information at all [\#1075](https://github.com/Polymer/polymer/issues/1075)
- paper-toggle-button and paper-checkbox events incorrectly documented [\#1074](https://github.com/Polymer/polymer/issues/1074)
- Failed to assign list scroller to scroller of headerPanel [\#1072](https://github.com/Polymer/polymer/issues/1072)
- this.$ gets polluted with shadow dom of other components [\#1069](https://github.com/Polymer/polymer/issues/1069)
- Documentation Wrong and no worked Data binding on IE11 [\#1067](https://github.com/Polymer/polymer/issues/1067)
- How to replace tag name depend on attribute? [\#1064](https://github.com/Polymer/polymer/issues/1064)
- DataBinding not full work in IE \(polymer-0.5.2\) [\#1063](https://github.com/Polymer/polymer/issues/1063)
- Template references in SVG not working [\#1061](https://github.com/Polymer/polymer/issues/1061)
- Docs examples missing custom element name [\#1058](https://github.com/Polymer/polymer/issues/1058)
- :host styles not rendering [\#1057](https://github.com/Polymer/polymer/issues/1057)
- Redraw menu list [\#1054](https://github.com/Polymer/polymer/issues/1054)
- fire message to other element [\#1045](https://github.com/Polymer/polymer/issues/1045)
- img width 100% event [\#1044](https://github.com/Polymer/polymer/issues/1044)
- Typo [\#1041](https://github.com/Polymer/polymer/issues/1041)
- Please hire a competent technical writer [\#1036](https://github.com/Polymer/polymer/issues/1036)
- Chrome: Faulty responsiveness if window size is instantly changed [\#1034](https://github.com/Polymer/polymer/issues/1034)
- Polymer in 10 minutes - horizontal scroll bar doesn't work in chrome [\#1030](https://github.com/Polymer/polymer/issues/1030)
- Arguments in the function expressions are not watched - binding fails [\#1021](https://github.com/Polymer/polymer/issues/1021)
- core-selector doesn't work on FF/linux for core\_elements \>= 5.0 [\#1015](https://github.com/Polymer/polymer/issues/1015)
- Missing web-animations-next-lite.min.js [\#1014](https://github.com/Polymer/polymer/issues/1014)
- webcomponents.js doesn't work [\#1013](https://github.com/Polymer/polymer/issues/1013)
- The main page and demos doesn't work on Firefox!!!! [\#1007](https://github.com/Polymer/polymer/issues/1007)
- Remember scroll position of selected page and prevent auto scrolling when selecting a other page. [\#1000](https://github.com/Polymer/polymer/issues/1000)
- No field view on iOS 8 [\#986](https://github.com/Polymer/polymer/issues/986)
- \<meta name="layout" content="polymer or some other layout2"\> [\#959](https://github.com/Polymer/polymer/issues/959)
- Stoped to render on firefox after .35 update \(trying to fix jquery conflict\) [\#697](https://github.com/Polymer/polymer/issues/697)
- on-click doesn't work with bootstrap and jQuery [\#625](https://github.com/Polymer/polymer/issues/625)
**Merged pull requests:**
- Adjust to the new unit test layout [\#1093](https://github.com/Polymer/polymer/pull/1093) ([nevir](https://github.com/nevir))
- Make `ready` independent of attached state and make distribution go top-down logically and composition unwind bottom-up [\#1039](https://github.com/Polymer/polymer/pull/1039) ([sorvell](https://github.com/sorvell))
- 0.8 simplex [\#1028](https://github.com/Polymer/polymer/pull/1028) ([sorvell](https://github.com/sorvell))
- Expands the `\<content\>` element to remember logical DOM [\#1017](https://github.com/Polymer/polymer/pull/1017) ([jmesserly](https://github.com/jmesserly))
## [0.5.2](https://github.com/Polymer/polymer/tree/0.5.2) (2014-12-11)
**Closed issues:**
- Best\(?\) practice for loading & saving relational data [\#1008](https://github.com/Polymer/polymer/issues/1008)
- the demos don't work in Chrome and Opera [\#1006](https://github.com/Polymer/polymer/issues/1006)
- one click triggers two popup of paper-dropdown-menu [\#1004](https://github.com/Polymer/polymer/issues/1004)
- polymer-project.org bad link [\#1003](https://github.com/Polymer/polymer/issues/1003)
- \[Firefox\] \[Regression 0.4.2 -\> 0.5.0\] `on-tap` event not catched [\#997](https://github.com/Polymer/polymer/issues/997)
- In Q&A, answer about hosting for tests is misleading [\#994](https://github.com/Polymer/polymer/issues/994)
- core-overlay not working on firefox 34 [\#993](https://github.com/Polymer/polymer/issues/993)
- Circular dependency between core-iconset and core-icon bower modules [\#992](https://github.com/Polymer/polymer/issues/992)
- www.polymer-project.org unusable in firefox [\#991](https://github.com/Polymer/polymer/issues/991)
- \<core-tooltip\> and paper-fab don't like each other. [\#988](https://github.com/Polymer/polymer/issues/988)
- Weird bug in Firefox and Safari [\#984](https://github.com/Polymer/polymer/issues/984)
- Polymer 0.5.0 for iOS 8 Console reports ReferenceError: Can't find variable: logFlags [\#981](https://github.com/Polymer/polymer/issues/981)
- 404 Documentation Link [\#977](https://github.com/Polymer/polymer/issues/977)
- scrolling over a paper-input-decorator using a touch device selects that input making it nearly impossible to scroll over paper-input fields on a mobile device [\#973](https://github.com/Polymer/polymer/issues/973)
- core-item ignores clicks on polymer-project.org in Firefox [\#968](https://github.com/Polymer/polymer/issues/968)
- https://www.polymer-project.org/platform/custom-elements.html has a 404 for the "Shadow dom" button [\#967](https://github.com/Polymer/polymer/issues/967)
- ZIP download missing minified webcomponents.js [\#965](https://github.com/Polymer/polymer/issues/965)
- Unable to get on-core-select to fire in paper-dropdown-menu [\#957](https://github.com/Polymer/polymer/issues/957)
- 0.5.1 Element Name could not be inferred | Safari && Mobile Safari [\#956](https://github.com/Polymer/polymer/issues/956)
- url relative path ../ not works for cross domain link import [\#955](https://github.com/Polymer/polymer/issues/955)
- url relative path ../ not works for cross domain link import [\#954](https://github.com/Polymer/polymer/issues/954)
- Can't get a \<core-menu-button\> component in \<core-toolbar\> to show child nodes [\#951](https://github.com/Polymer/polymer/issues/951)
- paper-autogrow text not in bower update [\#949](https://github.com/Polymer/polymer/issues/949)
- Need info how to test polymer elements using Selenium. [\#948](https://github.com/Polymer/polymer/issues/948)
- "horizontal layout wrap" broken in fireFox [\#945](https://github.com/Polymer/polymer/issues/945)
- Zip file is empty upon download [\#943](https://github.com/Polymer/polymer/issues/943)
- on-tap not working on Firefox [\#941](https://github.com/Polymer/polymer/issues/941)
- \[Question\] Using Polymer for progressive enhancement [\#940](https://github.com/Polymer/polymer/issues/940)
- Buttons not working after vulcanize [\#935](https://github.com/Polymer/polymer/issues/935)
- Dropdown Resizing [\#930](https://github.com/Polymer/polymer/issues/930)
- demo content [\#929](https://github.com/Polymer/polymer/issues/929)
- https://www.polymer-project.org/components/web-component-tester/browser.js not found [\#928](https://github.com/Polymer/polymer/issues/928)
- web-animations.html missing from web-animations-next - \(Polymer 0.5.1\) [\#923](https://github.com/Polymer/polymer/issues/923)
- Paper Menu button page on Polymer website shows example for paper dropdown menu not paper menu button [\#922](https://github.com/Polymer/polymer/issues/922)
- Click handlers don't work anymore on iOS with 0.5.0 [\#918](https://github.com/Polymer/polymer/issues/918)
- paper-dropdown-menu not working correctly or documentation needs update. [\#911](https://github.com/Polymer/polymer/issues/911)
- Add API for communicating hide/show/resize from parents to interested children [\#849](https://github.com/Polymer/polymer/issues/849)
- bower install on yosemite [\#808](https://github.com/Polymer/polymer/issues/808)
- Two finger touch events - not working [\#802](https://github.com/Polymer/polymer/issues/802)
- Create a core-label, associate a label with a child focusable control [\#793](https://github.com/Polymer/polymer/issues/793)
- Not possible to stay on older version \(0.3.5\) [\#758](https://github.com/Polymer/polymer/issues/758)
**Merged pull requests:**
- 0.8 miceplay [\#1012](https://github.com/Polymer/polymer/pull/1012) ([kevinpschaaf](https://github.com/kevinpschaaf))
- Spelling correction. [\#996](https://github.com/Polymer/polymer/pull/996) ([germ13](https://github.com/germ13))
- Use possessive "its" [\#970](https://github.com/Polymer/polymer/pull/970) ([BrianGeppert](https://github.com/BrianGeppert))
- README update [\#927](https://github.com/Polymer/polymer/pull/927) ([rottina](https://github.com/rottina))
## [0.5.1](https://github.com/Polymer/polymer/tree/0.5.1) (2014-11-12)
**Closed issues:**
- Bug on site [\#920](https://github.com/Polymer/polymer/issues/920)
- href in my element not working on iOS [\#919](https://github.com/Polymer/polymer/issues/919)
- \[Polymer\#0.5.0\]\[Safari\] TypeError: undefined is not an object \(evaluating 'HTMLImports.path.resolveUrlsInStyle'\) \(url.js line 199\) [\#915](https://github.com/Polymer/polymer/issues/915)
- \[Polymer\#0.5.0\]\[Firefox\] TypeError: HTMLImports.path is undefined \(platform.js line 14\) [\#914](https://github.com/Polymer/polymer/issues/914)
- \[Polymer\#0.5.0\]\[Chrome\] Uncaught TypeError: Cannot read property 'parse' of undefined \(boot.js line 14\) [\#913](https://github.com/Polymer/polymer/issues/913)
- web-animations-next/web-animations.html file missing [\#909](https://github.com/Polymer/polymer/issues/909)
- No release notes for 0.5.0 [\#908](https://github.com/Polymer/polymer/issues/908)
- Back button navigation sometimes broken on polymer-project website [\#907](https://github.com/Polymer/polymer/issues/907)
- Designer Tool page appears blank [\#906](https://github.com/Polymer/polymer/issues/906)
- Polymer is undefined in IE11 [\#905](https://github.com/Polymer/polymer/issues/905)
- Using polymer with Jinja2 server side templating [\#904](https://github.com/Polymer/polymer/issues/904)
- ERR\_CONNECTION\_CLOSED trying to visit blog.polymer-project.org [\#894](https://github.com/Polymer/polymer/issues/894)
- Consider not dirty check polling when the tab is not visible [\#892](https://github.com/Polymer/polymer/issues/892)
## [0.5.0](https://github.com/Polymer/polymer/tree/0.5.0) (2014-11-10)
**Fixed bugs:**
- Links to "\#" get rewritten to just "" which causes a refresh if clicked [\#672](https://github.com/Polymer/polymer/issues/672)
**Closed issues:**
- Incorrect behaviour for disabled fields with Polymer paper-input-decorator [\#901](https://github.com/Polymer/polymer/issues/901)
- Ajax responseChanged return logged twice [\#900](https://github.com/Polymer/polymer/issues/900)
- behavior difference between \<my-component/\> and \<my-component\>\</my-component\> [\#899](https://github.com/Polymer/polymer/issues/899)
- on-tap does not cause paper-input value to be committed [\#890](https://github.com/Polymer/polymer/issues/890)
- \<paper-item\> has 'iconSrc' attribute, should be 'src' like \<paper-fab\>, \<paper-icon-button\> and \<paper-menu-button\> [\#889](https://github.com/Polymer/polymer/issues/889)
- paper-input documentation lacks details on field validation [\#888](https://github.com/Polymer/polymer/issues/888)
- paper-input documentation inconsistently suggests theming via JS properties [\#887](https://github.com/Polymer/polymer/issues/887)
- paper-input documentation suggests html /deep/ selectors, inconsistent with other elements [\#886](https://github.com/Polymer/polymer/issues/886)
- paper-input cursor doesn't seem to support theming [\#885](https://github.com/Polymer/polymer/issues/885)
- paper-input styling instructions lack the ::shadow pseudo-element [\#884](https://github.com/Polymer/polymer/issues/884)
- paper-dropdown-menu: selectedProperty doesn't seem to work [\#881](https://github.com/Polymer/polymer/issues/881)
- Add support for native ES6 class Symbol [\#880](https://github.com/Polymer/polymer/issues/880)
- demo page fails https://www.polymer-project.org/components/core-ajax/demo.html [\#838](https://github.com/Polymer/polymer/issues/838)
- core-icon-button does but paper-icon-button does not load core-iconset-svg [\#834](https://github.com/Polymer/polymer/issues/834)
- paper-fab button href bad [\#830](https://github.com/Polymer/polymer/issues/830)
- Documentation error on core-animation [\#828](https://github.com/Polymer/polymer/issues/828)
- Data-binding within component inside template style [\#827](https://github.com/Polymer/polymer/issues/827)
- Can't scroll using mouse or keyboard [\#817](https://github.com/Polymer/polymer/issues/817)
- On-tap sends event twice on touch device [\#814](https://github.com/Polymer/polymer/issues/814)
- paper-button raised attribute does not work properly when set programmatically [\#812](https://github.com/Polymer/polymer/issues/812)
- Trying to import core-ajax I get an appendChild on \#document error [\#810](https://github.com/Polymer/polymer/issues/810)
- core-ajax demo not working [\#807](https://github.com/Polymer/polymer/issues/807)
- Disabled on Switch is not working [\#806](https://github.com/Polymer/polymer/issues/806)
- core-dropdown 0.4.2 not working [\#804](https://github.com/Polymer/polymer/issues/804)
- paper-button has wrong documentation [\#801](https://github.com/Polymer/polymer/issues/801)
- Importing Polymer fails, cannot find WebComponents [\#797](https://github.com/Polymer/polymer/issues/797)
- Link Tooling information is down [\#792](https://github.com/Polymer/polymer/issues/792)
- Can't set the background color of paper-progress from javascript [\#787](https://github.com/Polymer/polymer/issues/787)
- Element stops working if taken off the DOM and put back in [\#782](https://github.com/Polymer/polymer/issues/782)
- paper drop down list showing in middle of screen first time. [\#776](https://github.com/Polymer/polymer/issues/776)
- Template repeat index value is evaluated only after loop end [\#774](https://github.com/Polymer/polymer/issues/774)
- Polymer + Cordova + PhoneGap + iOS = Very Laggy / Slow? [\#773](https://github.com/Polymer/polymer/issues/773)
- Repository error [\#767](https://github.com/Polymer/polymer/issues/767)
- problem accessing polymer properties from content script [\#753](https://github.com/Polymer/polymer/issues/753)
- Polymer as UI only [\#752](https://github.com/Polymer/polymer/issues/752)
**Merged pull requests:**
- add space between "go" and "to" [\#778](https://github.com/Polymer/polymer/pull/778) ([jodytate](https://github.com/jodytate))
- Create a basic jsdoc externs file for Polymer [\#769](https://github.com/Polymer/polymer/pull/769) ([rictic](https://github.com/rictic))
## [0.4.2](https://github.com/Polymer/polymer/tree/0.4.2) (2014-10-02)
**Closed issues:**
- 'Flexible children' example doesn't work. [\#772](https://github.com/Polymer/polymer/issues/772)
- Google Drive Element Error in IE [\#771](https://github.com/Polymer/polymer/issues/771)
- doesn't work in a zip file [\#766](https://github.com/Polymer/polymer/issues/766)
- Paper-Dialog on page load doesnt work in firefox. [\#761](https://github.com/Polymer/polymer/issues/761)
- Extending input not working in Chromium 37.0.2062.94 Ubuntu 14.10 \(290621\) \(64-bit\) [\#754](https://github.com/Polymer/polymer/issues/754)
- core-list scroll [\#748](https://github.com/Polymer/polymer/issues/748)
- Topeka responsiveness [\#708](https://github.com/Polymer/polymer/issues/708)
- Chrome - animation glitch [\#593](https://github.com/Polymer/polymer/issues/593)
## [0.3.6](https://github.com/Polymer/polymer/tree/0.3.6) (2014-09-18)
## [0.4.1](https://github.com/Polymer/polymer/tree/0.4.1) (2014-09-18)
**Implemented enhancements:**
- Feature request: testing whether a custom element extends a certain type [\#380](https://github.com/Polymer/polymer/issues/380)
**Fixed bugs:**
- Elements failing `instanceof` after WebComponentsReady [\#402](https://github.com/Polymer/polymer/issues/402)
**Closed issues:**
- OSX Yosemite [\#750](https://github.com/Polymer/polymer/issues/750)
- File structure not the same, when using bower [\#747](https://github.com/Polymer/polymer/issues/747)
- Closing the overlay resets the position to center of window [\#746](https://github.com/Polymer/polymer/issues/746)
- noscript breaks inheritance [\#740](https://github.com/Polymer/polymer/issues/740)
- In age-slider example, using space in name results in truncated name [\#739](https://github.com/Polymer/polymer/issues/739)
- Improve documentation for core-icon when using custom icon sets [\#738](https://github.com/Polymer/polymer/issues/738)
- Broken Link in Docs/CreatingElements/AddPropertiesAndMethods [\#737](https://github.com/Polymer/polymer/issues/737)
- Miss placing script element inside a polymer element lead to miss leading error message [\#736](https://github.com/Polymer/polymer/issues/736)
- Not a BUG - FYI: Update tutorial - core-icon-button [\#730](https://github.com/Polymer/polymer/issues/730)
- FormData wrapper breaks XMLHttpRequest\#send\(FormData\) in Firefox [\#725](https://github.com/Polymer/polymer/issues/725)
- Tap event does not fire for SVG elements anymore [\#722](https://github.com/Polymer/polymer/issues/722)
- Computed property can't be data-bound from outside [\#638](https://github.com/Polymer/polymer/issues/638)
- IE issues [\#592](https://github.com/Polymer/polymer/issues/592)
- ShadowDOM renderer invalidated after insertion-point distribution [\#512](https://github.com/Polymer/polymer/issues/512)
- Content inside `\<template\>` breaks extending `\<body\>` element. [\#421](https://github.com/Polymer/polymer/issues/421)
## [0.4.0](https://github.com/Polymer/polymer/tree/0.4.0) (2014-08-28)
**Implemented enhancements:**
- Use the John Resig inheritance to define the component prototype [\#647](https://github.com/Polymer/polymer/issues/647)
- on-\* expression support [\#446](https://github.com/Polymer/polymer/issues/446)
- add component-laid-out lifecycle callback [\#434](https://github.com/Polymer/polymer/issues/434)
- Allow creating \<polymer-element\>s without Shadow DOM [\#222](https://github.com/Polymer/polymer/issues/222)
- Consider adding support for loading user selectable css resources per element [\#219](https://github.com/Polymer/polymer/issues/219)
- Provide a provide a way to instantiate the template directly into the element [\#157](https://github.com/Polymer/polymer/issues/157)
- Consider deserializing to Date from attributes, if property is Date-valued [\#119](https://github.com/Polymer/polymer/issues/119)
**Fixed bugs:**
- polymer-body double fire `ready`/`created`/`attached` [\#447](https://github.com/Polymer/polymer/issues/447)
- Polymer's controller-styles system doesn't work well with ShadowDOMPolyfill [\#224](https://github.com/Polymer/polymer/issues/224)
- Globals clobbering other globals [\#185](https://github.com/Polymer/polymer/issues/185)
- `bind` boilerplate base is inflexible [\#179](https://github.com/Polymer/polymer/issues/179)
**Closed issues:**
- Possible shared state on core elements. [\#731](https://github.com/Polymer/polymer/issues/731)
- paper-input element doesn't show keyboard on Firefox OS 2.0 [\#727](https://github.com/Polymer/polymer/issues/727)
- designerr on polymer page lacks demo'd functioniality from youtube quickstart. [\#726](https://github.com/Polymer/polymer/issues/726)
- PhantomJS Support [\#724](https://github.com/Polymer/polymer/issues/724)
- http://www.polymer-project.org/platform/web-animations.html [\#721](https://github.com/Polymer/polymer/issues/721)
- Polymer site appears broken on Safari 8 [\#719](https://github.com/Polymer/polymer/issues/719)
- Non ASCII strings set in JavaScript show up as ? in Firefox [\#717](https://github.com/Polymer/polymer/issues/717)
- Materials page in Polymer is not rendering correctly [\#716](https://github.com/Polymer/polymer/issues/716)
- Polymer elements not rendering in Android 4.1.2 and 4.2.1. Works on 4.4.2 [\#714](https://github.com/Polymer/polymer/issues/714)
- Bower private packages & stats [\#711](https://github.com/Polymer/polymer/issues/711)
- Step-4 of tutorial code for post-card Polymer prototype does not use element name [\#710](https://github.com/Polymer/polymer/issues/710)
- Polymer does absolutely nothing if you have an "undeclared" element [\#709](https://github.com/Polymer/polymer/issues/709)
- Syntax error in example bower.json [\#707](https://github.com/Polymer/polymer/issues/707)
- Semver not being followed correctly [\#704](https://github.com/Polymer/polymer/issues/704)
- Safari bug when rendering a table using nested loops [\#700](https://github.com/Polymer/polymer/issues/700)
- Clicking on Paper Tab execute twice [\#696](https://github.com/Polymer/polymer/issues/696)
- div with tool attribute does not allow flex for div within [\#695](https://github.com/Polymer/polymer/issues/695)
- it keeps resetting [\#694](https://github.com/Polymer/polymer/issues/694)
- Handlers disappearing when you hide the template [\#690](https://github.com/Polymer/polymer/issues/690)
- on-change event triggered twice [\#687](https://github.com/Polymer/polymer/issues/687)
- Consider making core-component-page a devDependency [\#683](https://github.com/Polymer/polymer/issues/683)
- custom nodes within svg aren't created [\#681](https://github.com/Polymer/polymer/issues/681)
- App not rendering on IE and Firefox [\#668](https://github.com/Polymer/polymer/issues/668)
- Clarification on the modularity of Polymer within external web component scripts: Is Polymer designed in a way to export it as a \(commonjs\) module? [\#666](https://github.com/Polymer/polymer/issues/666)
- Future Support for Installing Polymer through Chocolatey package manager [\#657](https://github.com/Polymer/polymer/issues/657)
- RangeError: Maximum call stack size exceeded. On Safari 7.0.5 [\#656](https://github.com/Polymer/polymer/issues/656)
- transform-style: preserve-3d causing odd stutter on hover of custom element [\#652](https://github.com/Polymer/polymer/issues/652)
- fire should only check for null and undefined. [\#646](https://github.com/Polymer/polymer/issues/646)
- 'target' field in 'event' argument passed into callback function for click/pointer events refers to first element instantiated [\#641](https://github.com/Polymer/polymer/issues/641)
- document.querySelectorAll sluggish on Firefox \(v30\) for large DOM [\#629](https://github.com/Polymer/polymer/issues/629)
- TemplateBinding should warn/console log about using bind with references. [\#615](https://github.com/Polymer/polymer/issues/615)
- platform fails to load [\#606](https://github.com/Polymer/polymer/issues/606)
- Can't keyboard nav around a custom element in a div that has contenteditable="true" [\#601](https://github.com/Polymer/polymer/issues/601)
- Polymer doesn't appear to work at all under iOS 8 beta 2 [\#591](https://github.com/Polymer/polymer/issues/591)
- Resources not loading in http://www.polymer-project.org/tools/designer/ [\#585](https://github.com/Polymer/polymer/issues/585)
- Unable to extend iframe [\#580](https://github.com/Polymer/polymer/issues/580)
- Custom element that performs dynamic HTML Import gets corrupted offsetWidth when used inside \<template\> [\#554](https://github.com/Polymer/polymer/issues/554)
- Wrap as UMD - Do not force window global [\#534](https://github.com/Polymer/polymer/issues/534)
- Difference in inherited styles between Chrome & other browsers [\#531](https://github.com/Polymer/polymer/issues/531)
- Problem during bower install [\#529](https://github.com/Polymer/polymer/issues/529)
- Adding method `childrenChanged` crashes Firefox/Safari [\#528](https://github.com/Polymer/polymer/issues/528)
- fire and asyncFire need return values [\#527](https://github.com/Polymer/polymer/issues/527)
- Errors in Safari 7 with Polymer 0.3.1 [\#523](https://github.com/Polymer/polymer/issues/523)
- Polymer not working in elementary OS [\#520](https://github.com/Polymer/polymer/issues/520)
- Two way binding with Html attribute [\#519](https://github.com/Polymer/polymer/issues/519)
- Polyfills crashing jsbin [\#517](https://github.com/Polymer/polymer/issues/517)
- Polymer breaks dependency resolution with query strings [\#513](https://github.com/Polymer/polymer/issues/513)
- binding to a builtin name fails cryptically [\#510](https://github.com/Polymer/polymer/issues/510)
- Content of nested template is empty [\#500](https://github.com/Polymer/polymer/issues/500)
- Extending Vanilla JS Custom Element with polymer-element [\#496](https://github.com/Polymer/polymer/issues/496)
- Trouble in latest Canary reading styles in attached handler of imported element [\#493](https://github.com/Polymer/polymer/issues/493)
- Keyboard Support [\#473](https://github.com/Polymer/polymer/issues/473)
- HTML Imports polyfill is missing the .import property [\#471](https://github.com/Polymer/polymer/issues/471)
- Pseudo-classes in \<content\> select attribute [\#470](https://github.com/Polymer/polymer/issues/470)
- Using a keyword in attribute name causes error in IE11 [\#466](https://github.com/Polymer/polymer/issues/466)
- Error - Uncaught Possible attempt to load Polymer twice [\#464](https://github.com/Polymer/polymer/issues/464)
- Get full list of polymer-elements. [\#460](https://github.com/Polymer/polymer/issues/460)
- document.registerElement raises error "Options missing required prototype property" [\#455](https://github.com/Polymer/polymer/issues/455)
- Exception when updating inner child element attributes from an object property in a repeat [\#454](https://github.com/Polymer/polymer/issues/454)
- Double quotes don't work in polyfill-next-selector content [\#453](https://github.com/Polymer/polymer/issues/453)
- title attribute cause issue in firefox [\#451](https://github.com/Polymer/polymer/issues/451)
- template bind="x as y" doesn't work on safari [\#450](https://github.com/Polymer/polymer/issues/450)
- Generating an observe block in created or ready doesn't bind [\#448](https://github.com/Polymer/polymer/issues/448)
- \<polymer-ui-accordion\> doesn't always work with Shadow DOM polyfill [\#444](https://github.com/Polymer/polymer/issues/444)
- Polymer breaks `instanceof` for native elements. [\#424](https://github.com/Polymer/polymer/issues/424)
- Add @license tag [\#413](https://github.com/Polymer/polymer/issues/413)
- Can't turn body into custom element via is="..." [\#409](https://github.com/Polymer/polymer/issues/409)
- bindProperties logger call refers to nonexistent variables [\#406](https://github.com/Polymer/polymer/issues/406)
- Polymer fails to render elements when query string contains a slash [\#401](https://github.com/Polymer/polymer/issues/401)
- Using native CustomElements and ShadowDOM polyfill together may cause unwanted attached/detached callbacks being called [\#399](https://github.com/Polymer/polymer/issues/399)
- Variable picked by `constructor` attribute is set after upgrade events. [\#398](https://github.com/Polymer/polymer/issues/398)
- Exception when invoking super from ready when the node is created by \<template repeat\> [\#397](https://github.com/Polymer/polymer/issues/397)
- automatic node finding within a template-if [\#387](https://github.com/Polymer/polymer/issues/387)
- Challenges of building a menu system in Polymer [\#382](https://github.com/Polymer/polymer/issues/382)
- XSS Vulnerability [\#375](https://github.com/Polymer/polymer/issues/375)
- Publishing an attribute named 'disabled' generates exception in IE10 [\#372](https://github.com/Polymer/polymer/issues/372)
- template if expression, trailing blanks should be ignored [\#370](https://github.com/Polymer/polymer/issues/370)
- processing bindings in a specific order [\#368](https://github.com/Polymer/polymer/issues/368)
- AngularJS incompatibility: need to unwrap elements when jqLite.data\(\) is used [\#363](https://github.com/Polymer/polymer/issues/363)
- Polymer makes getScreenCTM\(\) crash [\#351](https://github.com/Polymer/polymer/issues/351)
- Sorting an array can result in an \*Changed method firing [\#350](https://github.com/Polymer/polymer/issues/350)
- Reentrancy question: reflectPropertyToAttribute can trigger unwanted attributedChanged effects [\#349](https://github.com/Polymer/polymer/issues/349)
- ShadowDOMPolyfill is way, way too intrusive! [\#346](https://github.com/Polymer/polymer/issues/346)
- Separate out platform.js from polymer core [\#344](https://github.com/Polymer/polymer/issues/344)
- Attribute values should be copied to property values before `created` [\#342](https://github.com/Polymer/polymer/issues/342)
- custom event handler matching is case sensitive [\#340](https://github.com/Polymer/polymer/issues/340)
- Fragments in links get rewritten to point to directory of import [\#339](https://github.com/Polymer/polymer/issues/339)
- Address polymer-elements that take child elements [\#337](https://github.com/Polymer/polymer/issues/337)
- Declarative event discovery on custom elements [\#336](https://github.com/Polymer/polymer/issues/336)
- test-button element class with extends="button" can't be instantiated with \<test-button\> syntax [\#334](https://github.com/Polymer/polymer/issues/334)
- Page rendering issue - navigation [\#333](https://github.com/Polymer/polymer/issues/333)
- Cannot modify a template's contents while it is stamping [\#330](https://github.com/Polymer/polymer/issues/330)
- Publish sub-projects on npm, add them to package.json. [\#326](https://github.com/Polymer/polymer/issues/326)
- stack: "TypeError: Object \#\<Object\> has no method 'getAttr [\#325](https://github.com/Polymer/polymer/issues/325)
- Support angular/django style filters [\#323](https://github.com/Polymer/polymer/issues/323)
- createElement-wrapped \<img\> throws TypeError on \<canvas\> drawImage [\#316](https://github.com/Polymer/polymer/issues/316)
- Databinding breaks after removing and reattaching an element to the DOM [\#311](https://github.com/Polymer/polymer/issues/311)
- Ensure {{}} are removed after binding [\#304](https://github.com/Polymer/polymer/issues/304)
- Getting started instructions incomplete: no polymer.min.js [\#300](https://github.com/Polymer/polymer/issues/300)
- Site is not showing properly in IE11 [\#299](https://github.com/Polymer/polymer/issues/299)
- Prevent event bubbling in polyfill [\#296](https://github.com/Polymer/polymer/issues/296)
- Prevent duplicate ID's in polyfill [\#295](https://github.com/Polymer/polymer/issues/295)
- remove use of deprecated cancelBubble? [\#292](https://github.com/Polymer/polymer/issues/292)
- Polymer throws error in Canary when registering an element via import [\#290](https://github.com/Polymer/polymer/issues/290)
- Type Convert Error when work with canvas [\#288](https://github.com/Polymer/polymer/issues/288)
- DOM Spec Input - Virtual MutationRecords [\#281](https://github.com/Polymer/polymer/issues/281)
- polymer animation not support ios [\#279](https://github.com/Polymer/polymer/issues/279)
- Event.cancelBubble cannot be used for stopping event propagation in Polymer [\#275](https://github.com/Polymer/polymer/issues/275)
- Consider removing controllerStyles and requiring explicitly adding stylesheets [\#272](https://github.com/Polymer/polymer/issues/272)
- Write up suggestions on dealing with performance [\#269](https://github.com/Polymer/polymer/issues/269)
- improve on-\* delegation by introducing control for Polymer-bubbling \(as distinct from DOM bubbling\) [\#259](https://github.com/Polymer/polymer/issues/259)
- Consider issuing a warning when a polymer-element's shadowRoot contains un-upgraded custom elements [\#258](https://github.com/Polymer/polymer/issues/258)
- on-tap doesn't fire all the time that on-click does [\#255](https://github.com/Polymer/polymer/issues/255)
- Chrome Packaged App: including the UI elements is not convenient [\#248](https://github.com/Polymer/polymer/issues/248)
- Polymer doesn't work on Iceweasel web browser [\#247](https://github.com/Polymer/polymer/issues/247)
- It's confusing that you need to nest a \<template repeat\> inside an outermost \<template\>. [\#245](https://github.com/Polymer/polymer/issues/245)
- http://www.polymer-project.org/tooling-strategy.html is a bit spare [\#244](https://github.com/Polymer/polymer/issues/244)
- documentation for attributeChanged is wrong [\#242](https://github.com/Polymer/polymer/issues/242)
- Using scoped models impacts 2-way property binding [\#220](https://github.com/Polymer/polymer/issues/220)
- loader seems to fail at random, but frequently when serving from localhost [\#218](https://github.com/Polymer/polymer/issues/218)
- Cloned attributes should not override user attributes in markup [\#190](https://github.com/Polymer/polymer/issues/190)
- Sugaring dynamics in ShadowDOM [\#176](https://github.com/Polymer/polymer/issues/176)
- Asynchronous attribute declaration [\#160](https://github.com/Polymer/polymer/issues/160)
- Consider adding broadcast [\#145](https://github.com/Polymer/polymer/issues/145)
- explore performance impact of import-order of components [\#108](https://github.com/Polymer/polymer/issues/108)
- title attribute [\#97](https://github.com/Polymer/polymer/issues/97)
- Write doc about attributes and type inference when applying to properties [\#93](https://github.com/Polymer/polymer/issues/93)
- Confusing cancelBubble [\#74](https://github.com/Polymer/polymer/issues/74)
## [0.3.5](https://github.com/Polymer/polymer/tree/0.3.5) (2014-08-08)
**Closed issues:**
- Internet explorer is not binding inside \<select\> tag [\#692](https://github.com/Polymer/polymer/issues/692)
- \<core-collapse\> syntax issue. [\#689](https://github.com/Polymer/polymer/issues/689)
- TemplateBinding.js Uncaught HierarchyRequestError [\#688](https://github.com/Polymer/polymer/issues/688)
- TypeError: Argument 1 of Window.getDefaultComputedStyle does not implement interface Element [\#686](https://github.com/Polymer/polymer/issues/686)
- Not working in Safari - Window [\#682](https://github.com/Polymer/polymer/issues/682)
- Polymer should respect XHTML syntax [\#680](https://github.com/Polymer/polymer/issues/680)
- polymer design tool issue [\#679](https://github.com/Polymer/polymer/issues/679)
- Incomplete zip files. [\#676](https://github.com/Polymer/polymer/issues/676)
- Polymer Designer always deletes everything [\#674](https://github.com/Polymer/polymer/issues/674)
- Wrong import path on Designer Preview when importing polymer.html [\#670](https://github.com/Polymer/polymer/issues/670)
- error 404 on core-transition demo page [\#669](https://github.com/Polymer/polymer/issues/669)
- Polymer site is not reachable. [\#667](https://github.com/Polymer/polymer/issues/667)
- TypeError and NetworkError when starting the designer tool from the url [\#665](https://github.com/Polymer/polymer/issues/665)
- Scroll disappearing on Polymer Website [\#661](https://github.com/Polymer/polymer/issues/661)
- paper-menu-button is not responsive [\#660](https://github.com/Polymer/polymer/issues/660)
- Core-drawer-panel hardcoded drawer width [\#659](https://github.com/Polymer/polymer/issues/659)
- the BSD license link at the bottom of http://www.polymer-project.org/ is a 404 [\#655](https://github.com/Polymer/polymer/issues/655)
- Polymer breaks URL [\#653](https://github.com/Polymer/polymer/issues/653)
- Cannot install polymer 0.3.4 [\#643](https://github.com/Polymer/polymer/issues/643)
- Polymer breaks KnockoutJS outside of Chrome [\#640](https://github.com/Polymer/polymer/issues/640)
- Paper button keeps flashing [\#639](https://github.com/Polymer/polymer/issues/639)
- \<core-style\> should use an element that parses in plain text mode [\#637](https://github.com/Polymer/polymer/issues/637)
- "Assertion Failed" unwrapping event [\#636](https://github.com/Polymer/polymer/issues/636)
- Rating Slider Knob goes outside boundaries [\#635](https://github.com/Polymer/polymer/issues/635)
- typo on http://www.polymer-project.org/docs/elements/paper-elements.html\#paper-menu-button [\#632](https://github.com/Polymer/polymer/issues/632)
- core-list is inefficient in data initialization [\#631](https://github.com/Polymer/polymer/issues/631)
- Closing tags with /\> leads to ignored shadow DOM content [\#628](https://github.com/Polymer/polymer/issues/628)
- Paper Elements use inline scripts =\> violate Chrome packaged app CSP rules [\#613](https://github.com/Polymer/polymer/issues/613)
- paper-tab::shadow \#ink glitches when click is held [\#611](https://github.com/Polymer/polymer/issues/611)
- Core-toolbar breaking material design speck [\#605](https://github.com/Polymer/polymer/issues/605)
- \<input list="x"\>\<datalist id="x"\> as a component used within another component [\#600](https://github.com/Polymer/polymer/issues/600)
- core-scroll-header-panel won't hide navigation bar on Android \(stable and beta\) [\#569](https://github.com/Polymer/polymer/issues/569)
- Scroll Header Panel flowing over panel scroll bar [\#555](https://github.com/Polymer/polymer/issues/555)
- Drawer Panel is not working. [\#550](https://github.com/Polymer/polymer/issues/550)
- Polymer 0.2.2 polymer-animation-group.js logs error to console [\#463](https://github.com/Polymer/polymer/issues/463)
- polymer-ui-scaffold and polymer-ui-nav-arrow [\#343](https://github.com/Polymer/polymer/issues/343)
- Better error when creating an element without a hyphenated name [\#303](https://github.com/Polymer/polymer/issues/303)
- polymer-ajax fails silently when json is not valid json [\#257](https://github.com/Polymer/polymer/issues/257)
## [0.3.4](https://github.com/Polymer/polymer/tree/0.3.4) (2014-07-11)
**Fixed bugs:**
- FormData.constructor fails when passed HTMLFormElement in Firefox [\#587](https://github.com/Polymer/polymer/issues/587)
**Closed issues:**
- Paper component focusable demo missing [\#624](https://github.com/Polymer/polymer/issues/624)
- Step 1 of Tutorial incomplete [\#623](https://github.com/Polymer/polymer/issues/623)
- Step-1 of tutorial instructions are missing vital CSS [\#622](https://github.com/Polymer/polymer/issues/622)
- Link on paper-tabs for paper-tab is broken [\#621](https://github.com/Polymer/polymer/issues/621)
- Wrong example in polymer tutorial [\#618](https://github.com/Polymer/polymer/issues/618)
- Please improve the Core Elements / Scaffold example [\#617](https://github.com/Polymer/polymer/issues/617)
- Polymer demos are not working in android stock browser and polymer is not working in cordova apps in JellyBean and prior versions. It is throwing "Window is not defined error in platform.js file at line number 15". [\#616](https://github.com/Polymer/polymer/issues/616)
- Chrome Packaged App: Refused to evaluate a string as JavaScript because 'unsafe-eval' [\#612](https://github.com/Polymer/polymer/issues/612)
- Broken doc in 'using core icons [\#610](https://github.com/Polymer/polymer/issues/610)
- Navigation menu error [\#609](https://github.com/Polymer/polymer/issues/609)
- IE 11 issues [\#608](https://github.com/Polymer/polymer/issues/608)
- deadlink in polymer site [\#604](https://github.com/Polymer/polymer/issues/604)
- extjs and polymerjs [\#603](https://github.com/Polymer/polymer/issues/603)
- Mistake on proto-element.html [\#602](https://github.com/Polymer/polymer/issues/602)
- paper-slider does not work properly in Safari and FireFox [\#599](https://github.com/Polymer/polymer/issues/599)
- Polymer designer color-picker has no specific color palette [\#598](https://github.com/Polymer/polymer/issues/598)
- Paper Elements Input does not work on iOS [\#596](https://github.com/Polymer/polymer/issues/596)
- Core-Transition Demo [\#594](https://github.com/Polymer/polymer/issues/594)
- Starting a webserver in Python [\#590](https://github.com/Polymer/polymer/issues/590)
- simple style attribute bindings and styleObject filter not working in IE11 \(maybe other versions as well\) [\#589](https://github.com/Polymer/polymer/issues/589)
- Images not rendering in the demp app tutorial [\#588](https://github.com/Polymer/polymer/issues/588)
- Core-transition demo link returns 404 [\#586](https://github.com/Polymer/polymer/issues/586)
- Paper-Checkbox Animation Fix [\#584](https://github.com/Polymer/polymer/issues/584)
- Designer will not save [\#583](https://github.com/Polymer/polymer/issues/583)
- ::content polyfill for VanillaJS Templates and Custom Elements [\#582](https://github.com/Polymer/polymer/issues/582)
- core-transition-css Error: Not Found [\#581](https://github.com/Polymer/polymer/issues/581)
- Polymer Tutorial step 1 multiple core-select events [\#578](https://github.com/Polymer/polymer/issues/578)
- Material design link is broken [\#577](https://github.com/Polymer/polymer/issues/577)
- core-scroll-header-panel background missing? [\#576](https://github.com/Polymer/polymer/issues/576)
- Can't get any of the demos work?? [\#575](https://github.com/Polymer/polymer/issues/575)
- paper-elements.html not found [\#574](https://github.com/Polymer/polymer/issues/574)
- Tutorial Typo [\#572](https://github.com/Polymer/polymer/issues/572)
- tutorial step-2: missing slash on closing div tag [\#571](https://github.com/Polymer/polymer/issues/571)
- Minor Duplication: unnecessary core-icon-button declaration block to style the fill color of the favorite icon [\#570](https://github.com/Polymer/polymer/issues/570)
- Layout Messed [\#568](https://github.com/Polymer/polymer/issues/568)
- Chromebook [\#565](https://github.com/Polymer/polymer/issues/565)
- \[Docs\] The "Learn" page on polymer-project.org crashes Safari Mobile [\#563](https://github.com/Polymer/polymer/issues/563)
- core-scroll-header-panel won't hide nav bar on Chrome for Android [\#562](https://github.com/Polymer/polymer/issues/562)
- Polymer flat design phonegap [\#560](https://github.com/Polymer/polymer/issues/560)
- Input examples do not work in iPad iOS 7.1.1 [\#558](https://github.com/Polymer/polymer/issues/558)
- Demo & Edit on GitHub links not working on component page [\#557](https://github.com/Polymer/polymer/issues/557)
- Download link for checkboxes is broken [\#556](https://github.com/Polymer/polymer/issues/556)
- core-slide demo not found [\#553](https://github.com/Polymer/polymer/issues/553)
- Polymer website side panel menus overlaps url: http://www.polymer-project.org/docs/start/tutorial/intro.html [\#552](https://github.com/Polymer/polymer/issues/552)
- document.querySelector containing ::shadow fails in Firefox 30 [\#551](https://github.com/Polymer/polymer/issues/551)
- docs-menu polymer-ui-menu { position: fixed; } - Mozilla Firefox 30.0 [\#549](https://github.com/Polymer/polymer/issues/549)
- Invalid Zip File [\#547](https://github.com/Polymer/polymer/issues/547)
- http://www.polymer-project.org/docs/elements/core-elements.html\#core-overlay-layer links to 404 page not found [\#546](https://github.com/Polymer/polymer/issues/546)
- Polymer docs gives wrong information [\#545](https://github.com/Polymer/polymer/issues/545)
- Can't open .zip files.. [\#544](https://github.com/Polymer/polymer/issues/544)
- \[docs tutorial\] step 3 code sample post-service closing tag [\#543](https://github.com/Polymer/polymer/issues/543)
- All of the top menu functionalities are not working [\#542](https://github.com/Polymer/polymer/issues/542)
- Sidebar menu elements are overlaid [\#541](https://github.com/Polymer/polymer/issues/541)
- Edit on GitHub Link returning 404 error [\#540](https://github.com/Polymer/polymer/issues/540)
- rendering problems with new website in FF on osx [\#539](https://github.com/Polymer/polymer/issues/539)
- \[Docs\] polymer-ui-menu on docs page doesn't seem to be displaying correctly, Chromium and Firefox [\#538](https://github.com/Polymer/polymer/issues/538)
- I think I found a mistake in the tutorial, not sure where to put it... [\#536](https://github.com/Polymer/polymer/issues/536)
- \[In Docs\] Wrong link in "Demo" button [\#535](https://github.com/Polymer/polymer/issues/535)
- I think seed-element shouldn't advise ignoring .bowerrc [\#533](https://github.com/Polymer/polymer/issues/533)
- The trouble with the now-deprecated applyAuthorStyles in Polymer Elements [\#532](https://github.com/Polymer/polymer/issues/532)
- Polymer does not display cyrillic characters correctly [\#498](https://github.com/Polymer/polymer/issues/498)
## [0.3.3](https://github.com/Polymer/polymer/tree/0.3.3) (2014-06-20)
**Closed issues:**
- `stopPropagation\(\)` does not work for polymer events [\#530](https://github.com/Polymer/polymer/issues/530)
- bower.json missing "main" and "moduleType" [\#525](https://github.com/Polymer/polymer/issues/525)
- Published property with default value not reflected [\#509](https://github.com/Polymer/polymer/issues/509)
## [0.3.2](https://github.com/Polymer/polymer/tree/0.3.2) (2014-06-09)
**Closed issues:**
- Since 0.3.0 binding array elements doesn't work [\#526](https://github.com/Polymer/polymer/issues/526)
- minor documentation content issue [\#522](https://github.com/Polymer/polymer/issues/522)
- `\<content select=".test"\>` is not observing condition updates of child elements? [\#505](https://github.com/Polymer/polymer/issues/505)
## [0.3.1](https://github.com/Polymer/polymer/tree/0.3.1) (2014-05-30)
**Closed issues:**
- Bind to `value` on `\<input type="color"\>` [\#521](https://github.com/Polymer/polymer/issues/521)
- classList not working anymore [\#518](https://github.com/Polymer/polymer/issues/518)
## [0.3.0](https://github.com/Polymer/polymer/tree/0.3.0) (2014-05-27)
**Implemented enhancements:**
- Add Polymer.version [\#227](https://github.com/Polymer/polymer/issues/227)
**Closed issues:**
- Source Code Sandbox - Web Components en action - Google I / O 2013 [\#516](https://github.com/Polymer/polymer/issues/516)
- Adding an event handler in an event handler can lead to infinite looping [\#511](https://github.com/Polymer/polymer/issues/511)
- Polymer alters the results of scoped queries in querySelectorAll [\#508](https://github.com/Polymer/polymer/issues/508)
- A non-body element marked "unresolved" still gets shown during boot [\#507](https://github.com/Polymer/polymer/issues/507)
- When running Parse.FacebookUtils.init Polymer raises InvalidCharacterError exception. [\#506](https://github.com/Polymer/polymer/issues/506)
- Content incorrectly rendered inside table. [\#503](https://github.com/Polymer/polymer/issues/503)
- 404 on polymer-project.org/docs/start/customelements\#elementtypes [\#499](https://github.com/Polymer/polymer/issues/499)
- Chrome Packaged App: Refused to evaluate a string as JavaScript because 'unsafe-eval' .... [\#252](https://github.com/Polymer/polymer/issues/252)
- on-\* event delegation \(other than on host node\) does not work with non-bubbling events [\#208](https://github.com/Polymer/polymer/issues/208)
## [0.2.4](https://github.com/Polymer/polymer/tree/0.2.4) (2014-05-12)
**Closed issues:**
- Mongolian vowel separator causing exceptions. [\#495](https://github.com/Polymer/polymer/issues/495)
- Problem with root-relative URLs and the History API [\#494](https://github.com/Polymer/polymer/issues/494)
- Standalone template binding docs missing? [\#491](https://github.com/Polymer/polymer/issues/491)
- unable to use Polymer's dom mutation observer polyfill with mutation summary library [\#490](https://github.com/Polymer/polymer/issues/490)
- I guess there is a mistake in polymer documentation [\#489](https://github.com/Polymer/polymer/issues/489)
- Unclear how to bind complex data objects to new instances of polymer-element as a passed-in attribute [\#488](https://github.com/Polymer/polymer/issues/488)
- Update expressions doc to clarify what's observed [\#486](https://github.com/Polymer/polymer/issues/486)
- on-change doesn't get triggered when change happens programmatically [\#484](https://github.com/Polymer/polymer/issues/484)
- style="color:{{person.nameColor}}" does not work in IE11 [\#483](https://github.com/Polymer/polymer/issues/483)
- Publish a property by listing it in the `attributes` fails [\#482](https://github.com/Polymer/polymer/issues/482)
- Can't get polymer 0.2.3 via bower \(now\) [\#481](https://github.com/Polymer/polymer/issues/481)
- bower out of date? [\#480](https://github.com/Polymer/polymer/issues/480)
- Crash when Polymer/Platform loaded twice [\#478](https://github.com/Polymer/polymer/issues/478)
- Can't dynamically import an element definition in Canary [\#477](https://github.com/Polymer/polymer/issues/477)
- Middle clicking results in navigation not new tab [\#472](https://github.com/Polymer/polymer/issues/472)
## [0.2.3](https://github.com/Polymer/polymer/tree/0.2.3) (2014-04-18)
**Fixed bugs:**
- Including platform.js breaks YouTube's iframe API [\#468](https://github.com/Polymer/polymer/issues/468)
**Closed issues:**
- Custom pseudo-elements cannot be targeted outside shadow dom [\#475](https://github.com/Polymer/polymer/issues/475)
- document.registerElement\('foo', {extends: undefined}\) fails [\#462](https://github.com/Polymer/polymer/issues/462)
- onBeforeUnload Event broken [\#461](https://github.com/Polymer/polymer/issues/461)
## [0.2.2](https://github.com/Polymer/polymer/tree/0.2.2) (2014-03-31)
**Implemented enhancements:**
- Consider inferring polymer-element tag name for registration [\#195](https://github.com/Polymer/polymer/issues/195)
**Closed issues:**
- Reusing css libraries through out Polymer elements [\#459](https://github.com/Polymer/polymer/issues/459)
- Meta: Shadow DOM styling renames [\#458](https://github.com/Polymer/polymer/issues/458)
- Compatibility with Angular JS - manual bootstrap fails on document.body and document.documentElement when using Platform.js [\#457](https://github.com/Polymer/polymer/issues/457)
- Problem with data binding and custom attributes in Firefox 27, 29. [\#456](https://github.com/Polymer/polymer/issues/456)
- addEventListener beforeunload not working [\#445](https://github.com/Polymer/polymer/issues/445)
- Having any \<link rel="stylesheet"\> makes entire app fail to initialize [\#441](https://github.com/Polymer/polymer/issues/441)
- Issues with platform version resolution with Bower and 0.2.1 [\#440](https://github.com/Polymer/polymer/issues/440)
- Polymer event bindings don't pass Firefox Marketplace CSP checks [\#439](https://github.com/Polymer/polymer/issues/439)
- Iterating over a member object [\#436](https://github.com/Polymer/polymer/issues/436)
- \<template if\> evaluating all expressions twice [\#433](https://github.com/Polymer/polymer/issues/433)
- Remove support for applyAuthorStyles/resetStyleInheritance [\#425](https://github.com/Polymer/polymer/issues/425)
- Conflicts with Revealjs style sheets [\#410](https://github.com/Polymer/polymer/issues/410)
- Bower install broken for latest and \#0.1.3 [\#407](https://github.com/Polymer/polymer/issues/407)
- Add organization logo [\#361](https://github.com/Polymer/polymer/issues/361)
- Add a declarative way to set applyAuthorStyles on a element's shadowRoot [\#106](https://github.com/Polymer/polymer/issues/106)
## [0.2.1](https://github.com/Polymer/polymer/tree/0.2.1) (2014-03-07)
**Closed issues:**
- attributeChanged is not called under some circumstances [\#438](https://github.com/Polymer/polymer/issues/438)
- Add polyfill support for new Shadow DOM CSS cominbators [\#435](https://github.com/Polymer/polymer/issues/435)
- Problem with special characters and HTML entities [\#432](https://github.com/Polymer/polymer/issues/432)
- FOUC body\[unresolved\] should be \[unresolved\] [\#431](https://github.com/Polymer/polymer/issues/431)
- polymer-project.org menu scroll behaviour is distracting [\#430](https://github.com/Polymer/polymer/issues/430)
- polymer-list is broken in \#0.2.0 [\#427](https://github.com/Polymer/polymer/issues/427)
- polymer-project.org is slow [\#426](https://github.com/Polymer/polymer/issues/426)
- Polymer setup Instructions resulted in blank screen [\#423](https://github.com/Polymer/polymer/issues/423)
- Custom Elements and canvas/ctx functionality on iOS [\#422](https://github.com/Polymer/polymer/issues/422)
- External styles fails to load [\#420](https://github.com/Polymer/polymer/issues/420)
- Cannot access content \(childNodes\) in nested Polymer Element [\#414](https://github.com/Polymer/polymer/issues/414)
**Merged pull requests:**
- Update README.md [\#428](https://github.com/Polymer/polymer/pull/428) ([kentaromiura](https://github.com/kentaromiura))
## [0.2.0](https://github.com/Polymer/polymer/tree/0.2.0) (2014-02-15)
**Closed issues:**
- HTMLImports.Loader maybe callback twice [\#418](https://github.com/Polymer/polymer/issues/418)
- Binding to input type=range does not work in IE 11 [\#416](https://github.com/Polymer/polymer/issues/416)
- Serveral issues on Opera browser [\#411](https://github.com/Polymer/polymer/issues/411)
- Adding Polymer to a page causes Typekit fonts to break [\#408](https://github.com/Polymer/polymer/issues/408)
- Polymer bind method -- should take oneTime flag? [\#405](https://github.com/Polymer/polymer/issues/405)
- how to use part style in polymer? [\#376](https://github.com/Polymer/polymer/issues/376)
- polymer declarative event doesn't work in lightdom mode [\#331](https://github.com/Polymer/polymer/issues/331)
- Expose a way to get shadowRoots by name of creating declaration, e.g. getShadowRoot\('x-foo'\) [\#310](https://github.com/Polymer/polymer/issues/310)
**Merged pull requests:**
- update copyright year [\#412](https://github.com/Polymer/polymer/pull/412) ([gdi2290](https://github.com/gdi2290))
## [0.1.4](https://github.com/Polymer/polymer/tree/0.1.4) (2014-01-27)
**Closed issues:**
- polymer-localstorage-load only fires if the value has previously been set [\#404](https://github.com/Polymer/polymer/issues/404)
- CSS generated content without space goes missing \(Safari\) [\#403](https://github.com/Polymer/polymer/issues/403)
- \(docs\): Core API reference page doesn't load [\#400](https://github.com/Polymer/polymer/issues/400)
- Repeating a template from "content" does not work with repeat="d in data" [\#396](https://github.com/Polymer/polymer/issues/396)
## [0.1.3](https://github.com/Polymer/polymer/tree/0.1.3) (2014-01-17)
**Closed issues:**
- polymer-ajax is missing the "body" attribute in the \<polymer-element\> declaration [\#395](https://github.com/Polymer/polymer/issues/395)
- this year is 2014 [\#394](https://github.com/Polymer/polymer/issues/394)
- Can't separate attributes in element's definition with vertical whitespace [\#393](https://github.com/Polymer/polymer/issues/393)
- "deliverDeclarations Platform is not a function" error loading polymer.js [\#391](https://github.com/Polymer/polymer/issues/391)
- Assertion Error thrown [\#388](https://github.com/Polymer/polymer/issues/388)
## [0.1.2](https://github.com/Polymer/polymer/tree/0.1.2) (2014-01-10)
**Closed issues:**
- Polymer UI Sidebar Menu doesn't work in JSBin [\#389](https://github.com/Polymer/polymer/issues/389)
- Pointer Event Example links currently 404 Not Found [\#385](https://github.com/Polymer/polymer/issues/385)
- Getting started examples are all broken for tk-\* [\#383](https://github.com/Polymer/polymer/issues/383)
- function strings for declarative event handlers appear in the markup [\#378](https://github.com/Polymer/polymer/issues/378)
- binding to multiple mustaches \(e.g. foo="{{bar}} {{zot}}"\) causes exception [\#377](https://github.com/Polymer/polymer/issues/377)
- Attribute value not correctly propagated to elements [\#374](https://github.com/Polymer/polymer/issues/374)
- Calling this.super can refer to the wrong method [\#373](https://github.com/Polymer/polymer/issues/373)
- "Getting the code" instructions are out of date/broken [\#369](https://github.com/Polymer/polymer/issues/369)
- polymer-ui-menu-item does not show the icon [\#365](https://github.com/Polymer/polymer/issues/365)
- polymer-selected class is not applied to Polymer UI elements [\#364](https://github.com/Polymer/polymer/issues/364)
- InvalidCharacterError on document.register if $ exists in constructor function name [\#362](https://github.com/Polymer/polymer/issues/362)
- Exception when running on Canary without Experimental Web Platform Features [\#360](https://github.com/Polymer/polymer/issues/360)
- Page navigation issue [\#353](https://github.com/Polymer/polymer/issues/353)
- in polymer 0.0.20131025 element id attribute not allowed [\#332](https://github.com/Polymer/polymer/issues/332)
- FAQ entry on scoped animations is not accurate [\#141](https://github.com/Polymer/polymer/issues/141)
## [0.1.1](https://github.com/Polymer/polymer/tree/0.1.1) (2013-12-12)
**Closed issues:**
- Polyfill support for reprojecting content in shadow nodes [\#367](https://github.com/Polymer/polymer/issues/367)
- bower instructions don't work [\#366](https://github.com/Polymer/polymer/issues/366)
- Broken Links [\#359](https://github.com/Polymer/polymer/issues/359)
- Failing to import polymer.html can cause an infinite loop [\#356](https://github.com/Polymer/polymer/issues/356)
- The bower pkg looks broken [\#355](https://github.com/Polymer/polymer/issues/355)
- Documentation display issue [\#352](https://github.com/Polymer/polymer/issues/352)
## [0.1.0](https://github.com/Polymer/polymer/tree/0.1.0) (2013-11-27)
**Closed issues:**
- shim styling: need to support ^ and ^^ when they are defined outside of \<polymer-element\> [\#354](https://github.com/Polymer/polymer/issues/354)
- Extensions to type extension custom elements must specify an extends property when registering [\#347](https://github.com/Polymer/polymer/issues/347)
- ShadowDOM polyfill breaks CSS `content: attr\(foo\)` [\#345](https://github.com/Polymer/polymer/issues/345)
## [v0.0.20131107](https://github.com/Polymer/polymer/tree/v0.0.20131107) (2013-11-07)
**Closed issues:**
- `ready` and `created` are listed in the wrong order [\#338](https://github.com/Polymer/polymer/issues/338)
- CSS: pseudo-classes don't work with :host under the polyfill [\#335](https://github.com/Polymer/polymer/issues/335)
- Allow bindings to wire events to functions [\#324](https://github.com/Polymer/polymer/issues/324)
## [v0.0.20131025](https://github.com/Polymer/polymer/tree/v0.0.20131025) (2013-10-25)
**Implemented enhancements:**
- Consider providing a mechanism to easily observe a set of property paths [\#194](https://github.com/Polymer/polymer/issues/194)
**Closed issues:**
- binding style attribute in IE doesn't work [\#327](https://github.com/Polymer/polymer/issues/327)
- CSS: only add \[is=..\] selector if element is type-extension [\#320](https://github.com/Polymer/polymer/issues/320)
- Clarification on use of template repeat for \<tr\> & \<select\> [\#318](https://github.com/Polymer/polymer/issues/318)
- Autofocus doesn't work with polymer-veiling. [\#317](https://github.com/Polymer/polymer/issues/317)
- Polyfill: @polyfill @host rules are broken in an extended element [\#315](https://github.com/Polymer/polymer/issues/315)
- Polyfill: Parent styles are not inherited if there's no \<template\> in an extended class [\#314](https://github.com/Polymer/polymer/issues/314)
**Merged pull requests:**
- Event bindings [\#328](https://github.com/Polymer/polymer/pull/328) ([azakus](https://github.com/azakus))
- Remove SideTable dependency [\#322](https://github.com/Polymer/polymer/pull/322) ([azakus](https://github.com/azakus))
- fix Node.bind to pass the property name to reflectPropertyToAttribute [\#319](https://github.com/Polymer/polymer/pull/319) ([jmesserly](https://github.com/jmesserly))
## [v0.0.20131010](https://github.com/Polymer/polymer/tree/v0.0.20131010) (2013-10-10)
**Closed issues:**
- trailing space in polymer attributes causes exception in IE10 [\#313](https://github.com/Polymer/polymer/issues/313)
- Calling cancelUnbindAll is cumbersome under the CustomElements polyfill [\#312](https://github.com/Polymer/polymer/issues/312)
- Calling methods on proxies returned when querying nodes can yield different results than calling directly on impl even without shadow dom use [\#309](https://github.com/Polymer/polymer/issues/309)
- Using this.$.\[id\] syntax yields different results in Canary than when using Polyfill [\#308](https://github.com/Polymer/polymer/issues/308)
- Debugging polymer apps: stack trace is wacko [\#307](https://github.com/Polymer/polymer/issues/307)
- Need Object.observe-enabled builders in waterfall [\#306](https://github.com/Polymer/polymer/issues/306)
- FR: Error on failed import [\#189](https://github.com/Polymer/polymer/issues/189)
## [v0.0.20131003](https://github.com/Polymer/polymer/tree/v0.0.20131003) (2013-10-03)
**Implemented enhancements:**
- Allow hooking into the template instantiation process [\#156](https://github.com/Polymer/polymer/issues/156)
- Support stylesheets in element templates [\#146](https://github.com/Polymer/polymer/issues/146)
- System for automatic setting of component instance attributes [\#92](https://github.com/Polymer/polymer/issues/92)
**Closed issues:**
- Polymer tests failing with Object.observe enabled [\#302](https://github.com/Polymer/polymer/issues/302)
- FAQ bug: polymer fails CSP because of inline script tags not XHR. [\#301](https://github.com/Polymer/polymer/issues/301)
- \<propertyName\>Changed may get called twice for a single property value change [\#298](https://github.com/Polymer/polymer/issues/298)
- Two-way Binding doesn't work in canary [\#297](https://github.com/Polymer/polymer/issues/297)
- please create gh-pages [\#294](https://github.com/Polymer/polymer/issues/294)
- Conditional attributes are not properly bound [\#293](https://github.com/Polymer/polymer/issues/293)
- Bound boolean isn't set from true to false when radio button is unchecked [\#291](https://github.com/Polymer/polymer/issues/291)
- Bindings in nested templates with named scopes fail to update correctly after initial population [\#285](https://github.com/Polymer/polymer/issues/285)
- \<content\> not being displayed if too deep. [\#283](https://github.com/Polymer/polymer/issues/283)
- polymer-element who to fire properties change? [\#282](https://github.com/Polymer/polymer/issues/282)
- how to get inner element [\#280](https://github.com/Polymer/polymer/issues/280)
- how to bind tap event on children node [\#278](https://github.com/Polymer/polymer/issues/278)
- Provide finer control over unresolved element styling [\#276](https://github.com/Polymer/polymer/issues/276)
- Question regarding your usage of a getter [\#274](https://github.com/Polymer/polymer/issues/274)
- Consider removing "tools" submodule [\#271](https://github.com/Polymer/polymer/issues/271)
- Community registry in the wild [\#268](https://github.com/Polymer/polymer/issues/268)
- HTMLImports fails on IE9 [\#229](https://github.com/Polymer/polymer/issues/229)
- External element scripts not loading [\#216](https://github.com/Polymer/polymer/issues/216)
- polymer-element script tag are ignored when using innerHTML to inject polymer-element\(s\) into the page [\#205](https://github.com/Polymer/polymer/issues/205)
- Galaxy Nexus Stock-Browser [\#202](https://github.com/Polymer/polymer/issues/202)
- Allow body FOUC prevention to be optional [\#197](https://github.com/Polymer/polymer/issues/197)
- Consider converting attributes with dashes into to camelCased properties [\#193](https://github.com/Polymer/polymer/issues/193)
- \(IE only\) Last element created by \<template repeat\> is unbound [\#187](https://github.com/Polymer/polymer/issues/187)
- Can't bind to the value of a custom element that extends \<input\> [\#186](https://github.com/Polymer/polymer/issues/186)
- Calling offsetWidth in a style-modifying forEach is slow [\#180](https://github.com/Polymer/polymer/issues/180)
- Explicitly fire ready\(\) [\#178](https://github.com/Polymer/polymer/issues/178)
- Consider deserializing to Number only if property is already Number-valued [\#120](https://github.com/Polymer/polymer/issues/120)
- Cannot load Google's jsapi inside of a component [\#115](https://github.com/Polymer/polymer/issues/115)
- Document toolkit styling helpers [\#101](https://github.com/Polymer/polymer/issues/101)
- Make sure properties are not doc'd as attributes [\#96](https://github.com/Polymer/polymer/issues/96)
- Document that attributes and properties are not dynamically converted [\#94](https://github.com/Polymer/polymer/issues/94)
**Merged pull requests:**
- Removes unnecessary px declarations in coordinate attributes. [\#289](https://github.com/Polymer/polymer/pull/289) ([mrmrs](https://github.com/mrmrs))
- remove extra argument to unbindProperty that was ignored [\#286](https://github.com/Polymer/polymer/pull/286) ([jmesserly](https://github.com/jmesserly))
- small fix to bubbles parameter of utils.fire [\#284](https://github.com/Polymer/polymer/pull/284) ([jmesserly](https://github.com/jmesserly))
## [v0.0.20130912](https://github.com/Polymer/polymer/tree/v0.0.20130912) (2013-09-12)
**Fixed bugs:**
- Updated use of PathObservers to match new API [\#267](https://github.com/Polymer/polymer/issues/267)
**Closed issues:**
- Point each repo's CONTRIBUTING file to Polymer's [\#273](https://github.com/Polymer/polymer/issues/273)
- Nested templates throwing exceptions with reference to observe.js [\#264](https://github.com/Polymer/polymer/issues/264)
- Perf regression in polyfill - 20130808 release [\#236](https://github.com/Polymer/polymer/issues/236)
- Auto-registration of polymer-elements broken? [\#221](https://github.com/Polymer/polymer/issues/221)
## [v0.0.20130905](https://github.com/Polymer/polymer/tree/v0.0.20130905) (2013-09-05)
**Closed issues:**
- SD polyfill in latest release breaks chromestatus.com [\#263](https://github.com/Polymer/polymer/issues/263)
- On latest Chrome Canary, using vulcanized version won't show the style of elements [\#262](https://github.com/Polymer/polymer/issues/262)
- grunt will fail using the latest commit of polymer-all [\#261](https://github.com/Polymer/polymer/issues/261)
- Need a way to get the activeElement inside a Polymer element [\#253](https://github.com/Polymer/polymer/issues/253)
- When using minified version on polymer, images of the button don't show in the ui-toolbar example [\#251](https://github.com/Polymer/polymer/issues/251)
- Make sure boolean properties are reflected as boolean attributes [\#240](https://github.com/Polymer/polymer/issues/240)
- Attributes are not reflected at bind time [\#239](https://github.com/Polymer/polymer/issues/239)
- HTML imports fail when url params contain '/' characters [\#238](https://github.com/Polymer/polymer/issues/238)
- Unable to use the Sandbox on Chrome \<= 28 [\#138](https://github.com/Polymer/polymer/issues/138)
## [v0.0.20130829](https://github.com/Polymer/polymer/tree/v0.0.20130829) (2013-08-28)
**Closed issues:**
- loading a local file \(file:///\) using polymer will fail to load properly [\#260](https://github.com/Polymer/polymer/issues/260)
- uppercase signals do not work [\#256](https://github.com/Polymer/polymer/issues/256)
- Chrome Packaged App: including UI elements in an application will show some errors [\#249](https://github.com/Polymer/polymer/issues/249)
- Changing a DOM attribute doesn't change the model [\#246](https://github.com/Polymer/polymer/issues/246)
- Latest build broken w/ jQuery \(chrome 28\) [\#243](https://github.com/Polymer/polymer/issues/243)
- window.Loader name colliding with ES6 window.Loader \(modules\) [\#237](https://github.com/Polymer/polymer/issues/237)
**Merged pull requests:**
- Recursive build for polymer [\#250](https://github.com/Polymer/polymer/pull/250) ([azakus](https://github.com/azakus))
## [v0.0.20130815](https://github.com/Polymer/polymer/tree/v0.0.20130815) (2013-08-15)
## [v0.0.20130816](https://github.com/Polymer/polymer/tree/v0.0.20130816) (2013-08-15)
**Fixed bugs:**
- FF broken in latest release w/ dom.webcomponents.enabled: true [\#235](https://github.com/Polymer/polymer/issues/235)
**Closed issues:**
- HTMLImports fails silently on Chrome 28.0.1500.95 \(Debian , 64bit\) [\#234](https://github.com/Polymer/polymer/issues/234)
- ss [\#233](https://github.com/Polymer/polymer/issues/233)
- Internet Explorer - not working at all [\#217](https://github.com/Polymer/polymer/issues/217)
**Merged pull requests:**
- 8/15 master -\> stable [\#241](https://github.com/Polymer/polymer/pull/241) ([azakus](https://github.com/azakus))
- Fixes for some of the workbench samples [\#232](https://github.com/Polymer/polymer/pull/232) ([chrisbu](https://github.com/chrisbu))
## [v0.0.20130808](https://github.com/Polymer/polymer/tree/v0.0.20130808) (2013-08-08)
**Implemented enhancements:**
- Add @version string to build files [\#226](https://github.com/Polymer/polymer/issues/226)
**Closed issues:**
- Events on distributed nodes aren't bubbled to parent nodes in shadow DOM under polyfill [\#230](https://github.com/Polymer/polymer/issues/230)
- `ReferenceError: PathObserver is not defined` when loading in node-webkit [\#228](https://github.com/Polymer/polymer/issues/228)
**Merged pull requests:**
- 8/8 master -\> stable [\#231](https://github.com/Polymer/polymer/pull/231) ([azakus](https://github.com/azakus))
## [v0.0.20130801](https://github.com/Polymer/polymer/tree/v0.0.20130801) (2013-08-01)
**Implemented enhancements:**
- It's awkward to make a property with an object default value [\#215](https://github.com/Polymer/polymer/issues/215)
- Throw a more useful error if Polymer.register is used [\#210](https://github.com/Polymer/polymer/issues/210)
- Consider if/when/how to reflect bound property values to attributes [\#188](https://github.com/Polymer/polymer/issues/188)
- Make platform and toolkit builds available as simple downloads and/or from CDN [\#87](https://github.com/Polymer/polymer/issues/87)
**Closed issues:**
- If `Polymer\(\)` is not called almost immediately, the element is not initialised. [\#214](https://github.com/Polymer/polymer/issues/214)
- Input value is not initialised. [\#213](https://github.com/Polymer/polymer/issues/213)
- Fail more gracefully on unsupported browsers [\#207](https://github.com/Polymer/polymer/issues/207)
- Binding and xxxChanged function break if element is moved to a different shadow [\#203](https://github.com/Polymer/polymer/issues/203)
- table element problems on firefox [\#196](https://github.com/Polymer/polymer/issues/196)
- Bindings on a range input not working well in google chrome [\#182](https://github.com/Polymer/polymer/issues/182)
- Add support for creating Polymer elements imperatively [\#163](https://github.com/Polymer/polymer/issues/163)
- Issue with scrolling using the flot library [\#162](https://github.com/Polymer/polymer/issues/162)
- \[Feature Request\] Using Bower instead of submodules [\#147](https://github.com/Polymer/polymer/issues/147)
- minor documentation typo [\#139](https://github.com/Polymer/polymer/issues/139)
**Merged pull requests:**
- 8/1 master -\> stable [\#223](https://github.com/Polymer/polymer/pull/223) ([azakus](https://github.com/azakus))
## [v0.0.20130711](https://github.com/Polymer/polymer/tree/v0.0.20130711) (2013-07-11)
**Implemented enhancements:**
- Support resetStyleInheritance on prototype [\#199](https://github.com/Polymer/polymer/issues/199)
- Add styling polyfill support for pseudos [\#152](https://github.com/Polymer/polymer/issues/152)
**Fixed bugs:**
- template/element polyfill styling need !important [\#191](https://github.com/Polymer/polymer/issues/191)
- Type extension elements lose styling under polyfill [\#171](https://github.com/Polymer/polymer/issues/171)
- When polymer-scope="global" is used to pull a stylesheet to the document, it appears multiple times [\#155](https://github.com/Polymer/polymer/issues/155)
- PathObservers in observeProperties.js must be created at insertedCallback and removed at removeCallback [\#121](https://github.com/Polymer/polymer/issues/121)
- shimStyling: styles defined within shadowDOM are not prefixed with the scope name in Firefox [\#107](https://github.com/Polymer/polymer/issues/107)
- Event target is incorrect after certain DOM changes in ShadowDOM Polyfill [\#102](https://github.com/Polymer/polymer/issues/102)
- Bindings in icon-button fail under ShadowDOMPolyfill [\#83](https://github.com/Polymer/polymer/issues/83)
- \[dev\] Uncaught ReferenceError: SideTable is not defined [\#80](https://github.com/Polymer/polymer/issues/80)
- \[dev\] template iterate doesn't work inside component [\#79](https://github.com/Polymer/polymer/issues/79)
- Toolkit Components fail if they have a property named "node" [\#78](https://github.com/Polymer/polymer/issues/78)
- Support component upgrade using "is" style declaration [\#71](https://github.com/Polymer/polymer/issues/71)
- Styles declared in a component's shadowRoot should not leak out of the component [\#70](https://github.com/Polymer/polymer/issues/70)
- this.node.webkitShadowRoot needs to return ShadowRoot [\#68](https://github.com/Polymer/polymer/issues/68)
- Commented @host rule style gets applied [\#67](https://github.com/Polymer/polymer/issues/67)
- data: URLs are being rewritten to relative URLs in \<style\> [\#66](https://github.com/Polymer/polymer/issues/66)
- Custom Element shim incorrectly handles @host rule [\#65](https://github.com/Polymer/polymer/issues/65)
- path.js needs to handle absolute url paths [\#62](https://github.com/Polymer/polymer/issues/62)
- imperative instantiation is broken [\#56](https://github.com/Polymer/polymer/issues/56)
- nodes inside a component's shadowDOM have incorrect model when using shadowDOM shim [\#43](https://github.com/Polymer/polymer/issues/43)
- g-component custom events can be handled in wrong scope [\#30](https://github.com/Polymer/polymer/issues/30)
**Closed issues:**
- Consider optimizing propertyForAttribute [\#181](https://github.com/Polymer/polymer/issues/181)
- nameInThis\(\) in oop.js is slow [\#177](https://github.com/Polymer/polymer/issues/177)
- Internationalization of Web Components [\#175](https://github.com/Polymer/polymer/issues/175)
- polymer-scope="controller" should not install the same stylesheet multiple times [\#173](https://github.com/Polymer/polymer/issues/173)
- Add polyfill styling support for @host :scope [\#170](https://github.com/Polymer/polymer/issues/170)
- Error loading polymer if window.location.hash is not null [\#167](https://github.com/Polymer/polymer/issues/167)
- Unexpected result upgraded plain DOM to custom element instance [\#166](https://github.com/Polymer/polymer/issues/166)
- Alias this.webkitShadowRoot -\> this.shadowRoot [\#165](https://github.com/Polymer/polymer/issues/165)
- Simplest way to "Fire up a web server" to run examples [\#161](https://github.com/Polymer/polymer/issues/161)
- Custom elements seem to cache data after being deleted and re-added [\#159](https://github.com/Polymer/polymer/issues/159)
- Prevent memory leaking under MDV polyfill [\#154](https://github.com/Polymer/polymer/issues/154)
- Element templates are stamped into shadowRoot with unbound values [\#153](https://github.com/Polymer/polymer/issues/153)
- Styles should not be shimmed asynchronously under ShadowDOMPolyfill [\#151](https://github.com/Polymer/polymer/issues/151)
- Polymer.js fails to load with "ReferenceError: Can't find variable: Window" on Windows 7 Safari browser and iPad 1 iOS 5.1.1 [\#149](https://github.com/Polymer/polymer/issues/149)
- Stylesheets in \<element\> elements are emitted in incorrect order [\#148](https://github.com/Polymer/polymer/issues/148)
- Web animations is not loaded by Polymer [\#140](https://github.com/Polymer/polymer/issues/140)
- Polymer components should be called monomers. [\#137](https://github.com/Polymer/polymer/issues/137)
- Small error in "Getting Started" tutorial [\#136](https://github.com/Polymer/polymer/issues/136)
- add doc-comments to 'base.js' [\#133](https://github.com/Polymer/polymer/issues/133)
- Attribute-based styles not always updated [\#132](https://github.com/Polymer/polymer/issues/132)
- attributeChanged event on "sub-component" not fired in Canary but works in Chrome [\#131](https://github.com/Polymer/polymer/issues/131)
- Stylesheets throw exception if toolkit-scope is defined and the element definition is inline [\#127](https://github.com/Polymer/polymer/issues/127)
- Consider deserializing to Array from attributes, if property is Array-valued [\#124](https://github.com/Polymer/polymer/issues/124)
- Modify attrs.js to accept Date strings in custom element attribute values [\#118](https://github.com/Polymer/polymer/issues/118)
- Attribute value that's a comma delineated list of numbers is converted to a property incorrectly [\#117](https://github.com/Polymer/polymer/issues/117)
- Including toolkit.js on a page moves all \<style\>s to the \<head\>. [\#114](https://github.com/Polymer/polymer/issues/114)
- PointerEvents registration fails in the presence of ShadowDOMPolyfill in some cases [\#111](https://github.com/Polymer/polymer/issues/111)
- Distributing template content to a shadowDOM can fail under shadowDOM polyfill [\#110](https://github.com/Polymer/polymer/issues/110)
- Cursor moves to end of input after typing [\#109](https://github.com/Polymer/polymer/issues/109)
- toolkitchen.github.io code samples not showing up in ff [\#105](https://github.com/Polymer/polymer/issues/105)
- Document Browser support and test coverage using Testing CI and Travis CI [\#104](https://github.com/Polymer/polymer/issues/104)
- clean up commented code in events.js [\#100](https://github.com/Polymer/polymer/issues/100)
- rename `base.send` to `base.fire` or `base.bubble` [\#98](https://github.com/Polymer/polymer/issues/98)
- toolkit.min.js missing method shimStyling [\#91](https://github.com/Polymer/polymer/issues/91)
- Git repo url incorrect [\#89](https://github.com/Polymer/polymer/issues/89)
- Menu-button workbench file hangs chrome under ShadowDOM Polyfill [\#86](https://github.com/Polymer/polymer/issues/86)
- can't make bindings to objects on elements instantiated by mdv [\#81](https://github.com/Polymer/polymer/issues/81)
- Don't name things \_, \_\_ and $ [\#73](https://github.com/Polymer/polymer/issues/73)
- @host styles aren't processed for base elements [\#72](https://github.com/Polymer/polymer/issues/72)
- "export" flag attribute documented in platform.js is actually "exportas" [\#64](https://github.com/Polymer/polymer/issues/64)
- handlers="..." declarative events listen on the host element and therefore see no event target info for events generated in shadowDom [\#41](https://github.com/Polymer/polymer/issues/41)
- MutationObserver code for custom event \(on-\*\) binding is inefficient [\#24](https://github.com/Polymer/polymer/issues/24)
- g-component published properties don't inherit [\#18](https://github.com/Polymer/polymer/issues/18)
- g-component property automation is inefficient [\#15](https://github.com/Polymer/polymer/issues/15)
- Add unit tests for g-overlay, g-selector, g-selection [\#11](https://github.com/Polymer/polymer/issues/11)
- Document public api [\#10](https://github.com/Polymer/polymer/issues/10)
- have some good defaults for g-overlay [\#7](https://github.com/Polymer/polymer/issues/7)
**Merged pull requests:**
- 7/11 master -\> stable [\#204](https://github.com/Polymer/polymer/pull/204) ([azakus](https://github.com/azakus))
- Correct test to check global div [\#201](https://github.com/Polymer/polymer/pull/201) ([ebidel](https://github.com/ebidel))
- Fixes issue \#199 - adds support for resetStyleInheritance on prototype [\#200](https://github.com/Polymer/polymer/pull/200) ([ebidel](https://github.com/ebidel))
- Switch to \<polymer-element\> [\#192](https://github.com/Polymer/polymer/pull/192) ([azakus](https://github.com/azakus))
- 6/17 master -\> stable [\#184](https://github.com/Polymer/polymer/pull/184) ([azakus](https://github.com/azakus))
- Fix a typo in contributing.md [\#183](https://github.com/Polymer/polymer/pull/183) ([alexhancock](https://github.com/alexhancock))
- Flatten repos [\#174](https://github.com/Polymer/polymer/pull/174) ([azakus](https://github.com/azakus))
- 6/5 master -\> stable [\#172](https://github.com/Polymer/polymer/pull/172) ([azakus](https://github.com/azakus))
- Merge mdv-syntax branch [\#168](https://github.com/Polymer/polymer/pull/168) ([sjmiles](https://github.com/sjmiles))
- added array & obj support to attrs.js \(plus refactor\) [\#158](https://github.com/Polymer/polymer/pull/158) ([bsatrom](https://github.com/bsatrom))
- Fix link in CONTRIBUTING.md [\#144](https://github.com/Polymer/polymer/pull/144) ([markhealey](https://github.com/markhealey))
- 5/15 master -\> stable [\#135](https://github.com/Polymer/polymer/pull/135) ([azakus](https://github.com/azakus))
- 5/14 master -\> stable [\#134](https://github.com/Polymer/polymer/pull/134) ([azakus](https://github.com/azakus))
- Add custom date parsing module [\#130](https://github.com/Polymer/polymer/pull/130) ([bsatrom](https://github.com/bsatrom))
- 5/9 master -\> stable [\#125](https://github.com/Polymer/polymer/pull/125) ([azakus](https://github.com/azakus))
- added deserialization of Date attributes for custom elements [\#122](https://github.com/Polymer/polymer/pull/122) ([bsatrom](https://github.com/bsatrom))
- merge Observer branch [\#113](https://github.com/Polymer/polymer/pull/113) ([sjmiles](https://github.com/sjmiles))
- 4/17 master -\> stable [\#99](https://github.com/Polymer/polymer/pull/99) ([azakus](https://github.com/azakus))
- Bring experimental test harness in from alt-test branch [\#85](https://github.com/Polymer/polymer/pull/85) ([sjmiles](https://github.com/sjmiles))
- Wrap grunt test in xvfb for virtual display. [\#84](https://github.com/Polymer/polymer/pull/84) ([agable-chromium](https://github.com/agable-chromium))
- Add step-generator script to toolkit [\#82](https://github.com/Polymer/polymer/pull/82) ([agable-chromium](https://github.com/agable-chromium))
- Stop using \_\_{lookup,define}{G,S}etter\_\_ [\#76](https://github.com/Polymer/polymer/pull/76) ([arv](https://github.com/arv))
- Use XMLHttpRequest directly [\#75](https://github.com/Polymer/polymer/pull/75) ([arv](https://github.com/arv))
- Updating meta tag [\#61](https://github.com/Polymer/polymer/pull/61) ([ebidel](https://github.com/ebidel))
- Adding Contributors guide [\#60](https://github.com/Polymer/polymer/pull/60) ([ebidel](https://github.com/ebidel))
- Tweaks to README. [\#58](https://github.com/Polymer/polymer/pull/58) ([ebidel](https://github.com/ebidel))
- latest event handling scheme [\#55](https://github.com/Polymer/polymer/pull/55) ([sjmiles](https://github.com/sjmiles))
- g-panels updates [\#54](https://github.com/Polymer/polymer/pull/54) ([sorvell](https://github.com/sorvell))
- g-component tweaks to improve data-binding [\#53](https://github.com/Polymer/polymer/pull/53) ([sjmiles](https://github.com/sjmiles))
- updated components for the new changes in g-component [\#52](https://github.com/Polymer/polymer/pull/52) ([frankiefu](https://github.com/frankiefu))
- Merge polybinding branch into master [\#51](https://github.com/Polymer/polymer/pull/51) ([sjmiles](https://github.com/sjmiles))
- minor fixes to support app development [\#49](https://github.com/Polymer/polymer/pull/49) ([sorvell](https://github.com/sorvell))
- added g-menu-button and g-toolbar [\#48](https://github.com/Polymer/polymer/pull/48) ([frankiefu](https://github.com/frankiefu))
- g-overlay: simplify styling. [\#47](https://github.com/Polymer/polymer/pull/47) ([sorvell](https://github.com/sorvell))
- g-overlay update: simplify and add basic management for focus and z-index. [\#46](https://github.com/Polymer/polymer/pull/46) ([sorvell](https://github.com/sorvell))
- add unit tests to cover more components and the latest sugaring in g-components [\#45](https://github.com/Polymer/polymer/pull/45) ([frankiefu](https://github.com/frankiefu))
- fixes issue \#30: allow findController to step out of lightDOM [\#44](https://github.com/Polymer/polymer/pull/44) ([sjmiles](https://github.com/sjmiles))
- update g-ajax and minor g-panels and g-page fixes [\#42](https://github.com/Polymer/polymer/pull/42) ([sorvell](https://github.com/sorvell))
- update to use the new g-component sugar [\#40](https://github.com/Polymer/polymer/pull/40) ([frankiefu](https://github.com/frankiefu))
- g-component minor fixup; updates for g-page and g-panels [\#39](https://github.com/Polymer/polymer/pull/39) ([sorvell](https://github.com/sorvell))
- implement new 'protected' syntax [\#38](https://github.com/Polymer/polymer/pull/38) ([sjmiles](https://github.com/sjmiles))
- g-component and g-panels minor changes [\#37](https://github.com/Polymer/polymer/pull/37) ([sorvell](https://github.com/sorvell))
- filter mustaches in takeAttributes, other minor tweaks [\#36](https://github.com/Polymer/polymer/pull/36) ([sjmiles](https://github.com/sjmiles))
- g-page: use external stylesheet [\#35](https://github.com/Polymer/polymer/pull/35) ([sorvell](https://github.com/sorvell))
- added g-page component [\#34](https://github.com/Polymer/polymer/pull/34) ([sorvell](https://github.com/sorvell))
- g-component attribute parsing fix; g-panels & g-overlay & g-ajax minor fixes [\#33](https://github.com/Polymer/polymer/pull/33) ([sorvell](https://github.com/sorvell))
- bug fixes, more indirection around 'conventions' [\#32](https://github.com/Polymer/polymer/pull/32) ([sjmiles](https://github.com/sjmiles))
- minor updates/fixes to g-component, selector and menu [\#31](https://github.com/Polymer/polymer/pull/31) ([frankiefu](https://github.com/frankiefu))
- g-panels minor bug fixes [\#29](https://github.com/Polymer/polymer/pull/29) ([sorvell](https://github.com/sorvell))
- add g-panels [\#28](https://github.com/Polymer/polymer/pull/28) ([sorvell](https://github.com/sorvell))
- g-overlay: refactor/simplify [\#27](https://github.com/Polymer/polymer/pull/27) ([sorvell](https://github.com/sorvell))
- g-component: fix typo [\#26](https://github.com/Polymer/polymer/pull/26) ([sorvell](https://github.com/sorvell))
- update components based on changes in g-component [\#25](https://github.com/Polymer/polymer/pull/25) ([frankiefu](https://github.com/frankiefu))
- MDV sugaring [\#23](https://github.com/Polymer/polymer/pull/23) ([sjmiles](https://github.com/sjmiles))
- menu component and basic component unit tests [\#22](https://github.com/Polymer/polymer/pull/22) ([frankiefu](https://github.com/frankiefu))
- "DOMTokenList.enable" was renamed to "toggle" at platform, update polyfill [\#21](https://github.com/Polymer/polymer/pull/21) ([sjmiles](https://github.com/sjmiles))
- use MutationObserver to maintain custom event bindings, bug fixes [\#20](https://github.com/Polymer/polymer/pull/20) ([sjmiles](https://github.com/sjmiles))
- tabs component, simplify togglebutton and more unit tests [\#19](https://github.com/Polymer/polymer/pull/19) ([frankiefu](https://github.com/frankiefu))
- unit test harness [\#17](https://github.com/Polymer/polymer/pull/17) ([frankiefu](https://github.com/frankiefu))
- use shadow="shim" instead of shimShadow for compatibility with URL override [\#16](https://github.com/Polymer/polymer/pull/16) ([sjmiles](https://github.com/sjmiles))
- change property automation to be property-first instead of attribute-first [\#14](https://github.com/Polymer/polymer/pull/14) ([sjmiles](https://github.com/sjmiles))
- call shadowRootCreated in the right scope and add g-ratings component [\#13](https://github.com/Polymer/polymer/pull/13) ([frankiefu](https://github.com/frankiefu))
- update for names changes in polyfill [\#12](https://github.com/Polymer/polymer/pull/12) ([frankiefu](https://github.com/frankiefu))
- add g-selection and g-selector components [\#9](https://github.com/Polymer/polymer/pull/9) ([sjmiles](https://github.com/sjmiles))
- add ajax and togglebutton components [\#8](https://github.com/Polymer/polymer/pull/8) ([frankiefu](https://github.com/frankiefu))
- various changes to enable g-overlay [\#6](https://github.com/Polymer/polymer/pull/6) ([sjmiles](https://github.com/sjmiles))
- add g-icon-button [\#4](https://github.com/Polymer/polymer/pull/4) ([sjmiles](https://github.com/sjmiles))
- fix path [\#3](https://github.com/Polymer/polymer/pull/3) ([sjmiles](https://github.com/sjmiles))
- make workBench live with toolkit [\#2](https://github.com/Polymer/polymer/pull/2) ([sjmiles](https://github.com/sjmiles))
- Initial Components [\#1](https://github.com/Polymer/polymer/pull/1) ([sjmiles](https://github.com/sjmiles))
|