You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: Test plot-schema.json diff - If failed, after (npm start) you could run (npm run schema && git add test/plot-schema.json && git commit -m "update plot-schema diff")
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+10-7Lines changed: 10 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,14 @@ Thanks for your interest in plotly.js!
9
9
### Features, Bug fixes, and others:
10
10
11
11
Before opening a pull request, developer should:
12
+
1. make sure they are not on the `master` branch of their fork as using `master` for a pull request would make it difficult to fetch `upstream` changes.
13
+
2. fetch latest changes from `upstream/master` into your fork i.e. `origin/master` then pull `origin/master` from you local `master`.
14
+
3. then `git rebase master` their local dev branch off the latest `master` which should be sync with `upstream/master` at this time.
15
+
4. make sure to **not**`git add` the `dist/` folder (the `dist/` is updated only on version bumps).
16
+
5. make sure to commit changes to the `package-lock.json` file (if any new dependency required).
17
+
6. provide a title and write an overview of what the PR attempts to do with a link to the issue they are trying to address.
18
+
7. select the _Allow edits from maintainers_ option (see this [article](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) for more details).
12
19
13
-
-`git rebase` their local branch off the latest `master`,
14
-
- make sure to **not**`git add` the `dist/` folder (the `dist/` is updated only on version bumps),
15
-
- make sure to commit changes to the `package-lock.json` file (if any new dependency required),
16
-
- write an overview of what the PR attempts to do,
17
-
- select the _Allow edits from maintainers_ option (see this [article](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) for more details).
18
-
19
-
Note that it is forbidden to force push (i.e. `git push -f`) to remote branches associated with opened pull requests. Force pushes make it hard for maintainers to keep track of updates. Therefore, if required, please `git merge master` into your PR branch instead of `git rebase master`.
20
+
After opening a pull request, developer:
21
+
- should create a new small markdown log file using the PR number e.g. `1010_fix.md` or `1010_add.md` inside `draftlogs` folder as described in this [README](https://github.com/plotly/plotly.js/blob/master/draftlogs/README.md), commit it and push.
22
+
- should **not** force push (i.e. `git push -f`) to remote branches associated with opened pull requests. Force pushes make it hard for maintainers to keep track of updates. Therefore, if required, please fetch `upstream/master` and "merge" with master instead of "rebase".
Copy file name to clipboardExpand all lines: CHANGELOG.md
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,39 @@ To see all merged commits on the master branch that will be part of the next plo
9
9
10
10
where X.Y.Z is the semver of most recent plotly.js release.
11
11
12
+
## [2.2.1] -- 2021-07-06
13
+
14
+
### Fixed
15
+
- Fix to improve sanitizing href inputs for SVG and HTML text elements [[#5803](https://github.com/plotly/plotly.js/pull/5803)]
16
+
17
+
18
+
## [1.58.5] -- 2021-07-06
19
+
20
+
### Fixed
21
+
- Fix to improve sanitizing href inputs for SVG and HTML text elements [[#5803](https://github.com/plotly/plotly.js/pull/5803)]
22
+
23
+
24
+
## [2.2.0] -- 2021-06-28
25
+
26
+
### Added
27
+
- Legend group titles [[#5752](https://github.com/plotly/plotly.js/pull/5752)],
28
+
this feature was anonymously sponsored: thank you to our sponsor!
29
+
- Add half-year directive (%h) for formatting dates and improve descriptions to include extra date formatting options [[#5762](https://github.com/plotly/plotly.js/pull/5762)],
30
+
this feature was anonymously sponsored: thank you to our sponsor!
31
+
32
+
### Changed
33
+
- Modernize the process of creating baselines using [Kaleido](https://github.com/plotly/Kaleido) and improve image & other export test systems [[#5724](https://github.com/plotly/plotly.js/pull/5724)]
34
+
- Centralize jsdom utility to return Plotly object in node.js test scripts and use it in generating plot-schema [[#5755](https://github.com/plotly/plotly.js/pull/5755)]
35
+
- Bump turf bbox dependency to v6.4.0 [[#5747](https://github.com/plotly/plotly.js/pull/5747)]
36
+
- Bump turf area dependency to v6.4.0 [[#5748](https://github.com/plotly/plotly.js/pull/5748)]
37
+
38
+
### Fixed
39
+
- Cache values and patterns in set_convert for axes with `rangebreaks` to improve performance [[#5659](https://github.com/plotly/plotly.js/pull/5659)],
40
+
with thanks to @spasovski for the contribution!
41
+
- Fix fetching geojson when ES6 import is used to load the library [[#5763](https://github.com/plotly/plotly.js/pull/5763)]
0 commit comments