Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ git_repository(

git_repository(
name = "improbable_platform",
commit = "296b7bd9194204b0a0044555c7d1418416643831",
commit = "eba19202500d625d033e51070ff55c33ccaef5c2",
remote = "git@github.com:improbable/platform.git",
# Hello! Are you updating the commit of the platform repo dependency? This comment is for you!
# The "shallow_since" field must be set to the day *before* the day of the commit. You can run
# the following script inside the *platform* repo to determine the value you should put in the
# "shallow_since" field based on the commit (replace <commit> with the actual commit hash):
# $ date --date="$(git show --pretty=format:'%cD' <commit> | head --lines=1)-1 day" "+%F"
shallow_since = "2019-07-08",
shallow_since = "2019-09-02",
)

new_git_repository(
Expand Down
2 changes: 1 addition & 1 deletion apis/deployment_v1alpha1/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ csharp_proto_compile(
"@improbable_protoc_gen_gocli//:proto",
],
protos = [
"@improbable_platform//proto/improbable/spatialos/deployment:protos",
"@improbable_platform//proto/improbable/spatialos/deployment/v1alpha1:protos",
],
with_grpc = True,
)
1,456 changes: 1,242 additions & 214 deletions apis/deployment_v1alpha1/Deployment.cs

Large diffs are not rendered by default.

262 changes: 261 additions & 1 deletion apis/deployment_v1alpha1/DeploymentGrpc.cs

Large diffs are not rendered by default.

804 changes: 735 additions & 69 deletions apis/deployment_v1alpha1/DeploymentServiceClient.cs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions apis/playerauth_v2alpha1/PlayerAuth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1618,7 +1618,7 @@ public string ProjectName {
/// <summary>
/// A user-specified description for the DAT.
///
/// The maximum length is 200 characters.
/// It cannot be empty and has a maximum length of 200 characters.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string Description {
Expand Down Expand Up @@ -1865,7 +1865,7 @@ public string ProjectName {
/// <summary>
/// A description for the DAT.
///
/// The maximum length is 200 characters.
/// It cannot be empty and has a maximum length of 200 characters.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string Description {
Expand Down
Loading