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:
^1.1.0
->^4.0.0
^5.0.1
->^6.0.0
7.12.10
->7.27.0
7.12.10
->7.26.10
7.12.1
->7.25.9
7.12.1
->7.26.3
7.12.10
->7.26.10
7.12.11
->7.26.9
7.12.5
->7.27.0
26.0.20
->29.5.14
1.2.1
->1.4.0
1.1.2
->2.4.6
9.1.0
->11.0.1
1.11.0
->1.16.5
26.6.3
->29.7.0
8.2.2
->10.0.0
^0.11.4
->^1.0.0
5.0.1
->7.1.2
4.3.2
->4.4.0
^8.1.0
->^16.0.0
7.19.0
->9.25.1
7.5.0
->10.0.0
1.0.5
->1.0.6
4.3.8
->9.1.7
26.6.3
->29.7.0
4.1.0
->10.0.0
^0.15.0
->^0.16.0
10.19.0-alpine
->22.15.0-alpine
2.0.7
->3.1.10
4.1.5
->5.0.0
^1.0.0
->^3.0.0
2.0.0
->4.0.0
6.1.3
->7.1.0
^0.5.2
->^1.0.0
^1.1.2
->^5.0.0
4.0.0-rc.1
->4.0.1
15.9.6
->17.4.2
4.4.0
->6.0.1
3.5.0
->3.6.20
This is a special PR that replaces
npm-run-all
with the community suggested minimal stable replacement version.Release Notes
Azure/azure-sdk-for-js (@azure/core-amqp)
v4.3.6
Compare Source
v4.3.5
Compare Source
v4.3.4
Compare Source
v4.3.3
Compare Source
v4.3.2
Compare Source
v4.3.1
Compare Source
v4.3.0
Compare Source
v4.2.2
Compare Source
v4.2.1
Compare Source
v4.2.0
Compare Source
v4.1.0
Compare Source
v4.0.0
Compare Source
v3.3.0
Compare Source
v3.2.2
Compare Source
v3.2.1
Compare Source
v3.2.0
Compare Source
v3.1.1
Compare Source
v3.1.0
3.1.0 (2022-02-03)
Features Added
@types/node
has been updated to version 12. Read our support policy for more details.rhea
package.messageState
with value of"x-opt-message-state"
which is the name for the new message state property in the message annotations. PR 18938v3.0.0
Compare Source
3.0.0 (2021-06-09)
Breaking changes
rhea-promise
andrhea
dependencies to version 2.x.rhea
contains a breaking change that changes deserialization of timestamps from numbers to Date objects.AsyncLock
anddefaultLock
exports.defaultCancellableLock
should be used instead.v2.3.0
Compare Source
2.3.0 (2021-04-29)
Updates
AmqpAnnotatedMessage
to identify the AMQP section where body data was decoded from. PR 14703.Adds
CancellableAsyncLock
as an alternative toAsyncLock
that supports cancellation via the abort signal. PR 14844.v2.2.0
Compare Source
2.2.0 (2021-03-30)
Updates
translateError
to convert non-object type parameters to errors.The parameter will be part of the error's
message
property unless the parameter is null or undefined.Fixes issue 14499.
Addresses issue 9988
by updating the following operations to accept an
abortSignal
to allow cancellation:Exporting
StandardAbortMessage
that is the standard error message accompanying theAbortError
.v2.1.0
Compare Source
2.1.0 (2021-02-08)
Now an informative error is thrown describing the circumstance that led to the error.
amqpHostname
andport
that aConnectionContextBase
will use when connecting to a service.The
host
field refers to the DNS host or IP address of the service, whereas theamqpHostname
is the fully qualified host name of the service. Normally
host
andamqpHostname
will be the same.However if your network does not allow connecting to the service via the public host,
you can specify a custom host (e.g. an application gateway) via the
host
field and continueusing the public host as the
amqpHostname
.v2.0.1
Compare Source
2.0.1 (2021-01-07)
Previously,
retry
would still sleep one more time after all retry attempts were exhausted before returning.Now,
retry
will return immediately after all retry attempts are completed as necessary.v2.0.0
Compare Source
2.0.0 (2020-11-12)
@azure/core-amqp
version 2 package.Breaking changes
Continuing our work to clean the public API surface that we started in 2.0.0-beta.1 we no longer export
DataTransformer
andDefaultDataTransformer
.dataTransformer
has been removed fromConnectionContextBase
andConnectionContextBaseParameters
.This allows us to consider other forms of implementing serializers in the future.
ConditionStatusMapper
andMessagingErrorCodes
as these are only used internally by this package.Previously,
ConnectionConfig.validate()
overridden entityPath ifundefined
withString(undefined) = "undefined"
. This has been updated to retainundefined
in the validation.PR 12321
v1.1.7
Compare Source
1.1.7 (2020-10-29)
RequestResponseLink.sendRequest
call adds an "onMessage" listener to theReceiverEvents.message
event and keeps discarding the responses that did not match the request-id and returns the response if matched. Adding many listeners would also result in a warning such asMaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 message listeners added to [Receiver]. Use emittr.setMaxListeners() to increase limit
.This has been improved to reuse a single listener for all the requests by maintaining a map of deferred promises that would be resolved(or rejected) upon receiving a message event.
PR 11749
v1.1.6
Compare Source
1.1.6 (2020-09-08)
(PR 10951).
v1.1.5
Compare Source
1.1.5 (2020-08-04)
where closing the
RequestResponseLink
session before closing the receivercould cause the service to report a missing session channel.
v1.1.4
Compare Source
1.1.4 (2020-06-30)
where operations that used the
RequestResponseLink
and encountered an errorwould fail to cleanup their internal timer.
This caused exiting the process to be delayed until the timer reached its timeout.
message_id
on the request to be sent when using theRequestResponseLink
. This helps in determining the right response for the request when multiple send requests are made in parallel.PR 9503
v1.1.3
Compare Source
1.1.3 (2020-06-02)
rhea
package.This update fixes an issue where an uncaught exception could be thrown some time after a connection was disconnected.
PR 8758
v1.1.2
Compare Source
1.1.2 (2020-04-28)
PR 8540
refreshConnection()
on theConnectionContextBase
to replace theconnection
property on it with a new rhea-promiseConnection
object.PR 8563
v1.1.1
Compare Source
1.1.1 (2020-03-31)
@azure/identity
as it is not used directly by this package.PR 7669
babel/babel (@babel/cli)
v7.27.0
Compare Source
v7.27.0 (2025-03-24)
Thanks @ishchhabra and @vovkasm for your first PRs!
👓 Spec Compliance
babel-generator
,babel-parser
importAttributesKeyword
towith
(@JLHwung)🚀 New Feature
babel-helper-create-class-features-plugin
,babel-traverse
,babel-types
traverseFast
to exit early (@liuxingbaoyu)babel-parser
,babel-types
ImportAttributes
toStandardized
and move its parser test fixtures (@JLHwung)babel-generator
babel-parser
,babel-template
allowYieldOutsideFunction
to parser (@liuxingbaoyu)babel-plugin-transform-typescript
,babel-traverse
upToScope
parameter tohasBinding
(@liuxingbaoyu)babel-parser
babel-types
🐛 Bug Fix
babel-helper-create-class-features-plugin
,babel-plugin-transform-class-properties
babel-traverse
scope.crawl()
(@liuxingbaoyu)babel-helpers
,babel-preset-typescript
,babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
rewriteRelativeImportExtensions
(@JLHwung)babel-cli
@babel/cli
generates duplicate inline source maps (@liuxingbaoyu)babel-plugin-transform-named-capturing-groups-regex
,babel-types
🏃♀️ Performance
babel-types
@babel/types
(@liuxingbaoyu)babel-helper-create-regexp-features-plugin
Committers: 5
v7.26.4
Compare Source
↩️ Revert
babel-traverse
v7.25.9
Compare Source
🐛 Bug Fix
babel-parser
,babel-template
,babel-types
syntacticPlaceholders
mode (@liuxingbaoyu)babel-helper-compilation-targets
,babel-preset-env
ClassAccessorProperty
to prevent theno-undef
rule (@victorenator)🏠 Internal
babel-helper-transform-fixture-test-runner
🏃♀️ Performance
babel-parser
,babel-types
VISITOR_KEYS
etc. faster to access (@liuxingbaoyu)v7.25.7
Compare Source
🐛 Bug Fix
babel-helper-validator-identifier
babel-traverse
babel-plugin-transform-classes
super()
check (@nicolo-ribaudo)babel-generator
infer
in compact mode (@nicolo-ribaudo)[no LineTerminator here]
after nodes (@nicolo-ribaudo)💅 Polish
babel-types
🏠 Internal
babel-core
--experimental-require-module
(@nicolo-ribaudo)babel-helper-compilation-targets
,babel-helper-plugin-utils
,babel-preset-env
babel-plugin-proposal-destructuring-private
,babel-plugin-syntax-decimal
,babel-plugin-syntax-import-reflection
,babel-standalone
babel-generator
[no LineTerminator here]
before nodes (@nicolo-ribaudo)🏃♀️ Performance
babel-plugin-transform-typescript
babel-types
BABEL_TYPES_8_BREAKING
at startup (@nicolo-ribaudo)v7.25.6
Compare Source
🐛 Bug Fix
babel-generator
babel-traverse
path.getAssignmentIdentifiers
may beundefined
(@liuxingbaoyu)babel-parser
babel-helpers
,babel-plugin-transform-optional-chaining
,babel-runtime-corejs3
superPropertyGet
helper (@nicolo-ribaudo)💅 Polish
babel-generator
,babel-plugin-transform-async-to-generator
,babel-plugin-transform-block-scoping
,babel-plugin-transform-class-properties
,babel-plugin-transform-classes
,babel-plugin-transform-duplicate-named-capturing-groups-regex
,babel-plugin-transform-named-capturing-groups-regex
,babel-plugin-transform-react-jsx-development
,babel-plugin-transform-react-jsx
,babel-plugin-transform-react-pure-annotations
,babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
,babel-preset-env
(
and comments (@nicolo-ribaudo)babel-plugin-syntax-import-assertions
,babel-plugin-syntax-import-attributes
babel-generator
🏠 Internal
babel-generator
parent
params in the generator (@nicolo-ribaudo)v7.24.8
[Compare Source](https://re
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.