Skip to content

Commit 0e9b6a0

Browse files
committed
2 parents 1652f1c + 413f501 commit 0e9b6a0

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [7.0.52](https://github.com/Cap-go/capacitor-updater/compare/7.0.51...7.0.52) (2025-04-28)
6+
7+
8+
### Bug Fixes
9+
10+
* **deps:** update dependency com.google.code.gson:gson to v2.13.1 ([#564](https://github.com/Cap-go/capacitor-updater/issues/564)) ([e443fda](https://github.com/Cap-go/capacitor-updater/commit/e443fda0d251d9c7d4dc22a204269f9968b574b4))
11+
12+
### [7.0.51](https://github.com/Cap-go/capacitor-updater/compare/7.0.50...7.0.51) (2025-04-28)
13+
14+
15+
### Bug Fixes
16+
17+
* **deps:** update dependency androidx.work:work-runtime to v2.10.1 ([#563](https://github.com/Cap-go/capacitor-updater/issues/563)) ([a0e11fc](https://github.com/Cap-go/capacitor-updater/commit/a0e11fc13e06b6dca0d2bb4b72a92277d98a6c1b))
18+
519
### [7.0.50](https://github.com/Cap-go/capacitor-updater/compare/7.0.49...7.0.50) (2025-04-21)
620

721

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ repositories {
4949

5050

5151
dependencies {
52-
def work_version = "2.10.0"
52+
def work_version = "2.10.1"
5353
implementation "androidx.work:work-runtime:$work_version"
5454
implementation "com.google.android.gms:play-services-tasks:18.3.0"
5555
implementation "com.google.guava:guava:33.4.8-android"
5656
implementation fileTree(dir: 'libs', include: ['*.jar'])
5757
implementation project(':capacitor-android')
5858
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
5959
implementation 'io.github.g00fy2:versioncompare:1.5.0'
60-
implementation 'com.google.code.gson:gson:2.13.0'
60+
implementation 'com.google.code.gson:gson:2.13.1'
6161
testImplementation "junit:junit:$junitVersion"
6262
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
6363
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"

android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
5757
private static final String statsUrlDefault = "https://plugin.capgo.app/stats";
5858
private static final String channelUrlDefault = "https://plugin.capgo.app/channel_self";
5959

60-
private final String PLUGIN_VERSION = "7.0.50";
60+
private final String PLUGIN_VERSION = "7.0.52";
6161
private static final String DELAY_CONDITION_PREFERENCES = "";
6262

6363
private SharedPreferences.Editor editor;

ios/Plugin/CapacitorUpdaterPlugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class CapacitorUpdaterPlugin: CAPPlugin, CAPBridgedPlugin {
4545
CAPPluginMethod(name: "getNextBundle", returnType: CAPPluginReturnPromise)
4646
]
4747
public var implementation = CapacitorUpdater()
48-
private let PLUGIN_VERSION: String = "7.0.50"
48+
private let PLUGIN_VERSION: String = "7.0.52"
4949
static let updateUrlDefault = "https://plugin.capgo.app/updates"
5050
static let statsUrlDefault = "https://plugin.capgo.app/stats"
5151
static let channelUrlDefault = "https://plugin.capgo.app/channel_self"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capgo/capacitor-updater",
3-
"version": "7.0.50",
3+
"version": "7.0.52",
44
"license": "MPL-2.0",
55
"description": "Live update for capacitor apps",
66
"main": "dist/plugin.cjs.js",

0 commit comments

Comments
 (0)