Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
24c01c1
fix(legend): inherit legend rich text color from legend's options. cl…
Feb 12, 2023
c621972
add test case
Feb 18, 2023
9caa5f8
chore: update `prepublish` to `prepare` in build script. (follow up e…
plainheart Mar 27, 2023
6dbe25c
Merge pull request #18427 from apache/update-script
pissang Mar 27, 2023
8abf36c
fix(lines): symbolSize should be updated #18350
cvSoldier Mar 31, 2023
ae0dd0e
chore: make reproduction link required
cloydlau Mar 31, 2023
1ea8885
Merge pull request #18458 from cloydlau/master
Ovilia Apr 3, 2023
18752ca
chore: add official editor link to issue template
plainheart Apr 3, 2023
cb5b976
Merge pull request #18464 from apache/update-issue-template
Ovilia Apr 3, 2023
f5bb3b0
Merge pull request #18260 from ChepteaCatalin/fix-18196
Ovilia Apr 3, 2023
691afc7
fix(emphasis): fix focus self not work when item emphasis by other co…
linghaoSu Apr 13, 2023
036c610
feat(axisPointer): add option to disable emphasis. close #18495
juliepagano Apr 17, 2023
98a78b2
fix(label): ellipsis was not working
Ovilia Apr 18, 2023
8041cde
fix(tooltip): remove triggerEmphasis from involveSeries
juliepagano Apr 18, 2023
6b4f895
Merge pull request #18524 from juliepagano/fix-18495
Ovilia Apr 19, 2023
dc141d2
fix(state): lint comment in states.ts
linghaoSu Apr 19, 2023
e39e3df
fix(time-format): fix yy time format
linghaoSu Apr 19, 2023
103b3e3
Merge pull request #18535 from linghaoSu/fix/time-format
plainheart Apr 19, 2023
f22a8ed
Merge pull request #18525 from apache/fix-18517
Ovilia Apr 20, 2023
18645a7
chore: update `jest-canvas-mock` to fix test fails on node v18
plainheart Apr 20, 2023
5fd7a07
chore: fix node version doesn't work and update node to v18
plainheart Apr 20, 2023
d7ac6c3
Merge pull request #18538 from apache/fix/jest-canvas-mock
pissang Apr 23, 2023
73e566c
chore(deps): bump yaml and husky
dependabot[bot] Apr 24, 2023
6da8276
Merge pull request #18511 from linghaoSu/fix/emphasis_self
Ovilia Apr 25, 2023
99f5cfd
Merge pull request #18563 from apache/dependabot/npm_and_yarn/yaml-an…
Ovilia Apr 25, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@ body:
attributes:
label: Link to Minimal Reproduction
description: |
If the reproduction does not need a build setup, please provide a link to [JSFiddle](https://jsfiddle.net/plainheart/e46ozpqj/7/), [JSBin](https://jsbin.com/) or [CodePen](https://codepen.io/Ovilia/pen/dyYWXWM). If it requires a build setup, you can use [CodeSandbox](https://codesandbox.io/s/echarts-basic-example-template-mpfz1s) or provide a GitHub repo.
If the reproduction does not need a build setup, please provide a link to [Official Editor](https://echarts.apache.org/examples/editor.html), [JSFiddle](https://jsfiddle.net/plainheart/e46ozpqj/7/), [JSBin](https://jsbin.com/) or [CodePen](https://codepen.io/Ovilia/pen/dyYWXWM). If it requires a build setup, you can use [CodeSandbox](https://codesandbox.io/s/echarts-basic-example-template-mpfz1s) or provide a GitHub repo.
The reproduction should be **minimal** - i.e. it should contain only the bare minimum amount of code needed to show the bug.
Please do not just fill in a random link. The issue will be closed if no valid reproduction is provided. [Why?](https://antfu.me/posts/why-reproductions-are-required)

validations:
required: false
required: true

- type: textarea
attributes:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- name: Fetch commit count
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/nightly-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -26,6 +26,8 @@ jobs:
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
node-version: ${{ matrix.node-version }}

- name: Setup and publish nightly
run: |
node build/nightly/prepare.js --next
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,17 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
node-version: ${{ matrix.node-version }}

- name: Setup and publish nightly
run: |
node build/nightly/prepare.js
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/source-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions build/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ function validateIO(input, output) {
*/
async function build(configs) {
console.log(chalk.yellow(`
NOTICE: If you are using 'npm run build'. Run 'npm run prepublish' before build !!!
NOTICE: If you are using 'npm run build'. Run 'npm run prepare' before build !!!
`));

console.log(chalk.yellow(`
NOTICE: If you are using syslink on zrender. Run 'npm run prepublish' in zrender first !!
NOTICE: If you are using syslink on zrender. Run 'npm run prepare' in zrender first !!
`));

for (let singleConfig of configs) {
Expand Down
Loading