Skip to content

Commit 4db3f52

Browse files
build(deps): bump pigeon from 24.2.2 to 25.2.0 (#251)
Bumps [pigeon](https://github.com/flutter/packages/tree/main/packages) from 24.2.2 to 25.2.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/flutter/packages/commit/1977932ab4a69bc545788fb6e0cc8bf51bd42f56"><code>1977932</code></a> [pigeon] kotlin equality methods (<a href="https://github.com/flutter/packages/tree/main/packages/issues/8887">#8887</a>)</li> <li><a href="https://github.com/flutter/packages/commit/125c117a432f2179b25c5dbfad4b0045918eb4cd"><code>125c117</code></a> [google_maps_flutter] Add ability to animate camera with duration (<a href="https://github.com/flutter/packages/tree/main/packages/issues/7648">#7648</a>)</li> <li><a href="https://github.com/flutter/packages/commit/527d8faae2dd6d3da90b76b498c71b013699ef32"><code>527d8fa</code></a> [webview_flutter] Fix macOS test issues and skip some legacy iOS tests (<a href="https://github.com/flutter/packages/tree/main/packages/issues/8895">#8895</a>)</li> <li><a href="https://github.com/flutter/packages/commit/c27d2fea2c598b70beebe7706bb0915d22174177"><code>c27d2fe</code></a> [google_maps_flutter] Add ability to animate camera with duration - platform ...</li> <li><a href="https://github.com/flutter/packages/commit/2df1c3a524131e35d6e385eb9465c47d530e341b"><code>2df1c3a</code></a> [dependabot]: Bump com.android.tools.build:gradle from 8.0.0 to 8.9.0 in /pac...</li> <li><a href="https://github.com/flutter/packages/commit/69816394d25acd312ae60fd66c87765846a6194e"><code>6981639</code></a> [dependabot]: Bump com.android.tools.build:gradle from 8.0.0 to 8.9.0 in /pac...</li> <li><a href="https://github.com/flutter/packages/commit/cf9b0f25a06d8e20cac853e5b5a0631dd1a4656c"><code>cf9b0f2</code></a> [pigeon] Dart Class Equality (<a href="https://github.com/flutter/packages/tree/main/packages/issues/8788">#8788</a>)</li> <li><a href="https://github.com/flutter/packages/commit/dd781d4bcb7fa1104c00b7bf28c2a743af41307a"><code>dd781d4</code></a> [camera_avfoundation] Tests backfilling - part 4 (<a href="https://github.com/flutter/packages/tree/main/packages/issues/8854">#8854</a>)</li> <li><a href="https://github.com/flutter/packages/commit/a675ca6510753f4b7e0cb2edfe9f6e7b057d57fb"><code>a675ca6</code></a> [camera_avfoundation] Tests backfilling - part 5 (<a href="https://github.com/flutter/packages/tree/main/packages/issues/8873">#8873</a>)</li> <li><a href="https://github.com/flutter/packages/commit/a1c36894016285b0e229ef0f905e5b306a1acd68"><code>a1c3689</code></a> [video_player]: reduce video player position update interval from 500ms to 10...</li> <li>Additional commits viewable in <a href="https://github.com/flutter/packages/commits/pigeon-v25.2.0/packages">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pigeon&package-manager=pub&previous-version=24.2.2&new-version=25.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joscha Eckert <[email protected]>
1 parent a832d6b commit 4db3f52

File tree

9 files changed

+331
-108
lines changed

9 files changed

+331
-108
lines changed

android/src/main/kotlin/com/github/josxha/maplibre/Pigeon.g.kt

Lines changed: 103 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Autogenerated from Pigeon (v24.1.1), do not edit directly.
1+
// Autogenerated from Pigeon (v25.2.0), do not edit directly.
22
// See also: https://pub.dev/packages/pigeon
33
@file:Suppress("UNCHECKED_CAST", "ArrayInDataClass")
44

@@ -162,6 +162,28 @@ data class MapOptions (
162162
androidTextureMode,
163163
)
164164
}
165+
override fun equals(other: Any?): Boolean {
166+
if (other !is MapOptions) {
167+
return false
168+
}
169+
if (this === other) {
170+
return true
171+
}
172+
return style == other.style
173+
&& zoom == other.zoom
174+
&& pitch == other.pitch
175+
&& bearing == other.bearing
176+
&& center == other.center
177+
&& maxBounds == other.maxBounds
178+
&& minZoom == other.minZoom
179+
&& maxZoom == other.maxZoom
180+
&& minPitch == other.minPitch
181+
&& maxPitch == other.maxPitch
182+
&& gestures == other.gestures
183+
&& androidTextureMode == other.androidTextureMode
184+
}
185+
186+
override fun hashCode(): Int = toList().hashCode()
165187
}
166188

167189
/**
@@ -197,6 +219,20 @@ data class MapGestures (
197219
tilt,
198220
)
199221
}
222+
override fun equals(other: Any?): Boolean {
223+
if (other !is MapGestures) {
224+
return false
225+
}
226+
if (this === other) {
227+
return true
228+
}
229+
return rotate == other.rotate
230+
&& pan == other.pan
231+
&& zoom == other.zoom
232+
&& tilt == other.tilt
233+
}
234+
235+
override fun hashCode(): Int = toList().hashCode()
200236
}
201237

202238
/**
@@ -224,6 +260,18 @@ data class LngLat (
224260
lat,
225261
)
226262
}
263+
override fun equals(other: Any?): Boolean {
264+
if (other !is LngLat) {
265+
return false
266+
}
267+
if (this === other) {
268+
return true
269+
}
270+
return lng == other.lng
271+
&& lat == other.lat
272+
}
273+
274+
override fun hashCode(): Int = toList().hashCode()
227275
}
228276

229277
/**
@@ -251,6 +299,18 @@ data class Offset (
251299
y,
252300
)
253301
}
302+
override fun equals(other: Any?): Boolean {
303+
if (other !is Offset) {
304+
return false
305+
}
306+
if (this === other) {
307+
return true
308+
}
309+
return x == other.x
310+
&& y == other.y
311+
}
312+
313+
override fun hashCode(): Int = toList().hashCode()
254314
}
255315

256316
/**
@@ -282,6 +342,20 @@ data class Padding (
282342
right,
283343
)
284344
}
345+
override fun equals(other: Any?): Boolean {
346+
if (other !is Padding) {
347+
return false
348+
}
349+
if (this === other) {
350+
return true
351+
}
352+
return top == other.top
353+
&& bottom == other.bottom
354+
&& left == other.left
355+
&& right == other.right
356+
}
357+
358+
override fun hashCode(): Int = toList().hashCode()
285359
}
286360

287361
/**
@@ -313,6 +387,20 @@ data class MapCamera (
313387
bearing,
314388
)
315389
}
390+
override fun equals(other: Any?): Boolean {
391+
if (other !is MapCamera) {
392+
return false
393+
}
394+
if (this === other) {
395+
return true
396+
}
397+
return center == other.center
398+
&& zoom == other.zoom
399+
&& pitch == other.pitch
400+
&& bearing == other.bearing
401+
}
402+
403+
override fun hashCode(): Int = toList().hashCode()
316404
}
317405

318406
/**
@@ -344,6 +432,20 @@ data class LngLatBounds (
344432
latitudeNorth,
345433
)
346434
}
435+
override fun equals(other: Any?): Boolean {
436+
if (other !is LngLatBounds) {
437+
return false
438+
}
439+
if (this === other) {
440+
return true
441+
}
442+
return longitudeWest == other.longitudeWest
443+
&& longitudeEast == other.longitudeEast
444+
&& latitudeSouth == other.latitudeSouth
445+
&& latitudeNorth == other.latitudeNorth
446+
}
447+
448+
override fun hashCode(): Int = toList().hashCode()
347449
}
348450
private open class PigeonPigeonCodec : StandardMessageCodec() {
349451
override fun readValueOfType(type: Byte, buffer: ByteBuffer): Any? {

ios/Classes/Pigeon.g.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Autogenerated from Pigeon (v24.1.1), do not edit directly.
1+
// Autogenerated from Pigeon (v25.2.0), do not edit directly.
22
// See also: https://pub.dev/packages/pigeon
33

44
import Foundation
@@ -26,7 +26,7 @@ final class PigeonError: Error {
2626
var localizedDescription: String {
2727
return
2828
"PigeonError(code: \(code), message: \(message ?? "<nil>"), details: \(details ?? "<nil>")"
29-
}
29+
}
3030
}
3131

3232
private func wrapResult(_ result: Any?) -> [Any?] {

0 commit comments

Comments
 (0)