This repository was archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 775
Reimplement getDataFromTree using ReactDOM.renderToStaticMarkup. #2533
Merged
benjamn
merged 7 commits into
master
from
reimplement-getDataFromTree-using-renderToStaticMarkup
Nov 1, 2018
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4726c6c
Reimplement getDataFromTree in terms of renderToStaticMarkup.
benjamn 2ac70aa
Update examples/ssr app to Meteor 1.8.
benjamn 347b7a8
Bump react-apollo to version 2.3.0-beta.0.
benjamn 76f9a43
Mention getDataFromTree changes in Changelog.md.
benjamn 2313851
Merge branch 'master' into reimplement-getDataFromTree-using-renderTo…
benjamn deb18ce
Ignore react-dom/server imports when building dist/bundlesize.js.
benjamn 856122d
Bump react-apollo to version 2.3.0-beta.1.
benjamn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
---|---|---|
|
@@ -6,15 +6,15 @@ | |
|
||
[email protected] # Packages every Meteor app needs to have | ||
[email protected] # Packages for a great mobile UX | ||
mongo@1.5.0 # The database Meteor supports right now | ||
mongo@1.6.0 # The database Meteor supports right now | ||
static-html # Define static page content in .html files | ||
[email protected] # Reactive variable for tracker | ||
[email protected] # Meteor's client-side reactive programming library | ||
|
||
standard-minifier-css@1.4.1 # CSS minifier run for production mode | ||
standard-minifier-js@2.3.4 # JS minifier run for production mode | ||
standard-minifier-css@1.5.0 # CSS minifier run for production mode | ||
standard-minifier-js@2.4.0 # JS minifier run for production mode | ||
[email protected] # ECMAScript 5 compatibility for older browsers | ||
ecmascript@0.11.1 # Enable ECMAScript2015+ syntax in app code | ||
shell-server@0.3.1 # Server-side component of the `meteor shell` command | ||
ecmascript@0.12.0 # Enable ECMAScript2015+ syntax in app code | ||
shell-server@0.4.0 # Server-side component of the `meteor shell` command | ||
[email protected] | ||
underscore | ||
underscore@1.0.10 |
This file contains hidden or 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 +1 @@ | ||
METEOR@1.7.0.5 | ||
METEOR@1.8 |
This file contains hidden or 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 hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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,6 +1,6 @@ | ||
{ | ||
"name": "react-apollo", | ||
"version": "2.2.4", | ||
"version": "2.3.0-beta.1", | ||
"author": "[email protected]", | ||
"browser": "lib/react-apollo.browser.umd.js", | ||
"description": "React data container for Apollo Client", | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -23,6 +23,8 @@ export * from './withApollo'; | |
|
||
export * from './types'; | ||
|
||
export * from './walkTree'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we just avoid exporting this? Does anyone actually use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have seen some people using it, but not many. I did a quick GH code search, and can find it being referenced in a couple of cases, but again not many. Maybe we consider dropping the export when we hit 3.0? |
||
|
||
// XXX remove in the next breaking semver change (3.0) | ||
const compose = require('lodash.flowright'); | ||
export { compose }; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.