Skip to content

Commit

Permalink
v4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulLeCam committed Feb 28, 2023
1 parent 5a87b5c commit 9be06c0
Show file tree
Hide file tree
Showing 5 changed files with 1,563 additions and 1,035 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v4.2.1 (2023-02-28)

Fixed bounds update in `ImageOverlay`
([PR #1063](https://github.com/PaulLeCam/react-leaflet/pull/1063) by
[hwonyo](https://github.com/hwonyo))

## v4.2.0 (2022-11-27)

Added support for mutable `url` prop on `TileLayer`
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,37 +10,37 @@
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.3.20",
"@swc/jest": "^0.2.23",
"@testing-library/react": "^13.4.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.37",
"@swc/jest": "^0.2.24",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.3",
"@types/leaflet": "^1.9.0",
"@types/jest": "^29.4.0",
"@types/leaflet": "^1.9.1",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"leaflet": "^1.9.3",
"prettier": "^2.8.0",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest-resolver": "^2.0.0",
"turbo": "^1.6.3",
"typescript": "^4.9.3"
"turbo": "^1.8.3",
"typescript": "^4.9.5"
},
"jest": {
"projects": [
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9"
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11"
},
"jest": {
"extensionsToTreatAsEsm": [
Expand Down
8 changes: 4 additions & 4 deletions packages/react-leaflet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-leaflet",
"version": "4.2.0",
"version": "4.2.1",
"description": "React components for Leaflet maps",
"repository": {
"type": "git",
Expand Down Expand Up @@ -51,9 +51,9 @@
},
"devDependencies": {
"@types/geojson": "^7946.0.10",
"@types/leaflet": "^1.9.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9"
"@types/leaflet": "^1.9.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11"
},
"jest": {
"extensionsToTreatAsEsm": [
Expand Down

0 comments on commit 9be06c0

Please sign in to comment.