Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release (next) #333

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"mode": "pre",
"tag": "next",
"initialVersions": {
"@10up/babel-preset-default": "2.1.0",
"@10up/eslint-config": "3.1.1",
"@10up/stylelint-config": "2.0.5",
"10up-toolkit": "5.2.2",
"tenup-theme": "1.1.5-next.7",
"@10up/component-accordion": "2.1.5",
"@10up/library-ts-test": "2.1.5"
},
"changesets": [
"gentle-falcons-shop",
"good-pumas-teach",
"grumpy-experts-wait",
"happy-pans-jam",
"healthy-radios-own",
"hot-crabs-exercise",
"mean-pens-juggle",
"rare-ducks-hang",
"six-crabs-cry",
"smooth-trees-pump",
"stale-impalas-return",
"tiny-toes-dream",
"tricky-ties-hang"
]
}
6 changes: 6 additions & 0 deletions packages/babel-preset-default/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.1.1-next.0

### Patch Changes

- 91f266f: Fix HRM (again)

## 2.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-preset-default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@10up/babel-preset-default",
"version": "2.1.0",
"version": "2.1.1-next.0",
"description": "10up's default babel preset",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -38,7 +38,7 @@
"core-js": "^3.35.0"
},
"devDependencies": {
"@10up/eslint-config": "^3.1.1-next.0",
"@10up/eslint-config": "^4.0.0-next.0",
"@wordpress/element": "^4.20.0",
"babel-jest": "^27.5.1",
"eslint": "^8.40.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 4.0.0-next.0

### Major Changes

- 47c19c9: - Bump minimum prettier version to v3.
- Removed `jsdoc/newline-after-description` eslint rule since it has been removed from the `eslint-plugin-jsdoc`.

### Patch Changes

- Updated dependencies [91f266f]
- @10up/babel-preset-default@2.1.1-next.0

## 3.1.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@10up/eslint-config",
"version": "3.1.1",
"version": "4.0.0-next.0",
"description": "A shareable ESLint configuration",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -38,7 +38,7 @@
"10up"
],
"dependencies": {
"@10up/babel-preset-default": "^2.1.0"
"@10up/babel-preset-default": "^2.1.1-next.0"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^14.9.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/stylelint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 3.0.0-next.0

### Major Changes

- ea9ca67: Discourage usage of `@nest` by disallowing the at-rule.
Adding support for new way of doing nesting as per latest Nesting Spec (as implemented by browsers in 2023).
- 3fce625: Upgrading `stylelint` to version `15.0.0` and decouple from `@wordpress/stylelint-config`.

## 2.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/stylelint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@10up/stylelint-config",
"version": "2.0.5",
"version": "3.0.0-next.0",
"description": "10up stylelint config for WordPress projects",
"main": "index.js",
"homepage": "https://github.com/10up/10up-toolkit/tree/develop/packages/stylelint-config#readme",
Expand Down Expand Up @@ -41,7 +41,7 @@
"node": "^16.0.0 || ^18.0.0 || ^20.0.0"
},
"devDependencies": {
"@10up/eslint-config": "^3.1.1"
"@10up/eslint-config": "^4.0.0-next.0"
},
"peerDependencies": {
"stylelint": "^15.0.0"
Expand Down
39 changes: 39 additions & 0 deletions packages/toolkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Changelog

## 6.0.0-next.0

### Major Changes

- 71460c9: update default value of `useBlockAssets` to true. If you are not ready for it yet. Set `useBlockAssets` to false in your 10up-toolkit `package.json` config.

```json
{
"name": "your-project",
"10up-toolkit": {
"useBlockAssets": false
}
}
```

- 091bb26: Update postcss-preset-env to ^9.0.0 from ^7.0.0
Swap postcss-editor-styles with postcss-editor-styles-wrapper which is compatible with PostCSS 8
- e6c5140: Update linaria to next major and fix an issue with react-refresh plugin. Also drops support for node 14.

### Minor Changes

- e29ee64: Feature: sourcemap option for production builds
- 0c969ef: Add support to configure Webpack's publicPath

### Patch Changes

- 08f7c78: Add `.local` to the default list of supported domains.
- 6c8dbb5: Update dependencies
- 91f266f: Fix HRM (again)
- 5a8f979: Stop using react fast refresh fork in favor of the upstream package
- 01ade56: Fix: allow overriding buildfiles.config.js, filenames.config.js and paths.config.js as stated in README
- Updated dependencies [91f266f]
- Updated dependencies [ea9ca67]
- Updated dependencies [47c19c9]
- Updated dependencies [3fce625]
- @10up/babel-preset-default@2.1.1-next.0
- @10up/stylelint-config@3.0.0-next.0
- @10up/eslint-config@4.0.0-next.0

## 5.2.2

### Patch Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/toolkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"url": "git+https://github.com/10up/10up-toolkit.git",
"directory": "packages/toolkit"
},
"version": "5.2.2",
"version": "6.0.0-next.0",
"bin": {
"10up-toolkit": "bin/10up-toolkit.js"
},
Expand Down Expand Up @@ -68,15 +68,15 @@
"core-js-pure": "^3.35.0"
},
"devDependencies": {
"@10up/babel-preset-default": "^2.1.0",
"@10up/eslint-config": "^3.1.1",
"@10up/stylelint-config": "^2.0.5"
"@10up/babel-preset-default": "^2.1.1-next.0",
"@10up/eslint-config": "^4.0.0-next.0",
"@10up/stylelint-config": "^3.0.0-next.0"
},
"peerDependencies": {
"typescript": ">=5.0.0",
"@10up/babel-preset-default": "^2.0.4",
"@10up/eslint-config": "^3.1.1",
"@10up/stylelint-config": ">=2.0.5-next.0",
"@10up/babel-preset-default": "^2.1.1-next.0",
"@10up/eslint-config": "^4.0.0-next.0",
"@10up/stylelint-config": ">=3.0.0-next.0",
"@linaria/webpack-loader": ">=4.1.11",
"@linaria/babel-preset": ">=4.3.3"
},
Expand Down
2 changes: 1 addition & 1 deletion projects/10up-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@linaria/babel-preset": "^5.0.3",
"@linaria/webpack-loader": "^5.0.3",
"@wordpress/env": "^5.0.0",
"10up-toolkit": "^5.2.2"
"10up-toolkit": "^6.0.0-next.0"
},
"dependencies": {
"@10up/block-components": "1.7.0",
Expand Down
2 changes: 1 addition & 1 deletion projects/library-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"homepage": "https://github.com/10up/component-accordion#readme",
"devDependencies": {
"10up-toolkit": "^5.2.2"
"10up-toolkit": "^6.0.0-next.0"
},
"dependencies": {
"xss": "^1.0.11"
Expand Down
4 changes: 2 additions & 2 deletions projects/library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
},
"homepage": "https://github.com/10up/component-accordion#readme",
"devDependencies": {
"10up-toolkit": "^5.2.2",
"10up-toolkit": "^6.0.0-next.0",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/user-event": "^14.5.2",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "~29.7.0"
"jest-environment-jsdom": "~29.7.0"
},
"dependencies": {
"xss": "1.0.11"
Expand Down