Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds auto-generated initial CHANGELOG.md using https://github.com/skywinder/github-changelog-generator #289

Merged
merged 74 commits into from
Nov 2, 2017

Commits on Sep 29, 2017

  1. Adds custom elements support for Metal components

    Julien C authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    bce50b5 View commit details
    Browse the repository at this point in the history
  2. Rename to match style guide

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    2dd0169 View commit details
    Browse the repository at this point in the history
  3. Update metal-custom-element dependencies

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    50c845c View commit details
    Browse the repository at this point in the history
  4. Add useshadowdom attribute to custom elements so that shadow DOM can …

    …be opted in on render
    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    09b23e7 View commit details
    Browse the repository at this point in the history
  5. Generate package-lock.json for metal-custom-element package

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    b6fd2dc View commit details
    Browse the repository at this point in the history
  6. Skip metal-custom-element tests when IE10 and below

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    d997bcd View commit details
    Browse the repository at this point in the history
  7. Add isArrayLike helper method for checking if value is iterable

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    c6e0455 View commit details
    Browse the repository at this point in the history
  8. Custom elements should work with JSX components

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    3a4f12c View commit details
    Browse the repository at this point in the history
  9. Update version of Edge and add latest version of Safari

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    2da87f3 View commit details
    Browse the repository at this point in the history
  10. Skip test for Safari 8

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    c7576be View commit details
    Browse the repository at this point in the history
  11. Dynamically load webcomponents polyfill as it's incompatible with IE9/10

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    22e309f View commit details
    Browse the repository at this point in the history
  12. Remove additional babel plugins that were added for custom elements

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    3286db0 View commit details
    Browse the repository at this point in the history
  13. Create CustomComponent in such a way that it doesn't require addition…

    …al babel plugins
    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    8679466 View commit details
    Browse the repository at this point in the history
  14. Regen package-lock.json

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    2d4b77c View commit details
    Browse the repository at this point in the history
  15. Regen metal-custom-element/package-lock.json

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    bd132b4 View commit details
    Browse the repository at this point in the history
  16. Clearer formatting

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    d7db927 View commit details
    Browse the repository at this point in the history
  17. Rename (no changes)

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    025ca4b View commit details
    Browse the repository at this point in the history
  18. Change all references of metal-custom-element to metal-web-component

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    496ce68 View commit details
    Browse the repository at this point in the history
  19. Regen metal-web-component/package-lock.json

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    3fac83e View commit details
    Browse the repository at this point in the history
  20. After updating the metal dependency getStaticProperty nows returns …

    …empty object instead of null
    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    c559dde View commit details
    Browse the repository at this point in the history
  21. Regen packag-lock.json (ensuring it's correct after rebase)

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    6d306ed View commit details
    Browse the repository at this point in the history
  22. attributeChangedCallback is invoked for inital attribute values befor…

    …e component has rendered in connectedCallback. Make sure we don't reference this.component before it's defined.
    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    3cd95c4 View commit details
    Browse the repository at this point in the history
  23. Deserialize attributes that are json before passing to metal component

    Robert-Frampton authored and Robert-Frampton committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    78f1a06 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2017

  1. Don't create element until needed

    Robert-Frampton authored and Robert-Frampton committed Oct 2, 2017
    Configuration menu
    Copy the full SHA
    f2c65f9 View commit details
    Browse the repository at this point in the history
  2. Don't automatically register custom events in case of server side ren…

    …dering
    Robert-Frampton authored and Robert-Frampton committed Oct 2, 2017
    Configuration menu
    Copy the full SHA
    93e64d9 View commit details
    Browse the repository at this point in the history
  3. Don't attempt to create element in Node.js environment

    Robert-Frampton authored and Robert-Frampton committed Oct 2, 2017
    Configuration menu
    Copy the full SHA
    59a922d View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2017

  1. Use core.isServerSide for checking environment

    Robert-Frampton authored and Robert-Frampton committed Oct 3, 2017
    Configuration menu
    Copy the full SHA
    c2a316d View commit details
    Browse the repository at this point in the history
  2. Use core.isServerSide for checking environment

    Robert-Frampton authored and Robert-Frampton committed Oct 3, 2017
    Configuration menu
    Copy the full SHA
    f0bf96f View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2017

  1. Improve error message when using oneOf validation. Fixes #254

    Robert-Frampton authored and Robert-Frampton committed Oct 6, 2017
    Configuration menu
    Copy the full SHA
    5012217 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2017

  1. Fix typo

    Robert-Frampton authored and Robert-Frampton committed Oct 10, 2017
    Configuration menu
    Copy the full SHA
    71813a1 View commit details
    Browse the repository at this point in the history
  2. Replace isArrayLike with isNodeListLike

    Robert-Frampton authored and Robert-Frampton committed Oct 10, 2017
    Configuration menu
    Copy the full SHA
    d48ee9d View commit details
    Browse the repository at this point in the history
  3. Add JSDocs for CustomElement

    Robert-Frampton authored and Robert-Frampton committed Oct 10, 2017
    Configuration menu
    Copy the full SHA
    84927ea View commit details
    Browse the repository at this point in the history
  4. Test JSX components to the same degree as Soy components in metal-web…

    …-component
    Robert-Frampton authored and Robert-Frampton committed Oct 10, 2017
    Configuration menu
    Copy the full SHA
    c7c045a View commit details
    Browse the repository at this point in the history
  5. Replace babel-preset-es2015 with babel-preset-env

    Robert-Frampton authored and Robert-Frampton committed Oct 10, 2017
    Configuration menu
    Copy the full SHA
    fafd282 View commit details
    Browse the repository at this point in the history
  6. Regen metal-web-component/package-lock.json

    Robert-Frampton authored and Robert-Frampton committed Oct 10, 2017
    Configuration menu
    Copy the full SHA
    b71e390 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2017

  1. Merge pull request #261 from Robert-Frampton/webcomponents

    Automates creation of CustomElements for Metal components.
    
    Fixes #268
    jbalsas authored Oct 11, 2017
    Configuration menu
    Copy the full SHA
    83a264c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #264 from Robert-Frampton/iso

    Prevents metal-dom from throwing errors when running in Node.js
    jbalsas authored Oct 11, 2017
    Configuration menu
    Copy the full SHA
    b8e1755 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #266 from Robert-Frampton/iso_metal-incremental-dom

    Prevents parent creation on patch when running in Node.js
    jbalsas authored Oct 11, 2017
    Configuration menu
    Copy the full SHA
    7d08bc2 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #272 from Robert-Frampton/issue_254

    Improves error message when using `oneOf` validation. 
    
    Fixes #254
    jbalsas authored Oct 11, 2017
    Configuration menu
    Copy the full SHA
    ae3dbb4 View commit details
    Browse the repository at this point in the history
  5. Copying html2incdom package into metal-incremental-dom

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    7ad6eff View commit details
    Browse the repository at this point in the history
  6. Export HTMLParser rather than attaching to window

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    dca765d View commit details
    Browse the repository at this point in the history
  7. Change lint ignore from jslint to eslint

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    32c2e10 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #274 from Robert-Frampton/html2incdom

    Includes HTML2Incdom directly and avoids exporting and consuming the HTMLParser from a global object
    jbalsas authored Oct 11, 2017
    Configuration menu
    Copy the full SHA
    12fe8a7 View commit details
    Browse the repository at this point in the history
  9. Don't access client side globals if rendering server side

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    4c2a707 View commit details
    Browse the repository at this point in the history
  10. Add tests for server side rendering

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    b31e177 View commit details
    Browse the repository at this point in the history
  11. Add test for rendering JSXComponent server side

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    e412d81 View commit details
    Browse the repository at this point in the history
  12. Run isomorphic tests in CI

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    09b9203 View commit details
    Browse the repository at this point in the history
  13. Replace babel-preset-es2015 with babel-preset-env

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    47f9f9b View commit details
    Browse the repository at this point in the history
  14. Regen all package-lock.json files

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    391f030 View commit details
    Browse the repository at this point in the history
  15. Merge pull request #269 from Robert-Frampton/iso_test

    Adds tests for server side rendering of Soy and JSX components
    jbalsas authored Oct 11, 2017
    Configuration menu
    Copy the full SHA
    cfe20c6 View commit details
    Browse the repository at this point in the history
  16. Check to see if bundle has been loaded already. Fixes #273

    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    bf01bee View commit details
    Browse the repository at this point in the history
  17. Add documentation for the build process of the metal-soy-bundle/lib/b…

    …undle.js file
    Robert-Frampton authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    ee0c61b View commit details
    Browse the repository at this point in the history
  18. Broken test for #259

    bryceosterhaus authored and Robert-Frampton committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    449267e View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2017

  1. hasInitialValue_ should return false if value is undefined, but valid…

    …ators should run regardless. Fixes #259
    Robert-Frampton authored and Robert-Frampton committed Oct 12, 2017
    Configuration menu
    Copy the full SHA
    f373e21 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2017

  1. Merge pull request #275 from Robert-Frampton/metal-soy-bundle

    Check to see if bundle has been loaded already. Fixes #273
    jbalsas authored Oct 16, 2017
    Configuration menu
    Copy the full SHA
    39ee3da View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dd700db View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2017

  1. Revert "Merge pull request #275 from Robert-Frampton/metal-soy-bundle"

    This reverts commit 39ee3da, reversing
    changes made to cfe20c6.
    jbalsas committed Oct 18, 2017
    Configuration menu
    Copy the full SHA
    ac0c90f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #280 from metal/revert_soy_bundle

    Revert "Merge pull request #275 from Robert-Frampton/metal-soy-bundle"
    Robert Frampton authored Oct 18, 2017
    Configuration menu
    Copy the full SHA
    4765e96 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop' into 277

    Robert Frampton authored Oct 18, 2017
    Configuration menu
    Copy the full SHA
    7af5a97 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #278 from diegonvs/277

    Updating tests on validators using assert.isTrue() to verify correct cases
    Robert Frampton authored Oct 18, 2017
    Configuration menu
    Copy the full SHA
    9e93825 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2017

  1. Merge pull request #276 from Robert-Frampton/pr-260

    hasInitialValue_ should return false if value is undefined, but validators should run regardless. Fixes #259
    jbalsas authored Oct 19, 2017
    Configuration menu
    Copy the full SHA
    d78162f View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2017

  1. Add forceUpdate method to Component

    Robert-Frampton authored and Robert-Frampton committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    23696f2 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2017

  1. Merge pull request #271 from Robert-Frampton/forceupdate

    Add forceUpdate method to Component
    jbalsas authored Oct 25, 2017
    Configuration menu
    Copy the full SHA
    cbb22f4 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2017

  1. Add failing test for issue #287

    Robert-Frampton authored and Robert-Frampton committed Oct 31, 2017
    Configuration menu
    Copy the full SHA
    94466c1 View commit details
    Browse the repository at this point in the history
  2. Ensure that STATE configuration from static hints are properly config…

    …ured with multiple levels of class inheritance
    Robert-Frampton authored and Robert-Frampton committed Oct 31, 2017
    Configuration menu
    Copy the full SHA
    9979b99 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2017

  1. Correct JSDocs

    Robert-Frampton authored and Robert-Frampton committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    37c8a21 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #288 from Robert-Frampton/issue_287

    Ensure that STATE configuration from static hints are properly configured with multiple levels of class inheritance
    jbalsas authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    d83b7a6 View commit details
    Browse the repository at this point in the history
  3. Add willRender, willAttach, and willDetach lifecycle methods to Compo…

    …nent
    Robert-Frampton authored and Robert-Frampton committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    2b9d6bc View commit details
    Browse the repository at this point in the history
  4. Emit stateWillChange event from state instance for providing a hook p…

    …oint
    Robert-Frampton authored and Robert-Frampton committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    f527c41 View commit details
    Browse the repository at this point in the history
  5. Add willReceiveState and willReceiveProps lifecycle methods to Compon…

    …ent and JSXComponent respectively
    Robert-Frampton authored and Robert-Frampton committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    f08950c View commit details
    Browse the repository at this point in the history
  6. Rename willRender to willUpdate since it's related to shouldUpdate an…

    …d move implementation to renderer
    Robert-Frampton authored and Robert-Frampton committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    5425101 View commit details
    Browse the repository at this point in the history
  7. Fix JSDoc and test description typos

    Robert-Frampton authored and Robert-Frampton committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    ba375c9 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2017

  1. Provide placeholder functions for lifecycle methods (can't provide pl…

    …aceholder for `shouldUpdate` as some renderers need to check if it exists)
    Robert-Frampton authored and Robert-Frampton committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    7937ce6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #285 from Robert-Frampton/lifecycle

    Rename willRender to willUpdate since it's related to shouldUpdate and move implementation to renderer
    jbalsas authored Nov 2, 2017
    Configuration menu
    Copy the full SHA
    35eb911 View commit details
    Browse the repository at this point in the history