You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2021/04/28 03:16:21 UTC

[echarts] branch enhance-workflow updated (88de347 -> ac6ffd9)

This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a change to branch enhance-workflow
in repository https://gitbox.apache.org/repos/asf/echarts.git.


    from 88de347  chore: add node modules cache
     add cdc92c8  doc: update pr template with zr daily build
     add 23b7be1  Merge pull request #14722 from apache/enhance-workflow
     add 29f18d6  chore: workflow enhancement (#14728)
     add 2ea1063  chore: pack RELEASE_NOTE.txt into src.zip
     add 9c9db6f  Merge pull request #14742 from pissang/enhaance-workflow
     add f9f81ab  chore: comment error, adjust visualmap description (#14741)
     add d4fbdd1  test: add example for the usage in source release checking
     add 1a477a8  Merge pull request #14743 from pissang/enhance-workflow
     add d028e83  test: use webp to reduce screenshot storage
     add 505614a  Merge branch 'release' into optimize-visual-test-screenshot
     add f60e8b0  test(visual): optimize test runner and report tool
     add 403e5d0  Merge pull request #14745 from apache/optimize-visual-test-screenshot
     add 85f5c70  chore: fix typescript version (#14746)
     add 5122013  feat(i18n): add Slovenian translation
     add dff1dd0  Merge pull request #14758 from dkrat7/dkrat7-patch-1
     add 60d5ca6  chore: add nightly build workflow
     add 4a70b23  Merge pull request #14754 from apache/add-nightly-build
     add ee96343  chore: update package-lock.json
     add 560e2ea  fix(toolbox): fix incorrect `currentType` in `magictypechanged` event, close #12359.
     add 917497f  Merge branch 'next' of https://github.com/apache/incubator-echarts into fix/toolbox-magicType-event/12359
     add 25e860d  Merge branch 'master' of https://github.com/apache/incubator-echarts into fix/toolbox-magicType-event/12359
     add da1affb  Merge pull request #13437 from apache/fix/toolbox
     add 10c9f79  fix(linear-gradient): avoid the Infinite value in `linearMap` util, fix #7293, #14534, #14601.
     add 7940f5a  fix(linear-gradient): `NaN` should not be handled.
     add b90f6ec  Merge branch 'master' of https://github.com/apache/echarts into fix-linear-gradient
     add cc0375d  Merge branch 'master' of https://github.com/apache/echarts into fix-linear-gradient
     add cf7c4ef  fix(line): clamp coord for gradient.
     add 4eeeccc  Merge pull request #14602 from apache/fix-linear-gradient
     add 2eac2e3  Fix(brush): clamp range when brush
     add 3d36cea  test(brush): add new test case for brush
     add 3718a28  Fix: other datzoom scenarios have same issue
     add f0368ae  chore: add `clamp` to `dataToPoint` and code simplify
     add 9b21f9b  Merge pull request #14569 from susiwen8/14416
     add 1ad5e0d  Changed LineEndLabelOption.valueAnimation to be optional.
     add 2790425  Merge pull request #14806 from Bilge/valueAnimation
     add a76cfbd  Merge pull request #14747 from apache/master
     add e20c4a6  fix(map): fix wrong usage of change state manually
     add 8459097  chore: update package-lock.json
     add bd0d710  fix: default to show tooltip in geo component
     add dad3b3b  Merge pull request #14768 from apache/fix-map
     add 737e23c  release 5.1.1
     add 786af8b  Merge pull request #14778 from apache/release-dev
     add a4df6a1  Merge pull request #14808 from apache/release
     add 492abe4  chore: remove unnecessary hidden files that may be published to npm
     add 8600acc  Merge pull request #14809 from apache/npm-publish-enhance
     new ac6ffd9  chore: enable manual trigger nightly workflow

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/pull_request_template.md                   |   11 +-
 .github/workflows/{nodejs.yml => ci.yml}           |   33 +-
 .github/workflows/nightly.yml                      |   34 +
 .github/workflows/source-release.yml               |  135 ++
 .npmignore                                         |    2 +
 build/.jshintrc                                    |   77 -
 build/prepareNightly.js                            |   62 +
 build/source-release/prepareReleaseMaterials.js    |  155 ++
 build/source-release/template/announce-release.tpl |   26 +
 build/source-release/template/vote-release.tpl     |   40 +
 dist/echarts.common.js                             |   52 +-
 dist/echarts.common.js.map                         |    2 +-
 dist/echarts.common.min.js                         |    2 +-
 dist/echarts.esm.js                                |   80 +-
 dist/echarts.esm.js.map                            |    2 +-
 dist/echarts.esm.min.js                            |    2 +-
 dist/echarts.js                                    |   80 +-
 dist/echarts.js.map                                |    2 +-
 dist/echarts.min.js                                |    2 +-
 dist/echarts.simple.js                             |   27 +-
 dist/echarts.simple.js.map                         |    2 +-
 dist/echarts.simple.min.js                         |    2 +-
 package-lock.json                                  | 1717 +++++++++++++++++---
 package.json                                       |    5 +-
 src/chart/line/LineSeries.ts                       |    2 +-
 src/chart/line/LineView.ts                         |    4 +-
 src/chart/map/MapView.ts                           |    4 +-
 src/component/helper/BrushTargetManager.ts         |   25 +-
 src/component/toolbox/feature/MagicType.ts         |    9 +-
 src/coord/CoordinateSystem.ts                      |    6 +-
 src/coord/cartesian/Cartesian2D.ts                 |   14 +-
 src/coord/geo/GeoModel.ts                          |    8 +-
 src/core/echarts.ts                                |    2 +-
 src/echarts.all.ts                                 |    2 +-
 src/i18n/langSI.ts                                 |  142 ++
 src/layout/barGrid.ts                              |    2 +-
 src/util/number.ts                                 |   39 +-
 test/brush3.html                                   |   36 +
 test/check-build.html                              |  613 +++++++
 test/ie8.html                                      | 1055 ------------
 test/linear-gradient.html                          |  229 +++
 test/runTest/blacklist.js                          |    4 +
 test/runTest/cli.js                                |   83 +-
 test/runTest/client/index.html                     |   10 +-
 test/runTest/config.js                             |    1 +
 test/runTest/genReport.js                          |   19 +-
 test/runTest/server.js                             |   28 +-
 test/runTest/store.js                              |    9 +-
 test/smooth.html                                   |   24 -
 test/toolbox-stack-custom.html                     |    3 +
 test/types/basic.ts                                |   19 +
 test/types/event.ts                                |   19 +
 test/types/importPartial.ts                        |   19 +
 53 files changed, 3340 insertions(+), 1642 deletions(-)
 rename .github/workflows/{nodejs.yml => ci.yml} (62%)
 create mode 100644 .github/workflows/nightly.yml
 create mode 100644 .github/workflows/source-release.yml
 delete mode 100644 build/.jshintrc
 create mode 100644 build/prepareNightly.js
 create mode 100644 build/source-release/prepareReleaseMaterials.js
 create mode 100755 build/source-release/template/announce-release.tpl
 create mode 100755 build/source-release/template/vote-release.tpl
 create mode 100644 src/i18n/langSI.ts
 create mode 100644 test/check-build.html
 delete mode 100644 test/ie8.html
 create mode 100644 test/linear-gradient.html

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[echarts] 01/01: chore: enable manual trigger nightly workflow

Posted by sh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch enhance-workflow
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit ac6ffd994ae3495ec7af1a141fb95aeac4a745ed
Author: pissang <bm...@gmail.com>
AuthorDate: Wed Apr 28 11:15:26 2021 +0800

    chore: enable manual trigger nightly workflow
---
 .github/workflows/nightly.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index db67ec0..7e74404 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -3,6 +3,8 @@ name: Publish Nightly
 on:
   schedule:
     - cron: '0 9 * * *' # After zrender nightly published
+  # committers can manually trigger with workflow_dispatch
+  workflow_dispatch: {}
   repository_dispatch:
     types: publish-nightly
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org