Update all non-major dependencies - autoclosed #4926
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
20.17.6
->20.17.8
9 - 9.14
->9 - 9.15
3.3.3
->3.4.1
15.0
->15.7
4.27.0
->4.29.0
0.26.11
->0.27.0
5.6.3
->5.7.2
Release Notes
eslint/eslint (eslint)
v9.15.0
Compare Source
prettier/prettier (prettier)
v3.4.1
Compare Source
diff
Remove unnecessary parentheses around assignment in
v-on
(#16887 by @fisker)<!-- Input --> <template> <button @​click="foo += 2">Click</button> </template> <!-- Prettier 3.4.0 --> <template> <button @​click="(foo += 2)">Click</button> </template> <!-- Prettier 3.4.1 --> <template> <button @​click="foo += 2">Click</button> </template>
v3.4.0
Compare Source
diff
🔗 Release Notes
facebook/react (react)
v15.7.0
Compare Source
React
v15.6.2
Compare Source
All Packages
React DOM
document.documentMode
would trigger IE detection in other browsers, breaking change events. (@aweary in #10032)onChange
would not fire withdefaultChecked
on radio inputs. (@jquense in #10156)controlList
attribute to allowed DOM properties (@nhunzaker in #9940)v15.6.1
Compare Source
React DOM
px
to custom CSS property values. (@TrySound in #9966)v15.6.0
Compare Source
React
console.warn
instead ofconsole.error
. (@flarnie in #9753)React.createClass
. Points users tocreate-react-class
instead. (@flarnie in #9771)React.DOM
factory helpers. (@nhunzaker in #8356)React.createMixin
helper, which was never used. (@aweary in #8853)React DOM
style
attribute. (@aweary in #9302)onChange
not firing properly for some inputs. (@jquense in #8575)React Addons
react
. (@flarnie in #9919)isMounted()
to returntrue
incomponentWillUnmount
. (@mridgway in #9638)react-addons-update
to not depend on nativeObject.assign
. (@gaearon in #9937)create-react-class
. (@gaearon in #9933)react-linked-input
. (@gaearon in #9766)react-addons-(css-)transition-group
to the new package. (@gaearon in #9937)v15.5.4
Compare Source
React Addons
prop-types
to fix critical bug. (@gaearon in 545c87f)react-addons-create-fragment
package to includeloose-envify
transform for Browserify users. (@mridgway in #9642)React Test Renderer
batchedUpdates
on shallow renderer. (@gaearon in 9382)v15.5.3
Compare Source
Note: this release has a critical issue and was deprecated. Please update to 15.5.4 or higher.
React Addons
react-addons-create-fragment
package to export correct thing. (@gaearon in #9385)create-react-class
package to includeloose-envify
transform for Browserify users. (@mridgway in #9642)v15.5.2
Compare Source
Note: this release has a critical issue and was deprecated. Please update to 15.5.4 or higher.
React Addons
v15.5.1
Compare Source
Note: this release has a critical issue and was deprecated. Please update to 15.5.4 or higher.
React
v15.5.0
Compare Source
Note: this release has a critical issue and was deprecated. Please update to 15.5.4 or higher.
React
Added a deprecation warning forReact.createClass
. Points users to create-react-class instead. (@acdlite in #d9a4fa4)React.PropTypes
. Points users to prop-types instead. (@acdlite in #043845c)ReactDOM
together withReactDOMServer
. (@wacii in #9005)React DOM
react-dom/test-utils
, which exports the React Test Utils. (@bvaughn)React Test Renderer
componentWillUnmount
was not called for children. (@gre in #8512)react-test-renderer/shallow
, which exports the shallow renderer. (@bvaughn)React Addons
peerDependencies
so that addons continue to work indefinitely. (@acdlite and @bvaughn in 8a06cd7 and 67a8db3)React.createClass
andReact.PropTypes
(@acdlite in 12a96b9)react-addons-test-utils
is deprecated. Usereact-dom/test-utils
andreact-test-renderer/shallow
instead. (@bvaughn)v15.4.2
Compare Source
React
getInitialState
whenthis.state
is set. (@bvaughn in #8594)React DOM
React Addons
v15.4.1
Compare Source
React
React DOM
v15.4.0
Compare Source
React
React DOM
aria-
attributes. (@jessebeach in #7744)autofocus
rather thanautoFocus
. (@hkal in #7694)String.prototype.split
. (@nhunzaker in #7629)batchedUpdates
API now passes the wrapped function's return value through. (@bgnorlov in #7444)React Perf
React Test Utils
Simulate.click()
on a<input disabled onClick={foo} />
thenfoo
will get called whereas it didn't before. (@nhunzaker in #7642)React Test Renderer
ReactTestRenderer.create()
now accepts{createNodeMock: element => mock}
as an optional argument so you can mock refs with snapshot testing. (@Aweary in #7649, #8261)v15.3.2
Compare Source
React
React DOM
playsInline
to supported HTML attributes. (@reaperhulk in #7519)as
to supported HTML attributes. (@kevinslin in #7582)preventDefault()
in Synthetic Events. (@g-palmer in #7411)onSelect
implementation. (@AgtLucas in #7533)document.documentMode
checks to handle Google Tag Manager. (@SchleyB in #7594)document.createEvent
. (@Andarist in #7621)dangerouslySetInnerHTML
and SVG in Internet Explorer. (@zpao in #7618)React Test Renderer
React Perf Add-on
v15.3.1
Compare Source
React
React.Children.only
. (@sophiebits in #7514)React DOM
<input>
validation warning from browsers when changingtype
. (@nhunzaker in #7333)stopPropagation()
in Synthetic Events. (@nhunzaker in #7343)<input>
elements in mobile browsers. (@keyanzhang in #7397)<input type="range">
values not updating when changingmin
ormax
. (@troydemonbreun in #7486)React Test Renderer
React Native Renderer
trackedTouchCount
invariant into a console.error for better reliability. (@yungsters in #7400)v15.3.0
Compare Source
React
React.PureComponent
- a new base class to extend, replacingreact-addons-pure-render-mixin
now that mixins don't work with ES2015 classes. (@sophiebits in #7195)this.props.children
. (@jimfb in #7001)oneOf
andoneOfType
PropTypes sooner. (@troydemonbreun in #6316)PropTypes.element
warning. (@alexzherdev in #7319)setState
warning. (@keyanzhang in #7326)React DOM
xmlns
,xmlnsXlink
to supported SVG attributes. (@salzhrani in #6471)referrerPolicy
to supported HTML attributes. (@Aweary in #7274)<input type="range">
initial value being rounded. (@troydemonbreun in #7251)React Test Renderer
npm install react-test-renderer
. (@sophiebits in #6944, #7258, @iamdustan in #7362)React Perf Add-on
React TestUtils Add-on
type
property on for events created viaTestUtils.Simulate.*
. (@yaycmyk in #6154)v15.2.1
Compare Source
React
React DOM
unstable_renderSubtreeIntoContainer
so that context properly updates when linked to state. (@gaearon in #7125)value
-less submit and reset inputs removing the browser-default text. (@zpao in #7197)name
attribute being added to inputs when not provided. (@okonet in #7199)React Perf Add-on
ReactPerf.start()
work properly during lifecycle methods. (@gaearon in #7208).React CSSTransitionGroup Add-on
React Native Renderer
v15.2.0
Compare Source
React
React.PropTypes.symbol
to support ES2015 Symbols as props. (@puradox in #6377)childContextTypes
on a functional component (@Aweary in #6933)React DOM
onLoad
handling to<link>
element. (@roderickhsiao in #6815)onError
handling to<source>
element. (@wadahiro in #6941)value
anddefaultValue
more accurately in the DOM. (@jimfb in #6406)Object.prototype
. (@Weizenlol in #6886)is="null"
ended up in the DOM in Firefox. (@darobin in #6896)dangerouslySetInnerHTML
and SVG in Internet Explorer. (@joshhunt in #6982)<textarea>
placeholders. (@jimfb in #7002)<input type="radio"/>
. (@jimfb in #7003)<select>
components behave the same on initial render as they do on updates. (@yiminghe in #5362)React Perf Add-on
isRunning()
API. (@nfcampos in #6763)React CSSTransitionGroup Add-on
null
node. (@keyanzhang in #6958)React Native Renderer
v15.1.0
Compare Source
React
object-assign
, which has protection against a non-spec-compliant nativeObject.assign
. (@zpao in #6681)props
objects passed tocreateElement
must be plain objects. (@richardscarrott in #6134)React DOM
onScroll
event handler with server rendering. (@Aweary in #6678)<object>
nodes from being able to read<param>
nodes in IE. (@syranide in #6691)React Perf Add-on
React Native Renderer
merge
utility. (@sebmarkbage in #6634)sindresorhus/type-fest (type-fest)
v4.29.0
Compare Source
v4.28.1
Compare Source
v4.28.0
Compare Source
TsConfigJson
: Add TypeScript 5.7 fields (#987)9d6fff3
v4.27.1
Compare Source
TypeStrong/TypeDoc (typedoc)
v0.27.0
Compare Source
Breaking Changes
result in a different file name structure, #2714.
have changed. They can be partially restored to the previous format by
setting
--sluggerConfiguration.lowercase false
. This change was made tomore closely match the default behavior of GitHub's markdown rendering and
VSCode's autocomplete when creating a relative link to an external markdown
file.
hideParameterTypesInTitle
option, this was originally added asa workaround for many signatures overflowing the available horizontal space
in rendered pages. TypeDoc now has logic to wrap types/signatures smartly,
so this option is no longer necessary.
kindSortOrder
to put references last.sort
order to usealphabetical-ignoring-documents
instead of
alphabetical
.suppressCommentWarningsInDeclarationFiles
totrue
(e.g.
X
, notnew X
)@group
,@category
,@groupDescription
and@categoryDescription
will no longer be removed from the reflections they are present on. They are
skipped during rendering with the
notRenderedTags
option.Features
package.json
exports if theyare not provided manually, #1937.
#anchor
links toreference a heading within them.
@param
comments with nested object types, #2555.@param
comments which reference a typealias/interface. Important properties on the referenced type can now be
highlighted with
@param options.foo
, which will result in the additionalnote being included under the documentation for that parameter, #2147. Note:
This feature is limited to references. It is not supported on other types of
types.
outputs
option which is an array of outputs. This can be usedto render the documentation multiple times with different rendering options
or output types, #2597.
@expand
tag which can be placed on type aliases andinterfaces. When a type with
@expand
is referenced and TypeDoc has a placeto include additional details about the type, the properties of the type
will be included in the page where
@expand
is found. Note that use of thistag can significantly increase the size of your generated documentation if
it is applied to commonly used types as it will result in inlining the
comments for those types everywhere they are referenced, #2303.
@inline
tag which can be placed on type aliases andinterfaces. When a type with
@inline
is referenced, TypeDoc will resolvethe referenced type and convert the type as if it was included directly
within the referencing type. Note that use of this tag can significantly
increase the size of your generated documentation if it is applied to
commonly used types as it will result in inlining the comments for those
types everywhere they are referenced, #2303.
@useDeclaredType
tag for type aliases which can sometimesimprove their documentation, #2654..
@mergeModuleWith
tag which can be used to tell TypeDoc toplace a module/namespace's children under a different module/namespace and
remove the real parent, #2281.
notRenderedTags
option. This option is similar to theexcludeTags
option, but while
excludeTags
will result in the tag being completelyremoved from the documentation,
notRenderedTags
only prevents it frombeing included when rendering.
groupReferencesByType
option.navigation.excludeReferences
optionuseFirstParagraphOfCommentAsSummary
option to configure how TypeDochandles comments for module members without the
@summary
tag.favicon
option to specify a.ico
or.svg
favicon to reference.together and will expand/collapse together, #2335.
app.outputs
object for defining new output strategies.@layer typedoc
, #2782.Bug Fixes
readonly
index signatures.overloads if present, #2718.
@enum
if the type was declared before the variable, #2719.declared inside
declare global
, #2774declare module "foo"
as a module rather than a namespace, #2778.cases. This primarily affected destructured parameters.
yaml
to the highlight languages supported by default.txt
as an alias oftext
to indicate a code blockshould not be highlighted.
@ignore
or@hidden
but still referenced byother types will no longer produce warnings about not being exported.
module when resolving
@link
tags.JavaScript is disabled.
rather than when converting. This prevents issues where boosts used by just
one package were incorrectly reported as unused when running with
entryPointStrategy set to packages.
Thanks!
microsoft/TypeScript (typescript)
[
v5.7.2
](https://redirect.github.cConfiguration
📅 Schedule: Branch creation - "before 4am on Monday" in timezone CET, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.