Skip to content

Commit

Permalink
📦 v3.8.0
Browse files Browse the repository at this point in the history
__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
dr-dimitru committed Jun 8, 2022
1 parent d405c88 commit 7b021dc
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 51 deletions.
45 changes: 40 additions & 5 deletions .npm/package/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

86 changes: 43 additions & 43 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
accounts-base@1.6.0
[email protected].0
babel-compiler@7.5.3
[email protected].0
accounts-base@2.2.3
[email protected].1
babel-compiler@7.9.0
[email protected].1
[email protected]
[email protected]
[email protected].0
callback-hook@1.3.0
[email protected].1
callback-hook@1.4.0
[email protected]
chuangbo:[email protected]
communitypackages:[email protected]
communitypackages:[email protected]
communitypackages:[email protected]
[email protected]
ddp-client@2.3.3
ddp-client@2.5.0
[email protected]
ddp-rate-limiter@1.0.7
ddp-server@2.3.1
ddp-rate-limiter@1.1.0
ddp-server@2.5.0
[email protected]
dynamic-import@0.5.2
ecmascript@0.14.3
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.10.0
ecmascript-runtime-server@0.9.0
[email protected].1
dynamic-import@0.7.2
ecmascript@0.16.2
ecmascript-runtime@0.8.0
ecmascript-runtime-client@0.12.1
ecmascript-runtime-server@0.11.0
[email protected].2
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
lamhieu:[email protected]
[email protected]
local-test:ostrio:flow-router-extra@3.7.5
local-test:ostrio:flow-router-extra@3.8.0
[email protected]
[email protected]
[email protected]
meteorhacks:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
montiapm:[email protected]
[email protected]
[email protected]
ostrio:flow-router-extra@3.7.5
promise@0.11.2
ostrio:flow-router-extra@3.8.0
promise@0.12.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
staringatlights:[email protected]
staringatlights:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
webapp@1.9.1
webapp-hashing@1.0.9
[email protected].2
webapp@1.13.1
webapp-hashing@1.1.0
6 changes: 3 additions & 3 deletions package.js
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'
});

Expand All @@ -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']);
Expand Down Expand Up @@ -43,5 +43,5 @@ Package.onTest((api) => {

Npm.depends({
page: '1.9.0',
qs: '6.5.2'
qs: '6.10.3'
});

0 comments on commit 7b021dc

Please sign in to comment.