From 968a5d160a883449370197b582502d38d3b2dc6f Mon Sep 17 00:00:00 2001 From: Matt Way Date: Tue, 24 Oct 2023 14:49:33 +0000 Subject: [PATCH 1/2] Release v1.3.0 --- CHANGELOG.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2db308..dcc5e55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.3.0] ### Fixed - Built-in ignores now match function names more accurately. They will no longer ignore stacks because of file names - that look similar to function names. + that look similar to function names. (#112) ### Added - Add an `IgnoreAnyFunction` option to ignore stack traces - that have the provided function anywhere in the stack. + that have the provided function anywhere in the stack. (#113) +- Ignore `testing.runFuzzing` and `testing.runFuzzTests` alongside + other already-ignored test functions (`testing.RunTests`, etc). (#105) +- Support reading an unordered set of all functions from a stack trace. (#110, #111) +### Changed +- Miscellaneous CI-related fixes. (#103, #108, #114) + +[1.3.0]: https://github.com/uber-go/goleak/compare/v1.2.1...v1.3.0 ## [1.2.1] ### Changed From 2baf435142aeacd02a51c6b96993fe7e3c8d82c7 Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Tue, 24 Oct 2023 09:24:50 -0700 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dcc5e55..5cd3f88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. that have the provided function anywhere in the stack. (#113) - Ignore `testing.runFuzzing` and `testing.runFuzzTests` alongside other already-ignored test functions (`testing.RunTests`, etc). (#105) -- Support reading an unordered set of all functions from a stack trace. (#110, #111) ### Changed - Miscellaneous CI-related fixes. (#103, #108, #114)