@tauri-apps/cli 2.0.0-beta.5 → 2.0.0-beta.7

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,31 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-beta.7]
4
+
5
+ ### Enhancements
6
+
7
+ - [`c68218b36`](https://www.github.com/tauri-apps/tauri/commit/c68218b362c417b62e56c7a2b5b32c13fe035a83)([#8990](https://www.github.com/tauri-apps/tauri/pull/8990)) Add `--no-bundle` flag for `tauri build` command to skip bundling. Previously `none` was used to skip bundling, it will now be treated as invalid format and a warning will be emitted instead.
8
+
9
+ ### Dependencies
10
+
11
+ - Upgraded to `tauri-cli@2.0.0-beta.7`
12
+
13
+ ## \[2.0.0-beta.6]
14
+
15
+ ### Bug Fixes
16
+
17
+ - [`f5f3ed5f`](https://www.github.com/tauri-apps/tauri/commit/f5f3ed5f6faa0b51e83244acc15e9006299a03ba)([#9009](https://www.github.com/tauri-apps/tauri/pull/9009)) Fixes Android and iOS project initialization when the Tauri CLI is on a different disk partition.
18
+ - [`d7d03c71`](https://www.github.com/tauri-apps/tauri/commit/d7d03c7197212f3a5bebe08c929417d60927eb89)([#9017](https://www.github.com/tauri-apps/tauri/pull/9017)) Fixes dev watcher on mobile dev.
19
+ - [`b658ded6`](https://www.github.com/tauri-apps/tauri/commit/b658ded614cfc169228cb22ad5bfc64478dfe161)([#9015](https://www.github.com/tauri-apps/tauri/pull/9015)) Fixes truncation of existing BuildTask.kt when running `tauri android init`.
20
+
21
+ ### What's Changed
22
+
23
+ - [`3657ad82`](https://www.github.com/tauri-apps/tauri/commit/3657ad82f88ce528551d032d521c52eed3f396b4)([#9008](https://www.github.com/tauri-apps/tauri/pull/9008)) Updates to new ACL manifest path.
24
+
25
+ ### Dependencies
26
+
27
+ - Upgraded to `tauri-cli@2.0.0-beta.6`
28
+
3
29
  ## \[2.0.0-beta.5]
4
30
 
5
31
  ### New Features
@@ -11,7 +37,7 @@
11
37
  - `tauri permission rm`
12
38
  - `tauri permission ls`
13
39
  - `tauri capability new`
14
-
40
+
15
41
  ### Breaking Changes
16
42
 
17
43
  - [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) The `custom-protocol` Cargo feature is no longer required on your application and is now ignored. To check if running on production, use `#[cfg(not(dev))]` instead of `#[cfg(feature = "custom-protocol")]`.
package/Cargo.toml CHANGED
@@ -8,10 +8,10 @@ crate-type = ["cdylib"]
8
8
 
9
9
  [dependencies]
10
10
  # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
11
- napi = { version = "2.14", default-features = false, features = ["napi4"] }
12
- napi-derive = "2.14"
11
+ napi = { version = "2.16", default-features = false, features = ["napi4"] }
12
+ napi-derive = "2.16"
13
13
  tauri-cli = { path = "..", default-features = false }
14
- log = "0.4.20"
14
+ log = "0.4.21"
15
15
 
16
16
  [build-dependencies]
17
17
  napi-build = "2.1"
package/build.rs CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
1
+ // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
  // SPDX-License-Identifier: MIT
4
4
 
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
1
+ // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
  // SPDX-License-Identifier: MIT
4
4
 
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
1
+ // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
  // SPDX-License-Identifier: MIT
4
4
 
package/jest.config.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
1
+ // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
  // SPDX-License-Identifier: MIT
4
4
 
package/main.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
1
+ // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
  // SPDX-License-Identifier: MIT
4
4
 
package/main.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
1
+ // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
  // SPDX-License-Identifier: MIT
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-beta.5",
3
+ "version": "2.0.0-beta.7",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -68,15 +68,15 @@
68
68
  "format:check": "prettier --check ./package.json ./tauri.js"
69
69
  },
70
70
  "optionalDependencies": {
71
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.5",
72
- "@tauri-apps/cli-darwin-x64": "2.0.0-beta.5",
73
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.5",
74
- "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.5",
75
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.5",
76
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.5",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.5",
78
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.5",
79
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.5",
80
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.5"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.7",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-beta.7",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.7",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.7",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.7",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.7",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.7",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.7",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.7",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.7"
81
81
  }
82
82
  }
package/schema.json CHANGED
@@ -1123,7 +1123,7 @@
1123
1123
  }
1124
1124
  },
1125
1125
  "platforms": {
1126
- "description": "Target platforms this capability applies. By default all platforms applies.",
1126
+ "description": "Target platforms this capability applies. By default all platforms are affected by this capability.",
1127
1127
  "default": [
1128
1128
  "linux",
1129
1129
  "macOS",
package/src/lib.rs CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
1
+ // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
  // SPDX-License-Identifier: MIT
4
4
 
package/tauri.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
3
+ // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
4
4
  // SPDX-License-Identifier: Apache-2.0
5
5
  // SPDX-License-Identifier: MIT
6
6