File tree Expand file tree Collapse file tree 3 files changed +20
-18
lines changed
Expand file tree Collapse file tree 3 files changed +20
-18
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.1.5]
11+
12+ ### Changed
13+
14+ - Update templates to use version v0.2.0 of ` @metamask/smart-accounts-kit ` .
15+
16+ ### Fixed
17+
18+ - Bump Next.js version to resolve [ Security Advisory: CVE-2025 -66478] ( https://nextjs.org/blog/CVE-2025-66478 ) .
19+ - Fix the chain issue in Advanced Permissions template.
20+
1021## [ 0.1.4]
1122
1223### Changed
@@ -50,17 +61,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5061
5162## [ 0.1.0]
5263
53- ### Uncategorized
64+ ### Added
5465
5566- Initial release
56-
57- ## Added
58-
5967- Starter templates for the Delegation Toolkit with Next.js and Vite (React)
6068- ERC-7715 starter template for Next.js
6169- Support for feature flags
6270
63- [ Unreleased ] : https://github.com/MetaMask/gator-examples/compare/v0.1.4...HEAD
71+ [ Unreleased ] : https://github.com/MetaMask/gator-examples/compare/v0.1.5...HEAD
72+ [ 0.1.5 ] : https://github.com/MetaMask/gator-examples/compare/v0.1.4...v0.1.5
6473[ 0.1.4 ] : https://github.com/MetaMask/gator-examples/compare/v0.1.3...v0.1.4
6574[ 0.1.3 ] : https://github.com/MetaMask/gator-examples/compare/v0.1.2...v0.1.3
6675[ 0.1.2 ] : https://github.com/MetaMask/gator-examples/compare/v0.1.1...v0.1.2
Original file line number Diff line number Diff line change 11{
22 "name" : " @metamask/create-gator-app" ,
3- "version" : " 0.1.4 " ,
3+ "version" : " 0.1.5 " ,
44 "description" : " CLI tool to create new MetaMask Smart Accounts Kit application" ,
55 "homepage" : " https://github.com/MetaMask/gator-examples#readme" ,
66 "bugs" : {
Original file line number Diff line number Diff line change @@ -3,34 +3,27 @@ import { defineConfig } from 'vitest/config';
33export default defineConfig ( {
44 test : {
55 watch : false ,
6-
6+ passWithNoTests : true ,
77 include : [ 'src/**/*.test.ts' ] ,
8-
98 coverage : {
109 enabled : true ,
11-
1210 provider : 'istanbul' ,
13-
1411 include : [
1512 'src/**/*.ts' ,
1613 'src/**/*.tsx' ,
1714 'src/**/*.js' ,
1815 'src/**/*.jsx' ,
1916 'src/**/*.mjs' ,
2017 ] ,
21-
2218 exclude : [ 'src/**/*.test-d.ts' ] ,
23-
2419 thresholds : {
2520 autoUpdate : true ,
26-
27- branches : 100 ,
28- functions : 100 ,
29- lines : 100 ,
30- statements : 100 ,
21+ branches : 0 ,
22+ functions : 0 ,
23+ lines : 0 ,
24+ statements : 0 ,
3125 } ,
3226 } ,
33-
3427 typecheck : {
3528 enabled : true ,
3629
You can’t perform that action at this time.
0 commit comments