Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
Merge branch 'release/0.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Aug 19, 2019
2 parents 4c9837b + c617e2a commit 2425bcc
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .unicornfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ description: "This repository contains the original interface definitions of pub
\ definitions can provide a better understanding of HPI Cloud APIs and help you\
\ to utilize them more efficiently. You can also use these definitions with open\
\ source tools to generate client libraries, documentation, and other artifacts."
version: "0.0.5"
version: "0.0.6"
githubName: "HPI-de/hpi-cloud-apis"
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]


## [0.0.6] - 2019-08-19
### Added
- **feedback:** add feedback definitions

## [0.0.5] - 2019-08-18
### BREAKING CHANGES
- **course:** make CourseSeries more strict
Expand Down Expand Up @@ -61,7 +65,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
Initial release with NewsService.


[Unreleased]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.5...dev
[Unreleased]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.6...dev
[0.0.6]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.5...0.0.6
[0.0.5]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.4...0.0.5
[0.0.4]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.3...0.0.4
[0.0.3]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.2...0.0.3
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ext {
githubReleaseNotes = 'CHANGELOG.md'
allLicenses = ["Apache-2.0"]

libraryVersion = "0.0.5"
libraryVersion = "0.0.6"
}

task sourcesJar(type: Jar, dependsOn: classes) {
Expand Down
28 changes: 28 additions & 0 deletions hpi/cloud/feedback/v1test/feedback.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
syntax = "proto3";

package hpi.cloud.feedback.v1test;

option java_multiple_files = true;
option java_outer_classname = "FeedbackBitProto";
option java_package = "de.hpi.cloud.feedback.v1test";

// A single feedback message, generated by a user.
message Feedback {
// Required, output only. The unique ID of this feedback.
string id = 1;

// Required. The message.
string message = 2;

// The URI pointing to the screen currently opened by the user.
string screenUri = 3;

// Email address of the user sending the screenshot.
string user = 4;

// An optional screenshot, encoded as PNG.
bytes screenshot = 5;

// Optional log messages which might help to find a bug.
string log = 6;
}
21 changes: 21 additions & 0 deletions hpi/cloud/feedback/v1test/feedback_service.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
syntax = "proto3";

package hpi.cloud.feedback.v1test;

import "hpi/cloud/feedback/v1test/feedback.proto";

option java_multiple_files = true;
option java_outer_classname = "FeedbackServiceProto";
option java_package = "de.hpi.cloud.feedback.v1test";

// Provides access to feedback generated by users.
service FeedbackService {
// Create feedback.
rpc CreateFeedback(CreateFeedbackRequest) returns (Feedback);
}

// Request message for creating feedback using [ListInfoBits][hpi.cloud.feedback.v1test.FeedbackService.ListInfoBits].
message CreateFeedbackRequest {
// Required. The feedback to store.
Feedback feedback = 1;
}

0 comments on commit 2425bcc

Please sign in to comment.