Skip to content

Commit

Permalink
Merge pull request #81 from CrowdStrike/changeset-release/main
Browse files Browse the repository at this point in the history
Release Preview (beta)
  • Loading branch information
simonihmig authored Apr 24, 2023
2 parents 6dbced0 + 43807d8 commit 2f071b5
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
"ember-headless-form-yup": "0.0.0"
},
"changesets": [
"breezy-geese-remain",
"four-squids-change",
"gold-tools-jump",
"gold-weeks-pay",
"heavy-experts-wonder",
"nervous-hairs-mix",
"orange-walls-run",
"red-lizards-dress",
"silly-cougars-decide",
"ten-mirrors-repair"
]
Expand Down
8 changes: 8 additions & 0 deletions docs-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# docs-app

## 0.0.1-beta.2

### Patch Changes

- Updated dependencies [[`241ccdc`](https://github.com/CrowdStrike/ember-headless-form/commit/241ccdcedaf52d8af8b3f366b61d3055e9e38fc9), [`5d75011`](https://github.com/CrowdStrike/ember-headless-form/commit/5d750110000f22460207f963feed3bc7deccd473), [`fdc4ff9`](https://github.com/CrowdStrike/ember-headless-form/commit/fdc4ff9fd8a2ba00c1f2f1fe04ece8f83ffe97b3), [`544509b`](https://github.com/CrowdStrike/ember-headless-form/commit/544509b256fb171e62cc74b2cba2b2f32faa6f35), [`67a5169`](https://github.com/CrowdStrike/ember-headless-form/commit/67a5169eb11552d7db9eb1f2553f59dfaad9aa65)]:
- ember-headless-form@1.0.0-beta.2
- ember-headless-form-changeset@1.0.0-beta.1

## 0.0.1-beta.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion docs-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs-app",
"version": "0.0.1-beta.1",
"version": "0.0.1-beta.2",
"private": true,
"description": "Small description for docs-app goes here",
"repository": "",
Expand Down
13 changes: 13 additions & 0 deletions packages/changeset/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# ember-headless-form-changeset

## 1.0.0-beta.1

### Patch Changes

- [#118](https://github.com/CrowdStrike/ember-headless-form/pull/118) [`5d75011`](https://github.com/CrowdStrike/ember-headless-form/commit/5d750110000f22460207f963feed3bc7deccd473) Thanks [@simonihmig](https://github.com/simonihmig)! - Fix changeset-helper to work with global resolution

The previous API worked by passing the helper as-is without actually invoking it: `@validate={{validate-changeset}}`, as the expected return value of the helper is a function itself. But this does not work when globally resolving the helper by its string reference, i.e. when not using `<template>` tag or Embroider. This change fixes the API of the helper, but requires your usage to change from `@validate={{validate-changeset}}` to `@validate={{(validate-changeset)}}`, invoking it without any additional arguments.

Fixes https://github.com/CrowdStrike/ember-headless-form/issues/109

- Updated dependencies [[`241ccdc`](https://github.com/CrowdStrike/ember-headless-form/commit/241ccdcedaf52d8af8b3f366b61d3055e9e38fc9), [`fdc4ff9`](https://github.com/CrowdStrike/ember-headless-form/commit/fdc4ff9fd8a2ba00c1f2f1fe04ece8f83ffe97b3), [`544509b`](https://github.com/CrowdStrike/ember-headless-form/commit/544509b256fb171e62cc74b2cba2b2f32faa6f35), [`67a5169`](https://github.com/CrowdStrike/ember-headless-form/commit/67a5169eb11552d7db9eb1f2553f59dfaad9aa65)]:
- ember-headless-form@1.0.0-beta.2

## 1.0.0-beta.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/changeset/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-headless-form-changeset",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "Integrates ember-changeset with ember-headless-form",
"keywords": [
"ember-addon"
Expand Down Expand Up @@ -29,7 +29,7 @@
"@embroider/addon-shim": "^1.0.0"
},
"peerDependencies": {
"ember-headless-form": "^1.0.0-beta.0",
"ember-headless-form": "^1.0.0-beta.2",
"validated-changeset": "^1.3.4",
"ember-changeset": "^4.1.2",
"ember-source": ">=4.4.0"
Expand All @@ -40,7 +40,7 @@
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.0",
"@babel/plugin-syntax-decorators": "^7.17.0",
"ember-headless-form": "^1.0.0-beta.0",
"ember-headless-form": "^1.0.0-beta.2",
"@embroider/addon-dev": "^3.0.0",
"@glimmer/component": "^1.1.2",
"@glint/core": "^1.0.0-beta.3",
Expand Down
14 changes: 14 additions & 0 deletions packages/ember-headless-form/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# ember-headless-form

## 1.0.0-beta.2

### Patch Changes

- [#80](https://github.com/CrowdStrike/ember-headless-form/pull/80) [`241ccdc`](https://github.com/CrowdStrike/ember-headless-form/commit/241ccdcedaf52d8af8b3f366b61d3055e9e38fc9) Thanks [@simonihmig](https://github.com/simonihmig)! - Add `@ignoreNativeValidation` for opting out of native validation

- [#121](https://github.com/CrowdStrike/ember-headless-form/pull/121) [`fdc4ff9`](https://github.com/CrowdStrike/ember-headless-form/commit/fdc4ff9fd8a2ba00c1f2f1fe04ece8f83ffe97b3) Thanks [@simonihmig](https://github.com/simonihmig)! - Support numbers for Inputs with `@type="number"

For `@type="number"` Inputs we support passing its value as a real number, and parse and return it as a number as well.

- [#76](https://github.com/CrowdStrike/ember-headless-form/pull/76) [`544509b`](https://github.com/CrowdStrike/ember-headless-form/commit/544509b256fb171e62cc74b2cba2b2f32faa6f35) Thanks [@simonihmig](https://github.com/simonihmig)! - Refactor radio group for better a11y

- [#84](https://github.com/CrowdStrike/ember-headless-form/pull/84) [`67a5169`](https://github.com/CrowdStrike/ember-headless-form/commit/67a5169eb11552d7db9eb1f2553f59dfaad9aa65) Thanks [@simonihmig](https://github.com/simonihmig)! - Convert addon to use template tag

## 1.0.0-beta.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-headless-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-headless-form",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"description": "The default blueprint for Embroider v2 addons.",
"keywords": [
"ember-addon"
Expand Down

0 comments on commit 2f071b5

Please sign in to comment.