- Updated
communitypackages:picker
to v1.2.0 - Updated
communitypackages:inject-data
to v2.3.3 - Updated development dependencies
- Updated Meteor compatibility upgrade to v3.0-rc.1, note that this does not mean that this package is Meter 3 compatible, only that it won't give you trouble in version resolution when updating to RC 1.
- Update
montiapm:meteorx
to v2.3.1 - Minor update of dev depenenices
- Updated GitHub Actions workflow
- Update
cookie-parser
to v1.4.6
- Update dependencies
- Update meteorx to
montiapm:meteorx
for compatibility with Meteor 2.3
- Compatibility with Meteor 2.3
- Fixed null publication data not being added to payload
- Added FastRender.onDataReady callback
- Added Extra Data API
- Removed dependency on underscore
- Improved code structure and refactored to modern syntax
- Removed dependence on outdated chuangbo:cookie package
- Removed the reliance on load order for timing of data loading and the need for
FastRender.wait()
- published as
communitypackages:fast-render
- uses newly created
communitypackages:inject-data
- Fix for Meteor 1.9 (thanks @mrauhu)
- Flush buffered DDP writes for every message instead of batching them together, so that one failure doesn't cause them all to fail. There is a race condition between the
Accounts
package andFastRender.init
in development mode. FastRender's buffered writes will fail ifAccounts
adds theuser
document to the collection after FR's checks, but before/during the batched buffered write. This change makes the buffered writes atomic and adds better error messages so we can tell specifically which write has failed.
- Fixed params serialization issue that would cause server-side subscriptions (via
route
,onAllRoutes
,onPageLoad
) to not match their client-side counterparts ifonStop
oronReady
callback usage did not match in both environments
- Revert regression from 3.0.5
- Upgrade
inject-data
dependency version
- Switched to
lamhieu:meteorx
frommeteorhacks:meteorx
- Fixed an issue where stringified server-side subscription params would not match their client-side counterparts when using SSR
- De-duplicate Package.onUse to fix issue with Meteor 1.7.0.1 (thanks @banjerluke)
- Add support for an async callback in
FastRender.onPageLoad
- Fix server-render dependency
- Add weak dependency on server-render
- Added SSR helper APIs
- Removed support for iron router
- Updated for Meteor 1.6.1
- Fixed "document already present for an add" issue (thanks @anubhav756)
- Update for Meteor 1.5+ (thanks @hexsprite)
- Updating
staringatlights:inject-data
dependency
- Releasing as
staringatlights:fast-render
- Add support for Meteor 1.3.2 with buffered DDP. See PR167
- Use a real subscription as the Publication context. See PR160.
- Use inject-data's 2.0 API.
- Refactor the way how context process data. With this, we can fix this FlowRouter SSR issue.
- Throw an exception, when a route start without "/". See: #135
- Add support for Meteor 1.2
- Fix some integration tests
- Add more internal APIs to support SSR
- Add some updates to DeepCopy function
- Add IE8 Support