From 66d0af7e1990f7f79381bd800a1499ed31bbfd56 Mon Sep 17 00:00:00 2001 From: Erez Rokah Date: Fri, 21 Oct 2022 14:16:47 +0300 Subject: [PATCH] chore(main): release 3.0.0 (#703) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit :robot: I have created a release *beep* *boop* --- ## [3.0.0](https://github.com/erezrokah/aws-testing-library/compare/v2.1.7...v3.0.0) (2022-10-21) ### ⚠ BREAKING CHANGES * The filter pattern to match CloudWatch Logs is now passed without modifications to the AWS API. If you're using the Jest `toHaveLog` or Chai `to.have.log` matchers you might need to quote your pattern, e.g. `toHaveLog(pattern) -> toHaveLog("${pattern}")` or `to.have.log(pattern) -> to.have.log("${pattern}")` to support special characters ### Bug Fixes * don't quote CloudWatch filter pattern ([#702](https://github.com/erezrokah/aws-testing-library/issues/702)) ([aef13c0](https://github.com/erezrokah/aws-testing-library/commit/aef13c0ab37d4328fd553d7425862bcd9f185383)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- CHANGELOG.md | 11 +++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d5400b..1b19008d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [3.0.0](https://github.com/erezrokah/aws-testing-library/compare/v2.1.7...v3.0.0) (2022-10-21) + + +### ⚠ BREAKING CHANGES + +* The filter pattern to match CloudWatch Logs is now passed without modifications to the AWS API. If you're using the Jest `toHaveLog` or Chai `to.have.log` matchers you might need to quote your pattern, e.g. `toHaveLog(pattern) -> toHaveLog("${pattern}")` or `to.have.log(pattern) -> to.have.log("${pattern}")` to support special characters + +### Bug Fixes + +* don't quote CloudWatch filter pattern ([#702](https://github.com/erezrokah/aws-testing-library/issues/702)) ([aef13c0](https://github.com/erezrokah/aws-testing-library/commit/aef13c0ab37d4328fd553d7425862bcd9f185383)) + ## [2.1.7](https://github.com/erezrokah/aws-testing-library/compare/v2.1.6...v2.1.7) (2022-10-21) diff --git a/package-lock.json b/package-lock.json index 6548558d..ef0c4f01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "aws-testing-library", - "version": "2.1.7", + "version": "3.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "aws-testing-library", - "version": "2.1.7", + "version": "3.0.0", "license": "MIT", "dependencies": { "aws-sdk": "^2.678.0", diff --git a/package.json b/package.json index 7db3fde8..16d2a4ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aws-testing-library", - "version": "2.1.7", + "version": "3.0.0", "description": "Chai and Jest matchers for aws services", "scripts": { "prepublishOnly": "npm run build",