From 88dae28d8bda4c1e8582d63f9162fb1200d10ec4 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Thu, 19 Dec 2019 15:45:41 -0800 Subject: [PATCH] [enzyme] v3.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New Stuff - `render`: handle Fiber strings and numbers (#2221) Fixes - `shallow`: Share child context logic between `shallow` and `dive` (#2296) - `mount`: `children`: include text nodes ($2269) - `mount`: `invoke`: use adapter’s `wrapInvoke` if present (#2158) Docs - `mount`/`shallow`: `closest`/`parent`: Add missing arguments description (#2264) - `mount`/`shallow`: fix pluralization of “exist” (#2262) - `shallow`/`mount`: `simulate`: added functional component example to simulate doc (#2248) - `mount`: `debug`: add missing verbose option flag (#2184) - `mount`/`shallow`: `update`: fix semantics description (#2194) - add missing backticks to linked method names (#2170) - `invoke`: Add missing backticks to end of codeblock (#2160) - `invoke`: Fix typo (#2167) - Explicit React CSS selector syntax description (#2178) Meta Stuff - [meta] add `funding` field - [meta] Update airbnb.io URLs to use https (#2222) - [deps] update `is-boolean-object`, `is-callable`, `is-number-object`, `is-string`, `enzyme-shallow-equal`, `array.prototype.flat`, `function.prototype.name`, `html-element-map`, `is-r egex`, `object-inspect`, `object-is`, `object.entries`, `object.vales`, `raf`, `string.prototype.trim` - [dev deps] update `eslint`, `eslint-plugin-import`, `eslint-plugin-markdown`, `eslint-plugin-react`, `safe-publish-latest`, `eslint-config-airbnb`, `rimraf`, `safe-publish-latest`, `k arma-firefox-launcher`, `babel-preset-airbnb`, `glob-gitignore`, `semver`, `eslint-plugin-jsx-a11y` --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ packages/enzyme/package.json | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfe8d7a5f..c5781a20a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Change Log +## 3.11.0 + +### New Stuff + - `render`: handle Fiber strings and numbers (#2221) + +### Fixes + - `shallow`: Share child context logic between `shallow` and `dive` (#2296) + - `mount`: `children`: include text nodes ($2269) + - `mount`: `invoke`: use adapter’s `wrapInvoke` if present (#2158) + +### Docs + - `mount`/`shallow`: `closest`/`parent`: Add missing arguments description (#2264) + - `mount`/`shallow`: fix pluralization of “exist” (#2262) + - `shallow`/`mount`: `simulate`: added functional component example to simulate doc (#2248) + - `mount`: `debug`: add missing verbose option flag (#2184) + - `mount`/`shallow`: `update`: fix semantics description (#2194) + - add missing backticks to linked method names (#2170) + - `invoke`: Add missing backticks to end of codeblock (#2160) + - `invoke`: Fix typo (#2167) + - Explicit React CSS selector syntax description (#2178) + +### Meta Stuff + - [meta] add `funding` field + - [meta] Update airbnb.io URLs to use https (#2222) + - [deps] update `is-boolean-object`, `is-callable`, `is-number-object`, `is-string`, `enzyme-shallow-equal`, `array.prototype.flat`, `function.prototype.name`, `html-element-map`, `is-regex`, `object-inspect`, `object-is`, `object.entries`, `object.vales`, `raf`, `string.prototype.trim` + - [dev deps] update `eslint`, `eslint-plugin-import`, `eslint-plugin-markdown`, `eslint-plugin-react`, `safe-publish-latest`, `eslint-config-airbnb`, `rimraf`, `safe-publish-latest`, `karma-firefox-launcher`, `babel-preset-airbnb`, `glob-gitignore`, `semver`, `eslint-plugin-jsx-a11y` + ## 3.10.0 ### New Stuff diff --git a/packages/enzyme/package.json b/packages/enzyme/package.json index 4a125115e..2414d1af8 100644 --- a/packages/enzyme/package.json +++ b/packages/enzyme/package.json @@ -1,6 +1,6 @@ { "name": "enzyme", - "version": "3.10.0", + "version": "3.11.0", "description": "JavaScript Testing utilities for React", "homepage": "https://airbnb.io/enzyme/", "main": "build",