<p dir="auto">Bumps <a href="https://github.com/Leaflet/Leaflet">leaflet</a> from 1.8.0 to 1.9.0.</p>
<details>
<summary>Release notes</summary>
<p dir="auto"><em>Sourced from <a href="https://github.com/Leaflet/Leaflet/releases">leaflet's releases</a>.</em></p>
<blockquote>
<h2 dir="auto">v1.9.0</h2>
<h2 dir="auto"><g-emoji class="g-emoji" alias="zap" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/26a1.png">⚡</g-emoji> Note on future versions</h2>
<p dir="auto">The v1.9 release is setting the stage for the first major version bump of Leaflet since 2016! A lot has changed since then, and it's time for Leaflet to grow together with the web platform.</p>
<p dir="auto">After this release, we are branching off the 1.x code and putting it in <em>maintenance mode</em> — reserving potential 1.x releases <em>only</em> for critical bugfixes. Although <strong>version 2.0</strong> is still far away and will take some time to take shape, we plan to make the following changes:</p>
<ul dir="auto">
<li><strong>Dropping support for Internet Explorer</strong>.
This has been a long time coming, but now that Internet Explorer is <a href="https://blogs.windows.com/windowsexperience/2022/06/15/internet-explorer-11-has-retired-and-is-officially-out-of-support-what-you-need-to-know/" rel="nofollow">officially end-of-life</a>, it's time to say goodbye. Going forward, Leaflet will move to an evergreen strategy that targets browsers like Firefox, Chrome, Edge and Safari.</li>
<li><strong>Embracing modern JavaScript</strong>.
To maintain backwards compatibility, Leaflet is written entirely in ES5, a version of JavaScript supported by legacy browsers. So we have not been able to make use of many great JavaScript features (e.g. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes" rel="nofollow">standardized classes</a>, instead having to rely on our <a href="https://leafletjs.com/reference.html#class" rel="nofollow">own implementation</a>). By adopting a more modern version of the ECMAScript standard, we can start working towards aligning Leaflet with what is expected from a modern JavaScript library.</li>
<li><strong>Standardized modules</strong>.
When we released Leaflet v1, the landscape in the JavaScript world was very different and full of competing module standards such as CommonJS, AMD and UMD. Today, <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules" rel="nofollow">ECMAScript modules</a> have become the clear way forward to unite the JavaScript ecosystem under one banner. Moving forward, Leaflet will only be distributed in a single standardized module system, greatly reducing complexity of our distributed code.</li>
<li><strong>Removing the Leaflet global</strong>.
As a developer using Leaflet, the capital letter <code class="notranslate">L</code> is probably intimately familiar to you. This is the Leaflet global where all of Leaflet's functionality lives. To allow compiler tooling to better eliminate dead-code through a process called <a href="https://developer.mozilla.org/en-US/docs/Glossary/Tree_shaking" rel="nofollow">tree-shaking</a>, we are removing this global variable. To preserve backwards compatibility with older plugins, we will provide a shim that can be imported manually that will restore this functionality.</li>
</ul>
<h2 dir="auto">v1.9.0 changelog</h2>
<h3 dir="auto"><g-emoji class="g-emoji" alias="warning" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/26a0.png">⚠️</g-emoji> Breaking Changes</h3>
<ul dir="auto">
<li>Expose ESM entrypoint with Leaflet global (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8329" rel="nofollow">#8329</a> by <a href="https://github.com/jonkoops"><code class="notranslate">@jonkoops</code></a>). If you're using Leaflet in a ESM setup with plugins that rely on the <code class="notranslate">L</code> global, you have to use the default import for them to work:</li>
</ul>
<div class="highlight highlight-source-diff notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="-import * as L from 'leaflet';
+import L from 'leaflet';"><pre><span class="pl-md"><span class="pl-md">-</span>import * as L from 'leaflet';</span>
<span class="pl-mi1"><span class="pl-mi1">+</span>import L from 'leaflet';</span></pre></div>
<ul dir="auto">
<li>Update <code class="notranslate">color-adjust</code> to <code class="notranslate">print-color-adjust</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8211" rel="nofollow">#8211</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="sparkle" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2747.png">❇️</g-emoji> API changes</h3>
<ul dir="auto">
<li>Add <code class="notranslate">content</code> and <code class="notranslate">latLng</code> options to <code class="notranslate">Popup</code> / <code class="notranslate">Tooltip</code> constructors (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/7783" rel="nofollow">#7783</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Extend <code class="notranslate">Bounds</code> to have the same functions as <code class="notranslate">LatLngBounds</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/7882" rel="nofollow">#7882</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="sparkles" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2728.png">✨</g-emoji> Improvements</h3>
<ul dir="auto">
<li>Update <code class="notranslate">getCenter()</code> calculation and move it to <code class="notranslate">PolyUtil</code> / <code class="notranslate">LineUtil</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/7603" rel="nofollow">#7603</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Remove border styles in overflowing popups (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8260" rel="nofollow">#8260</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
<li>Fix "listener not found" warning when setting <code class="notranslate">maxBounds</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8168" rel="nofollow">#8168</a> by <a href="https://github.com/mourner"><code class="notranslate">@mourner</code></a>)</li>
<li>Remove "listener not found" warning (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8234" rel="nofollow">#8234</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Extend <code class="notranslate">Events.listens</code> to search for specific function (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8161" rel="nofollow">#8161</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Add <code class="notranslate">noMoveStart</code> option to <code class="notranslate">panTo</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/6685" rel="nofollow">#6685</a> by <a href="https://github.com/Chivano"><code class="notranslate">@Chivano</code></a>)</li>
<li>Add <code class="notranslate">FeatureCollection</code> handling to <code class="notranslate">geometryToLayer</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8163" rel="nofollow">#8163</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="raised_hands" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f64c.png">🙌</g-emoji> Accessibility</h3>
<ul dir="auto">
<li>Improve <code class="notranslate">Tooltip</code> accessibility (focus and voice over) (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8247" rel="nofollow">#8247</a> by <a href="https://github.com/alekzvik"><code class="notranslate">@alekzvik</code></a>)</li>
<li>Fix links in accessibility guide (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8198" rel="nofollow">#8198</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
<li>Remove <code class="notranslate">role="presentation"</code> from image tiles (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8172" rel="nofollow">#8172</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="lady_beetle" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41e.png">🐞</g-emoji> Bug fixes</h3>
<ul dir="auto">
<li>Fix invalid GeoJSON on unbalanced arrays (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/7637" rel="nofollow">#7637</a> by <a href="https://github.com/steff1986"><code class="notranslate">@steff1986</code></a>)</li>
<li>Fix 2 step zooming while using mouse wheel scrolling (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8298" rel="nofollow">#8298</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Fix wrong assigned parameter while calling <code class="notranslate">map._move</code> over <code class="notranslate">requestAnimFrame</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8328" rel="nofollow">#8328</a> by <a href="https://github.com/AMDvsTMD"><code class="notranslate">@AMDvsTMD</code></a>)</li>
<li>Fix <code class="notranslate">_isClickDisabled</code> to not throw no error if parent is removed from DOM (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8288" rel="nofollow">#8288</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Fix <code class="notranslate">DomEvent.DoubleTap</code> to ignore clicks on <code class="notranslate"><label></code>s with a <code class="notranslate">for</code> attribute (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8227" rel="nofollow">#8227</a> by <a href="https://github.com/IvanSanchez"><code class="notranslate">@IvanSanchez</code></a>)</li>
<li>Fix calling <code class="notranslate">once()</code> twice if same event is fired inside <code class="notranslate">once</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8190" rel="nofollow">#8190</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
</ul>
</blockquote>
<p dir="auto">... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p dir="auto"><em>Sourced from <a href="https://github.com/Leaflet/Leaflet/blob/main/CHANGELOG.md">leaflet's changelog</a>.</em></p>
<blockquote>
<h2 dir="auto">1.9.0 (2022-09-21)</h2>
<h3 dir="auto"><g-emoji class="g-emoji" alias="warning" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/26a0.png">⚠️</g-emoji> Breaking Changes</h3>
<ul dir="auto">
<li>Update <code class="notranslate">color-adjust</code> to <code class="notranslate">print-color-adjust</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8211" rel="nofollow">#8211</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="sparkle" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2747.png">❇️</g-emoji> API changes</h3>
<ul dir="auto">
<li>Add <code class="notranslate">content</code> and <code class="notranslate">latLng</code> options to <code class="notranslate">Popup</code> / <code class="notranslate">Tooltip</code> constructors (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/7783" rel="nofollow">#7783</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Extend <code class="notranslate">Bounds</code> to have the same functions as <code class="notranslate">LatLngBounds</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/7882" rel="nofollow">#7882</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="sparkles" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2728.png">✨</g-emoji> Improvements</h3>
<ul dir="auto">
<li>Expose ESM entrypoint with Leaflet global (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8329" rel="nofollow">#8329</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@jonkoops</code></a>)</li>
<li>Update <code class="notranslate">getCenter()</code> calculation and move it to <code class="notranslate">PolyUtil</code> / <code class="notranslate">LineUtil</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/7603" rel="nofollow">#7603</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Remove border styles in overflowing popups (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8260" rel="nofollow">#8260</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
<li>Fix "listener not found" warning when setting <code class="notranslate">maxBounds</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8168" rel="nofollow">#8168</a>)</li>
<li>Remove "listener not found" warning (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8234" rel="nofollow">#8234</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Extend <code class="notranslate">Events.listens</code> to search for specific function (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8161" rel="nofollow">#8161</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Add <code class="notranslate">noMoveStart</code> option to <code class="notranslate">panTo</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/6685" rel="nofollow">#6685</a> by <a href="https://github.com/Chivano"><code class="notranslate">@Chivano</code></a>)</li>
<li>Add <code class="notranslate">FeatureCollection</code> handling to <code class="notranslate">geometryToLayer</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8163" rel="nofollow">#8163</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="raised_hands" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f64c.png">🙌</g-emoji> Accessibility</h3>
<ul dir="auto">
<li>Improve <code class="notranslate">Tooltip</code> accessibility (focus and voice over) (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8247" rel="nofollow">#8247</a> by <a href="https://github.com/alekzvik"><code class="notranslate">@alekzvik</code></a>)</li>
<li>Fix links in accessibility guide (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8198" rel="nofollow">#8198</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
<li>Remove redundant <code class="notranslate">role="presentation"</code> from image tiles (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8172" rel="nofollow">#8172</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="lady_beetle" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41e.png">🐞</g-emoji> Bug fixes</h3>
<ul dir="auto">
<li>Fix invalid GeoJSON on unbalanced arrays (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/7637" rel="nofollow">#7637</a> by <a href="https://github.com/steff1986"><code class="notranslate">@steff1986</code></a>)</li>
<li>Fix 2 step zooming while using mouse wheel scrolling (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8298" rel="nofollow">#8298</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Fix wrong assigned parameter while calling <code class="notranslate">map._move</code> over <code class="notranslate">requestAnimFrame</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8328" rel="nofollow">#8328</a> by <a href="https://github.com/AMDvsTMD"><code class="notranslate">@AMDvsTMD</code></a>)</li>
<li>Fix <code class="notranslate">_isClickDisabled</code> to not throw no error if parent is removed from DOM (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8288" rel="nofollow">#8288</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Fix <code class="notranslate">DomEvent.DoubleTap</code> to ignore clicks on <code class="notranslate"><label></code>s with a <code class="notranslate">for</code> attribute (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8227" rel="nofollow">#8227</a> by <a href="https://github.com/IvanSanchez"><code class="notranslate">@IvanSanchez</code></a>)</li>
<li>Fix calling <code class="notranslate">once()</code> twice if same event is fired inside <code class="notranslate">once</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8190" rel="nofollow">#8190</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Fix <code class="notranslate">map.getCenter()</code> returning a mutable object (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8167" rel="nofollow">#8167</a>)</li>
<li>Fix regression about popup close button modifying the URL (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8160" rel="nofollow">#8160</a> by <a href="https://github.com/IvanSanchez"><code class="notranslate">@IvanSanchez</code></a>)</li>
<li>Fix <code class="notranslate">min/maxZoom</code> when used in combination with <code class="notranslate">detectRetina</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/7328" rel="nofollow">#7328</a> by <a href="https://github.com/bozdoz"><code class="notranslate">@bozdoz</code></a>)</li>
</ul>
<h3 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> Docs</h3>
<ul dir="auto">
<li>Use preferred tile.openstreetmap.org URL (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8418" rel="nofollow">#8418</a> by <a href="https://github.com/Firefishy"><code class="notranslate">@Firefishy</code></a>)</li>
<li>Use LocalStorage for dialog sessions (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8382" rel="nofollow">#8382</a> by <a href="https://github.com/ChristopherWirtOfficial"><code class="notranslate">@ChristopherWirtOfficial</code></a>)</li>
<li>Update anchor links for headers and in collapsed accordions (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/7780" rel="nofollow">#7780</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Fix typo in reference-1.6.0.html (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8330" rel="nofollow">#8330</a> by <a href="https://github.com/eltociear"><code class="notranslate">@eltociear</code></a>)</li>
<li>Add pre-commit linting to CONTRIBUTING.md (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8299" rel="nofollow">#8299</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Ensure no borders on dialog iframe (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8296" rel="nofollow">#8296</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
<li>Replace Mapbox with OpenStreetMap in tutorials and examples (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/7818" rel="nofollow">#7818</a> by <a href="https://github.com/Falke-Design"><code class="notranslate">@Falke-Design</code></a>)</li>
<li>Remove DOCS-TODO.md (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8296" rel="nofollow">#8259</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
<li>Better PosAnimation example (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/7386" rel="nofollow">#7386</a> by <a href="https://github.com/stell"><code class="notranslate">@stell</code></a>)</li>
<li>Correct heading level in GeoJSON example (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8230" rel="nofollow">#8230</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
<li>Update Overlay Tutorial (ImageOverlay, VideoOverlay, SVGOverlay) (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8090" rel="nofollow">#8090</a> by <a href="https://github.com/KonstantinBiryukov"><code class="notranslate">@KonstantinBiryukov</code></a>)</li>
<li>Change attribute <code class="notranslate">anchor</code> to <code class="notranslate">data-anchor</code> (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8174" rel="nofollow">#8174</a> by <a href="https://github.com/KnightJam1"><code class="notranslate">@KnightJam1</code></a>)</li>
<li>Fix bad markdown causing link to not work (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8156" rel="nofollow">#8156</a> by <a href="https://github.com/freyfogle"><code class="notranslate">@freyfogle</code></a>)</li>
<li>A couple of site SEO fixes (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/pull/8229" rel="nofollow">#8229</a> by <a href="https://github.com/Malvoz"><code class="notranslate">@Malvoz</code></a>)</li>
</ul>
</blockquote>
<p dir="auto">... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul dir="auto">
<li><a href="https://github.com/Leaflet/Leaflet/commit/a7e1bbcb779f181c599086f12555cab851ded25e"><code class="notranslate">a7e1bbc</code></a> 1.9.0</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/708a58a7dd8f22b6e04d3c4f210d3da272751193"><code class="notranslate">708a58a</code></a> Update changelog for v1.9.0 (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8446" rel="nofollow">#8446</a>)</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/9d1a841a0fde2e1da0ac04de1375bd1b788998c0"><code class="notranslate">9d1a841</code></a> Bump eslint from 8.23.0 to 8.23.1 (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8436" rel="nofollow">#8436</a>)</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/b1197f062396097c0fed13b64f3a5347ed86c2f4"><code class="notranslate">b1197f0</code></a> Update Center calculation to work for very small layers too (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8433" rel="nofollow">#8433</a>)</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/d3c999c10c39d3e07098a529fa2f16a3edecc5e9"><code class="notranslate">d3c999c</code></a> minor readme/frontpage update (since I'm back in Kyiv)</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/78369382cf6c0c81c1ef7e344e1f3196395a9f19"><code class="notranslate">7836938</code></a> Bump rollup from 2.78.1 to 2.79.0 (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8426" rel="nofollow">#8426</a>)</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/1b6bae74f020352763188c581453890d11402302"><code class="notranslate">1b6bae7</code></a> Added test cases for Map:latLngToLayerPoint method (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8407" rel="nofollow">#8407</a>)</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/914a62e48da43d4d7aac5d6f9faf27ca92d676f2"><code class="notranslate">914a62e</code></a> GitHub Workflows security hardening (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8419" rel="nofollow">#8419</a>)</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/5e9e3c74902af8fbd834e483870c838a9d436e49"><code class="notranslate">5e9e3c7</code></a> Fix invalid GeoJSON on unbalanced arrays (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/7637" rel="nofollow">#7637</a>)</li>
<li><a href="https://github.com/Leaflet/Leaflet/commit/c2324e52e273d6f7434102a5e49b6db2142e1b62"><code class="notranslate">c2324e5</code></a> Use preferred tile.openstreetmap.org URL (<a href="https://github-redirect.dependabot.com/Leaflet/Leaflet/issues/8418" rel="nofollow">#8418</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/Leaflet/Leaflet/compare/v1.8.0...v1.9.0">compare view</a></li>
</ul>
</details>
<br>
<p dir="auto"><a href="https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores"><img src="https://camo.githubusercontent.com/74e757f2797d77135b5a9e2f1a91392b5ce1d032d88fd7572cd0de8aa94b291e/68747470733a2f2f646570656e6461626f742d6261646765732e6769746875626170702e636f6d2f6261646765732f636f6d7061746962696c6974795f73636f72653f646570656e64656e63792d6e616d653d6c6561666c6574267061636b6167652d6d616e616765723d6e706d5f616e645f7961726e2670726576696f75732d76657273696f6e3d312e382e30266e65772d76657273696f6e3d312e392e30" alt="Dependabot compatibility score" data-canonical-src="https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=leaflet&package-manager=npm_and_yarn&previous-version=1.8.0&new-version=1.9.0" style="max-width: 100%;"></a></p>
<p dir="auto">Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting <code class="notranslate">@dependabot rebase</code>.</p>
<hr>
<details>
<summary>Dependabot commands and options</summary>
<br>
<p dir="auto">You can trigger Dependabot actions by commenting on this PR:</p>
<ul dir="auto">
<li><code class="notranslate">@dependabot rebase</code> will rebase this PR</li>
<li><code class="notranslate">@dependabot recreate</code> will recreate this PR, overwriting any edits that have been made to it</li>
<li><code class="notranslate">@dependabot merge</code> will merge this PR after your CI passes on it</li>
<li><code class="notranslate">@dependabot squash and merge</code> will squash and merge this PR after your CI passes on it</li>
<li><code class="notranslate">@dependabot cancel merge</code> will cancel a previously requested merge and block automerging</li>
<li><code class="notranslate">@dependabot reopen</code> will reopen this PR if it is closed</li>
<li><code class="notranslate">@dependabot close</code> will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually</li>
<li><code class="notranslate">@dependabot ignore this major version</code> will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)</li>
<li><code class="notranslate">@dependabot ignore this minor version</code> will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)</li>
<li><code class="notranslate">@dependabot ignore this dependency</code> will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)</li>
</ul>
</details>
<hr>
<h4>You can view, comment on, or merge this pull request online at:</h4>
<p> <a href='https://github.com/openstreetmap/openstreetmap-website/pull/3713'>https://github.com/openstreetmap/openstreetmap-website/pull/3713</a></p>
<h4>Commit Summary</h4>
<ul>
<li><a href="https://github.com/openstreetmap/openstreetmap-website/pull/3713/commits/af99e543fdaa929a4c106241d41fc438521ed3a6" class="commit-link">af99e54</a> Bump leaflet from 1.8.0 to 1.9.0</li>
</ul>
<h4 style="display: inline-block">File Changes </h4> <p style="display: inline-block">(<a href="https://github.com/openstreetmap/openstreetmap-website/pull/3713/files">1 file</a>)</p>
<ul>
<li>
<strong>M</strong>
<a href="https://github.com/openstreetmap/openstreetmap-website/pull/3713/files#diff-51e4f558fae534656963876761c95b83b6ef5da5103c4adef6768219ed76c2de">yarn.lock</a>
(6)
</li>
</ul>
<h4>Patch Links:</h4>
<ul>
<li><a href='https://github.com/openstreetmap/openstreetmap-website/pull/3713.patch'>https://github.com/openstreetmap/openstreetmap-website/pull/3713.patch</a></li>
<li><a href='https://github.com/openstreetmap/openstreetmap-website/pull/3713.diff'>https://github.com/openstreetmap/openstreetmap-website/pull/3713.diff</a></li>
</ul>
<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />Reply to this email directly, <a href="https://github.com/openstreetmap/openstreetmap-website/pull/3713">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AAK2OLLSCLVBCXTHOFNDBUTV7TQKXANCNFSM6AAAAAAQTQABJM">unsubscribe</a>.<br />You are receiving this because you are subscribed to this thread.<img src="https://github.com/notifications/beacon/AAK2OLLQP5XEDA33N37EORTV7TQKXA5CNFSM6AAAAAAQTQABJOWGG33NNVSW45C7OR4XAZNFJFZXG5LFVJRW63LNMVXHIX3JMTHFE4EJT4.gif" height="1" width="1" alt="" /><span style="color: transparent; font-size: 0; display: none; visibility: hidden; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0; mso-hide: all">Message ID: <span><openstreetmap/openstreetmap-website/pull/3713</span><span>@</span><span>github</span><span>.</span><span>com></span></span></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/openstreetmap/openstreetmap-website/pull/3713",
"url": "https://github.com/openstreetmap/openstreetmap-website/pull/3713",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>