Releases: salesforce/wire-service-jest-util
Releases · salesforce/wire-service-jest-util
v4.1.5
What's Changed
- chore: update non-breaking deps by @nolanlawson in #91
- chore: configure dependabot by @wjhsf in #92
- chore(deps-dev): bump @lwc/jest-preset from 15.0.0 to 16.0.0 by @dependabot in #93
- chore(deps-dev): bump rollup from 4.14.1 to 4.18.0 by @dependabot in #98
- chore(deps): bump braces from 3.0.2 to 3.0.3 by @dependabot in #102
- chore(deps): bump ws from 8.13.0 to 8.17.1 by @dependabot in #103
- chore(deps-dev): bump eslint-plugin-jest from 28.2.0 to 28.6.0 by @dependabot in #105
- chore(deps-dev): bump @babel/core from 7.24.4 to 7.24.7 by @dependabot in #106
- chore(dependabot): group lwc together by @nolanlawson in #107
- chore(deps-dev): bump the lwc group with 4 updates by @dependabot in #109
- chore(deps-dev): bump rimraf from 5.0.5 to 6.0.1 by @dependabot in #111
- chore(deps-dev): bump eslint from 8.53.0 to 8.57.0 by @dependabot in #112
- chore(deps-dev): bump the theoretically-non-breaking group across 1 directory with 6 updates by @dependabot in #113
- chore(deps-dev): bump the lwc group with 3 updates by @dependabot in #115
- chore(deps-dev): bump the theoretically-non-breaking group with 3 updates by @dependabot in #116
- chore(deps-dev): bump execa from 8.0.1 to 9.3.1 by @dependabot in #118
- chore(deps): bump micromatch from 4.0.5 to 4.0.8 by @dependabot in #114
- fix: move deps to devDeps by @nolanlawson in #119
New Contributors
Full Changelog: v4.1.4...v4.1.5
v4.1.4
v4.1.0
What's Changed
- chore: node v18.18.0 by @ekashida in #85
- chore(deps): bump @babel/traverse from 7.22.10 to 7.23.2 by @dependabot in #86
- fix: add types by @abdulsattar in #87
Full Changelog: v4.0.2...v4.1.0
v4.0.2
What's Changed
- chore: update dependencies by @nolanlawson in #65
- chore: update dependencies by @nolanlawson in #66
- chore: update dependencies by @nolanlawson in #72
- chore(deps): bump tough-cookie from 4.1.2 to 4.1.3 by @dependabot in #77
- chore(deps): bump semver from 6.3.0 to 6.3.1 by @dependabot in #78
- chore(deps): bump word-wrap from 1.2.3 to 1.2.4 by @dependabot in #79
- chore: update dependencies, fix peerDep by @nolanlawson in #80
Full Changelog: v4.0.1...v4.0.2
v4.0.1
What's Changed
- docs: add apex methods note in v2 to v3 migration guide by @jodarove in #47
- chore: update deps by @abdulsattar in #48
- chore: update dependencies by @nolanlawson in #50
- chore: update dependencies by @jodarove in #52
- chore(deps): bump ansi-regex from 5.0.0 to 5.0.1 by @dependabot in #53
- chore(deps): bump nanoid from 3.1.29 to 3.2.0 by @dependabot in #55
- Adding Updating CODEOWNERS with ECCN as per Export Control Compliance by @svc-scm in #54
- chore: standardize release script by @jye-sf in #57
- chore(deps): bump minimist from 1.2.5 to 1.2.6 by @dependabot in #56
- chore: remove old workflow @W-10946336 by @jye-sf in #60
- fix: temporarily remove auto-deploy by @jye-sf in #61
- chore: update non-breaking dependencies by @nolanlawson in #62
- chore: update all dependencies by @nolanlawson in #63
New Contributors
- @abdulsattar made their first contribution in #48
- @svc-scm made their first contribution in #54
- @jye-sf made their first contribution in #57
Full Changelog: v4.0.0...v4.0.1
v4.0.0
Breaking changes:
To update to wire-service-jest-util v4.0.0, you will need to update your dependency from the deprecated @lwc/engine
to @lwc/engine-dom
v2+.
For example, you can run:
npm remove @lwc/engine --save
npm install @lwc/engine-dom@^2 --save
v3.0.0
Changes in v3.0.0
- 3 new APIs were added:
createTestWireAdapter
,createLdsTestWireAdapter
,createApexTestWireAdapter
. - Added support for test adapters created with
create*
toemit
(emitError
) a value (error) only to specific adapters instances, depending on the config value. Solves #15. - Existing
register*
calls are deprecated in favor ofcreate*
, and they will be removed on v4.0.0 of this library. - Drops support for lwc < 1.5.0.
To upgrade your existing tests, check the Migrating from version 2.x to 3.x guide.