-
Notifications
You must be signed in to change notification settings - Fork 351
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: stephenh/ts-proto
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.115.5
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: stephenh/ts-proto
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.116.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 5 commits
- 35 files changed
- 4 contributors
Commits on Jul 1, 2022
-
chore: Bump TypeScript in ts-proto-descriptors. (#606)
* Bump TypeScript in ts-proto-descriptors. * v1.7.0
Configuration menu - View commit details
-
Copy full SHA for 6eb996e - Browse repository at this point
Copy the full SHA 6eb996eView commit details -
refactor: update to typescript 4.7.4 (#603)
Updates to TypeScript 4.7.x (latest). This requires an update to ts-proto-descriptors, to release: 1. Release ts-proto-descriptors version 1.7.0. 2. Update package.json with ts-proto-descriptors version. 3. Publish ts-proto update. Additionally, some other minor fixes: - Cast _unknownFields to any to fix build errors. - Update docker-compose to v2: uses plugin: "docker compose" Fixes #607 Signed-off-by: Christian Stewart <christian@paral.in>
Configuration menu - View commit details
-
Copy full SHA for e2323b6 - Browse repository at this point
Copy the full SHA e2323b6View commit details -
chore(deps-dev): bump semantic-release from 17.4.2 to 19.0.3 (#592)
Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.4.2 to 19.0.3. - [Release notes](https://github.com/semantic-release/semantic-release/releases) - [Commits](semantic-release/semantic-release@v17.4.2...v19.0.3) --- updated-dependencies: - dependency-name: semantic-release dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b7954f2 - Browse repository at this point
Copy the full SHA b7954f2View commit details -
feat: add option to use async iterables (#605)
Adds option useAsyncIterable which uses AsyncIterable instead of Observable. For example: bidirectionalStreamingRequest( service: string, method: string, data: AsyncIterable<Uint8Array> ): AsyncIterable<Uint8Array> Generates Transform async iterables for encoding and decoding: // encodeTransform encodes a source of message objects. // Transform<TestMessage, Uint8Array> async *encodeTransform( source: AsyncIterable<TestMessage | TestMessage[]> | Iterable<TestMessage | TestMessage[]> ): AsyncIterable<Uint8Array> { for await (const pkt of source) { if (Array.isArray(pkt)) { for (const p of pkt) { yield* [TestMessage.encode(p).finish()]; } } else { yield* [TestMessage.encode(pkt).finish()]; } } }, // decodeTransform decodes a source of encoded messages. // Transform<Uint8Array, TestMessage> async *decodeTransform( source: AsyncIterable<Uint8Array | Uint8Array[]> | Iterable<Uint8Array | Uint8Array[]> ): AsyncIterable<TestMessage> { for await (const pkt of source) { if (Array.isArray(pkt)) { for (const p of pkt) { yield* [TestMessage.decode(p)]; } } else { yield* [TestMessage.decode(pkt)]; } } }, Generates RPC service implementations which use the Transform iterators: BidiStreaming(request: AsyncIterable<TestMessage>): AsyncIterable<TestMessage> { const data = TestMessage.encodeTransform(request); const result = this.rpc.bidirectionalStreamingRequest('simple.Test', 'BidiStreaming', data); return TestMessage.decodeTransform(result); } AsyncIterables indicate a stream has ended by closing with an optional error. Fixes #600 Signed-off-by: Christian Stewart <christian@paral.in>
Configuration menu - View commit details
-
Copy full SHA for ca8ea8d - Browse repository at this point
Copy the full SHA ca8ea8dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 36f66b0 - Browse repository at this point
Copy the full SHA 36f66b0View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.115.5...v1.116.0