Skip to content

Commit 62dbb54

Browse files
authored
bump to v3.17.2 (#2663)
* bump to v3.17.2 * fix padding
1 parent 32ec099 commit 62dbb54

5 files changed

Lines changed: 16 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on
55
[Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66

7-
## [v3.17.0] - 2025-06-4
7+
## [v3.17.2] - 2025-06-5
8+
Released with [maproulette-backend_v4.7.9](https://github.com/maproulette/maproulette-backend/releases/tag/v4.7.9)
9+
10+
## What's Changed
11+
* fix zoom to new task issue by @CollinBeczak in https://github.com/maproulette/maproulette3/pull/2661
12+
* fix task map animations between tasks by @CollinBeczak in https://github.com/maproulette/maproulette3/pull/2662
13+
14+
15+
**Full Changelog**: https://github.com/maproulette/maproulette3/compare/v3.17.1...v3.17.2
16+
17+
## [v3.17.1] - 2025-06-4
818
Released with [maproulette-backend_v4.7.9](https://github.com/maproulette/maproulette-backend/releases/tag/v4.7.9)
919

1020
## What's Changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "maproulette3",
3-
"version": "3.17.1",
3+
"version": "3.17.2",
44
"type": "module",
55
"private": true,
66
"scripts": {

src/components/Widgets/NearbyTasksWidget/NearbyTasksWidget.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default class NearbyTasksWidget extends Component {
7474
})),
7575
});
7676

77-
const bounds = toLatLngBounds(bundleBounds).pad(0.2);
77+
const bounds = toLatLngBounds(bundleBounds);
7878
const zoom = this.props.criteria?.zoom || 18;
7979

8080
this.props.updateTaskFilterBounds(bounds, zoom);

src/components/Widgets/TaskBundleWidget/TaskBundleWidget.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default class TaskBundleWidget extends Component {
116116
})),
117117
});
118118

119-
const bounds = toLatLngBounds(bundleBounds).pad(0.2);
119+
const bounds = toLatLngBounds(bundleBounds);
120120
const zoom = this.props.criteria?.zoom || 18;
121121

122122
this.props.updateTaskFilterBounds(bounds, zoom);

0 commit comments

Comments
 (0)