- Notifications
You must be signed in to change notification settings - Fork1
Comparing changes
Open a pull request
base repository:coder/coder-jetbrains-toolbox
Uh oh!
There was an error while loading.Please reload this page.
base:v0.6.5
head repository:coder/coder-jetbrains-toolbox
Uh oh!
There was an error while loading.Please reload this page.
compare:main
- 12commits
- 22files changed
- 4contributors
Commits on Sep 22, 2025
Changelog update -
v0.6.5
(#194)Current pull request contains patched `CHANGELOG.md` file for the`v0.6.5` version.Co-authored-by: GitHub Action <action@github.com>
chore: bump bouncycastle from 1.81 to 1.82 (#196)
Bumps `bouncycastle` from 1.81 to 1.82.Updates `org.bouncycastle:bcpg-jdk18on` from 1.81 to 1.82<details><summary>Changelog</summary><p><em>Sourced from <ahref="https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html">org.bouncycastle:bcpg-jdk18on'schangelog</a>.</em></p><blockquote><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --><p><!-- raw HTML omitted --><!-- raw HTML omitted -->2.1.1 Version<!--raw HTML omitted --><!-- raw HTML omitted -->Release: 1.82<!-- raw HTML omitted -->Date: 2025, 17th September.</p><!-- raw HTML omitted --></blockquote><p>... (truncated)</p></details><details><summary>Commits</summary><ul><li>See full diff in <ahref="https://github.com/bcgit/bc-java/commits">compare view</a></li></ul></details><br />Updates `org.bouncycastle:bcprov-jdk18on` from 1.81 to 1.82<details><summary>Changelog</summary><p><em>Sourced from <ahref="https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html">org.bouncycastle:bcprov-jdk18on'schangelog</a>.</em></p><blockquote><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --><p><!-- raw HTML omitted --><!-- raw HTML omitted -->2.1.1 Version<!--raw HTML omitted --><!-- raw HTML omitted -->Release: 1.82<!-- raw HTML omitted -->Date: 2025, 17th September.</p><!-- raw HTML omitted --></blockquote><p>... (truncated)</p></details><details><summary>Commits</summary><ul><li>See full diff in <ahref="https://github.com/bcgit/bc-java/commits">compare view</a></li></ul></details><br />Dependabot will resolve any conflicts with this PR as long as you don'talter it yourself. You can also trigger a rebase manually by commenting`@dependabot rebase`.[//]: # (dependabot-automerge-start)[//]: # (dependabot-automerge-end)---<details><summary>Dependabot commands and options</summary><br />You can trigger Dependabot actions by commenting on this PR:- `@dependabot rebase` will rebase this PR- `@dependabot recreate` will recreate this PR, overwriting any editsthat have been made to it- `@dependabot merge` will merge this PR after your CI passes on it- `@dependabot squash and merge` will squash and merge this PR afteryour CI passes on it- `@dependabot cancel merge` will cancel a previously requested mergeand block automerging- `@dependabot reopen` will reopen this PR if it is closed- `@dependabot close` will close this PR and stop Dependabot recreatingit. You can achieve the same result by closing it manually- `@dependabot show <dependency name> ignore conditions` will show allof the ignore conditions of the specified dependency- `@dependabot ignore this major version` will close this PR and stopDependabot creating any more for this major version (unless you reopenthe PR or upgrade to it yourself)- `@dependabot ignore this minor version` will close this PR and stopDependabot creating any more for this minor version (unless you reopenthe PR or upgrade to it yourself)- `@dependabot ignore this dependency` will close this PR and stopDependabot creating any more for this dependency (unless you reopen thePR or upgrade to it yourself)</details>Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fix: relaxed SNI hostname resolution (#197)
When establishing TLS connections, SNI resolution may fail if theconfigured altHostname contains `_` or any other characters not allowedby domain name standards (i.e. letters, digits and hyphens).This change introduces a relaxed SNI resolution strategy which ignoresthe LDH rules completely. Because this change goes hand in hand withauth. via certificates, I was able to reproduce the issue only via UTs.At this point the official Coder releases supports only auth. via APIkeys.
Commits on Sep 24, 2025
impl: confirmation dialog for workspace deletion (#179)
Users are now required to confirm the workspace name if they want todelete a workspace. This is in order to avoid any accidental removals.Note: right now there are two issues with Toolbox input dialogs, thedialog title is not rendered, and worse - the text field is rendered asa password input field, so it does not make sense to merge this untilToolbox fixes the issues.<img width="486" height="746" alt="image"src="https://github.com/user-attachments/assets/e8fc2409-6e24-42d0-8258-473c29f5df44"/>-resolves#178
Changelog update -
v0.6.6
(#198)Current pull request contains patched `CHANGELOG.md` file for the`v0.6.6` version.Co-authored-by: GitHub Action <action@github.com>
Commits on Sep 25, 2025
doc: the augmentation around SNI & certificate validation (#199)
This PR documents why the SNI is altered during TLS handshake and why acertificate SAN is compared against an alternate hostname.
Commits on Sep 27, 2025
impl: store last used URL in Toolbox Settings Store (#200)
Context: Toolbox can store key/value pairs in two places:- a settings store which is backed by a clear text json file per eachplugin- native keystore for sensitive dataAt the same time some of Coder's clients (ex: Netflix) would like todeploy at scale preconfigured settings for Toolbox. Most of the neededsettings are part of json backed store except the last used URL.This PR reworks the code around the last used URL/token and moves theURL in the json backed store, making it easy to configure. At the sametime we still support the pair stored in the native keystore forbackward compatibility reasons.
Commits on Sep 29, 2025
Changelog update -
v0.7.0
(#202)Current pull request contains patched `CHANGELOG.md` file for the`v0.7.0` version.Co-authored-by: GitHub Action <action@github.com>
Commits on Oct 3, 2025
test: rewrite UTs related to agent resolution in URI handling (#203)
Inspired bycoder/jetbrains-coder@5f0e363which took a while to debug and understand. This rewrite arguablyprovides better test names, better data setup with cleaner descriptions.
refactor: remove unused logic in URI handler (#204)
PR#180 delegated all the logic for rest client and cli initializationto the usual authentication screen which provided betterfeedback/progress. But it also left over previous logic that can beremoved.
Commits on Oct 6, 2025
chore: bump io.mockk:mockk from 1.14.5 to 1.14.6 (#206)
Bumps [io.mockk:mockk](https://github.com/mockk/mockk) from 1.14.5 to1.14.6.<details><summary>Release notes</summary><p><em>Sourced from <ahref="https://github.com/mockk/mockk/releases">io.mockk:mockk'sreleases</a>.</em></p><blockquote><h2>1.14.6</h2><h2>What's Changed</h2><ul><li>Fix and add clearMocks test cases by <ahref="https://github.com/jmatsu"><code>@jmatsu</code></a> in <ahref="https://redirect.github.com/mockk/mockk/pull/1419">mockk/mockk#1419</a></li><li>make captured value reference volatile by <ahref="https://github.com/mmimica"><code>@mmimica</code></a> in <ahref="https://redirect.github.com/mockk/mockk/pull/1418">mockk/mockk#1418</a></li><li>add fail-fast guard for Kotlin inline function mocking (<ahref="https://redirect.github.com/mockk/mockk/issues/1030">#1030</a>) by<a href="https://github.com/ch200203"><code>@ch200203</code></a> in <ahref="https://redirect.github.com/mockk/mockk/pull/1421">mockk/mockk#1421</a></li><li>add test reports to GitHub actions by <ahref="https://github.com/aSemy"><code>@aSemy</code></a> in <ahref="https://redirect.github.com/mockk/mockk/pull/994">mockk/mockk#994</a></li><li>fix duration denormalized error by <ahref="https://github.com/tigermint"><code>@tigermint</code></a> in <ahref="https://redirect.github.com/mockk/mockk/pull/1424">mockk/mockk#1424</a></li><li>refactor: enhance confirmVerified function to include clear optionby <ahref="https://github.com/felix-dolderer-el"><code>@felix-dolderer-el</code></a>in <ahref="https://redirect.github.com/mockk/mockk/pull/1427">mockk/mockk#1427</a></li></ul><h2>New Contributors</h2><ul><li><a href="https://github.com/jmatsu"><code>@jmatsu</code></a> madetheir first contribution in <ahref="https://redirect.github.com/mockk/mockk/pull/1419">mockk/mockk#1419</a></li><li><a href="https://github.com/mmimica"><code>@mmimica</code></a> madetheir first contribution in <ahref="https://redirect.github.com/mockk/mockk/pull/1418">mockk/mockk#1418</a></li><li><a href="https://github.com/ch200203"><code>@ch200203</code></a>made their first contribution in <ahref="https://redirect.github.com/mockk/mockk/pull/1421">mockk/mockk#1421</a></li><li><a href="https://github.com/tigermint"><code>@tigermint</code></a>made their first contribution in <ahref="https://redirect.github.com/mockk/mockk/pull/1424">mockk/mockk#1424</a></li><li><ahref="https://github.com/felix-dolderer-el"><code>@felix-dolderer-el</code></a>made their first contribution in <ahref="https://redirect.github.com/mockk/mockk/pull/1427">mockk/mockk#1427</a></li></ul><p><strong>Full Changelog</strong>: <ahref="https://github.com/mockk/mockk/compare/1.14.5...1.14.6">https://github.com/mockk/mockk/compare/1.14.5...1.14.6</a></p></blockquote></details><details><summary>Commits</summary><ul><li><ahref="https://github.com/mockk/mockk/commit/b08945962453f2a6236fe403b7a0001fb13aba6b"><code>b089459</code></a>Version bump</li><li><ahref="https://github.com/mockk/mockk/commit/16889045f26df667fdfd51798b09a1e24ca4a82a"><code>1688904</code></a>Merge pull request <ahref="https://redirect.github.com/mockk/mockk/issues/1427">#1427</a>from felix-dolderer-el/master</li><li><ahref="https://github.com/mockk/mockk/commit/de0ba9e4daa49b5c783a16197d0a6cb0ba7fd74c"><code>de0ba9e</code></a>docs: update README to include clear option for confirmVerified</li><li><ahref="https://github.com/mockk/mockk/commit/794cd064f6c2124c217a960389f1fa29409ae449"><code>794cd06</code></a>remove whitespaces from README</li><li><ahref="https://github.com/mockk/mockk/commit/aa1f91e6f68509ca05a45674e4910d7ec008e0b8"><code>aa1f91e</code></a>default: false for internalConfirmVerified</li><li><ahref="https://github.com/mockk/mockk/commit/ace1da90942f50fa1e0f7b8fed7e073e39853d9c"><code>ace1da9</code></a>add KDoc explaining <code>clear</code> parameter for<code>confirmVerified</code></li><li><ahref="https://github.com/mockk/mockk/commit/6e93ff3f88022f269137fb9ff3565e4367c46e55"><code>6e93ff3</code></a>refactor: enhance confirmVerified function to include clear option</li><li><ahref="https://github.com/mockk/mockk/commit/244af2121a32bb057a62d3f5509764419622df56"><code>244af21</code></a>Fix code example and clarify that the matchers must match</li><li><ahref="https://github.com/mockk/mockk/commit/50331c6531a1d88e9be2b33c8a1e9f33281fe50a"><code>50331c6</code></a>Merge pull request <ahref="https://redirect.github.com/mockk/mockk/issues/1424">#1424</a>from tigermint/fix-duration-denormalized-error</li><li><ahref="https://github.com/mockk/mockk/commit/5d8c9b2c4cc0bbf32902c428a07562bb456b9ea8"><code>5d8c9b2</code></a>Apply review feedback</li><li>Additional commits viewable in <ahref="https://github.com/mockk/mockk/compare/1.14.5...1.14.6">compareview</a></li></ul></details><br />[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)Dependabot will resolve any conflicts with this PR as long as you don'talter it yourself. You can also trigger a rebase manually by commenting`@dependabot rebase`.[//]: # (dependabot-automerge-start)[//]: # (dependabot-automerge-end)---<details><summary>Dependabot commands and options</summary><br />You can trigger Dependabot actions by commenting on this PR:- `@dependabot rebase` will rebase this PR- `@dependabot recreate` will recreate this PR, overwriting any editsthat have been made to it- `@dependabot merge` will merge this PR after your CI passes on it- `@dependabot squash and merge` will squash and merge this PR afteryour CI passes on it- `@dependabot cancel merge` will cancel a previously requested mergeand block automerging- `@dependabot reopen` will reopen this PR if it is closed- `@dependabot close` will close this PR and stop Dependabot recreatingit. You can achieve the same result by closing it manually- `@dependabot show <dependency name> ignore conditions` will show allof the ignore conditions of the specified dependency- `@dependabot ignore this major version` will close this PR and stopDependabot creating any more for this major version (unless you reopenthe PR or upgrade to it yourself)- `@dependabot ignore this minor version` will close this PR and stopDependabot creating any more for this minor version (unless you reopenthe PR or upgrade to it yourself)- `@dependabot ignore this dependency` will close this PR and stopDependabot creating any more for this dependency (unless you reopen thePR or upgrade to it yourself)</details>Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Commits on Oct 7, 2025
refactor: remove unsafe non-null assertions to prevent race condition (…
…#205)Replace !! operators with safe idiom takeIf/let chains. The non-nullassertions were unsafe in concurrent scenarios where one thread couldpotentially modify the settings while another thread reads and makesnon-null assertions.
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 v0.6.5...main
Uh oh!
There was an error while loading.Please reload this page.