Branch: refs/heads/master

  Home:   https://github.com/cytoscape/cytoscape.js

  Commit: ae47df73e7d76cb4f5b77489d5d2bec2315cf197

      
https://github.com/cytoscape/cytoscape.js/commit/ae47df73e7d76cb4f5b77489d5d2bec2315cf197

  Author: Max Franz <[email protected]>

  Date:   2019-06-03 (Mon, 03 Jun 2019)



  Changed paths:

    M package-lock.json

    M package.json



  Log Message:

  -----------

  Update package files to 3.8.0-unstable





  Commit: 3aa1cd55371c3d8ee114bf00c7e7fb4a6980483e

      
https://github.com/cytoscape/cytoscape.js/commit/3aa1cd55371c3d8ee114bf00c7e7fb4a6980483e

  Author: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>

  Date:   2019-06-04 (Tue, 04 Jun 2019)



  Changed paths:

    M package.json



  Log Message:

  -----------

  chore(package): update rollup-plugin-license to version 0.9.0





  Commit: 34a23ad24910a5372bf5866dc023e0ef5b9689da

      
https://github.com/cytoscape/cytoscape.js/commit/34a23ad24910a5372bf5866dc023e0ef5b9689da

  Author: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>

  Date:   2019-06-04 (Tue, 04 Jun 2019)



  Changed paths:

    M package-lock.json



  Log Message:

  -----------

  chore(package): update lockfile package-lock.json





  Commit: 1c6228f9820ae535b1dbe5e3c43ccf79151488e3

      
https://github.com/cytoscape/cytoscape.js/commit/1c6228f9820ae535b1dbe5e3c43ccf79151488e3

  Author: Max Franz <[email protected]>

  Date:   2019-06-04 (Tue, 04 Jun 2019)



  Changed paths:

    M package-lock.json

    M package.json



  Log Message:

  -----------

  Merge pull request #2421 from 
cytoscape/greenkeeper/rollup-plugin-license-0.9.0



Update rollup-plugin-license to the latest version 🚀





  Commit: dab2b590485e03075e7d87759481cc0e97b5f2c3

      
https://github.com/cytoscape/cytoscape.js/commit/dab2b590485e03075e7d87759481cc0e97b5f2c3

  Author: Max Franz <[email protected]>

  Date:   2019-06-05 (Wed, 05 Jun 2019)



  Changed paths:

    M src/core/index.js



  Log Message:

  -----------

  Mounting an initially headless instance fails to initialise the renderer #2424



Force the renderer to be initialised as the canvas renderer, unless a renderer 
other than 'null' is specified.  That may be the case if the consumer uses a 
custom renderer and remounts an already mounted instance to another container.  
For most people, who use the default canvas renderer, the forcing of the canvas 
renderer on `cy.mount()` is fine.





  Commit: 49637d27702bd12a4bb0f27b25402f887da6f489

      
https://github.com/cytoscape/cytoscape.js/commit/49637d27702bd12a4bb0f27b25402f887da6f489

  Author: Max Franz <[email protected]>

  Date:   2019-06-06 (Thu, 06 Jun 2019)



  Changed paths:

    M src/style/apply.js

    M test/collection-style.js



  Log Message:

  -----------

  Function mapper performance check requires null check for some props



Some properties, like `control-point-distances`, do not have non-null default 
values to fall back on.  These properties are typically override properties:  
The property overrides the behaviour of another one and the `null` value 
indicates that the behaviour override is inactive.  Because most properties do 
have a default value, it's very subtle.  The performance enhancement in #2239 
assumes that all properties have a default value, missing the null check.  This 
causes the issue.



Ref : When applying a function mapper to control-point-distances, eleProp is 
null in applyContextStyle() #2423



Ref : Optimizations for mapped style properties #2239





  Commit: dfa0f2edb47f3647b95f5fc766a586da92050b00

      
https://github.com/cytoscape/cytoscape.js/commit/dfa0f2edb47f3647b95f5fc766a586da92050b00

  Author: Tom MacWright <[email protected]>

  Date:   2019-06-07 (Fri, 07 Jun 2019)



  Changed paths:

    M package.json



  Log Message:

  -----------

  Add unpkg and jsdelivr entry points





  Commit: 752b92d4aa16f3d449e7408b4cc5229e5e70e58f

      
https://github.com/cytoscape/cytoscape.js/commit/752b92d4aa16f3d449e7408b4cc5229e5e70e58f

  Author: Jason Cooke <[email protected]>

  Date:   2019-06-09 (Sun, 09 Jun 2019)



  Changed paths:

    M README.md



  Log Message:

  -----------

  docs: fix typo





  Commit: 16e2c6074aa2de7637bddfe7953aa62bf86d5ae1

      
https://github.com/cytoscape/cytoscape.js/commit/16e2c6074aa2de7637bddfe7953aa62bf86d5ae1

  Author: Max Franz <[email protected]>

  Date:   2019-06-10 (Mon, 10 Jun 2019)



  Changed paths:

    M documentation/md/intro.md



  Log Message:

  -----------

  Add 3.6.4 and 3.7.1 to the list of releases in the docs





  Commit: 662d0df271ab61f82cc9b66712720a6930d7fb36

      
https://github.com/cytoscape/cytoscape.js/commit/662d0df271ab61f82cc9b66712720a6930d7fb36

  Author: Max Franz <[email protected]>

  Date:   2019-06-12 (Wed, 12 Jun 2019)



  Changed paths:

    M package.json



  Log Message:

  -----------

  Merge pull request #2429 from tmcw/entry-points



Add unpkg and jsdelivr entry points





  Commit: cc8bafa00d5af057fddc27e3886564d126adc486

      
https://github.com/cytoscape/cytoscape.js/commit/cc8bafa00d5af057fddc27e3886564d126adc486

  Author: Max Franz <[email protected]>

  Date:   2019-06-17 (Mon, 17 Jun 2019)



  Changed paths:

    M src/extensions/renderer/base/coord-ele-math/edge-control-points.js



  Log Message:

  -----------

  Use the source-target pool indices tuple directly for the source-target 
lookup table in the control point calculation.



The hashing function does not have an effective distribution for small integer 
pairs.  In general, we shouldn't rely on hashing alone for this table since in 
practice the combinations for edges in graphs is nearly exhaustive if you 
sample enough graphs.  To resolve this issue, just use a map=>map structure.  
The `hashTable` object still has the same API as a single map, so the code that 
uses it is unchanged.



Ref : Dangling edges in layout with compound nodes #2431





  Commit: 79ba3f4f8ef19e66b1f0541b9f1a11e2364c2392

      
https://github.com/cytoscape/cytoscape.js/commit/79ba3f4f8ef19e66b1f0541b9f1a11e2364c2392

  Author: Max Franz <[email protected]>

  Date:   2019-06-17 (Mon, 17 Jun 2019)



  Changed paths:

    M src/extensions/renderer/canvas/drawing-edges.js

    M src/extensions/renderer/canvas/drawing-elements.js

    M src/extensions/renderer/canvas/drawing-label-text.js

    M src/extensions/renderer/canvas/drawing-nodes.js



  Log Message:

  -----------

  `text-opacity` should be handled in the same manner as `opacity`:  The 
low-level draw functions should ignore `text-opacity` completely if the 
`useEleOpacity` flag is false.



Similarly, the bail-out conditions for the low-level draw functions should not 
be considered unless `useEleOpacity` is true --- i.e. a direct draw.



Ref : A change of `text-opacity` doesn't take effect #2432





  Commit: 79f1971aef27fa9b136700dc04fc8c90b6112c80

      
https://github.com/cytoscape/cytoscape.js/commit/79f1971aef27fa9b136700dc04fc8c90b6112c80

  Author: Max Franz <[email protected]>

  Date:   2019-06-17 (Mon, 17 Jun 2019)



  Changed paths:

    M src/extensions/layout/cose.js



  Log Message:

  -----------

  COSE offset component separation by left-top of component #2433





  Commit: 916c3da77b5e378ff782c07c3d8ef688d1f1ec13

      
https://github.com/cytoscape/cytoscape.js/commit/916c3da77b5e378ff782c07c3d8ef688d1f1ec13

  Author: Max Franz <[email protected]>

  Date:   2019-06-17 (Mon, 17 Jun 2019)



  Changed paths:

    M documentation/md/intro.md



  Log Message:

  -----------

  Add 3.7.2 and 3.6.5 to the list of releases in the docs





  Commit: 67d18c735a8c6b9a45974cf7cfff53ce4c6dcba2

      
https://github.com/cytoscape/cytoscape.js/commit/67d18c735a8c6b9a45974cf7cfff53ce4c6dcba2

  Author: Max Franz <[email protected]>

  Date:   2019-06-20 (Thu, 20 Jun 2019)



  Changed paths:

    M src/extensions/renderer/base/coord-ele-math/rendered-style.js



  Log Message:

  -----------

  Use a separate `cleanConnected` flag to track whether the edges connected to 
a node have been handled by a previous dirtying of the node bounds.



Re-using the same `clean` flag for both the node itself and the connected edges 
is problematic in the case where the rendered style for the node is updated 
mid-tick.  This can happen when the bounding box is queried, such as for a fit 
operation during a layout.  Though we should allow the rendered style for the 
node itself to be updated right away in cases like this, we need to make sure 
that the edges still effectively get enqueued for rendered style calculation.



It is not sufficient to also update the edges immediately during a mid-tick 
update on a node.  That would cause redundant calculations on edges in many 
cases, and edges are already expensive.  Using the extra flag suffices to 
lazily enqueue the edges at the end of each tick.



Ref : A bounding box query can cause connected edges to not have rendered style 
updated (e.g. endpoints) #2440





  Commit: b235d920272d016fbf94886c6d487c59b88ff321

      
https://github.com/cytoscape/cytoscape.js/commit/b235d920272d016fbf94886c6d487c59b88ff321

  Author: Max Franz <[email protected]>

  Date:   2019-06-20 (Thu, 20 Jun 2019)



  Changed paths:

    M README.md



  Log Message:

  -----------

  Merge pull request #2430 from Jason-Cooke/patch-1



docs: fix typo





  Commit: 9e371284d04aceb9ee5965c2f8650a57429003c2

      
https://github.com/cytoscape/cytoscape.js/commit/9e371284d04aceb9ee5965c2f8650a57429003c2

  Author: Max Franz <[email protected]>

  Date:   2019-06-20 (Thu, 20 Jun 2019)



  Changed paths:

    M documentation/docmaker.json



  Log Message:

  -----------

  Disambiguate "weight" in the documentation #2444





  Commit: 60f97ef77d4b89c1485abba1c8ad4beda8c32794

      
https://github.com/cytoscape/cytoscape.js/commit/60f97ef77d4b89c1485abba1c8ad4beda8c32794

  Author: Max Franz <[email protected]>

  Date:   2019-06-20 (Thu, 20 Jun 2019)



  Changed paths:

    M documentation/md/style.md



  Log Message:

  -----------

  The markdown parser fails for the background-image bullet point list in the 
documentation #2445





  Commit: 86d4d099aad07c5fdcd4dc4bb264766f0de7f554

      
https://github.com/cytoscape/cytoscape.js/commit/86d4d099aad07c5fdcd4dc4bb264766f0de7f554

  Author: Sergii <[email protected]>

  Date:   2019-06-21 (Fri, 21 Jun 2019)



  Changed paths:

    M documentation/md/style.md

    M src/extensions/renderer/canvas/drawing-images.js

    M src/style/properties.js



  Log Message:

  -----------

  feat(style): makes `background-clip` to support multiple values



Relates to #2441





  Commit: bd99f94a3698a9a5c0df3a2e4a4f01375db3c380

      
https://github.com/cytoscape/cytoscape.js/commit/bd99f94a3698a9a5c0df3a2e4a4f01375db3c380

  Author: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com>

  Date:   2019-06-22 (Sat, 22 Jun 2019)



  Changed paths:

    M package.json



  Log Message:

  -----------

  chore(package): update eslint to version 6.0.0





  Commit: 8ca6706098b26c37c80dd932a3477a8ffeb379b5

      
https://github.com/cytoscape/cytoscape.js/commit/8ca6706098b26c37c80dd932a3477a8ffeb379b5

  Author: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com>

  Date:   2019-06-22 (Sat, 22 Jun 2019)



  Changed paths:

    M package-lock.json



  Log Message:

  -----------

  chore(package): update lockfile package-lock.json





  Commit: 1ad6d122f675c8cdec8e7fcfc0d2258753e50542

      
https://github.com/cytoscape/cytoscape.js/commit/1ad6d122f675c8cdec8e7fcfc0d2258753e50542

  Author: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com>

  Date:   2019-06-22 (Sat, 22 Jun 2019)



  Changed paths:

    M package.json



  Log Message:

  -----------

  chore(package): update rollup to version 1.16.2





  Commit: 08733a2f8f98850adc7c3cf67017e45cd8b58f07

      
https://github.com/cytoscape/cytoscape.js/commit/08733a2f8f98850adc7c3cf67017e45cd8b58f07

  Author: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com>

  Date:   2019-06-22 (Sat, 22 Jun 2019)



  Changed paths:

    M package-lock.json



  Log Message:

  -----------

  chore(package): update lockfile package-lock.json





  Commit: bc2cb440b290b096cdb861f78e88faa625845648

      
https://github.com/cytoscape/cytoscape.js/commit/bc2cb440b290b096cdb861f78e88faa625845648

  Author: Max Franz <[email protected]>

  Date:   2019-06-24 (Mon, 24 Jun 2019)



  Changed paths:

    M documentation/md/style.md



  Log Message:

  -----------

  Add `background-clip` description under the array/multiple props list.



This puts it with other similar properties and makes additional explanation 
unneeded.



Ref : #2443 #2441





  Commit: c96e6f4b4edd17c66470ad7ba6c1019fe9bd242c

      
https://github.com/cytoscape/cytoscape.js/commit/c96e6f4b4edd17c66470ad7ba6c1019fe9bd242c

  Author: Max Franz <[email protected]>

  Date:   2019-06-24 (Mon, 24 Jun 2019)



  Changed paths:

    M documentation/md/style.md

    M src/extensions/renderer/canvas/drawing-images.js

    M src/style/properties.js



  Log Message:

  -----------

  Merge branch 'stalniy-feat/bg-clip-multiple' into unstable





  Commit: 7a8642b0abc8cc36a35b1239a6b88bc01fae6b4d

      
https://github.com/cytoscape/cytoscape.js/commit/7a8642b0abc8cc36a35b1239a6b88bc01fae6b4d

  Author: Max Franz <[email protected]>

  Date:   2019-06-24 (Mon, 24 Jun 2019)



  Changed paths:

    M documentation/md/intro.md



  Log Message:

  -----------

  Add 3.7.3 and 3.6.6 to the list of releases in the docs





  Commit: 958e7845f4cb436d9baed14c2174bfe654a011c9

      
https://github.com/cytoscape/cytoscape.js/commit/958e7845f4cb436d9baed14c2174bfe654a011c9

  Author: Max Franz <[email protected]>

  Date:   2019-06-24 (Mon, 24 Jun 2019)



  Changed paths:

    M package-lock.json

    M package.json



  Log Message:

  -----------

  Merge pull request #2447 from cytoscape/greenkeeper/eslint-6.0.0



Update eslint to the latest version 🚀





  Commit: 186d14b1c041a1e4b539032d6bf83fbb569e2fe4

      
https://github.com/cytoscape/cytoscape.js/commit/186d14b1c041a1e4b539032d6bf83fbb569e2fe4

  Author: Max Franz <[email protected]>

  Date:   2019-06-26 (Wed, 26 Jun 2019)



  Changed paths:

    M README.md



  Log Message:

  -----------

  Remove centre alignment on logo in readme





  Commit: 38dc69a3749b830e8e4cc0a72254f812f68960e9

      
https://github.com/cytoscape/cytoscape.js/commit/38dc69a3749b830e8e4cc0a72254f812f68960e9

  Author: Max Franz <[email protected]>

  Date:   2019-06-26 (Wed, 26 Jun 2019)



  Changed paths:

    M package-lock.json

    M package.json



  Log Message:

  -----------

  Merge pull request #2450 from cytoscape/greenkeeper/rollup-1.16.2



Greenkeeper/rollup 1.16.2





  Commit: 43b5a4fd834e843601ac5cf5190503cd1fb66b61

      
https://github.com/cytoscape/cytoscape.js/commit/43b5a4fd834e843601ac5cf5190503cd1fb66b61

  Author: Max Franz <[email protected]>

  Date:   2019-06-26 (Wed, 26 Jun 2019)



  Changed paths:

    M README.md

    M documentation/docmaker.json

    A documentation/img/demos/cise-layout.png

    M documentation/md/extensions.md

    M documentation/md/links.md



  Log Message:

  -----------

  Add cise layout extension to docs





  Commit: e868aa18b32d57a53707f118c197d927c8feae97

      
https://github.com/cytoscape/cytoscape.js/commit/e868aa18b32d57a53707f118c197d927c8feae97

  Author: Max Franz <[email protected]>

  Date:   2019-07-02 (Tue, 02 Jul 2019)



  Changed paths:

    M README.md



  Log Message:

  -----------

  Add javascript tag to stackoverflow questions link





  Commit: 0ce794ebac4c3dbd6876684ceaf49ce375c5daf1

      
https://github.com/cytoscape/cytoscape.js/commit/0ce794ebac4c3dbd6876684ceaf49ce375c5daf1

  Author: Max Franz <[email protected]>

  Date:   2019-07-02 (Tue, 02 Jul 2019)



  Changed paths:

    M documentation/md/links.md



  Log Message:

  -----------

  Add javascript tag to stackoverflow question link



Let's try to give more exposure to questions so that more people are likely to 
answer the questions.





  Commit: f991b49bb6e1d1b4aec980a9d3efe3cce758642e

      
https://github.com/cytoscape/cytoscape.js/commit/f991b49bb6e1d1b4aec980a9d3efe3cce758642e

  Author: Max Franz <[email protected]>

  Date:   2019-07-04 (Thu, 04 Jul 2019)



  Changed paths:

    M documentation/md/intro.md



  Log Message:

  -----------

  Add PlanNET to "who uses" list





  Commit: ef6ed2e230f88db5aaf31c79c8d4b2c3ae046ce7

      
https://github.com/cytoscape/cytoscape.js/commit/ef6ed2e230f88db5aaf31c79c8d4b2c3ae046ce7

  Author: Max Franz <[email protected]>

  Date:   2019-07-04 (Thu, 04 Jul 2019)



  Changed paths:



  Log Message:

  -----------

  Merge master and unstable together for 3.8.0



git checkout unstable

git merge -s ours master





Compare: 
https://github.com/cytoscape/cytoscape.js/compare/593ab8dcbffb...ef6ed2e230f8

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/cytoscape-cvs.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/cytoscape-cvs/cytoscape/cytoscape.js/push/refs/heads/master/593ab8-ef6ed2%40github.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to