Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ _All notable changes to this project will be documented in this file. This proje

<!-- INSERT HERE -->

## 1.1.0-alpha.1

- Migrate to vite and vitest (#862)
- Updated lockfiles and examples build fixes (#859)
- Upgrade all deps to last minor version (#854)
- [fix] fix import (#856)
- add missing import for ts (#855)
- feat: add tooltip info to circle and linestring mode (#508)
- fix isFeatureSelected performance (#775)
- remove obsolete types package (#809)
- [chore]: deck bump; remove external deck types; adjust typings (#822)
- feat: allow billboard in points-circle guides layer (#835)
- fix: Fix to fire the finishMovePosition state at the end of a feature editing (#828)
- Make DrawPolygonByDraggingMode fire addTentativePosition events (#791)
- [fix] fix world-heritage example link; fix publish-docs script (#827)
- [fix] revert default esc keyup handling; fix ts error (#826)
- [fix] Handle escape hotkey in linestring and polygon modes (#774)
- [fix] prevent creation of features on MeasureAreaMode enter keyup (#792)
- [fix] SelectionLayer: Intermittent error when releasing mouse quickly (#825)
- All dependabot suggestions on one MR (#811)
- Fix feature geometry translation (#808)
- Update changelog for v1.0.4

## [1.0.4](https://github.com/uber/nebula.gl/compare/v1.0.2...v1.0.4) - 2022-10-04

### Changes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packages": ["modules/*", "examples/advanced"],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.0.4"
"version": "1.1.0-alpha.0"
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"lint-yarn": "node ./scripts/lint-yarn.js",
"types-check": "lerna run types-check --stream",
"prepublish": "yarn run build",
"publish-beta": "yarn run bootstrap && yarn run build && yarn run test && lerna publish --no-private --force-publish --exact --npm-tag beta && ./scripts/changelog.sh",
"publish-prod": "yarn run bootstrap && yarn run build && yarn run test && lerna publish --no-private --force-publish --exact && ./scripts/changelog.sh",
"test": "yarn run lint && yarn run build && yarn run types-check && yarn run test-unit --run",
"test-r": "yarn run lint && yarn run build",
Expand Down