mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
fae07cbc8f
* Add Dependencie Update Script * update gitea.com/lunny/levelqueue * update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-redis/redis/v8 * update github.com/hashicorp/golang-lru * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/olivere/elastic/v7 * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark
2.7 KiB
Vendored
2.7 KiB
Vendored
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
1.8.0 - 2021-06-09
Added
- Add
atomic.Uintptr
type for atomic operations onuintptr
values. - Add
atomic.UnsafePointer
type for atomic operations onunsafe.Pointer
values.
1.7.0 - 2020-09-14
Added
- Support JSON serialization and deserialization of primitive atomic types.
- Support Text marshalling and unmarshalling for string atomics.
Changed
- Disallow incorrect comparison of atomic values in a non-atomic way.
Removed
- Remove dependency on
golang.org/x/{lint, tools}
.
1.6.0 - 2020-02-24
Changed
- Drop library dependency on
golang.org/x/{lint, tools}
.
1.5.1 - 2019-11-19
- Fix bug where
Bool.CAS
andBool.Toggle
do work correctly together causingCAS
to fail even though the old value matches.
1.5.0 - 2019-10-29
Changed
- With Go modules, only the
go.uber.org/atomic
import path is supported now. If you need to use the old import path, please add areplace
directive to yourgo.mod
.
1.4.0 - 2019-05-01
Added
- Add
atomic.Error
type for atomic operations onerror
values.
1.3.2 - 2018-05-02
Added
- Add
atomic.Duration
type for atomic operations ontime.Duration
values.
1.3.1 - 2017-11-14
Fixed
- Revert optimization for
atomic.String.Store("")
which caused data races.
1.3.0 - 2017-11-13
Added
- Add
atomic.Bool.CAS
for compare-and-swap semantics on bools.
Changed
- Optimize
atomic.String.Store("")
by avoiding an allocation.
1.2.0 - 2017-04-12
Added
- Shadow
atomic.Value
fromsync/atomic
.
1.1.0 - 2017-03-10
Added
- Add atomic
Float64
type.
Changed
- Support new
go.uber.org/atomic
import path.
1.0.0 - 2016-07-18
- Initial release.