@stellar/stellar-base and its underlying dependency @stellar/js-xdr have been upgraded to their latest versions; reference their release notes (v12.1.0 and v3.1.2, respectively) for details (#1013).
Added
You can now pass custom headers to both rpc.Server and Horizon.Server (#1013):
import { Server } from "@stellar/stellar-sdk/rpc";
const s = new Server("<some URL>", { headers: { "X-Custom-Header": "hello" }})
Horizon.Server now supports the new POST /transactions_async endpoint via the submitAsyncTransaction method (#989). Its purpose is to provide an immediate response to the submission rather than waiting for Horizon to determine its status. The response schema is as follows:
interface SubmitAsyncTransactionResponse {
// the submitted transaction hash
hash: string;
// one of "PENDING", "DUPLICATE", "TRY_AGAIN_LATER", or "ERROR"
tx_status: string;
// a base64-encoded xdr.TransactionResult iff `tx_status` is "ERROR"
error_result_xdr: string;
}
</tr></table>
@stellar/stellar-base and its underlying dependency @stellar/js-xdr have been upgraded to their latest versions; reference their release notes (v12.1.0 and v3.1.2, respectively) for details (#1013).
Added
You can now pass custom headers to both rpc.Server and Horizon.Server (#1013):
import { Server } from "@stellar/stellar-sdk/rpc";
const s = new Server("<some URL>", { headers: { "X-Custom-Header": "hello" }})
Horizon.Server now supports the new POST /transactions_async endpoint via the submitAsyncTransaction method (#989). Its purpose is to provide an immediate response to the submission rather than waiting for Horizon to determine its status. The response schema is as follows:
interface SubmitAsyncTransactionResponse {
// the submitted transaction hash
hash: string;
// one of "PENDING", "DUPLICATE", "TRY_AGAIN_LATER", or "ERROR"
tx_status: string;
// a base64-encoded xdr.TransactionResult iff `tx_status` is "ERROR"
error_result_xdr: string;
}
rpc.Server now has a getFeeStats method which retrieves fee statistics for a previous chunk of ledgers to provide users with a way to provide informed decisions about getting their transactions included in the following ledgers (#998):
Added better configurability for comment scrubbing default behavior
Added better hardening against Prototype Pollution attacks, thanks @kevin-mizu
Added better handling and readability of the nodeType property, thanks @ssi02014
Fixed some smaller issues in README and other documentation
DOMPurify 3.1.2
Addressed and fixed a mXSS variation found by @kevin-mizu
Addressed and fixed a mXSS variation found by Adam Kues of Assetnote
Updated tests for older Safari and Chrome versions
DOMPurify 3.1.1
Fixed an mXSS sanitiser bypass reported by @icesfont
Added new code to track element nesting depth
Added new code to enforce a maximum nesting depth of 255
Added coverage tests and necessary clobbering protections
Note that this is a security release and should be upgraded to immediately. Please also note that further releases may follow as the underlying vulnerability is apparently new and further variations may be discovered.
DOMPurify 3.1.0
Added new setting SAFE_FOR_XML to enable better control over comment scrubbing
Updated README to warn about happy-dom not being safe for use with DOMPurify yet
Updated the LICENSE file to show the accurate year number
Stabilize the unstable_flushSync option for navigations and fetchers (#11989)
Stabilize the unstable_viewTransition option for navigations and the corresponding unstable_useViewTransitionState hook (#11989)
Patch Changes
Fix bug when submitting to the current contextual route (parent route with an index child) when an ?index param already exists from a prior submission (#12003)
Fix useFormAction bug - when removing ?index param it would not keep other non-Remix index params (#12003)
Fix types for RouteObject within PatchRoutesOnNavigationFunction's patch method so it doesn't expect agnostic route objects passed to patch (#11967)
Updated dependencies:
react-router@6.27.0
@remix-run/router@1.20.0
6.26.2
Patch Changes
Updated dependencies:
@remix-run/router@1.19.2
react-router@6.26.2
6.26.1
Patch Changes
Rename unstable_patchRoutesOnMiss to unstable_patchRoutesOnNavigation to match new behavior (#11888)
Updated dependencies:
@remix-run/router@1.19.1
react-router@6.26.1
6.26.0
Minor Changes
Add a new replace(url, init?) alternative to redirect(url, init?) that performs a history.replaceState instead of a history.pushState on client-side navigation redirects (#11811)
Patch Changes
Fix initial hydration behavior when using future.v7_partialHydration along with unstable_patchRoutesOnMiss (#11838)
During initial hydration, router.state.matches will now include any partial matches so that we can render ancestor HydrateFallback components
Bumps the minor-and-patch group with 38 updates in the / directory:
1.22.2
1.23.3
1.0.1
1.2.0
12.0.0-rc.2
12.3.0
6.0.0
6.6.2
14.4.3
14.5.2
2.0.0
2.1.0
3.0.5
3.1.7
18.2.0
18.3.1
18.2.20
18.3.11
18.2.0
18.3.1
18.2.7
18.3.1
6.15.0
6.27.0
1.69.7
1.80.3
6.0.7
6.1.13
5.1.6
5.6.3
0.11.1
0.11.4
7.22.10
7.25.8
7.22.10
7.25.8
7.22.5
7.25.7
7.22.5
7.25.7
29.5.3
29.5.13
4.14.197
4.17.12
5.0.4
5.0.7
5.1.26
5.1.34
9.1.3
9.2.1
9.0.0
9.1.0
2.28.0
2.31.0
6.7.1
6.10.0
7.33.1
7.37.1
4.0.1
4.2.0
5.5.3
5.6.2
2.7.6
2.9.1
3.0.2
3.3.3
9.4.4
9.5.1
5.88.2
5.95.0
16.3.1
16.4.5
4.18.2
4.21.1
10.9.1
10.9.2
Updates
@microlink/react-json-view
from 1.22.2 to 1.23.3Release notes
Sourced from
@microlink/react-json-view
's releases.Changelog
Sourced from
@microlink/react-json-view
's changelog.Commits
392fa79
chore(release): 1.23.3a4a2635
build: add contributorsef46927
Merge pull request #39 from mbtools/patch-186bbd60
fix: function callec72456
Add fallback for test envc18ae22
Add fallbackcf82428
Update CopyToClipboard.js18a09e9
Use navigator.clipboard API474800a
chore(release): 1.23.2f022839
build: add contributorsUpdates
@stellar/prettier-config
from 1.0.1 to 1.2.0Commits
Maintainer changes
This version was pushed to npm by piyalbasu, a new releaser for
@stellar/prettier-config
since your current version.Updates
@stellar/stellar-sdk
from 12.0.0-rc.2 to 12.3.0Release notes
Sourced from
@stellar/stellar-sdk
's releases.... (truncated)
Changelog
Sourced from
@stellar/stellar-sdk
's changelog.... (truncated)
Commits
99cf4cc
Release v12.3.0 (#1045)e6cda07
RPC: Add support forgetTransactions
endpoint (#1037)581b32a
Use renamed custom types example contract (#1043)3e081ba
Modify auth entry sig expiration to ~8min (#1023)72ec060
Add support for getVersionInfo endpoint (#1028)e4dd603
RemovestatusText
error check to broaden compatibility (#1001)a2f69d9
Bump the minor-and-patch group across 1 directory with 9 updates (#1027)5ab7797
Update endpoint documentation references in the jsdocs (#1026)6a0c519
Update npm link in the README (#1025)161c083
Bump the minor-and-patch group across 1 directory with 2 updates (#1018)Updates
@testing-library/jest-dom
from 6.0.0 to 6.6.2Release notes
Sourced from
@testing-library/jest-dom
's releases.... (truncated)
Commits
4468378
fix: remove recursive type reference in vitest types (#636)abba961
docs: add billyjanitsch as a contributor for bug (#644)9490615
docs: add G-Rath as a contributor for code (#643)ced792e
fix: fix lodash import in to-have-selection.js (#642)9b14804
feat: implement toHaveSelection (#637)f5b0e94
docs: add diegohaz as a contributor for ideas (#640)68e927e
docs: add pwolaq as a contributor for code, and test (#639)04005db
docs: add silviuaavram as a contributor for code, and test (#638)4723de3
docs: add mibcadet as a contributor for doc (#628)8fd402a
docs: how to update tsconfig for vitest matchers extension (#624)Updates
@testing-library/user-event
from 14.4.3 to 14.5.2Release notes
Sourced from
@testing-library/user-event
's releases.Commits
d036279
chore: upgradenode
in codesandbox910fee5
chore: set tsconfigbaseUrl
fa8d867
revert: swap release scriptc4b4629
chore: upgrade testing environment6a3c896
fix: remove interop and deep DTL importsd7483f0
fix: incorrect default import from@testing-library/dom
(#1162)4be87b3
chore: swap release scriptd95121d
chore: add --experimental-import-meta-resolve8779eae
chore: format, lint, fix lint4019cee
fix(exports): add a named export for userEventUpdates
assert
from 2.0.0 to 2.1.0Changelog
Sourced from assert's changelog.
Commits
fc65923
v2.1.0d99f50d
[meta] add to FUNDING.ymlc6e09cb
[Deps] updateis-nan
,object-is
,util
a38013b
[Dev Deps] update@babel/cli
,@babel/core
,@babel/preset-env
,airtap
,...f5d7c66
[Refactor] switching to a maintained Object.assign package80664db
[readme] Add description for usage with webpack and vited932a53
Implementassert.match()
andassert.doesNotMatch()
bba838e
Add security.mdffd5479
Remove duplicate line under usage section (#48)c112ec4
Remove duplicate line under usage sectionMaintainer changes
This version was pushed to npm by ljharb, a new releaser for assert since your current version.
Updates
bignumber.js
from 9.1.1 to 9.1.2Changelog
Sourced from bignumber.js's changelog.
Commits
a05d98b
v9.1.2ee5481b
#354 Avoid bug in v8 Maglev compiler.65156eb
Merge branch 'master' of https://github.com/MikeMcl/bignumber.js4120e6a
fix: typo in comments (#350)981a8a9
[BUGFIX] #344minumum(0, -0)
should be-0
Updates
dompurify
from 3.0.5 to 3.1.7Release notes
Sourced from dompurify's releases.
... (truncated)
Commits
69c8c12
Merge pull request #999 from cure53/main15f54ed
chore: Regenerated source maps4f3b5cb
Merge pull request #998 from cure53/main50aec03
chore: Preparing 3.1.7 release4a9ec1f
fix: Fixed an issue with comment detection and possible bypasses with specifi...50ea515
Merge pull request #993 from cure53/dependabot/npm_and_yarn/body-parser-1.20.3b6188ec
build(deps): bump body-parser from 1.20.1 to 1.20.31e2cb9b
Merge pull request #990 from jeroen1602/angular_support745b521
Added support for the Angular compiler.c1949fb
Merge pull request #989 from cure53/dependabot/npm_and_yarn/webpack-5.94.0Updates
react
from 18.2.0 to 18.3.1Release notes
Sourced from react's releases.
Changelog
Sourced from react's changelog.
Commits
f1338f8
ExportReact.act
from 18.3d6c42f7
Bump to 18.3.173bfaa1
Turn on key spread warning in jsx-runtime for everyone (#25697)c2a246e
Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)2cfb474
Bump version from 18.2 to 18.3Maintainer changes
This version was pushed to npm by react-bot, a new releaser for react since your current version.
Updates
@types/react
from 18.2.20 to 18.3.11Commits
Updates
react-dom
from 18.2.0 to 18.3.1Release notes
Sourced from react-dom's releases.
Changelog
Sourced from react-dom's changelog.
Commits
d6c42f7
Bump to 18.3.18a015b6
Add deprecation warning for unmountComponentAtNodec3b2839
Add deprecation warning for findDOMNoded4ea75d
ReactDOMTestUtils deprecation warnings7548c01
DeprecaterenderToStaticNodeStream
(#28872) (#28874)5894232
Enable warning for defaultProps on function components for everyone (#25699)c2a246e
Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)2cfb474
Bump version from 18.2 to 18.3Maintainer changes
This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.
Updates
@types/react-dom
from 18.2.7 to 18.3.1Commits
Updates
react-router-dom
from 6.15.0 to 6.27.0Release notes
Sourced from react-router-dom's releases.
... (truncated)
Changelog
Sourced from react-router-dom's changelog.
... (truncated)
Commits
8cfb4a7
chore: Update version for release (#12121)cde8139
chore: Update version for release (pre) (#12112)9a62e35
chore: Update version for release (pre) (#12101)0389eba
Fix issues with contextual routing and index params (Looks like these dependencies are updatable in another way, so this is no longer needed.