chore(deps): update helm release coder to v2.13.0 #194

Merged
prskr merged 1 commit from renovate/coder-2.x into main 2024-07-02 18:46:54 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
coder (source) HelmChart minor 2.12.3 -> 2.13.0

Release Notes

coder/coder (coder)

v2.13.0

Compare Source

Changelog

[!NOTE]
This is a mainline Coder release. We advise enterprise customers without a staging environment to install our latest stable release while we refine this version. Learn more about our Release Schedule.

BREAKING CHANGES
Features
Bug fixes
Changes to hidden experiments

These changes are hidden behind an unsafe experiment and will be made available in a future release. Follow progress in our issue tracker on Organizations + Custom Roles and Notifications.

Documentation
Code refactoring
Chores
Other changes

Compare: v2.12.3...v2.13.0

Container image

  • docker pull ghcr.io/coder/coder:v2.13.0

Install/upgrade

Refer to our docs to install or upgrade Coder, or use a release asset below.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [coder](https://github.com/coder/coder) ([source](https://github.com/coder/coder/tree/HEAD/helm/coder)) | HelmChart | minor | `2.12.3` -> `2.13.0` | --- ### Release Notes <details> <summary>coder/coder (coder)</summary> ### [`v2.13.0`](https://github.com/coder/coder/releases/tag/v2.13.0) [Compare Source](https://github.com/coder/coder/compare/v2.12.3...v2.13.0) #### Changelog > \[!NOTE] > This is a mainline Coder release. We advise enterprise customers without a staging environment to install our [latest stable release](https://github.com/coder/coder/releases/latest) while we refine this version. Learn more about our [Release Schedule](https://coder.com/docs/v2/latest/install/releases). ##### BREAKING CHANGES - Remove deprecated agent v1 routes ([#&#8203;13486](https://github.com/coder/coder/issues/13486), [`dd24368`](https://github.com/coder/coder/commit/dd243686e)) ([@&#8203;ethanndickson](https://github.com/ethanndickson)) > Breaks compatibility with older agents that don't use the V2 API. - Remove unused `failing_sections` endpoint from healthcheck ([#&#8203;13426](https://github.com/coder/coder/issues/13426), [`54e8f30`](https://github.com/coder/coder/commit/54e8f3000)) ([@&#8203;kylecarbs](https://github.com/kylecarbs)) - Add interface report to coder netcheck ([#&#8203;13562](https://github.com/coder/coder/issues/13562), [`fc09077`](https://github.com/coder/coder/commit/fc09077b7)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) > Technically not backwards compatible when parsing `coder netcheck` output as JSON, since the original output is now under `"derp"` in the output. ##### Features - Block file transfers for security ([#&#8203;13501](https://github.com/coder/coder/issues/13501), [`e96652e`](https://github.com/coder/coder/commit/e96652ebb)) ([@&#8203;mtojek](https://github.com/mtojek)) > Conditionally block file transfers via the Coder agent. ```terraform resource "docker_container" "workspace" { count = data.coder_workspace.me.start_count image = docker_image.main.name hostname = data.coder_workspace.me.name entrypoint = ["sh", "-c", replace(coder_agent.main.init_script, "/localhost|127\\.0\\.0\\.1/", "host.docker.internal")] env = [ "CODER_AGENT_TOKEN=${coder_agent.main.token}", ... "CODER_AGENT_BLOCK_FILE_TRANSFER=true", ] } ``` - Add interfaces report to [support bundle](https://coder.com/docs/guides/support-bundle) ([#&#8203;13563](https://github.com/coder/coder/issues/13563), [`4b0b9b0`](https://github.com/coder/coder/commit/4b0b9b08d)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Add NewTicker to [clock testing library](https://github.com/coder/quartz) ([#&#8203;13593](https://github.com/coder/coder/issues/13593), [`02ffff1`](https://github.com/coder/coder/commit/02ffff11d)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Add cross-origin reporting for telemetry in the dashboard ([#&#8203;13612](https://github.com/coder/coder/issues/13612), [`0793a4b`](https://github.com/coder/coder/commit/0793a4b35)) ([@&#8203;kylecarbs](https://github.com/kylecarbs)) - Add `Next()` method to mock Clock ([#&#8203;13657](https://github.com/coder/coder/issues/13657), [`46e1c36`](https://github.com/coder/coder/commit/46e1c36c4)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Add docstrings to mock timer and ticker methods and structs ([#&#8203;13658](https://github.com/coder/coder/issues/13658), [`9c1a6a2`](https://github.com/coder/coder/commit/9c1a6a29f)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Add groups and group members to telemetry snapshot ([#&#8203;13655](https://github.com/coder/coder/issues/13655), [`87ad560`](https://github.com/coder/coder/commit/87ad560af)) ([@&#8203;austinrhode](https://github.com/austinrhode)) - Add "Full Name" field to user creation ([#&#8203;13659](https://github.com/coder/coder/issues/13659), [`8a35925`](https://github.com/coder/coder/commit/8a3592582)) ([@&#8203;johnstcn](https://github.com/johnstcn)) ![Full name field in new user form](https://github.com/coder/coder/assets/58410745/eb270ad8-b6d3-4f46-bf3e-d42600d1ccee) - Lint github actions workflows ([#&#8203;13552](https://github.com/coder/coder/issues/13552), [`d5d8b91`](https://github.com/coder/coder/commit/d5d8b918d)) ([@&#8203;dannykopping](https://github.com/dannykopping)) - Expose workspace build ID to [`terraform-plugin-coder`](https://github.com/coder/terraform-provider-coder) ([#&#8203;13680](https://github.com/coder/coder/issues/13680), [`c4f1676`](https://github.com/coder/coder/commit/c4f167605)) ([@&#8203;mtojek](https://github.com/mtojek)) - CLI: Add json output to [`coder speedtest`](https://coder.com/docs/cli/speedtest) ([#&#8203;13475](https://github.com/coder/coder/issues/13475), [`a4bba52`](https://github.com/coder/coder/commit/a4bba520a)) ([@&#8203;ethanndickson](https://github.com/ethanndickson)) - Server: Set full name from IDP name claim ([#&#8203;13468](https://github.com/coder/coder/issues/13468), [`1131772`](https://github.com/coder/coder/commit/1131772e7)) ([@&#8203;johnstcn](https://github.com/johnstcn)) - Enterprise: Add auditing to SCIM ([#&#8203;13614](https://github.com/coder/coder/issues/13614), [`889daf2`](https://github.com/coder/coder/commit/889daf200)) ([@&#8203;coadler](https://github.com/coadler)) - Dashboard: Add deployment menu to navbar ([#&#8203;13401](https://github.com/coder/coder/issues/13401), [`78b8264`](https://github.com/coder/coder/commit/78b8264a9)) ([@&#8203;aslilac](https://github.com/aslilac)) > This moves all deployment-related dashboard tabs to the "Deployment" dropdown. > > Old navigation: > ![old_dashboard_header_nav](https://github.com/coder/coder/assets/58410745/296921b5-545a-4116-ba8b-451f6f783c0e) > New navigation: > ![New Navigation](https://github.com/coder/coder/assets/58410745/72d49ef6-7e71-4db0-b817-cd62b109a86b) - Dashboard: Add download logs option to workspace page ([#&#8203;13466](https://github.com/coder/coder/issues/13466), [`056a697`](https://github.com/coder/coder/commit/056a697ef)) ([@&#8203;BrunoQuaresma](https://github.com/BrunoQuaresma)) > Users can now download logs directly in the workpsace UI: > ![download-logs](https://github.com/coder/coder/assets/58410745/957f988c-074f-493a-99c2-8a1ab7fc8549) ##### Bug fixes - Correct swagger description for Insights API ([#&#8203;13442](https://github.com/coder/coder/issues/13442), [`bf98b0d`](https://github.com/coder/coder/commit/bf98b0dfe)) ([@&#8203;mtojek](https://github.com/mtojek)) - Fix build error background color ([#&#8203;13445](https://github.com/coder/coder/issues/13445), [`cb94dfb`](https://github.com/coder/coder/commit/cb94dfb1f)) ([@&#8203;aslilac](https://github.com/aslilac)) - Add missing route for `codersdk.PostLogSource` ([#&#8203;13421](https://github.com/coder/coder/issues/13421), [`9d00a26`](https://github.com/coder/coder/commit/9d00a26a9)) ([@&#8203;coadler](https://github.com/coadler)) - Fix MeasureLatencyRecvTimeout to accept send=0 ([#&#8203;13477](https://github.com/coder/coder/issues/13477), [`fade8ba`](https://github.com/coder/coder/commit/fade8ba75)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Replace invalid utf-8 sequences in agent logs ([#&#8203;13436](https://github.com/coder/coder/issues/13436), [`7c081dc`](https://github.com/coder/coder/commit/7c081dcd6)) ([@&#8203;kylecarbs](https://github.com/kylecarbs)) - Ignore `yamux.ErrSessionShutdown` on `TestTailnetAPIConnector_Disconnects` ([#&#8203;13532](https://github.com/coder/coder/issues/13532), [`1f9bdc3`](https://github.com/coder/coder/commit/1f9bdc36b)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Transform underscores to hyphens for Github login ([#&#8203;13384](https://github.com/coder/coder/issues/13384), [`c9cca9d`](https://github.com/coder/coder/commit/c9cca9d56)) ([@&#8203;kylecarbs](https://github.com/kylecarbs)) - Fix bad states in workspace actions options ([#&#8203;13572](https://github.com/coder/coder/issues/13572), [`07cd9ac`](https://github.com/coder/coder/commit/07cd9acb2)) ([@&#8203;aslilac](https://github.com/aslilac)) - Allow mock clock Timers to accept negative duration ([#&#8203;13592](https://github.com/coder/coder/issues/13592), [`d0b2f61`](https://github.com/coder/coder/commit/d0b2f6196)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Write server config to telemetry ([#&#8203;13590](https://github.com/coder/coder/issues/13590), [`3a1fa04`](https://github.com/coder/coder/commit/3a1fa0459)) ([@&#8203;kylecarbs](https://github.com/kylecarbs)) - Don't allow "new" or "create" as url-friendly names ([#&#8203;13596](https://github.com/coder/coder/issues/13596), [`e987ad1`](https://github.com/coder/coder/commit/e987ad1d8)) ([@&#8203;aslilac](https://github.com/aslilac)) - Allow [coder.com](https://coder.com) in CSP if telemetry is enabled ([#&#8203;13615](https://github.com/coder/coder/issues/13615), [`57b38e5`](https://github.com/coder/coder/commit/57b38e5bb)) ([@&#8203;kylecarbs](https://github.com/kylecarbs)) - API: Fill out zero-value user properties in `/audit` ([#&#8203;13604](https://github.com/coder/coder/issues/13604), [`43e45f4`](https://github.com/coder/coder/commit/43e45f4ab)) ([@&#8203;code-asher](https://github.com/code-asher)) - Track telemetry for login page correctly ([#&#8203;13618](https://github.com/coder/coder/issues/13618), [`495eea4`](https://github.com/coder/coder/commit/495eea452)) ([@&#8203;kylecarbs](https://github.com/kylecarbs)) - Fix shallow clones not retrieving a valid semver ([#&#8203;13609](https://github.com/coder/coder/issues/13609), [`714f2ef`](https://github.com/coder/coder/commit/714f2ef83)) ([@&#8203;ethanndickson](https://github.com/ethanndickson)) - Fix `workspacesdk` to return error on API mismatch ([#&#8203;13683](https://github.com/coder/coder/issues/13683), [`5b59f28`](https://github.com/coder/coder/commit/5b59f2880)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Modify `workspacesdk` to ask for tailnet API 2.0 ([#&#8203;13684](https://github.com/coder/coder/issues/13684), [`c94b518`](https://github.com/coder/coder/commit/c94b5188b)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Improve checkbox text in template schedule settings dialog ([#&#8203;13669](https://github.com/coder/coder/issues/13669), [`093ec3d`](https://github.com/coder/coder/commit/093ec3d05)) ([@&#8203;jaaydenh](https://github.com/jaaydenh)) - Disable agent app buttons while a blocking startup script is running ([#&#8203;13667](https://github.com/coder/coder/issues/13667), [`8b615f4`](https://github.com/coder/coder/commit/8b615f452)) ([@&#8203;aslilac](https://github.com/aslilac)) - CLI: Inherit provisioner tags from last template version ([#&#8203;13462](https://github.com/coder/coder/issues/13462), [`cd32c42`](https://github.com/coder/coder/commit/cd32c4269)) ([@&#8203;mtojek](https://github.com/mtojek)) - Server - UserOIDC: ignore leading @&#8203; of EmailDomain ([#&#8203;13568](https://github.com/coder/coder/issues/13568), [`fe240ad`](https://github.com/coder/coder/commit/fe240add8)) ([@&#8203;johnstcn](https://github.com/johnstcn)) - Dashboard: Fix tooltip in start button group ([#&#8203;13497](https://github.com/coder/coder/issues/13497), [`a8a81a6`](https://github.com/coder/coder/commit/a8a81a61c)) ([@&#8203;BrunoQuaresma](https://github.com/BrunoQuaresma)) - Dashboard: Allow user to update their name ([#&#8203;13493](https://github.com/coder/coder/issues/13493), [`1adc19b`](https://github.com/coder/coder/commit/1adc19b41)) ([@&#8203;BrunoQuaresma](https://github.com/BrunoQuaresma)) - Dashboard: Don't show start button while workspace is starting ([#&#8203;13495](https://github.com/coder/coder/issues/13495), [`c7e7312`](https://github.com/coder/coder/commit/c7e7312cb)) ([@&#8203;coadler](https://github.com/coadler)) ##### Changes to hidden experiments These changes are hidden behind an unsafe experiment and will be made available in a future release. Follow progress in our issue tracker on [Organizations + Custom Roles](https://github.com/coder/coder/milestone/31) and [Notifications](https://github.com/coder/coder/milestone/35). - Edit org display names and descriptions ([#&#8203;13474](https://github.com/coder/coder/issues/13474), [`44a70a5`](https://github.com/coder/coder/commit/44a70a5bc)) ([@&#8203;aslilac](https://github.com/aslilac)) - Allow editing org icon ([#&#8203;13547](https://github.com/coder/coder/issues/13547), [`28228f1`](https://github.com/coder/coder/commit/28228f1bc)) ([@&#8203;aslilac](https://github.com/aslilac)) - Add CLI command to remove organization member ([#&#8203;13619](https://github.com/coder/coder/issues/13619), [`75e7213`](https://github.com/coder/coder/commit/75e7213ac)) ([@&#8203;Emyrk](https://github.com/Emyrk)) - Create database tables and queries for notifications ([#&#8203;13536](https://github.com/coder/coder/issues/13536), [`0a221e8`](https://github.com/coder/coder/commit/0a221e8d5)) ([@&#8203;dannykopping](https://github.com/dannykopping)) - Dashboard: Add basic organization management UI ([#&#8203;13288](https://github.com/coder/coder/issues/13288), [`8c1bd32`](https://github.com/coder/coder/commit/8c1bd32c3)) ([@&#8203;aslilac](https://github.com/aslilac)) - Remove assigning org-member role, this is implied from membership ([#&#8203;13578](https://github.com/coder/coder/issues/13578), [`819bfd3`](https://github.com/coder/coder/commit/819bfd317)) ([@&#8203;Emyrk](https://github.com/Emyrk)) - Implement api layer for listing organization members ([#&#8203;13546](https://github.com/coder/coder/issues/13546), [`bbe23ed`](https://github.com/coder/coder/commit/bbe23edc7)) ([@&#8203;Emyrk](https://github.com/Emyrk)) - Implement cli list organization members ([#&#8203;13555](https://github.com/coder/coder/issues/13555), [`d0fc81a`](https://github.com/coder/coder/commit/d0fc81a51)) ([@&#8203;Emyrk](https://github.com/Emyrk)) - Implement assign organization roles from the cli ([#&#8203;13558](https://github.com/coder/coder/issues/13558), [`7d51515`](https://github.com/coder/coder/commit/7d51515f9)) ([@&#8203;Emyrk](https://github.com/Emyrk)) - Implement custom role assignment for organization admins ([#&#8203;13570](https://github.com/coder/coder/issues/13570), [`d04959c`](https://github.com/coder/coder/commit/d04959cea)) ([@&#8203;Emyrk](https://github.com/Emyrk)) - Add organization member api + cli ([#&#8203;13577](https://github.com/coder/coder/issues/13577), [`8e06ad4`](https://github.com/coder/coder/commit/8e06ad46d)) ([@&#8203;Emyrk](https://github.com/Emyrk)) - Organization 404 write 1 http status ([#&#8203;13629](https://github.com/coder/coder/issues/13629), [`5177f36`](https://github.com/coder/coder/commit/5177f366f)) ([@&#8203;Emyrk](https://github.com/Emyrk)) ##### Documentation - Bump Kubernetes install version ([#&#8203;13487](https://github.com/coder/coder/issues/13487), [`e743588`](https://github.com/coder/coder/commit/e74358884)) ([@&#8203;coadler](https://github.com/coadler)) - FAQs: restrict file transfers from workspaces ([#&#8203;13534](https://github.com/coder/coder/issues/13534), [`7958c52`](https://github.com/coder/coder/commit/7958c5291)) ([@&#8203;mtojek](https://github.com/mtojek)) - Add validated architecture ([#&#8203;13561](https://github.com/coder/coder/issues/13561), [`87a172f`](https://github.com/coder/coder/commit/87a172fb1)) ([@&#8203;ericpaulsen](https://github.com/ericpaulsen)) - Reorganize scaling docs ([#&#8203;13574](https://github.com/coder/coder/issues/13574), [`87820a2`](https://github.com/coder/coder/commit/87820a29d)) ([@&#8203;ericpaulsen](https://github.com/ericpaulsen)) - Add screenshots page under About ([#&#8203;13582](https://github.com/coder/coder/issues/13582), [`808e1c0`](https://github.com/coder/coder/commit/808e1c0d8)) ([@&#8203;bpmct](https://github.com/bpmct)) - Rename banners to announcement banners and show new usage ([#&#8203;13435](https://github.com/coder/coder/issues/13435), [`213848e`](https://github.com/coder/coder/commit/213848e2e)) ([@&#8203;stirby](https://github.com/stirby)) ##### Code refactoring - Dashboard: Hide select helper when only one proxy exists ([#&#8203;13496](https://github.com/coder/coder/issues/13496), [`4dfa901`](https://github.com/coder/coder/commit/4dfa90199)) ([@&#8203;BrunoQuaresma](https://github.com/BrunoQuaresma)) - Dashboard: Refactor filter search field ([#&#8203;13545](https://github.com/coder/coder/issues/13545), [`0c627a4`](https://github.com/coder/coder/commit/0c627a4cb)) ([@&#8203;BrunoQuaresma](https://github.com/BrunoQuaresma)) ##### Chores - Return failed refresh errors on external auth as string (was boolean) ([#&#8203;13402](https://github.com/coder/coder/issues/13402), [`24ba819`](https://github.com/coder/coder/commit/24ba81930)) ([@&#8203;Emyrk](https://github.com/Emyrk)) - Add [clock package](https://github.com/coder/quartz) for testing time ([#&#8203;13461](https://github.com/coder/coder/issues/13461), [`42324b3`](https://github.com/coder/coder/commit/42324b386)) ([@&#8203;spikecurtis](https://github.com/spikecurtis)) - Move Batcher and Tracker to workspacestats ([#&#8203;13418](https://github.com/coder/coder/issues/13418), [`5b9a65e`](https://github.com/coder/coder/commit/5b9a65e5c)) ([@&#8203;f0ssel](https://github.com/f0ssel)) - Always use the latest released version tag when building ([#&#8203;13556](https://github.com/coder/coder/issues/13556), [`1ca5dc0`](https://github.com/coder/coder/commit/1ca5dc032)) ([@&#8203;kylecarbs](https://github.com/kylecarbs)) - Upgrade Go version to 1.22.4 ([#&#8203;13623](https://github.com/coder/coder/issues/13623), [`b4a5c7f`](https://github.com/coder/coder/commit/b4a5c7ffa)) ([@&#8203;johnstcn](https://github.com/johnstcn)) - Add SVG desktop icon ([#&#8203;13765](https://github.com/coder/coder/issues/13765), [`84d9920`](https://github.com/coder/coder/commit/84d992062)) ([@&#8203;Parkreiner](https://github.com/Parkreiner)) ##### Other changes - manually updated autoversion ([#&#8203;13633](https://github.com/coder/coder/issues/13633), [`2cfadad`](https://github.com/coder/coder/commit/2cfadad02)) ([@&#8203;stirby](https://github.com/stirby)) - Update docker-in-workspaces.md ([#&#8203;13606](https://github.com/coder/coder/issues/13606), [`a1ec8ad`](https://github.com/coder/coder/commit/a1ec8ad6e)) ([@&#8203;mr-kelly](https://github.com/mr-kelly)) Compare: [`v2.12.3...v2.13.0`](https://github.com/coder/coder/compare/v2.12.3...v2.13.0) #### Container image - `docker pull ghcr.io/coder/coder:v2.13.0` #### Install/upgrade Refer to our docs to [install](https://coder.com/docs/v2/latest/install) or [upgrade](https://coder.com/docs/v2/latest/admin/upgrade) Coder, or use a release asset below. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjAuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
prskr added 1 commit 2024-07-02 18:33:13 +00:00
chore(deps): update helm release coder to v2.13.0
All checks were successful
Renovate / renovate (push) Successful in 27s
ceac7579c3
prskr merged commit ceac7579c3 into main 2024-07-02 18:46:54 +00:00
prskr deleted branch renovate/coder-2.x 2024-07-02 18:46:54 +00:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: infrastructure/apps#194
No description provided.