From c0b1f7705a448dda3e6292d872a5bf435d26fab4 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Mon, 21 Mar 2022 15:38:31 -0400 Subject: [PATCH 1/2] chore: update dependencies to inlude ajv-formats (#484) In this PR https://github.com/cloudevents/sdk-javascript/pull/471/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R128 it was not noticed that the addition of `ajv-formats` to devDependencies is insufficient. Unfortunately, users of v6.0.0 will receive an error when using the module, unless they explicitly install `ajv-formats` in their project. This commit fixes that, and should result in an immediate release of version 6.0.1. Signed-off-by: Lance Ball --- package-lock.json | 6 ++---- package.json | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3e0f110c..ef36e814 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,10 +6,11 @@ "packages": { "": { "name": "cloudevents", - "version": "5.3.2", + "version": "6.0.0", "license": "Apache-2.0", "dependencies": { "ajv": "^8.6.3", + "ajv-formats": "^2.1.1", "util": "^0.12.4", "uuid": "^8.3.2" }, @@ -25,7 +26,6 @@ "@typescript-eslint/eslint-plugin": "^4.29.0", "@typescript-eslint/parser": "^4.29.0", "ajv-cli": "^5.0.0", - "ajv-formats": "^2.1.1", "axios": "^0.26.1", "chai": "~4.2.0", "eslint": "^7.32.0", @@ -1536,7 +1536,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "dev": true, "dependencies": { "ajv": "^8.0.0" }, @@ -10195,7 +10194,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "dev": true, "requires": { "ajv": "^8.0.0" } diff --git a/package.json b/package.json index 8b01585c..496335c7 100644 --- a/package.json +++ b/package.json @@ -111,6 +111,7 @@ "homepage": "https://github.com/cloudevents/sdk-javascript#readme", "dependencies": { "ajv": "^8.6.3", + "ajv-formats": "^2.1.1", "util": "^0.12.4", "uuid": "^8.3.2" }, @@ -126,7 +127,6 @@ "@typescript-eslint/eslint-plugin": "^4.29.0", "@typescript-eslint/parser": "^4.29.0", "ajv-cli": "^5.0.0", - "ajv-formats": "^2.1.1", "axios": "^0.26.1", "chai": "~4.2.0", "eslint": "^7.32.0", From a512aad5d59145a047d50f7a63fbf42e77da06d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 15:40:44 -0400 Subject: [PATCH 2/2] chore: release 6.0.1 (#485) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfc9e0bb..b2161c3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [6.0.1](https://www.github.com/cloudevents/sdk-javascript/compare/v6.0.0...v6.0.1) (2022-03-21) + + +### Miscellaneous + +* update dependencies to inlude ajv-formats ([#484](https://www.github.com/cloudevents/sdk-javascript/issues/484)) ([c0b1f77](https://www.github.com/cloudevents/sdk-javascript/commit/c0b1f7705a448dda3e6292d872a5bf435d26fab4)), closes [/github.com/cloudevents/sdk-javascript/pull/471/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R128](https://www.github.com/cloudevents//github.com/cloudevents/sdk-javascript/pull/471/files/issues/diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R128) + ## [6.0.0](https://www.github.com/cloudevents/sdk-javascript/compare/v5.3.2...v6.0.0) (2022-03-21) diff --git a/package-lock.json b/package-lock.json index ef36e814..fc7b2a5a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cloudevents", - "version": "6.0.0", + "version": "6.0.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 496335c7..ba0ab2d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cloudevents", - "version": "6.0.0", + "version": "6.0.1", "description": "CloudEvents SDK for JavaScript", "main": "dist/index.js", "scripts": {