Skip to content

Commit

Permalink
Version Packages (next) (#2069)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
connor-baer and github-actions[bot] committed Apr 29, 2023
1 parent bc88242 commit a48f29b
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .changeset/pre.json
Expand Up @@ -10,11 +10,15 @@
},
"changesets": [
"chilled-walls-learn",
"flat-lamps-glow",
"green-singers-sneeze",
"grumpy-donuts-flash",
"khaki-baboons-deliver",
"loud-pots-act",
"perfect-beers-fold",
"popular-eels-fetch",
"real-clouds-relate",
"red-experts-lie",
"serious-schools-look",
"sour-masks-attend",
"tall-avocados-sin",
Expand Down
21 changes: 21 additions & 0 deletions packages/circuit-ui/CHANGELOG.md
@@ -1,5 +1,26 @@
# @sumup/circuit-ui

## 7.0.0-next.2

### Major Changes

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - Raised the minimum Node.js version to 16+. This is the first maintained version with support for ES modules.

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - **This package is now pure ESM**. Please [read this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).

- If you use TypeScript, you need to use TypeScript 4.7 or later ([ref](https://github.com/microsoft/TypeScript/issues/46452)).
- If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM. (Next.js supports ESM packages out of the box since [v12](https://nextjs.org/blog/next-12#es-modules-support-and-url-imports)).

- [#2067](https://github.com/sumup-oss/circuit-ui/pull/2067) [`4f78573e`](https://github.com/sumup-oss/circuit-ui/commit/4f78573e94829e87fc250f284159969d4e5d8fc2) Thanks [@connor-baer](https://github.com/connor-baer)! - Changed the signature of the ImageInput's `component` prop. The `component` should now accept `aria-hidden` instead of `alt`.

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - Switched to the `"exports"` field to configure the package entry points. Files that are not explicitly defined in `"exports"` can no longer be imported.

### Patch Changes

- Updated dependencies [[`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f), [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f), [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f)]:
- @sumup/design-tokens@6.0.0-next.0
- @sumup/icons@3.0.0-next.0

## 7.0.0-next.1

### Major Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/circuit-ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@sumup/circuit-ui",
"version": "7.0.0-next.1",
"version": "7.0.0-next.2",
"description": "SumUp's React UI component library",
"type": "module",
"exports": "./dist/index.js",
Expand Down Expand Up @@ -42,8 +42,8 @@
"@emotion/jest": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@sumup/design-tokens": "^5.0.0",
"@sumup/icons": "^2.9.0",
"@sumup/design-tokens": "^6.0.0-next.0",
"@sumup/icons": "^3.0.0-next.0",
"@sumup/intl": "^1.5.0",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
Expand Down Expand Up @@ -72,8 +72,8 @@
"@emotion/is-prop-valid": "1.x",
"@emotion/react": "11.x",
"@emotion/styled": "11.x",
"@sumup/design-tokens": ">=5.0.0",
"@sumup/icons": ">=2.9.0",
"@sumup/design-tokens": ">=6.0.0-next.0",
"@sumup/icons": ">=3.0.0-next.0",
"@sumup/intl": "1.x",
"react": ">=18.0.0 <19.0.0",
"react-dom": ">=18.0.0 <19.0.0"
Expand Down
13 changes: 13 additions & 0 deletions packages/design-tokens/CHANGELOG.md
@@ -1,5 +1,18 @@
# @sumup/design-tokens

## 6.0.0-next.0

### Major Changes

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - Raised the minimum Node.js version to 16+. This is the first maintained version with support for ES modules.

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - **This package is now pure ESM**. Please [read this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).

- If you use TypeScript, you need to use TypeScript 4.7 or later ([ref](https://github.com/microsoft/TypeScript/issues/46452)).
- If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM. (Next.js supports ESM packages out of the box since [v12](https://nextjs.org/blog/next-12#es-modules-support-and-url-imports)).

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - Switched to the `"exports"` field to configure the package entry points. Files that are not explicitly defined in `"exports"` can no longer be imported.

## 5.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/design-tokens/package.json
@@ -1,6 +1,6 @@
{
"name": "@sumup/design-tokens",
"version": "5.1.1",
"version": "6.0.0-next.0",
"description": "Visual primitives such as typography, color, and spacing that are shared across platforms.",
"type": "module",
"exports": "./dist/index.js",
Expand Down
13 changes: 13 additions & 0 deletions packages/icons/CHANGELOG.md
@@ -1,5 +1,18 @@
# @sumup/icons

## 3.0.0-next.0

### Major Changes

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - Raised the minimum Node.js version to 16+. This is the first maintained version with support for ES modules.

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - **This package is now pure ESM**. Please [read this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).

- If you use TypeScript, you need to use TypeScript 4.7 or later ([ref](https://github.com/microsoft/TypeScript/issues/46452)).
- If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM. (Next.js supports ESM packages out of the box since [v12](https://nextjs.org/blog/next-12#es-modules-support-and-url-imports)).

- [#2061](https://github.com/sumup-oss/circuit-ui/pull/2061) [`bc882426`](https://github.com/sumup-oss/circuit-ui/commit/bc882426a859e68ec7c029e1b56adbaa63f8260f) Thanks [@connor-baer](https://github.com/connor-baer)! - Switched to the `"exports"` field to configure the package entry points. Files that are not explicitly defined in `"exports"` can no longer be imported.

## 2.22.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/package.json
@@ -1,6 +1,6 @@
{
"name": "@sumup/icons",
"version": "2.22.0",
"version": "3.0.0-next.0",
"description": "A collection of icons by SumUp",
"type": "module",
"main": "./dist/index.js",
Expand Down

0 comments on commit a48f29b

Please sign in to comment.