Skip to content

Commit 529c3e1

Browse files
authored
apply version updates
1 parent b59f2f5 commit 529c3e1

11 files changed

+66
-7
lines changed

.changes/pre.json

+11
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,15 @@
1616
".changes/android-onresume.md",
1717
".changes/android-plugin-command-exception.md",
1818
".changes/android-plugin-get-config-typed.md",
19+
".changes/api-Resource.md",
1920
".changes/api-app.md",
2021
".changes/api-ipc-refactor.md",
2122
".changes/api-min-node-18.md",
23+
".changes/api-moduleresolution-node.md",
24+
".changes/api-primitives-core.md",
2225
".changes/api-primitives.md",
2326
".changes/api-tabbed.md",
27+
".changes/api-top-level-main-module.md",
2428
".changes/api-tray-menu.md",
2529
".changes/api-window.md",
2630
".changes/app-builder-send.md",
@@ -58,6 +62,7 @@
5862
".changes/cli-pnpm.md",
5963
".changes/cli-refactor-ipc-mobile.md",
6064
".changes/cli-removed-new-version-check.md",
65+
".changes/cli-signer-env-vars.md",
6166
".changes/cli-skip-targets-install.md",
6267
".changes/cli-wry-0-28.md",
6368
".changes/codegen-mobile-devurl.md",
@@ -88,6 +93,7 @@
8893
".changes/enhance-jsobject-return-types.md",
8994
".changes/error-on-identifier-change.md",
9095
".changes/event-api-window-label.md",
96+
".changes/expose-fs-scope-new.md",
9197
".changes/file-associations-config.md",
9298
".changes/file-associations.md",
9399
".changes/fix-api-package.md",
@@ -100,6 +106,7 @@
100106
".changes/fix-global-event.md",
101107
".changes/fix-icons-android.md",
102108
".changes/fix-ide-build-run.md",
109+
".changes/fix-ios-channel.md",
103110
".changes/fix-ios-cli-panic.md",
104111
".changes/fix-ios-logs.md",
105112
".changes/fix-ios-plugin-throws-command.md",
@@ -116,6 +123,7 @@
116123
".changes/fix-plugin-template.md",
117124
".changes/fix-proguard-injection.md",
118125
".changes/fix-proguard-rules.md",
126+
".changes/fix-protocol-response.md",
119127
".changes/fix-shell-build.md",
120128
".changes/fix-tauri-binary-windows.md",
121129
".changes/fix-tray-icon-validation.md",
@@ -125,6 +133,7 @@
125133
".changes/fix-xcodescript-lib-path.md",
126134
".changes/force-colored-logs.md",
127135
".changes/generate-tauri-activity.md",
136+
".changes/get-ipc-response-test.md",
128137
".changes/gradle-8.md",
129138
".changes/gtk018.md",
130139
".changes/gtk16.md",
@@ -274,9 +283,11 @@
274283
".changes/tauri-event-system-apis.md",
275284
".changes/tauri-extranous-result-types-removal.md",
276285
".changes/tauri-libxdo-feat.md",
286+
".changes/tauri-menu-predefined-close-wiwndow.md",
277287
".changes/tauri-menu-tray-refactor.md",
278288
".changes/tauri-mobile-entry-point.md",
279289
".changes/tauri-nsview.md",
290+
".changes/tauri-resources-table.md",
280291
".changes/tauri-run_on_main_thread.md",
281292
".changes/tauri-runtime-uuid.md",
282293
".changes/tauri-runtime-wry-env-vars.md",

core/tauri/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## \[2.0.0-alpha.19]
4+
5+
### New Features
6+
7+
- [`b59f2f54`](https://www.github.com/tauri-apps/tauri/commit/b59f2f54e7c1e01e33baf710d50c046401edb9d8)([#8432](https://www.github.com/tauri-apps/tauri/pull/8432)) Expose `scope::fs::Scope::new`.
8+
- [`bf095df5`](https://www.github.com/tauri-apps/tauri/commit/bf095df55aa27fb22c9240ddf8d673cfe0a4a2db)([#8276](https://www.github.com/tauri-apps/tauri/pull/8276)) Exposed `Manager::resources_table` to access the resources table used by tauri, which could be used by plugins or app authors to store their resources and retrieve it later using an id and can be used to create Rust-backed resources in JS.
9+
10+
### Enhancements
11+
12+
- [`5848b4e8`](https://www.github.com/tauri-apps/tauri/commit/5848b4e8e9fde1e0d895238cafdb57ed20be4c07)([#8386](https://www.github.com/tauri-apps/tauri/pull/8386)) Fixed the deserialisation of a `Channel` in iOS.
13+
- [`11a1529d`](https://www.github.com/tauri-apps/tauri/commit/11a1529d6ace47e731f5d69bf421e7f59f0d7567)([#8419](https://www.github.com/tauri-apps/tauri/pull/8419)) Include CORS header on custom protocol response errors to ensure frontend can read the error message.
14+
- [`db127777`](https://www.github.com/tauri-apps/tauri/commit/db127777423e467758781d58c1121cbe94844161)([#8380](https://www.github.com/tauri-apps/tauri/pull/8380)) Added `test::get_ipc_response`.
15+
16+
### Bug Fixes
17+
18+
- [`f98ce5aa`](https://www.github.com/tauri-apps/tauri/commit/f98ce5aa475d1b3f8606e773579e77f41309feb0)([#8328](https://www.github.com/tauri-apps/tauri/pull/8328)) Fix incorrect menu item for `PredefinedMenuItem::close_window`
19+
320
## \[2.0.0-alpha.18]
421

522
### Bug Fixes

core/tauri/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri"
3-
version = "2.0.0-alpha.18"
3+
version = "2.0.0-alpha.19"
44
description = "Make tiny, secure apps for all desktop platforms with Tauri"
55
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
66
readme = "README.md"

tooling/api/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## \[2.0.0-alpha.13]
4+
5+
### New Features
6+
7+
- [`428ea652`](https://www.github.com/tauri-apps/tauri/commit/428ea6524c70545be33aac96d7c22b21f25caa4c)([#8370](https://www.github.com/tauri-apps/tauri/pull/8370)) Exposed `Resource` class which should be extended for Rust-backed resources created through `tauri::Manager::resources_table`.
8+
9+
### Bug Fixes
10+
11+
- [`ef21b681`](https://www.github.com/tauri-apps/tauri/commit/ef21b681e237a80592c9118b9c023c1d57231bac)([#8391](https://www.github.com/tauri-apps/tauri/pull/8391)) Fix a regression where typescript could not find types when using `"moduleResolution": "node"`
12+
- [`46451aee`](https://www.github.com/tauri-apps/tauri/commit/46451aee1318f63a6cd861a12b63929b38c64eb6)([#8268](https://www.github.com/tauri-apps/tauri/pull/8268)) Add top-level `main`, `module` and `types` fields in `package.json` to be compliant with typescripts's `"moduleResolution": "node"`
13+
14+
### Breaking Changes
15+
16+
- [`c2ad4d28`](https://www.github.com/tauri-apps/tauri/commit/c2ad4d28c481b2d7ed643458db56210cd44a2e0c)([#8273](https://www.github.com/tauri-apps/tauri/pull/8273)) Changed former `tauri` module from `primitives` to `core`.
17+
318
## \[2.0.0-alpha.12]
419

520
### New Features

tooling/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/api",
3-
"version": "2.0.0-alpha.12",
3+
"version": "2.0.0-alpha.13",
44
"description": "Tauri API definitions",
55
"funding": {
66
"type": "opencollective",

tooling/cli/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## \[2.0.0-alpha.19]
4+
5+
### Enhancements
6+
7+
- [`803c3a79`](https://www.github.com/tauri-apps/tauri/commit/803c3a794d96c1f0b3361ca98f56e8bcf5038ede)([#8327](https://www.github.com/tauri-apps/tauri/pull/8327)) Read the following env vars when using the `tauri signer sign` command to make it easier to use in CI.
8+
9+
- `TAURI_PRIVATE_KEY`
10+
- `TAURI_PRIVATE_KEY_PASSWORD`
11+
- `TAURI_PRIVATE_KEY_PATH`
12+
313
## \[2.0.0-alpha.18]
414

515
### New Features

tooling/cli/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tooling/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [ "node" ]
33

44
[package]
55
name = "tauri-cli"
6-
version = "2.0.0-alpha.18"
6+
version = "2.0.0-alpha.19"
77
authors = [ "Tauri Programme within The Commons Conservancy" ]
88
edition = "2021"
99
rust-version = "1.70"

tooling/cli/metadata-v2.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"cli.js": {
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.19",
44
"node": ">= 10.0.0"
55
},
6-
"tauri": "2.0.0-alpha.18",
6+
"tauri": "2.0.0-alpha.19",
77
"tauri-build": "2.0.0-alpha.12"
88
}

tooling/cli/node/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-alpha.19]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-alpha.18]
410

511
### New Features

tooling/cli/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/cli",
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.19",
44
"description": "Command line interface for building Tauri apps",
55
"funding": {
66
"type": "opencollective",

0 commit comments

Comments
 (0)