@tauri-apps/cli 2.0.0-alpha.7 → 2.0.0-alpha.9

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-alpha.9]
4
+
5
+ - [`19cd0e49`](https://www.github.com/tauri-apps/tauri/commit/19cd0e49603ad3500cd2180bfa16e1649e3a771a)([#6811](https://www.github.com/tauri-apps/tauri/pull/6811)) Add `key.properties` file to android's `.gitignore`.
6
+ - [`124d5c5a`](https://www.github.com/tauri-apps/tauri/commit/124d5c5adf67f0b68d2e41c7ddb07d9cb63f1996)([#6788](https://www.github.com/tauri-apps/tauri/pull/6788)) On mobile, fix regression introduced in `tauri-cli` version `2.0.0-alpha.3` where library not found error was thrown.
7
+ - [`31444ac1`](https://www.github.com/tauri-apps/tauri/commit/31444ac196add770f2ad18012d7c18bce7538f22)([#6725](https://www.github.com/tauri-apps/tauri/pull/6725)) Update mobile template to `wry@0.28`
8
+ - [`41f49aea`](https://www.github.com/tauri-apps/tauri/commit/41f49aeae646f2cb70b42002bb1371c79e592243)([#6659](https://www.github.com/tauri-apps/tauri/pull/6659)) Update tauri-mobile to fix running ADB scripts.
9
+ - [`6d1fa49f`](https://www.github.com/tauri-apps/tauri/commit/6d1fa49fce3a03965ce7c656390e682ce5b776e3)([#6881](https://www.github.com/tauri-apps/tauri/pull/6881)) Clear Android plugin JSON file before building Rust library to ensure removed plugins are propagated to the Android project.
10
+ - [`5a9307d1`](https://www.github.com/tauri-apps/tauri/commit/5a9307d11c1643221bc2a280feb00024f8fa6030)([#6890](https://www.github.com/tauri-apps/tauri/pull/6890)) Update android template to gradle 8.0
11
+ - [`73c803a5`](https://www.github.com/tauri-apps/tauri/commit/73c803a561181137f20366f5d52511392a619f2b)([#6837](https://www.github.com/tauri-apps/tauri/pull/6837)) Inject Tauri configuration in the Android assets.
12
+ - [`e1e85dc2`](https://www.github.com/tauri-apps/tauri/commit/e1e85dc2a5f656fc37867e278cae8042037740ac)([#6925](https://www.github.com/tauri-apps/tauri/pull/6925)) Moved the updater configuration to the `BundleConfig`.
13
+ - [`d48aaa15`](https://www.github.com/tauri-apps/tauri/commit/d48aaa150a1ceeb65ec0ba18f1e3795f70c838e3)([#6894](https://www.github.com/tauri-apps/tauri/pull/6894)) Add Cargo manifest files for the plugin example templates.
14
+ - [`e1e85dc2`](https://www.github.com/tauri-apps/tauri/commit/e1e85dc2a5f656fc37867e278cae8042037740ac)([#6925](https://www.github.com/tauri-apps/tauri/pull/6925)) Removed the allowlist configuration.
15
+
16
+ ## \[2.0.0-alpha.8]
17
+
18
+ - Do not gitignore the Android project's `buildSrc` folder by default since we removed absolute paths from it.
19
+ - [ee2d3b97](https://www.github.com/tauri-apps/tauri/commit/ee2d3b971df6d3630b8d935394fb4febcfa3a909) fix(cli): remove buildSrc from Android project gitignored paths ([#6702](https://www.github.com/tauri-apps/tauri/pull/6702)) on 2023-04-13
20
+ - Fixes iOS build script using the wrong path for the app library file.
21
+ - [abc5f91f](https://www.github.com/tauri-apps/tauri/commit/abc5f91fa3569efc9dfdee46d1c501eda8755944) fix(cli): iOS Xcode script using incorrect library path ([#6699](https://www.github.com/tauri-apps/tauri/pull/6699)) on 2023-04-13
22
+
3
23
  ## \[2.0.0-alpha.7]
4
24
 
5
25
  - Add `--release` flag for `tauri android dev` however you will need to sign your Android app, see https://next--tauri.netlify.app/next/guides/distribution/sign-android
@@ -102,6 +122,34 @@
102
122
  - First mobile alpha release!
103
123
  - [fa3a1098](https://www.github.com/tauri-apps/tauri/commit/fa3a10988a03aed1b66fb17d893b1a9adb90f7cd) feat(ci): prepare 2.0.0-alpha.0 ([#5786](https://www.github.com/tauri-apps/tauri/pull/5786)) on 2022-12-08
104
124
 
125
+ ## \[1.3.0]
126
+
127
+ - Add `--ci` flag and respect the `CI` environment variable on the `signer generate` command. In this case the default password will be an empty string and the CLI will not prompt for a value.
128
+ - [8fb1df8a](https://www.github.com/tauri-apps/tauri/commit/8fb1df8aa65a52cdb4a7e1bb9dda9b912a7a2895) feat(cli): add `--ci` flag to `signer generate`, closes [#6089](https://www.github.com/tauri-apps/tauri/pull/6089) ([#6097](https://www.github.com/tauri-apps/tauri/pull/6097)) on 2023-01-19
129
+ - Fix Outdated Github Actions in the Plugin Templates `with-api` and `backend`
130
+ - [a926b49a](https://www.github.com/tauri-apps/tauri/commit/a926b49a01925ca757d391994bfac3beea29599b) Fix Github Actions of Tauri Plugin with-api template ([#6603](https://www.github.com/tauri-apps/tauri/pull/6603)) on 2023-04-03
131
+ - Do not crash on Cargo.toml watcher.
132
+ - [e8014a7f](https://www.github.com/tauri-apps/tauri/commit/e8014a7f612a1094461ddad63aacc498a2682ff5) fix(cli): do not crash on watcher ([#6303](https://www.github.com/tauri-apps/tauri/pull/6303)) on 2023-02-17
133
+ - Fix crash when nodejs binary has the version in its name, for example `node-18`
134
+ - [1c8229fb](https://www.github.com/tauri-apps/tauri/commit/1c8229fbe273554c0c97cccee45d5967f5df1b9f) fix(cli.js): detect `node-<version>` binary, closes [#6427](https://www.github.com/tauri-apps/tauri/pull/6427) ([#6432](https://www.github.com/tauri-apps/tauri/pull/6432)) on 2023-03-16
135
+ - Add `--png` option for the `icon` command to generate custom icon sizes.
136
+ - [9d214412](https://www.github.com/tauri-apps/tauri/commit/9d2144128fc5fad67d8404bce95f82297ebb0e4a) feat(cli): add option to make custom icon sizes, closes [#5121](https://www.github.com/tauri-apps/tauri/pull/5121) ([#5246](https://www.github.com/tauri-apps/tauri/pull/5246)) on 2022-12-27
137
+ - Skip the password prompt on the build command when `TAURI_KEY_PASSWORD` environment variable is empty and the `--ci` argument is provided or the `CI` environment variable is set.
138
+ - [d4f89af1](https://www.github.com/tauri-apps/tauri/commit/d4f89af18d69fd95a4d8a1ede8442547c6a6d0ee) feat: skip password prompt on the build command if CI is set fixes [#6089](https://www.github.com/tauri-apps/tauri/pull/6089) on 2023-01-18
139
+ - Fix `default-run` not deserialized.
140
+ - [57c6bf07](https://www.github.com/tauri-apps/tauri/commit/57c6bf07bb380847abdf27c3fff9891d99c1c98c) fix(cli): fix default-run not deserialized ([#6584](https://www.github.com/tauri-apps/tauri/pull/6584)) on 2023-03-30
141
+ - Fixes HTML serialization removing template tags on the dev server.
142
+ - [314f0e21](https://www.github.com/tauri-apps/tauri/commit/314f0e212fd2b9e452bfe3424cdce2b0bf37b5d7) fix(cli): web_dev_server html template serialization (fix [#6165](https://www.github.com/tauri-apps/tauri/pull/6165)) ([#6166](https://www.github.com/tauri-apps/tauri/pull/6166)) on 2023-01-29
143
+ - Use escaping on Handlebars templates.
144
+ - [6d6b6e65](https://www.github.com/tauri-apps/tauri/commit/6d6b6e653ea70fc02794f723092cdc860995c259) feat: configure escaping on handlebars templates ([#6678](https://www.github.com/tauri-apps/tauri/pull/6678)) on 2023-05-02
145
+ - Add initial support for building `nsis` bundles on non-Windows platforms.
146
+ - [60e6f6c3](https://www.github.com/tauri-apps/tauri/commit/60e6f6c3f1605f3064b5bb177992530ff788ccf0) feat(bundler): Add support for creating NSIS bundles on unix hosts ([#5788](https://www.github.com/tauri-apps/tauri/pull/5788)) on 2023-01-19
147
+ - Add `nsis` bundle target
148
+ - [c94e1326](https://www.github.com/tauri-apps/tauri/commit/c94e1326a7c0767a13128a8b1d327a00156ece12) feat(bundler): add `nsis`, closes [#4450](https://www.github.com/tauri-apps/tauri/pull/4450), closes [#2319](https://www.github.com/tauri-apps/tauri/pull/2319) ([#4674](https://www.github.com/tauri-apps/tauri/pull/4674)) on 2023-01-03
149
+ - Remove default features from Cargo.toml template.
150
+ - [b08ae637](https://www.github.com/tauri-apps/tauri/commit/b08ae637a0f58b38cbce9b8a1fa0b6c5dc0cfd05) fix(cli): remove default features from template ([#6074](https://www.github.com/tauri-apps/tauri/pull/6074)) on 2023-01-17
151
+ - Use Ubuntu 20.04 to compile the CLI, increasing the minimum libc version required.
152
+
105
153
  ## \[1.2.3]
106
154
 
107
155
  - Pin `ignore` to `=0.4.18`.
package/Cargo.toml CHANGED
@@ -6,9 +6,6 @@ version = "0.0.0"
6
6
  [lib]
7
7
  crate-type = ["cdylib"]
8
8
 
9
- [features]
10
- openssl-vendored = ["tauri-cli/openssl-vendored"]
11
-
12
9
  [dependencies]
13
10
  # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
14
11
  napi = { version = "2.12", default-features = false, features = ["napi4"] }
@@ -18,3 +15,6 @@ log = "0.4.17"
18
15
 
19
16
  [build-dependencies]
20
17
  napi-build = "2.0"
18
+
19
+ [features]
20
+ openssl-vendored = ["tauri-cli/openssl-vendored"]
package/index.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
2
- // SPDX-License-Identifier: Apache-2.0
3
- // SPDX-License-Identifier: MIT
4
-
5
1
  /* tslint:disable */
6
2
  /* eslint-disable */
7
3
 
package/index.js CHANGED
@@ -1,3 +1,9 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /* prettier-ignore */
4
+
5
+ /* auto-generated by NAPI-RS */
6
+
1
7
  const { existsSync, readFileSync } = require('fs')
2
8
  const { join } = require('path')
3
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-alpha.7",
3
+ "version": "2.0.0-alpha.9",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -37,13 +37,13 @@
37
37
  }
38
38
  },
39
39
  "devDependencies": {
40
- "@napi-rs/cli": "2.15.1",
40
+ "@napi-rs/cli": "2.15.2",
41
41
  "cross-env": "7.0.3",
42
42
  "cross-spawn": "7.0.3",
43
- "fs-extra": "11.1.0",
44
- "jest": "29.4.0",
43
+ "fs-extra": "11.1.1",
44
+ "jest": "29.5.0",
45
45
  "jest-transform-toml": "1.0.0",
46
- "prettier": "2.8.3"
46
+ "prettier": "2.8.7"
47
47
  },
48
48
  "resolutions": {
49
49
  "json5": "2.2.3"
@@ -67,14 +67,14 @@
67
67
  "format:check": "prettier --check ./package.json ./tauri.js"
68
68
  },
69
69
  "optionalDependencies": {
70
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.7",
71
- "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.7",
72
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.7",
73
- "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.7",
74
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.7",
75
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.7",
76
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.7",
77
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.7",
78
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.7"
70
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.9",
71
+ "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.9",
72
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.9",
73
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.9",
74
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.9",
75
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.9",
76
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.9",
77
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.9",
78
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.9"
79
79
  }
80
80
  }