-
Notifications
You must be signed in to change notification settings - Fork 858
Comparing changes
Open a pull request
base repository: googleforgames/agones
base: v1.50.0
head repository: googleforgames/agones
compare: v1.51.0
- 15 commits
- 55 files changed
- 11 contributors
Commits on Jun 18, 2025
-
Configuration menu - View commit details
-
Copy full SHA for ed4e7e9 - Browse repository at this point
Copy the full SHA ed4e7e9View commit details
Commits on Jun 23, 2025
-
Add tests for Prometheus metrics endpoint and validation (#4185)
* test(metrics): add comprehensive tests for Prometheus and Stackdriver metrics setup - Added tests for Prometheus exporter registration and metrics endpoint exposure - Verified all expected metrics are served via /metrics endpoint - Included Stackdriver-only setup test to ensure no panics * add allocation metrics endpoint test --------- Co-authored-by: igooch <igooch@google.com>
Configuration menu - View commit details
-
Copy full SHA for 86e8fa8 - Browse repository at this point
Copy the full SHA 86e8fa8View commit details
Commits on Jun 27, 2025
-
Controller for Pod in Succeeded state. (#4201)
* Controller for Pod in Succeeded state. When sidecar containers are enabled, if a Pod `exit(0)`s, then it will end up in a Succeeded state, and the backing GameServer will not get deleted. This introduces a new controller to check for this Pod state and move the `GameServer` to a `Shutdown` state. Also updates all records of simple-game-server to the latest version, since we need it to test that this fix works. Closes #4188 * Fix lint issues. * Fix bugs in SucceededController * Ignore terminating pods. * Ignores Error or Unhealthy states. * Minor cleanup of failing e2e test, to help with error reporting. * Disable TestGameServerPodCompletedAfterCleanExit during FeatureSidecarContainers --------- Co-authored-by: Aravindh K <karavindh@google.com>
Configuration menu - View commit details
-
Copy full SHA for 6b6fb43 - Browse repository at this point
Copy the full SHA 6b6fb43View commit details
Commits on Jul 2, 2025
-
Changed the sidecar requests rate limiter from exponential to a const…
…ant one (#4186) * Changed the sidecar requests rate limiter from exponential to a constant one * Generate install.yaml * Update the helm.md * Using sdkServer instead of sdk for nesting * Using sdkServer outside of the controller nesting * Merge branch 'main' into perf/sidecar-patches --------- Co-authored-by: Mark Mandel <mark@compoundtheory.com> Co-authored-by: Aravindh K <karavindh@google.com> Co-authored-by: igooch <igooch@google.com>
Configuration menu - View commit details
-
Copy full SHA for 1865ad2 - Browse repository at this point
Copy the full SHA 1865ad2View commit details
Commits on Jul 8, 2025
-
Mocked GCE metadata to fix the Stackdriver local test failure (#4215)
* mock stackdriver metrics registration to prevent local test failure
Configuration menu - View commit details
-
Copy full SHA for dde76a9 - Browse repository at this point
Copy the full SHA dde76a9View commit details
Commits on Jul 12, 2025
-
Fix: Adding a retry mechanism in case the addMoreGameServers function…
… call fails. (#4214) * add retry when invoke addMoreGameServers error return * retrigger checks * add return err
Configuration menu - View commit details
-
Copy full SHA for ab7c13c - Browse repository at this point
Copy the full SHA ab7c13cView commit details
Commits on Jul 14, 2025
-
Configuration menu - View commit details
-
Copy full SHA for da1e928 - Browse repository at this point
Copy the full SHA da1e928View commit details
Commits on Jul 20, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 7abd5bb - Browse repository at this point
Copy the full SHA 7abd5bbView commit details
Commits on Jul 21, 2025
-
Add logs reporting to submit-upgrade-test-cloud-build for better visi…
…bility (#4165) * Add failure logs in submit-upgrade-test-cloud-build * Add failure logs in submit-upgrade-test-cloud-build * rebase * clean * update * update * Install jq in Dockerfile * update * update * lint fixes * Improve logging for upgrade test job status parsing * remove docker change * remove docker change * Improve logging for upgrade test job status parsing * updates * improve logs * error handle the job 'upgrade-test-runner' * fixes * Add failure logs in submit-upgrade-test-cloud-build * add msg in logs * adding more logs * extract submit-upgrade-test-cloud-build step to build/e2e_upgrade_test.sh extract submit-e2e-test-cloud-build step to build/e2e_test.sh * lint fixes * fixes * fixes * fixes * fixes * fixes * rollback e2e test * Improves upgrade test failure logging --------- Co-authored-by: Mark Mandel <mark@compoundtheory.com>
Configuration menu - View commit details
-
Copy full SHA for 23f0f75 - Browse repository at this point
Copy the full SHA 23f0f75View commit details
Commits on Jul 28, 2025
-
Bump github.com/go-viper/mapstructure/v2 in /examples/custom-controll…
…er (#4211) Bumps [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure) from 2.2.1 to 2.3.0. - [Release notes](https://github.com/go-viper/mapstructure/releases) - [Changelog](https://github.com/go-viper/mapstructure/blob/main/CHANGELOG.md) - [Commits](go-viper/mapstructure@v2.2.1...v2.3.0) --- updated-dependencies: - dependency-name: github.com/go-viper/mapstructure/v2 dependency-version: 2.3.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aravindh K <karavindh@google.com> Co-authored-by: Mengye (Max) Gong <8364575+gongmax@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c28f17e - Browse repository at this point
Copy the full SHA c28f17eView commit details
Commits on Jul 30, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 96bf559 - Browse repository at this point
Copy the full SHA 96bf559View commit details -
feat: promote ScheduledAutoscaler to beta (#4226)
* feat: promote ScheduledAutoscaler to beta * feat: re-run gen-install * feat: roll back alpha gates from 1.50.0 * feat: update feature stages * feat: update default value for RollingUpdateFix --------- Co-authored-by: Mark Mandel <mark@compoundtheory.com> Co-authored-by: Sivasankaran R <sivasankaranr@google.com>
Configuration menu - View commit details
-
Copy full SHA for f411326 - Browse repository at this point
Copy the full SHA f411326View commit details -
Adds support for lists in the Unreal SDK #4029 (#4216)
* Add support for lists in Unreal SDK, resolves #4029 * Some doc and path fixes * Update Unreal SDK docs to show lists are supported * Wrapping Unreal SDK doc update in a feature check --------- Co-authored-by: Aravindh K <karavindh@google.com> Co-authored-by: Sivasankaran R <sivasankaranr@google.com>
Configuration menu - View commit details
-
Copy full SHA for ee750b0 - Browse repository at this point
Copy the full SHA ee750b0View commit details
Commits on Jul 31, 2025
-
Remove former agones collaborator from github action (#4228)
Co-authored-by: Mark Mandel <mark@compoundtheory.com>
Configuration menu - View commit details
-
Copy full SHA for c272b1c - Browse repository at this point
Copy the full SHA c272b1cView commit details -
* release v1.51.0 * correct slash in 1.51.0 md file * remove unwanted tag * remove unwanted tag 1.50.0
Configuration menu - View commit details
-
Copy full SHA for 0cc90c8 - Browse repository at this point
Copy the full SHA 0cc90c8View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.50.0...v1.51.0