File tree 10 files changed +61
-16
lines changed
10 files changed +61
-16
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "packages/fetch-mock" : " 12.2.1 " ,
3
- "packages/vitest" : " 0.2.7 " ,
4
- "packages/jest" : " 0.2.9 " ,
5
- "packages/codemods" : " 0.1.2 "
2
+ "packages/fetch-mock" : " 12.3.0 " ,
3
+ "packages/vitest" : " 0.2.8 " ,
4
+ "packages/jest" : " 0.2.10 " ,
5
+ "packages/codemods" : " 0.1.3 "
6
6
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.1.3] ( https://github.com/wheresrhys/fetch-mock/compare/codemods-v0.1.2...codemods-v0.1.3 ) (2025-02-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * added overwriteRoutes: true rule to codemods ([ b3d1468] ( https://github.com/wheresrhys/fetch-mock/commit/b3d1468f93fb1bf18b5d3bf8c0a21dd56ad4d0aa ) )
9
+
10
+
11
+ ### Documentation Changes
12
+
13
+ * added documentation fro new modifyRoute method ([ 0d007d6] ( https://github.com/wheresrhys/fetch-mock/commit/0d007d6d3acba0ea23b64a08ef03806ba5c827f0 ) )
14
+
3
15
## [ 0.1.2] ( https://github.com/wheresrhys/fetch-mock/compare/codemods-v0.1.1...codemods-v0.1.2 ) (2024-11-15)
4
16
5
17
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @fetch-mock/codemods" ,
3
3
"description" : " Codemods for upgrading fetch-mock" ,
4
- "version" : " 0.1.2 " ,
4
+ "version" : " 0.1.3 " ,
5
5
"main" : " ./src/index.js" ,
6
6
"type" : " commonjs" ,
7
7
"engines" : {
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 12.3.0] ( https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v12.2.1...fetch-mock-v12.3.0 ) (2025-02-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * added overwriteRoutes: true rule to codemods ([ b3d1468] ( https://github.com/wheresrhys/fetch-mock/commit/b3d1468f93fb1bf18b5d3bf8c0a21dd56ad4d0aa ) )
9
+ * implemented modifyRoute() method ([ f62e3d6] ( https://github.com/wheresrhys/fetch-mock/commit/f62e3d6f9cf36d4bcb282089b63b0b5a5ee0c21c ) )
10
+ * implemented removeRoute method ([ 584a861] ( https://github.com/wheresrhys/fetch-mock/commit/584a8619cae2e8ae513d2edc784dc7bbe13aa614 ) )
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * make types for modify route config more accurate ([ 6894569] ( https://github.com/wheresrhys/fetch-mock/commit/689456923ea902c820688cbb9010b25ecf1387a1 ) )
16
+ * prevented overwriting stickiness of a route ([ 87f8c9b] ( https://github.com/wheresrhys/fetch-mock/commit/87f8c9beaf66e07bfc145b1a4069f157f535a248 ) )
17
+
3
18
## [ 12.2.1] ( https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v12.2.0...fetch-mock-v12.2.1 ) (2025-01-28)
4
19
5
20
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " fetch-mock" ,
3
3
"description" : " Mock http requests made using fetch" ,
4
- "version" : " 12.2.1 " ,
4
+ "version" : " 12.3.0 " ,
5
5
"exports" : {
6
6
"browser" : " ./dist/esm/index.js" ,
7
7
"import" : {
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
4
+ ## [ 0.2.10] ( https://github.com/wheresrhys/fetch-mock/compare/jest-v0.2.9...jest-v0.2.10 ) (2025-02-04)
5
+
6
+
7
+ ### Dependencies
8
+
9
+ * The following workspace dependencies were updated
10
+ * dependencies
11
+ * fetch-mock bumped from ^12.2.1 to ^12.3.0
12
+
4
13
## [ 0.2.9] ( https://github.com/wheresrhys/fetch-mock/compare/jest-v0.2.8...jest-v0.2.9 ) (2025-01-28)
5
14
6
15
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @fetch-mock/jest" ,
3
3
"description" : " jest wrapper for fetch-mock" ,
4
- "version" : " 0.2.9 " ,
4
+ "version" : " 0.2.10 " ,
5
5
"exports" : {
6
6
"browser" : " ./dist/esm/index.js" ,
7
7
"import" : {
21
21
"node" : " >=18.11.0"
22
22
},
23
23
"dependencies" : {
24
- "fetch-mock" : " ^12.2.1 "
24
+ "fetch-mock" : " ^12.3.0 "
25
25
},
26
26
"peerDependencies" : {
27
27
"jest" : " *" ,
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.2.8] ( https://github.com/wheresrhys/fetch-mock/compare/vitest-v0.2.7...vitest-v0.2.8 ) (2025-02-04)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * fetch-mock bumped from ^12.2.1 to ^12.3.0
11
+
3
12
## [ 0.2.7] ( https://github.com/wheresrhys/fetch-mock/compare/vitest-v0.2.6...vitest-v0.2.7 ) (2025-01-28)
4
13
5
14
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @fetch-mock/vitest" ,
3
3
"description" : " Vitest wrapper for fetch-mock" ,
4
- "version" : " 0.2.7 " ,
4
+ "version" : " 0.2.8 " ,
5
5
"exports" : {
6
6
"browser" : " ./dist/esm/index.js" ,
7
7
"import" : {
21
21
"node" : " >=18.11.0"
22
22
},
23
23
"dependencies" : {
24
- "fetch-mock" : " ^12.2.1 "
24
+ "fetch-mock" : " ^12.3.0 "
25
25
},
26
26
"peerDependencies" : {
27
27
"vitest" : " *"
You can’t perform that action at this time.
0 commit comments