chore(shorebird_cli): v1.0.5 (#2022)
This commit is contained in:
@@ -2,6 +2,10 @@
|
||||
|
||||
This section contains past updates we've sent to customers via Discord.
|
||||
|
||||
## 1.0.5 (May 6, 2024)
|
||||
|
||||
- 🔗 Improve iOS patch speed when adding/removing classes
|
||||
|
||||
## 1.0.4 (April 25, 2024)
|
||||
|
||||
- 🩹 Revert "Improve consistency of Shorebird artifact downloads" from 1.0.3 ([#1958](https://github.com/shorebirdtech/shorebird/pull/1958))
|
||||
|
||||
@@ -13,7 +13,7 @@ NSError _$NSErrorFromJson(Map<String, dynamic> json) => $checkedCreate(
|
||||
json,
|
||||
($checkedConvert) {
|
||||
final val = NSError(
|
||||
code: $checkedConvert('code', (v) => v as int),
|
||||
code: $checkedConvert('code', (v) => (v as num).toInt()),
|
||||
domain: $checkedConvert('domain', (v) => v as String),
|
||||
userInfo: $checkedConvert(
|
||||
'userInfo', (v) => UserInfo.fromJson(v as Map<String, dynamic>)),
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
// Generated code. Do not modify.
|
||||
const packageVersion = '1.0.4';
|
||||
const packageVersion = '1.0.5';
|
||||
|
||||
@@ -214,10 +214,10 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: coverage
|
||||
sha256: "8acabb8306b57a409bf4c83522065672ee13179297a6bb0cb9ead73948df7c76"
|
||||
sha256: "3945034e86ea203af7a056d98e98e42a5518fff200d6e8e6647e1886b07e936e"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.7.2"
|
||||
version: "1.8.0"
|
||||
crypto:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -366,10 +366,10 @@ packages:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: json_annotation
|
||||
sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467
|
||||
sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "4.8.1"
|
||||
version: "4.9.0"
|
||||
json_path:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -382,10 +382,10 @@ packages:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
name: json_serializable
|
||||
sha256: aa1f5a8912615733e0fdc7a02af03308933c93235bdc8d50d0b0c8a8ccb0b969
|
||||
sha256: ea1432d167339ea9b5bb153f0571d0039607a873d6e04e0117af043f14a1fd4b
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "6.7.1"
|
||||
version: "6.8.0"
|
||||
jwt:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -698,10 +698,10 @@ packages:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
name: test
|
||||
sha256: d72b538180efcf8413cd2e4e6fcc7ae99c7712e0909eb9223f9da6e6d0ef715f
|
||||
sha256: d11b55850c68c1f6c0cf00eabded4e66c4043feaf6c0d7ce4a36785137df6331
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.25.4"
|
||||
version: "1.25.5"
|
||||
test_api:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -802,10 +802,10 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: win32
|
||||
sha256: "0a989dc7ca2bb51eac91e8fd00851297cfffd641aa7538b165c62637ca0eaa4a"
|
||||
sha256: "0eaf06e3446824099858367950a813472af675116bf63f008a4c2a75ae13e9cb"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "5.4.0"
|
||||
version: "5.5.0"
|
||||
xml:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -826,9 +826,9 @@ packages:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: yaml_edit
|
||||
sha256: c566f4f804215d84a7a2c377667f546c6033d5b34b4f9e60dfb09d17c4e97826
|
||||
sha256: e9c1a3543d2da0db3e90270dbb1e4eebc985ee5e3ffe468d83224472b2194a5f
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.2.0"
|
||||
version: "2.2.1"
|
||||
sdks:
|
||||
dart: ">=3.3.0 <4.0.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: shorebird_cli
|
||||
description: Command-line tool to interact with Shorebird's services.
|
||||
version: 1.0.4
|
||||
version: 1.0.5
|
||||
repository: https://github.com/shorebirdtech/shorebird
|
||||
|
||||
publish_to: none
|
||||
@@ -30,7 +30,7 @@ dependencies:
|
||||
http: ^1.2.1
|
||||
intl: ^0.19.0
|
||||
io: ^1.0.4
|
||||
json_annotation: ^4.8.1
|
||||
json_annotation: ^4.9.0
|
||||
json_path: ^0.7.1
|
||||
jwt:
|
||||
path: ../jwt
|
||||
|
||||
Reference in New Issue
Block a user