[PR #233] [MERGED] fix(deps): bump go.uber.org/atomic from 1.9.0 to 1.10.0 #283

Closed
opened 2026-03-04 00:25:02 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/SignTools/SignTools/pull/233
Author: @dependabot[bot]
Created: 8/12/2022
Status: Merged
Merged: 9/16/2022
Merged by: @ViRb3

Base: masterHead: dependabot/go_modules/go.uber.org/atomic-1.10.0


📝 Commits (1)

  • 369ec54 fix(deps): bump go.uber.org/atomic from 1.9.0 to 1.10.0

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 go.mod (+1 -1)
📝 go.sum (+2 -2)

📄 Description

Bumps go.uber.org/atomic from 1.9.0 to 1.10.0.

Release notes

Sourced from go.uber.org/atomic's releases.

v1.10.0

Added

  • Add atomic.Float32 type for atomic operations on float32.
  • Add CompareAndSwap and Swap methods to atomic.String, atomic.Error, and atomic.Value.
  • Add generic atomic.Pointer[T] type for atomic operations on pointers of any type. This is present only for Go 1.18 or higher, and is a drop-in for replacement for the standard library's sync/atomic.Pointer type.

Changed

  • Deprecate CAS methods on all types in favor of corresponding CompareAndSwap methods.

Thanks to @​eNV25 and @​icpd for their contributions to this release.

Changelog

Sourced from go.uber.org/atomic's changelog.

1.10.0 - 2022-08-11

Added

  • Add atomic.Float32 type for atomic operations on float32.
  • Add CompareAndSwap and Swap methods to atomic.String, atomic.Error, and atomic.Value.
  • Add generic atomic.Pointer[T] type for atomic operations on pointers of any type. This is present only for Go 1.18 or higher, and is a drop-in for replacement for the standard library's sync/atomic.Pointer type.

Changed

  • Deprecate CAS methods on all types in favor of corresponding CompareAndSwap methods.

Thanks to @​eNV25 and @​icpd for their contributions to this release.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that 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 after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/SignTools/SignTools/pull/233 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/12/2022 **Status:** ✅ Merged **Merged:** 9/16/2022 **Merged by:** [@ViRb3](https://github.com/ViRb3) **Base:** `master` ← **Head:** `dependabot/go_modules/go.uber.org/atomic-1.10.0` --- ### 📝 Commits (1) - [`369ec54`](https://github.com/SignTools/SignTools/commit/369ec54a59e0a6d02b826e8415f708561cf33260) fix(deps): bump go.uber.org/atomic from 1.9.0 to 1.10.0 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+2 -2) </details> ### 📄 Description Bumps [go.uber.org/atomic](https://github.com/uber-go/atomic) from 1.9.0 to 1.10.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/uber-go/atomic/releases">go.uber.org/atomic's releases</a>.</em></p> <blockquote> <h2>v1.10.0</h2> <h3>Added</h3> <ul> <li>Add <code>atomic.Float32</code> type for atomic operations on <code>float32</code>.</li> <li>Add <code>CompareAndSwap</code> and <code>Swap</code> methods to <code>atomic.String</code>, <code>atomic.Error</code>, and <code>atomic.Value</code>.</li> <li>Add generic <code>atomic.Pointer[T]</code> type for atomic operations on pointers of any type. This is present only for Go 1.18 or higher, and is a drop-in for replacement for the standard library's <code>sync/atomic.Pointer</code> type.</li> </ul> <h3>Changed</h3> <ul> <li>Deprecate <code>CAS</code> methods on all types in favor of corresponding <code>CompareAndSwap</code> methods.</li> </ul> <p>Thanks to <a href="https://github.com/eNV25"><code>@​eNV25</code></a> and <a href="https://github.com/icpd"><code>@​icpd</code></a> for their contributions to this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/uber-go/atomic/blob/master/CHANGELOG.md">go.uber.org/atomic's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/uber-go/atomic/compare/v1.9.0...v1.10.0">1.10.0</a> - 2022-08-11</h2> <h3>Added</h3> <ul> <li>Add <code>atomic.Float32</code> type for atomic operations on <code>float32</code>.</li> <li>Add <code>CompareAndSwap</code> and <code>Swap</code> methods to <code>atomic.String</code>, <code>atomic.Error</code>, and <code>atomic.Value</code>.</li> <li>Add generic <code>atomic.Pointer[T]</code> type for atomic operations on pointers of any type. This is present only for Go 1.18 or higher, and is a drop-in for replacement for the standard library's <code>sync/atomic.Pointer</code> type.</li> </ul> <h3>Changed</h3> <ul> <li>Deprecate <code>CAS</code> methods on all types in favor of corresponding <code>CompareAndSwap</code> methods.</li> </ul> <p>Thanks to <a href="https://github.com/eNV25"><code>@​eNV25</code></a> and <a href="https://github.com/icpd"><code>@​icpd</code></a> for their contributions to this release.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/uber-go/atomic/commit/96800363039fbf926a6c826795797abcde5f07a5"><code>9680036</code></a> Prepare release v1.10.0 (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/118">#118</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/2ab21d86f69c08c9cab261d3bf4d97954e673c9c"><code>2ab21d8</code></a> Add Pointer[T] (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/116">#116</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/d144bb6cd749317d5b854427b82557e381f3c928"><code>d144bb6</code></a> Drop use of deprecated ioutil package (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/117">#117</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/d4bbbc828dd5bdb865c6c0effe4178f7ef505eb0"><code>d4bbbc8</code></a> Add CompareAndSwap and Swap, Deprecate CAS (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/111">#111</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/01497d22b0a34ecbbe272c7eb306dbb2718efdb7"><code>01497d2</code></a> nocmp_test: fix spelling in comment (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/114">#114</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/d15bdada1c44b6727de27e92a286b481fa5945e4"><code>d15bdad</code></a> ci: Test with Go 1.19 (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/113">#113</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/edb52d7eaa48ebabe9d662eadd06c029787454fc"><code>edb52d7</code></a> Value: place nocmp zero-sized field first (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/109">#109</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/122c956c5ac690abde10cc2b3daac2158f88eb12"><code>122c956</code></a> all: Update copyright notices (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/112">#112</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/976602f5dcb407f2c2ab5b54456c9f38ea0d597b"><code>976602f</code></a> all: go fmt ./... with go1.19 (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/110">#110</a>)</li> <li><a href="https://github.com/uber-go/atomic/commit/f9aa9cb571cb37ba46731ef5997ca9bdbe6aac34"><code>f9aa9cb</code></a> Provide atomic type for float32 (<a href="https://github-redirect.dependabot.com/uber-go/atomic/issues/107">#107</a>)</li> <li>Additional commits viewable in <a href="https://github.com/uber-go/atomic/compare/v1.9.0...v1.10.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=go.uber.org/atomic&package-manager=go_modules&previous-version=1.9.0&new-version=1.10.0)](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't alter 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 edits that 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 after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 00:25:02 +03:00
Sign in to join this conversation.
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
starred/SignTools#283
No description provided.