From f1f48327933910318709dfdc78c71f5b8cbfa21b Mon Sep 17 00:00:00 2001 From: HashiBot <62622282+hashibot-web@users.noreply.github.com> Date: Wed, 26 Apr 2023 07:23:27 -0700 Subject: [PATCH] Version Packages (#210) Co-authored-by: github-actions[bot] --- .changeset/little-rules-invent.md | 5 ----- .changeset/proud-berries-deliver.md | 5 ----- .changeset/strange-mugs-yawn.md | 5 ----- packages/cli/CHANGELOG.md | 7 +++++++ packages/cli/package.json | 4 ++-- packages/cms/CHANGELOG.md | 6 ++++++ packages/cms/package.json | 2 +- packages/markdown-utils/CHANGELOG.md | 7 +++++++ packages/markdown-utils/package.json | 4 ++-- packages/nextjs-plugin/CHANGELOG.md | 6 ++++++ packages/nextjs-plugin/package.json | 4 ++-- packages/types/CHANGELOG.md | 6 ++++++ packages/types/package.json | 2 +- 13 files changed, 40 insertions(+), 23 deletions(-) delete mode 100644 .changeset/little-rules-invent.md delete mode 100644 .changeset/proud-berries-deliver.md delete mode 100644 .changeset/strange-mugs-yawn.md diff --git a/.changeset/little-rules-invent.md b/.changeset/little-rules-invent.md deleted file mode 100644 index 0df01fb5..00000000 --- a/.changeset/little-rules-invent.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@hashicorp/platform-nextjs-plugin': minor ---- - -Use graphql-tag/loader to support #import statements in graphql files diff --git a/.changeset/proud-berries-deliver.md b/.changeset/proud-berries-deliver.md deleted file mode 100644 index 2a5f7bca..00000000 --- a/.changeset/proud-berries-deliver.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@hashicorp/platform-types': minor ---- - -Remove empty module declaration for rivet-graphql diff --git a/.changeset/strange-mugs-yawn.md b/.changeset/strange-mugs-yawn.md deleted file mode 100644 index 52a7f261..00000000 --- a/.changeset/strange-mugs-yawn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@hashicorp/platform-cms': minor ---- - -Upgrade rivet-graphql to latest version diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 749c949c..cee1bfeb 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # @hashicorp/platform-cli +## 2.7.2 + +### Patch Changes + +- Updated dependencies [[`2a4f90b`](https://github.com/hashicorp/web-platform-packages/commit/2a4f90b4b3179f977f8685e5b3834d6f3dfe0f93)]: + - @hashicorp/platform-cms@0.4.0 + ## 2.7.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 7d1584eb..cb62c423 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@hashicorp/platform-cli", "description": "CLI for code generation, linting, formatting, etc for HashiCorp next.js websites", - "version": "2.7.1", + "version": "2.7.2", "author": "HashiCorp", "bin": { "next-hashicorp": "next-hashicorp" @@ -10,7 +10,7 @@ "private": false }, "dependencies": { - "@hashicorp/platform-cms": "0.3.0", + "@hashicorp/platform-cms": "0.4.0", "@typescript-eslint/eslint-plugin": "^5.48.0", "@typescript-eslint/parser": "^5.48.0", "chalk": "4.1.0", diff --git a/packages/cms/CHANGELOG.md b/packages/cms/CHANGELOG.md index aeb7e44c..bbab953f 100644 --- a/packages/cms/CHANGELOG.md +++ b/packages/cms/CHANGELOG.md @@ -1,5 +1,11 @@ # @hashicorp/platform-cms +## 0.4.0 + +### Minor Changes + +- [#154](https://github.com/hashicorp/web-platform-packages/pull/154) [`2a4f90b`](https://github.com/hashicorp/web-platform-packages/commit/2a4f90b4b3179f977f8685e5b3834d6f3dfe0f93) Thanks [@dstaley](https://github.com/dstaley)! - Upgrade rivet-graphql to latest version + ## 0.3.0 ### Minor Changes diff --git a/packages/cms/package.json b/packages/cms/package.json index 071bc6c1..edd3f9d4 100644 --- a/packages/cms/package.json +++ b/packages/cms/package.json @@ -1,7 +1,7 @@ { "name": "@hashicorp/platform-cms", "description": "CMS utilities for HashiCorp next.js websites", - "version": "0.3.0", + "version": "0.4.0", "author": "HashiCorp", "dependencies": { "rivet-graphql": "^0.6.0-canary-20230309231927" diff --git a/packages/markdown-utils/CHANGELOG.md b/packages/markdown-utils/CHANGELOG.md index e2c581b1..7c825443 100644 --- a/packages/markdown-utils/CHANGELOG.md +++ b/packages/markdown-utils/CHANGELOG.md @@ -1,5 +1,12 @@ # @hashicorp/platform-markdown-utils +## 0.3.1 + +### Patch Changes + +- Updated dependencies [[`949a1fa`](https://github.com/hashicorp/web-platform-packages/commit/949a1faa6aea8cc83be6045f7d8c375edd41b664)]: + - @hashicorp/platform-types@0.4.0 + ## 0.3.0 ### Minor Changes diff --git a/packages/markdown-utils/package.json b/packages/markdown-utils/package.json index ce38c88e..66495f8a 100644 --- a/packages/markdown-utils/package.json +++ b/packages/markdown-utils/package.json @@ -1,11 +1,11 @@ { "name": "@hashicorp/platform-markdown-utils", "description": "Utilities for working with markdown", - "version": "0.3.0", + "version": "0.3.1", "author": "HashiCorp", "dependencies": { "@hashicorp/platform-remark-plugins": "^0.2.0", - "@hashicorp/platform-types": "^0.3.0", + "@hashicorp/platform-types": "^0.4.0", "@mapbox/rehype-prism": "^0.6.0", "@mdx-js/react": "1.6.22", "rehype-katex": "^6.0.2", diff --git a/packages/nextjs-plugin/CHANGELOG.md b/packages/nextjs-plugin/CHANGELOG.md index 93cec0d3..1f029884 100644 --- a/packages/nextjs-plugin/CHANGELOG.md +++ b/packages/nextjs-plugin/CHANGELOG.md @@ -1,5 +1,11 @@ # @hashicorp/platform-nextjs-plugin +## 5.1.0 + +### Minor Changes + +- [#154](https://github.com/hashicorp/web-platform-packages/pull/154) [`9a33aa9`](https://github.com/hashicorp/web-platform-packages/commit/9a33aa910661d6555957d57bdb5017f7500d80c1) Thanks [@dstaley](https://github.com/dstaley)! - Use graphql-tag/loader to support #import statements in graphql files + ## 5.0.0 ### Major Changes diff --git a/packages/nextjs-plugin/package.json b/packages/nextjs-plugin/package.json index 50c49503..da4ef587 100644 --- a/packages/nextjs-plugin/package.json +++ b/packages/nextjs-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@hashicorp/platform-nextjs-plugin", "description": "Core plugin for HashiCorp next.js websites", - "version": "5.0.0", + "version": "5.1.0", "author": "HashiCorp", "scripts": { "build": "rm -rf ./dist && tsc" @@ -17,7 +17,7 @@ "svgo-loader": "^4.0.0" }, "devDependencies": { - "@hashicorp/platform-types": "^0.3.0", + "@hashicorp/platform-types": "^0.4.0", "@types/postcss-normalize": "^9.0.1", "@types/postcss-preset-env": "^6.7.0", "@types/webpack": "^4.41.26" diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index d1e2c246..c043b6c4 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,11 @@ # @hashicorp/platform-types +## 0.4.0 + +### Minor Changes + +- [#154](https://github.com/hashicorp/web-platform-packages/pull/154) [`949a1fa`](https://github.com/hashicorp/web-platform-packages/commit/949a1faa6aea8cc83be6045f7d8c375edd41b664) Thanks [@dstaley](https://github.com/dstaley)! - Remove empty module declaration for rivet-graphql + ## 0.3.1 ### Patch Changes diff --git a/packages/types/package.json b/packages/types/package.json index cfeb1ea0..f1177795 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@hashicorp/platform-types", - "version": "0.3.1", + "version": "0.4.0", "description": "Shared types for HashiCorp's web team", "types": "index.d.ts", "main": "",