@capgo/native-market 7.1.7 → 7.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,7 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  steps:
12
12
  - name: Checkout
13
- uses: actions/checkout@v4
13
+ uses: actions/checkout@v5
14
14
  - name: Setup bun
15
15
  uses: oven-sh/setup-bun@v2
16
16
  with:
@@ -13,7 +13,7 @@ jobs:
13
13
  name: "Bump version and create changelog with standard version"
14
14
  steps:
15
15
  - name: Check out
16
- uses: actions/checkout@v4
16
+ uses: actions/checkout@v5
17
17
  with:
18
18
  fetch-depth: 0
19
19
  token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
@@ -48,7 +48,7 @@ jobs:
48
48
  runs-on: ubuntu-latest
49
49
  name: "Create global cache on main branch"
50
50
  steps:
51
- - uses: actions/checkout@v4
51
+ - uses: actions/checkout@v5
52
52
  - uses: oven-sh/setup-bun@v2
53
53
  - name: Install dependencies
54
54
  id: install_code
@@ -12,13 +12,13 @@ jobs:
12
12
  runs-on: ubuntu-latest
13
13
  steps:
14
14
  - name: Check out
15
- uses: actions/checkout@v4
15
+ uses: actions/checkout@v5
16
16
  - uses: oven-sh/setup-bun@v2
17
17
  - name: Install dependencies
18
18
  id: install_code
19
19
  run: bun i
20
20
  - name: Setup java
21
- uses: actions/setup-java@v4
21
+ uses: actions/setup-java@v5
22
22
  with:
23
23
  distribution: 'zulu'
24
24
  java-version: '21'
@@ -29,7 +29,7 @@ jobs:
29
29
  runs-on: macOS-latest
30
30
  steps:
31
31
  - name: Check out
32
- uses: actions/checkout@v4
32
+ uses: actions/checkout@v5
33
33
  - uses: oven-sh/setup-bun@v2
34
34
  - name: Install dependencies
35
35
  id: install_code
@@ -42,7 +42,7 @@ jobs:
42
42
  name: 'Build code and test'
43
43
  steps:
44
44
  - name: Check out
45
- uses: actions/checkout@v4
45
+ uses: actions/checkout@v5
46
46
  - uses: oven-sh/setup-bun@v2
47
47
  - name: Install dependencies
48
48
  id: install_code
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [7.1.8](https://github.com/Cap-go/capacitor-native-market/compare/7.1.7...7.1.8) (2025-10-08)
6
+
5
7
  ## [7.1.7](https://github.com/Cap-go/capacitor-native-market/compare/7.1.6...7.1.7) (2025-10-08)
6
8
 
7
9
  ### [7.1.6](https://github.com/Cap-go/capacitor-native-market/compare/7.1.5...7.1.6) (2025-07-19)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/native-market",
3
- "version": "7.1.7",
3
+ "version": "7.1.8",
4
4
  "description": "A native market plugin for linking to google play or app store.",
5
5
  "module": "dist/esm/index.js",
6
6
  "main": "dist/esm/index.js",
package/renovate.json CHANGED
@@ -4,6 +4,7 @@
4
4
  "config:base",
5
5
  "schedule:earlyMondays"
6
6
  ],
7
+ "dependencyDashboard": false,
7
8
  "lockFileMaintenance": {
8
9
  "enabled": true,
9
10
  "automerge": true,
@@ -15,6 +16,33 @@
15
16
  "matchUpdateTypes": ["minor", "patch"],
16
17
  "matchCurrentVersion": "!/^0/",
17
18
  "automerge": true
19
+ },
20
+ {
21
+ "matchPackageNames": ["eslint"],
22
+ "matchManagers": ["npm"],
23
+ "enabled": false
24
+ },
25
+ {
26
+ "matchPackagePatterns": ["^com\\.google\\..*"],
27
+ "matchCurrentVersion": "/^.*-android$/",
28
+ "allowedVersions": "/^.*-android$/"
29
+ },
30
+ {
31
+ "matchPackagePatterns": ["^com\\.android\\.tools\\.build\\:gradle$"],
32
+ "matchManagers": ["gradle"],
33
+ "enabled": false
34
+ },
35
+ {
36
+ "matchDepTypes": ["peerDependencies"],
37
+ "matchPackageNames": ["@capacitor/core"],
38
+ "matchUpdateTypes": ["minor", "patch"],
39
+ "enabled": false
40
+ },
41
+ {
42
+ "matchDepTypes": ["peerDependencies"],
43
+ "matchPackageNames": ["@capacitor/core"],
44
+ "rangeStrategy": "replace",
45
+ "allowedVersions": "/^>=\\d+\\.0\\.0$/"
18
46
  }
19
47
  ]
20
48
  }