forked from kadirahq/flow-router
-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
__Major Changes:__ -⚠️ It is recommended to set `decodeQueryParamsOnce` to `true`, fixing #78, pr #92, thanks to @michaelcbrook -⚠️ By default use `{decodeQueryParamsOnce : true}` in tests -⚠️ Deprecated `staringatlights:inject-data`, in favor of `communitypackages:inject-data` -⚠️ Deprecated `staringatlights:fast-render`, in favor of `communitypackages:fast-render` __Changes:__ - 👷♂️ Merged #92, thanks to @michaelcbrook and @Pitchlyapp, fix #78 - 👨💻 Fix #93, thanks to @drone1 - 🤝 Support and compatibility with `communitypackages:inject-data` - 🤝 Support and compatibility with `communitypackages:fast-render` - 🤝 Compatibility with `[email protected]` __Other changes:__ - 📔 Overall documentation update and minor refinement - 👨🔬 Update test-suite to cover #93 - 🧹 Overall codebase cleanup - 👷♂️ Removed unnecessary "monkey patching" around `Blaze.remove()`, thanks to @jankapunkt - 🔗 Related: meteor/blaze#372 - 🔗 Related: meteor/blaze#375 __Dependencies:__ - 📦 `[email protected]`, *was `v6.5.2`*
- Loading branch information
1 parent
d405c88
commit 7b021dc
Showing
3 changed files
with
86 additions
and
51 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package.describe({ | ||
name: 'ostrio:flow-router-extra', | ||
summary: 'Carefully extended flow-router with waitOn and template context', | ||
version: '3.7.5', | ||
version: '3.8.0', | ||
git: 'https://github.com/VeliovGroup/flow-router' | ||
}); | ||
|
||
|
@@ -15,7 +15,7 @@ Package.onUse((api) => { | |
}); | ||
|
||
Package.onTest((api) => { | ||
api.use(['ecmascript', 'tinytest', 'underscore', 'check', 'mongo', 'http', 'random', 'staringatlights:fast-render@3.2.0', 'staringatlights:[email protected].0', 'lamhieu:meteorx@2.1.1', 'ostrio:flow-router-extra'], ['client', 'server']); | ||
api.use(['ecmascript', 'tinytest', 'underscore', 'check', 'mongo', 'http', 'random', 'communitypackages:fast-render@4.0.6', 'communitypackages:[email protected].1', 'montiapm:meteorx@2.2.0', 'ostrio:flow-router-extra'], ['client', 'server']); | ||
api.use(['reactive-var', 'tracker'], 'client'); | ||
|
||
api.addFiles('test/common/fast_render_route.js', ['client', 'server']); | ||
|
@@ -43,5 +43,5 @@ Package.onTest((api) => { | |
|
||
Npm.depends({ | ||
page: '1.9.0', | ||
qs: '6.5.2' | ||
qs: '6.10.3' | ||
}); |