This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Add support for including other Thrift files. #72
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
6e96ef2
Add support for including other Thrift files.
abhinav c31bc3d
Add note about include paths being relative to the current file
abhinav 42e1f14
Restrict includes to start with ./ or ../
abhinav 432a28c
Makefile: rename bootstrap to install
abhinav 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 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 |
---|---|---|
|
@@ -9,3 +9,7 @@ env/ | |
_build | ||
*.swp | ||
node_modules | ||
*.c | ||
*.so | ||
.benchmarks/ | ||
.coverage |
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 |
---|---|---|
|
@@ -4,6 +4,8 @@ Releases | |
0.6.0 (unreleased) | ||
------------------ | ||
|
||
- ``include`` statements are now supported. For more information, see | ||
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. The phrasing on this changelog item is 👍 |
||
:ref:`including-modules`. | ||
- Added support for message envelopes. This makes it possible to talk with | ||
standard Apache Thrift services and clients. For more information, see | ||
:ref:`calling-apache-thrift`. | ||
|
@@ -19,6 +21,9 @@ Releases | |
``FunctionSpec``. | ||
- ``ServiceSpec`` now provides a ``lookup`` method to look up ``FunctionSpecs`` | ||
by name. | ||
- Removed the ``force`` option on ``Loader.load``. | ||
- In generated modules, renamed the ``types``, ``constants`` and ``services`` | ||
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. This is potentially breaking, but I buy the argument that these were intended to be internal types. |
||
attributes to ``__types__``, ``__constants__``, and ``__services__``. | ||
|
||
|
||
0.5.2 (2015-10-19) | ||
|
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should move this to 1.0.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah. I'll let zest.releaser take care of that.