@daemux/store-automator 0.10.91 → 0.10.93

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.
@@ -5,14 +5,14 @@
5
5
  },
6
6
  "metadata": {
7
7
  "description": "App Store & Google Play automation for Flutter apps",
8
- "version": "0.10.91"
8
+ "version": "0.10.93"
9
9
  },
10
10
  "plugins": [
11
11
  {
12
12
  "name": "store-automator",
13
13
  "source": "./plugins/store-automator",
14
14
  "description": "3 agents for app store publishing: reviewer, meta-creator, media-designer",
15
- "version": "0.10.91",
15
+ "version": "0.10.93",
16
16
  "keywords": [
17
17
  "flutter",
18
18
  "app-store",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daemux/store-automator",
3
- "version": "0.10.91",
3
+ "version": "0.10.93",
4
4
  "description": "Full App Store & Google Play automation for Flutter apps with Claude Code agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "store-automator",
3
- "version": "0.10.91",
3
+ "version": "0.10.93",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
@@ -35,6 +35,8 @@ _SIGNABLE_PRODUCT_PREFIXES = (
35
35
  _SIGNING_KEYS = {
36
36
  "CODE_SIGN_STYLE": "Manual",
37
37
  "CODE_SIGN_IDENTITY": '"Apple Distribution"',
38
+ "CODE_SIGNING_ALLOWED": "YES",
39
+ "CODE_SIGNING_REQUIRED": "YES",
38
40
  }
39
41
  _STRIP_KEYS = ("PROVISIONING_PROFILE",)
40
42
 
@@ -6,7 +6,7 @@ Steps:
6
6
 
7
7
  1. Generate an RSA private key + CSR.
8
8
  2. Create a new Apple Distribution certificate from the CSR; if the per-team
9
- cap is hit (409), revoke the newest existing DISTRIBUTION cert and retry.
9
+ cap is hit (409), revoke the oldest existing DISTRIBUTION cert and retry.
10
10
  3. Discover every signable native target in the Xcode project (main app +
11
11
  extensions like Network Extensions, Widgets, WatchKit apps). SwiftPM
12
12
  resource bundles are skipped — they can't be signed manually.