Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
93b99d4
[Cherry-pick]Adding weights to service entry endpoints (#704) (#706)
rshriram Nov 14, 2018
4eeb69c
bazel: Allow to distdir all dependencies (#702)
vadorovsky Nov 14, 2018
62032e0
add access log encoding (#710)
GregHanson Nov 19, 2018
a6e0c12
Merge remote-tracking branch 'upstream/release-1.1' into 1.1-master
hklai Dec 1, 2018
a4f4a1f
Merge pull request #721 from hklai/1.1-master
hklai Dec 1, 2018
b917615
target -> targets (#725)
pilhuhn Dec 5, 2018
6a495cf
Add note to readme about backwards incompatible changes (#700)
jeffmendoza Dec 14, 2018
c85aada
Fix a comment. (#739)
geeknoid Dec 17, 2018
73238e1
Comment typo fixes.
Dec 20, 2018
a999ccd
Merge release-1.1 into master
hklai Jan 9, 2019
5762965
Merge pull request #750 from hklai/1.1-master
hklai Jan 9, 2019
056eb85
Comment fixes. (#751)
geeknoid Jan 9, 2019
1c71953
Merge branch 'release-1.1' to Master
yangminzhu Jan 15, 2019
40a08a3
Merge pull request #759 from yangminzhu/merge-1-1
rshriram Jan 15, 2019
a222b70
Merge release-1.1 into master (#766)
hklai Jan 19, 2019
c26350e
Merge remote-tracking branch 'upstream/release-1.1' into 1.1-master
hklai Jan 22, 2019
827080d
Merge pull request #768 from hklai/1.1-master
hklai Jan 22, 2019
d0444f6
add response headers (#769) (#771)
hklai Jan 23, 2019
35daa9d
Merge remote-tracking branch 'upstream/release-1.1' into 1.1-master
hklai Jan 27, 2019
825044c
Merge pull request #774 from hklai/1.1-master
hklai Jan 27, 2019
01a2afd
Fix typos in sidecar.proto (#795)
howardjohn Feb 13, 2019
2b2fabd
Generate files with correct owner. (#798)
cgilmour Feb 15, 2019
f6b6c41
Add Datadog tracing to proxy config (#797)
cgilmour Feb 18, 2019
823a224
Merge branch 'release-1.1' into Merge11ToMaster
Feb 21, 2019
53b11a3
Merge pull request #806 from louiscryan/Merge11ToMaster
Feb 21, 2019
f0270ae
Remove myself from owners add utka instead (#814)
sebastienvas Feb 25, 2019
3dd0d12
Document exportTo restrictions
frankbu Feb 25, 2019
805601f
Update networking/v1alpha3/destination_rule.proto
andraxylia Feb 26, 2019
9359c64
regen
frankbu Feb 26, 2019
2bfb918
Merge branch 'export_to' of github.com:istio/api into export_to
frankbu Feb 26, 2019
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
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ pwd := $(shell pwd)
mount_dir := /src
repo_dir := istio.io/api
repo_mount := $(mount_dir)/istio.io/api
docker_gen := docker run --rm -v $(pwd):$(repo_mount) -w $(mount_dir) $(gen_img) -I$(repo_dir)
uid := $(shell id -u)
docker_gen := docker run --rm --user $(uid) -v /etc/passwd:/etc/passwd:ro -v $(pwd):$(repo_mount) -w $(mount_dir) $(gen_img) -I$(repo_dir)
out_path = .
docker_lock = docker run --rm -v $(pwd):$(repo_mount) -w $(repo_mount) $(lock_img)
docker_tool = docker run --rm -v $(pwd):$(repo_mount) -w $(repo_mount) $(all_img) prototool
docker_lock = docker run --rm --user $(uid) -v /etc/passwd:/etc/passwd:ro -v $(pwd):$(repo_mount) -w $(repo_mount) $(lock_img)
docker_tool = docker run --rm --user $(uid) -v /etc/passwd:/etc/passwd:ro -v $(pwd):$(repo_mount) -w $(repo_mount) $(all_img) prototool
endif

########################
Expand Down
4 changes: 2 additions & 2 deletions OWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ reviewers:
- ozevren
- qiwzhang
- rshriram
- sebastienvas
- utka
- wattli
approvers:
- andraxylia
Expand All @@ -25,5 +25,5 @@ approvers:
- ozevren
- qiwzhang
- rshriram
- sebastienvas
- utka
- wattli
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,13 @@ changes.


If releasing a new tagged version, please update python/istio-api/setup.py version to reflect.

## Backwards Incompatible Changes

If a PR tries to make backwards incompatible changes, it will be
blocked by protolock. To force these changes in, install
[protolock](https://github.com/nilslice/protolock) and run
`protolock commit --force`.

You must include a note in your PR that you had to force the
protolock and why.
14 changes: 9 additions & 5 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@ workspace(name = "io_istio_api")
load("//:check_bazel_version.bzl", "check_version")
check_version()

git_repository(
# Oct 12, 2017 (Add `build_external` option to `go_repository`)
RULES_GO_SHA = "9cf23e2aab101f86e4f51d8c5e0f14c012c2161c"
RULES_GO_SHA256 = "76133849005134eceba9080ee28cef03316fd29f64a0a8a3ae09cd8862531d15"

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
commit = "9cf23e2aab101f86e4f51d8c5e0f14c012c2161c", # Oct 12, 2017 (Add `build_external` option to `go_repository`)
remote = "https://github.com/bazelbuild/rules_go.git",
strip_prefix = "rules_go-" + RULES_GO_SHA,
url = "https://github.com/bazelbuild/rules_go/archive/" + RULES_GO_SHA + ".tar.gz",
sha256 = RULES_GO_SHA256,
)

load("//:api_dependencies.bzl", "mixer_api_dependencies")
mixer_api_dependencies()


Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion authentication/v1alpha1/policy.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion authentication/v1alpha1/policy.proto
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ enum PrincipalBinding {
// name: productpage_mTLS_with_JWT
// namespace: frod
// spec:
// target:
// targets:
// - name: productpage
// ports:
// - number: 9000
Expand Down
34 changes: 33 additions & 1 deletion mesh/v1alpha1/istio.mesh.v1alpha1.pb.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading