Skip to content
This repository was archived by the owner on Nov 28, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
8d636fb
Remove the Source CRD, as decided in https://github.com/knative/event…
adamharwayne Oct 25, 2018
0e9276a
No longer use the subscribable interface. (#555)
adamharwayne Oct 25, 2018
5d73d6e
Change the Channelable interface to use URIs. (#561)
adamharwayne Oct 25, 2018
b063fed
Align ClusterChannelProvisioner with spec (#562)
scothis Oct 26, 2018
642bfc1
Flatten ProvisionerReference (#544)
scothis Oct 26, 2018
5f2b413
minor edits (#554)
markfisher Oct 29, 2018
36b0146
Update in-memory-channel.yaml to conform to the changes made in https…
adamharwayne Oct 30, 2018
f9133db
fix typo in the path name (#567)
Oct 30, 2018
0191960
scan all main packages for when collecting licenses (#556)
dprotaso Oct 30, 2018
a2f9417
update deps. (#566)
n3wscott Oct 30, 2018
fbb9a6b
use the full name for the clusterchannelprovisioner kind CRD file (#569)
matzew Oct 31, 2018
9761d89
Add Channels with no subscribers to configmap (#568)
grantr Oct 31, 2018
cb510fc
Add a unit test to prevent regressions of https://github.com/knative/…
adamharwayne Oct 31, 2018
8589a29
Subscription names (#563)
scothis Nov 1, 2018
3a976f6
target -> channel (#574)
adamharwayne Nov 2, 2018
2f65bb8
Rename fromReady to channelReady, to reflect the change in field name…
adamharwayne Nov 2, 2018
9a45a79
Adding as shortname for the CRD (#571)
matzew Nov 2, 2018
89692b9
Make the subscription controller resilient to empty subscriber and re…
adamharwayne Nov 2, 2018
0782c52
Align Subscribable source with spec (#565)
scothis Nov 2, 2018
370145f
Move cloudevents lib out of eventing. (#578)
n3wscott Nov 2, 2018
a99376f
Update spec to match the new names from #563. (#576)
adamharwayne Nov 2, 2018
cbdcf26
Rename Sinkable to Addressable. Temporarily use Addressable for Calla…
evankanderson Nov 6, 2018
9b7cec6
move to new model with k8s event source from event-sources (#579)
Nov 6, 2018
111089f
Remove legacy code (#532)
scothis Nov 6, 2018
52fc360
Deleting subscription should delete channel subscribers (#586)
neosab Nov 7, 2018
35a3872
Exclude test and vendor from coverage. now matches serving (#588)
Nov 7, 2018
9fe2b04
Update the release script (#584)
adrcunha Nov 7, 2018
9617713
Add helper methods from in-memory provisioner to utils (#560)
neosab Nov 7, 2018
176adaf
Tests for simple packages (#592)
grantr Nov 8, 2018
8812597
add more unit tests to subscription/reconcile.go (#593)
Nov 8, 2018
2b99e13
Add tests for eventing/v1alpha1/register.go (#595)
Nov 8, 2018
160c27c
Adds Kafka Channel Provisioner Controllers (#468)
neosab Nov 9, 2018
870182b
Add tests for pkg/apis/eventing/v1alpha1/ (#597)
srvaroa Nov 9, 2018
7dc7624
Pull in support for non-terminal conditions (#598)
mattmoor Nov 9, 2018
9f0de04
Fix in-memory channel role (#599)
nicolaferraro Nov 9, 2018
6618c25
link .git/HEAD to kodata (#603)
yanweiguo Nov 9, 2018
1182e06
use listed notation (#601)
matzew Nov 10, 2018
8fcf54f
Remove obsoleted code for subscribable interface (#602)
srvaroa Nov 10, 2018
0ad6cac
Control plane services for Kafka Channel Provisioner (#573)
neosab Nov 12, 2018
746656b
Bumping serving (#604)
matzew Nov 12, 2018
3ffd634
Remove manual pruning of knative/test-infra (#606)
grantr Nov 12, 2018
e24e064
Simplify adding new test images (#600)
mgencur Nov 13, 2018
751b0f7
Fix passing yamls to hub tool (#611)
adrcunha Nov 13, 2018
105210b
Clear release yaml before appending to it (#613)
grantr Nov 13, 2018
e4d44ed
Vendor only parts of knative/test-infra (#614)
grantr Nov 13, 2018
8bd096a
Exclude code in testing/ dirs from coverage (#615)
grantr Nov 14, 2018
0a6f667
Provider tests (#619)
grantr Nov 14, 2018
a34fd3f
Update channel only with subscribers in the same namespace (#616)
neosab Nov 15, 2018
ac7ecfe
Kafka Channel Dispatcher (#589)
neosab Nov 15, 2018
8941519
Let's log if we are not able to create a consumer... (#622)
matzew Nov 16, 2018
6e93584
Default Channels if no provisioner is specified (#580)
Harwayne Nov 19, 2018
f42832a
Add Kafka-channel provisioner to yamlz (#621)
matzew Nov 19, 2018
698100b
Use helpers for starting the E2E tests (#631)
adrcunha Nov 20, 2018
75b28da
Merge remote-tracking branch 'upstream-knative/master' into openshift…
mvinkler Nov 26, 2018
5a511f6
add Openshift CI for knative-eventing master branch
mvinkler Nov 23, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
# coverage-excluded is an attribute used to explicitly exclude a path from being included in code
# coverage. If a path is marked as linguist-generated already, it will be implicitly excluded and
# there is no need to add the coverage-excluded attribute
#/pkg/controller/testing/** coverage-excluded=true
/pkg/**/testing/** coverage-excluded=true
/vendor/** coverage-excluded=true
/test/** coverage-excluded=true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ bazel-*
.idea/
.vscode/
.DS_Store
*.swp
Loading