Skip to content

Commit

Permalink
Merge v1 into v2 (#468)
Browse files Browse the repository at this point in the history
Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: FabianLars <fabianlars@fabianlars.de>
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
Co-authored-by: Alexandre Dang <124160233+vdang-crabnebula@users.noreply.github.com>
Co-authored-by: Ludea <ludovicw35@hotmail.com>
Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com>
Co-authored-by: Duke Jones <104690+dukejones@users.noreply.github.com>
Co-authored-by: NaokiM03 <37442712+NaokiM03@users.noreply.github.com>
Co-authored-by: Thibault <thibault_poisson@orange.fr>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: David Blythe <49919035+writeDavid@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
fix(stronghold): change wrong argument name for `remove` (#422)
fix(window-state): correctly set decoration state if no saved state exists, fixes #421 (#424)
fix(stronghold): return null if there is no record (#129)
fix(window-state): propagate promise (#435)
closes #432
fix(window-state): manual default implentation (#425)
fix(window-state): manual default implentation, closes #421
fix(deps): update rust crate iota-crypto to 0.21 (#438)
fix readme example (#447)
fix: handle recursive directory correctly (#455)
fix(deps): update rust crate sqlx to 0.7. plugin-sql msrv is now 1.65 (#464)
fix(persisted-scope): separately save asset protocol patterns (#459)
fix(deps): update rust crate iota-crypto to 0.22 (#475)
fix(deps): update tauri monorepo to v1.4.0 (#482)
resolve to v15.1.0 (#489)
fix(deps): update rust crate iota-crypto to 0.23 (#495)
  • Loading branch information
12 people authored Jul 19, 2023
1 parent 0bba693 commit aba07c2
Show file tree
Hide file tree
Showing 79 changed files with 1,828 additions and 1,230 deletions.
5 changes: 5 additions & 0 deletions .changes/persisted-scope-asset.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"persisted-scope": patch
---

Split up fs and asset scopes. **This will reset the asset protocol scope once!**
5 changes: 5 additions & 0 deletions .changes/persisted-scope-glob.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"persisted-scope": patch
---

Fix usage of directory patterns by removing glob asterisks at the end before allowing/forbidding them. This was causing them to be escaped, and so undesirable paths were allowed/forbidden while polluting the `.persisted-scope` file.
5 changes: 5 additions & 0 deletions .changes/stronghold-arg-name.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"stronghold-js": patch
---

Change the argument name of the `Stronghold.remove` from `location` to `recordPath` to match the Stronghold command argument
2 changes: 1 addition & 1 deletion .scripts/ci/check-license-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ if (files.length > 0) {
console.log(missing.join("\n"));
process.exit(1);
}
}
},
);
}
2 changes: 1 addition & 1 deletion .scripts/covector/package-latest-version.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ https.get(url, options, (response) => {
}
} else if (kind === "npm") {
const versions = Object.keys(data.versions || {}).filter((v) =>
v.startsWith(target)
v.startsWith(target),
);
console.log(versions[versions.length - 1] || "0.0.0");
}
Expand Down
Loading

0 comments on commit aba07c2

Please sign in to comment.