-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bumping knative.dev/eventing a6ac811...332d974: > 332d974 Update TokenVerifier to verify AuthZ too (# 8063) > 3264b21 List applying EventPolicies in Brokers status (# 8060) > 657c3cd List applying policies in job sink (# 8064) > 98ed09c [main] Update community files (# 8069) > e2d782f # 7879: Changes to add filters field (# 7930) > d18595f 🐛 Codecov reject any coverage drop (# 8065) > 399bb86 Reconcile EventPolicies when features configmap changes (# 8059) > 4f2b53f Set APIVersion and Kind of EventPolicy manually in OwnerReference of backing channels policy (# 8031) > 96c30bd List applying EventPolicies in Sequence status (# 8012) > 3b1bfb4 feat(test): create knsubscribe rolebinding to current user in e2e test setup (# 8055) > beb71be Add EventPolicy Reconciler (# 8024) > 6992e6f Avoid fatal errors for unknown features flags that can be added in a future release (# 8051) bumping knative.dev/hack 0914314...b979959: > b979959 Update community files (# 387) bumping knative.dev/pkg 3f6a546...7ecd548: > 7ecd548 Update community files (# 3071) bumping knative.dev/serving a043ddf...208138f: > 208138f Update net-gateway-api nightly (# 15372) > 4bbb7cf Fix external domain tls test setup (# 15366) > 05b60b5 Update community files (# 15369) > 75f7393 Update net-gateway-api nightly (# 15355) > af2c899 Adjust Workload HA test iterations to fit within test timeout (# 15362) > 89fdbe1 Update net-kourier nightly (# 15357) > 9873264 Update net-contour nightly (# 15363) > 6d257d8 Update net-istio nightly (# 15365) Signed-off-by: Knative Automation <automation@knative.team>
- Loading branch information
1 parent
4912abb
commit 1835421
Showing
76 changed files
with
5,058 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
vendor/knative.dev/eventing/pkg/apis/sinks/v1alpha1/test_helpers.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
Copyright 2024 The Knative Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
"github.com/google/go-cmp/cmp/cmpopts" | ||
"knative.dev/pkg/apis" | ||
) | ||
|
||
var ( | ||
ignoreAllButTypeAndStatus = cmpopts.IgnoreFields( | ||
apis.Condition{}, | ||
"LastTransitionTime", "Message", "Reason", "Severity") | ||
) |
1 change: 1 addition & 0 deletions
1
vendor/knative.dev/eventing/pkg/apis/sinks/v1alpha1/zz_generated.deepcopy.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.