Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into upstream-revert-r…
Browse files Browse the repository at this point in the history
…evert-auth-token-fix
  • Loading branch information
pmahindrakar-oss committed May 31, 2024
2 parents 144cf30 + 1e61f4e commit 6ac430b
Show file tree
Hide file tree
Showing 97 changed files with 854 additions and 536 deletions.
6 changes: 0 additions & 6 deletions .codespellrc

This file was deleted.

11 changes: 11 additions & 0 deletions .github/codespell-ignored-words
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ThirdParty
bootup
crate
fo
lightyear
nd
notin
querys
ser
te
updAt
4 changes: 2 additions & 2 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
- name: Codespell
uses: codespell-project/actions-codespell@v2
with:
skip: "*.pb,monodocs-environment.lock.yaml"
ignore_words_list: crate,lightyear,fo
skip: "*.pb,monodocs-environment.lock.yaml,.git,*.pdf,*.svg,go.sum,go.mod,*requirements.txt,gen"
ignore_words_file: .github/codespell-ignored-words
37 changes: 37 additions & 0 deletions CHANGELOG/CHANGELOG-v1.12.1-rc0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Flyte 1.12.1-rc0 Release Notes

Flyte 1.12.1-rc0 is a release candidate that focuses on documentation enhancements, bug fixes, and improvements to the core infrastructure. This release also includes contributions from a new member of the Flyte community. Below are the highlights of this release.

## 🚀 New Features & Improvements

1. **Documentation Improvements**
- [Removed the source code renderer section from the Decks article](https://github.com/flyteorg/flyte/pull/5397).
- Added [documentation for OpenAI batch agent backend setup](https://github.com/flyteorg/flyte/pull/5291).
- [Updated the example Flyte agent Dockerfile](https://github.com/flyteorg/flyte/pull/5412).
- Fixed [documentation link to testing agent on local cluster](https://github.com/flyteorg/flyte/pull/5398).
- [Fixed Kubeflow webhook error](https://github.com/flyteorg/flyte/pull/5410) in the documentation.
- [Updated Flytekit version to 1.12.1b2](https://github.com/flyteorg/flyte/pull/5411) in monodocs requirements.
- [Updated Flytefile.md](https://github.com/flyteorg/flyte/pull/5428) and replaced [SHA instead of master in RLI links](https://github.com/flyteorg/flyte/pull/5434).

2. **Infrastructure and Configuration**
- [Reverted "Ensure token is refreshed on Unauthenticated"](https://github.com/flyteorg/flyte/pull/5404).
- [Updated core Helm chart for propeller configuration of agent service](https://github.com/flyteorg/flyte/pull/5402).
- [Fixed Flytectl install script](https://github.com/flyteorg/flyte/pull/5405) in the monorepo.
- [Moved to upstream mockery](https://github.com/flyteorg/flyte/pull/4937).
- [Used a different git command to match the Flyteidl tags](https://github.com/flyteorg/flyte/pull/5419).

3. **Bug Fixes**
- [Handled auto-refresh cache race condition](https://github.com/flyteorg/flyte/pull/5406).
- [Fixed typos using codespell CI job](https://github.com/flyteorg/flyte/pull/5418).
- [Fixed build failure](https://github.com/flyteorg/flyte/pull/5425) in monodocs.
- [Replaced Azure AD OIDC URL with the correct one](https://github.com/flyteorg/flyte/pull/4075).

4. **Miscellaneous**
- [Updated the lock file](https://github.com/flyteorg/flyte/pull/5416).
- [Added executionClusterLabel](https://github.com/flyteorg/flyte/pull/5394) for better execution cluster management.

## 🆕 New Contributors

- **@EraYaN** for [replacing Azure AD OIDC URL with the correct one](https://github.com/flyteorg/flyte/pull/4075).

**[Full Changelog](https://github.com/flyteorg/flyte/compare/flytectl/v0.8.21...v1.12.1-rc0)**
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ lint-helm-charts:
# This pressuposes that you have act installed
act pull_request -W .github/workflows/validate-helm-charts.yaml --container-architecture linux/amd64 -e charts/event.json

.PHONY: spellcheck
spellcheck:
act pull_request --container-architecture linux/amd64 -W .github/workflows/codespell.yml

.PHONY: clean
clean: ## Remove the HTML files related to the Flyteconsole and Makefile
rm -rf cmd/single/dist .tmp_build
22 changes: 13 additions & 9 deletions boilerplate/flyte/golang_support_tools/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ go 1.21
toolchain go1.21.7

require (
github.com/EngHabu/mockery v0.0.0-20220405200825-3f76291311cf
github.com/EngHabu/mockery v0.0.0-20220916190332-dde70e38baba
github.com/alvaroloes/enumer v1.1.2
github.com/flyteorg/flyte/flytestdlib v1.11.0
github.com/golangci/golangci-lint v1.53.3
github.com/pseudomuto/protoc-gen-doc v1.4.1
github.com/vektra/mockery/v2 v2.40.3
)

require (
Expand Down Expand Up @@ -54,6 +55,7 @@ require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/charithe/durationcheck v0.0.10 // indirect
github.com/chavacava/garif v0.0.0-20230227094218-b8c73b2037b8 // indirect
github.com/chigopher/pathlib v0.19.1 // indirect
github.com/coocood/freecache v1.1.1 // indirect
github.com/curioswitch/go-reassign v0.2.0 // indirect
github.com/daixiang0/gci v0.10.1 // indirect
Expand Down Expand Up @@ -119,11 +121,13 @@ require (
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hexops/gotextdiff v1.0.3 // indirect
github.com/huandu/xstrings v1.0.0 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/iancoleman/strcase v0.3.0 // indirect
github.com/imdario/mergo v0.3.6 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jgautheron/goconst v1.5.1 // indirect
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
github.com/jinzhu/copier v0.3.5 // indirect
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
Expand All @@ -140,7 +144,7 @@ require (
github.com/ldez/tagliatelle v0.5.0 // indirect
github.com/leonklingele/grouper v1.1.1 // indirect
github.com/lufeee/execinquery v1.2.1 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/maratori/testableexamples v1.0.0 // indirect
github.com/maratori/testpackage v1.1.1 // indirect
Expand All @@ -166,8 +170,7 @@ require (
github.com/nunnatsa/ginkgolinter v0.12.1 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/pascaldekloe/name v0.0.0-20180628100202-0fd16699aae1 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand All @@ -181,6 +184,7 @@ require (
github.com/quasilyte/gogrep v0.5.0 // indirect
github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727 // indirect
github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect
github.com/rs/zerolog v1.29.0 // indirect
github.com/ryancurrah/gomodguard v1.3.0 // indirect
github.com/ryanrolds/sqlclosecheck v0.4.0 // indirect
github.com/sanposhiho/wastedassign/v2 v2.0.7 // indirect
Expand All @@ -199,12 +203,12 @@ require (
github.com/spf13/cobra v1.7.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.12.0 // indirect
github.com/spf13/viper v1.15.0 // indirect
github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
github.com/stbenjam/no-sprintf-host-port v0.1.1 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
github.com/t-yuki/gocover-cobertura v0.0.0-20180217150009-aaee18c8195c // indirect
github.com/tdakkota/asciicheck v0.2.0 // indirect
github.com/tetafro/godot v1.4.11 // indirect
Expand Down Expand Up @@ -235,15 +239,15 @@ require (
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea // indirect
golang.org/x/exp/typeparams v0.0.0-20230224173230-c95f2b4c22f2 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/oauth2 v0.16.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.13.0 // indirect
golang.org/x/tools v0.17.0 // indirect
google.golang.org/api v0.155.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
Expand Down
Loading

0 comments on commit 6ac430b

Please sign in to comment.