Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the all-dependencies group across 1 directory with 11 updates #352

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 8, 2024

Bumps the all-dependencies group with 7 updates in the /samples/AspireWithNode/NodeFrontend directory:

Package From To
@opentelemetry/api 1.8.0 1.9.0
@opentelemetry/auto-instrumentations-node 0.46.0 0.48.0
@opentelemetry/exporter-logs-otlp-grpc 0.51.0 0.52.1
@opentelemetry/exporter-metrics-otlp-grpc 0.51.0 0.52.1
@opentelemetry/instrumentation-redis-4 0.39.0 0.41.0
redis 4.6.13 4.6.15
nodemon 3.1.0 3.1.4

Updates @opentelemetry/api from 1.8.0 to 1.9.0

Release notes

Sourced from @​opentelemetry/api's releases.

v1.9.0

🚀 (Enhancement)

  • feat(instrumentation-grpc): set net.peer.name and net.peer.port on client spans #3430

🐛 (Bug Fix)

  • fix(sdk-metrics): use default Resource to comply with semantic conventions #3411 @​pichlermarc
    • Metrics exported by the SDK now contain the following resource attributes by default:
      • service.name
      • telemetry.sdk.name
      • telemetry.sdk.language
      • telemetry.sdk.version
  • fix(sdk-trace): make spans resilient to clock drift #3434 @​dyladan
  • fix(selenium-tests): updated webpack version for selenium test issue #3456 @​SaumyaBhushan
  • fix(sdk-metrics): fix duplicated registration of metrics for collectors #3488 @​legendecas
  • fix(core): fix precision loss in numberToHrtime #3480 @​legendecas

🏠 (Internal)

api/v1.9.0

1.9.0

🚀 (Enhancement)

  • feat(metrics): added synchronous gauge #4528 @​clintonb
  • feat(api): allow adding span links after span creation #4536 @​seemk
    • This change is non-breaking for end-users, but breaking for Trace SDK implmentations in accordance with the specification as new features need to be implemented.
  • feat: support node 22 #4666 @​dyladan
Changelog

Sourced from @​opentelemetry/api's changelog.

1.9.0

🚀 (Enhancement)

  • feat(instrumentation-grpc): set net.peer.name and net.peer.port on client spans #3430
  • feat(exporter-trace-otlp-proto): Add protobuf otlp trace exporter support for browser #3208 @​pkanal

🐛 (Bug Fix)

  • fix(sdk-metrics): use default Resource to comply with semantic conventions #3411 @​pichlermarc
    • Metrics exported by the SDK now contain the following resource attributes by default:
      • service.name
      • telemetry.sdk.name
      • telemetry.sdk.language
      • telemetry.sdk.version
  • fix(sdk-metrics): use Date.now() for instrument recording timestamps #3514 @​MisterSquishy
  • fix(sdk-trace): make spans resilient to clock drift #3434 @​dyladan
  • fix(selenium-tests): updated webpack version for selenium test issue #3456 @​SaumyaBhushan
  • fix(sdk-metrics): collect metrics when periodic exporting metric reader flushes #3517 @​legendecas
  • fix(sdk-metrics): fix duplicated registration of metrics for collectors #3488 @​legendecas
  • fix(core): fix precision loss in numberToHrtime #3480 @​legendecas

🏠 (Internal)

Commits
  • 08f597f chore: release API 1.4.0 / SDK 1.9.0 / 0.35.0 (#3516)
  • 969bb62 fix(tracing): make spans resilient to performance clock drift (#3434)
  • 2dcc898 Document repo settings (#3519)
  • 475e401 docs(sdk-metrics): fix badge and reword introductory sentence (#3484)
  • 126ae93 fix(sdk-node): fix exporter to be read only OTEL_TRACES_EXPORTER is set to a ...
  • c93ab9e fix(core): fix precision loss in numberToHrtime (#3480)
  • 3fd6fb8 fix(sdk-metrics): fix duplicated registration of metrics for collectors (#3488)
  • 93222fc fix(api): declare this parameter type in observable callbacks (#3497)
  • eecb800 feat(sdk-node): configure no-op sdk with OTEL_SDK_DISABLED environment vari...
  • 1c3af6c feat(api-logs): add the SeverityNumber enumeration (#3443)
  • Additional commits viewable in compare view

Updates @opentelemetry/auto-instrumentations-node from 0.46.0 to 0.48.0

Commits

Updates @opentelemetry/exporter-logs-otlp-grpc from 0.51.0 to 0.52.1

Release notes

Sourced from @​opentelemetry/exporter-logs-otlp-grpc's releases.

experimental/v0.52.1

0.52.1

🚀 (Enhancement)

  • refactor(instrumentation-fetch): move fetch to use SEMATRR #4632
  • refactor(otlp-transformer): use explicit exports #4785 @​pichlermarc

🐛 (Bug Fix)

🏠 (Internal)

  • test: add npm run maint:regenerate-test-certs maintenance script and regenerate recently expired test certs #4777

experimental/v0.52.0

0.52.0

💥 Breaking Change

  • feat(exporter--otlp-)!: move serialization for Node.js exporters to @opentelemetry/otlp-transformer #4542 @​pichlermarc
    • Breaking changes:
      • (user-facing) convert() now returns an empty object and will be removed in a follow-up
      • (internal) OTLPExporterNodeBase now has additional constructor parameters that are required
      • (internal) OTLPExporterNodeBase now has an additional ResponseType type parameter
  • feat(exporter--otlp-)!: move serialization for Node.js exporters to @opentelemetry/otlp-transformer #4581 @​pichlermarc
    • Breaking changes:
      • (user-facing) convert() has been removed from all exporters
      • (internal) OTLPExporterBrowserBase: RequestType has been replaced by a ResponseType type-argument
      • (internal) OTLPExporterNodeBase: ServiceRequest has been replaced by a ServiceResponse type-argument
      • (internal) the @opentelemetry/otlp-exporter-proto-base package has been removed, and will from now on be deprecated in npm
  • feat(instrumentation): remove default value for config in base instrumentation constructor #4695: @​blumamir
  • fix(instrumentation)!: remove unused supportedVersions from Instrumentation interface #4694 @​blumamir
  • feat(instrumentation)!: simplify registerInstrumentations() API
    • Breaking changes:
      • removes InstrumentationOptions type
      • occurrences of InstrumentationOptions are now replaced by (Instrumentation | Instrumentation[])[]
        • migrate usages of registerInstrumentations({instrumentations: fooInstrumentation}) to registerInstrumentations({instrumentations: [fooInstrumentation]})
        • passing Instrumentation classes to registerInstrumentations() is now not possible anymore.
  • feat(sdk-node)!: simplify type of instrumentations option
    • Breaking changes:
      • replaces InstrumentationOptions with (Instrumentation | Instrumentation[])[]

🚀 (Enhancement)

  • feat(instrumentation): apply unwrap before wrap in base class #4692

... (truncated)

Commits
  • 0608f40 chore: prepare release 1.25.1/0.52.1 (#4809)
  • cdd5284 feat(instrumentation): Use a caret version for import-in-the-middle depende...
  • 81f78a6 chore(deps): update dependency chromedriver to v126 (#4800)
  • 1041ed4 chore(deps): lock file maintenance (#4801)
  • c07aa53 fix: Update import-in-the-middle (#4806)
  • 3cbc9c7 docs: add SimpleSpanProcessor warning (#4798)
  • 9e421f6 docs(exporter-logs-otlp-http): change OTLPLogsExporter to OTLPLogExporter (#4...
  • dd83751 docs: change to SEMRESATTRS_SERVICE_NAME (#4797)
  • 4fa7c13 refactor(examples/opentelemetry-web): use new exported string constants for s...
  • 812c774 refactor(context-zone-peer-dep): use explicit exports (#4787)
  • Additional commits viewable in compare view

Updates @opentelemetry/exporter-metrics-otlp-grpc from 0.51.0 to 0.52.1

Release notes

Sourced from @​opentelemetry/exporter-metrics-otlp-grpc's releases.

experimental/v0.52.1

0.52.1

🚀 (Enhancement)

  • refactor(instrumentation-fetch): move fetch to use SEMATRR #4632
  • refactor(otlp-transformer): use explicit exports #4785 @​pichlermarc

🐛 (Bug Fix)

🏠 (Internal)

  • test: add npm run maint:regenerate-test-certs maintenance script and regenerate recently expired test certs #4777

experimental/v0.52.0

0.52.0

💥 Breaking Change

  • feat(exporter--otlp-)!: move serialization for Node.js exporters to @opentelemetry/otlp-transformer #4542 @​pichlermarc
    • Breaking changes:
      • (user-facing) convert() now returns an empty object and will be removed in a follow-up
      • (internal) OTLPExporterNodeBase now has additional constructor parameters that are required
      • (internal) OTLPExporterNodeBase now has an additional ResponseType type parameter
  • feat(exporter--otlp-)!: move serialization for Node.js exporters to @opentelemetry/otlp-transformer #4581 @​pichlermarc
    • Breaking changes:
      • (user-facing) convert() has been removed from all exporters
      • (internal) OTLPExporterBrowserBase: RequestType has been replaced by a ResponseType type-argument
      • (internal) OTLPExporterNodeBase: ServiceRequest has been replaced by a ServiceResponse type-argument
      • (internal) the @opentelemetry/otlp-exporter-proto-base package has been removed, and will from now on be deprecated in npm
  • feat(instrumentation): remove default value for config in base instrumentation constructor #4695: @​blumamir
  • fix(instrumentation)!: remove unused supportedVersions from Instrumentation interface #4694 @​blumamir
  • feat(instrumentation)!: simplify registerInstrumentations() API
    • Breaking changes:
      • removes InstrumentationOptions type
      • occurrences of InstrumentationOptions are now replaced by (Instrumentation | Instrumentation[])[]
        • migrate usages of registerInstrumentations({instrumentations: fooInstrumentation}) to registerInstrumentations({instrumentations: [fooInstrumentation]})
        • passing Instrumentation classes to registerInstrumentations() is now not possible anymore.
  • feat(sdk-node)!: simplify type of instrumentations option
    • Breaking changes:
      • replaces InstrumentationOptions with (Instrumentation | Instrumentation[])[]

🚀 (Enhancement)

  • feat(instrumentation): apply unwrap before wrap in base class #4692

... (truncated)

Commits
  • 0608f40 chore: prepare release 1.25.1/0.52.1 (#4809)
  • cdd5284 feat(instrumentation): Use a caret version for import-in-the-middle depende...
  • 81f78a6 chore(deps): update dependency chromedriver to v126 (#4800)
  • 1041ed4 chore(deps): lock file maintenance (#4801)
  • c07aa53 fix: Update import-in-the-middle (#4806)
  • 3cbc9c7 docs: add SimpleSpanProcessor warning (#4798)
  • 9e421f6 docs(exporter-logs-otlp-http): change OTLPLogsExporter to OTLPLogExporter (#4...
  • dd83751 docs: change to SEMRESATTRS_SERVICE_NAME (#4797)
  • 4fa7c13 refactor(examples/opentelemetry-web): use new exported string constants for s...
  • 812c774 refactor(context-zone-peer-dep): use explicit exports (#4787)
  • Additional commits viewable in compare view

Updates @opentelemetry/exporter-trace-otlp-grpc from 0.51.0 to 0.51.1

Release notes

Sourced from @​opentelemetry/exporter-trace-otlp-grpc's releases.

Experimental v0.51.1

0.51.1

🐛 (Bug Fix)

  • fix(instrumentation): update import-in-the-middle to 1.7.4
Commits
  • 41c2626 Merge pull request #4682 from dynatrace-oss-contrib/release/1.24.x-0.51.x-2
  • 7cb72a6 chore: prepare release 1.24.1/0.51.1
  • 8a6d03f chore: sync package-lock.json, adapt changelog
  • dfc883c fix(exporter-metrics-otlp-grpc) Add explicit otlp-exporter-base depen… (#4678)
  • 75817d7 fix(deps): update dependency import-in-the-middle to v1.7.4 (#4667)
  • fe132d7 fix(core): align inconsistent behavior of getEnv() and getEnvWithoutDefaults(...
  • 307e33a fix(resources): prevent circular import (resource -> detector -> resource -> ...
  • See full diff in compare view

Updates @opentelemetry/instrumentation-redis-4 from 0.39.0 to 0.41.0

Commits
  • b31df37 chore: release main (#2083)
  • f3406ea chore: remove patch and unpatch diag from instrumentations (#2107)
  • 73e01f2 chore(examples/graphql): use exported strings for attributes (#2122)
  • 80cbee7 chore: experimental 0.51.0, remove instrumentations generic type to align wit...
  • 46b6775 test(instr-document-load): fix test to allow missing network span events (#2145)
  • 931318c refactor(instr-aws-sdk): use exported strings for attributes (#2142)
  • 77452c1 chore(examples/connect): use exported strings for attributes (#2120)
  • 5f1910b chore(examples/web): use exported strings for attributes (#2129)
  • 0d38081 docs: remove key column on readme (#2132)
  • 2d709ec chore(instrumentation-fs): remove unused semconv package (#2141)
  • Additional commits viewable in compare view

Updates @opentelemetry/sdk-logs from 0.51.0 to 0.51.1

Release notes

Sourced from @​opentelemetry/sdk-logs's releases.

Experimental v0.51.1

0.51.1

🐛 (Bug Fix)

  • fix(instrumentation): update import-in-the-middle to 1.7.4
Commits
  • 41c2626 Merge pull request #4682 from dynatrace-oss-contrib/release/1.24.x-0.51.x-2
  • 7cb72a6 chore: prepare release 1.24.1/0.51.1
  • 8a6d03f chore: sync package-lock.json, adapt changelog
  • dfc883c fix(exporter-metrics-otlp-grpc) Add explicit otlp-exporter-base depen… (#4678)
  • 75817d7 fix(deps): update dependency import-in-the-middle to v1.7.4 (#4667)
  • fe132d7 fix(core): align inconsistent behavior of getEnv() and getEnvWithoutDefaults(...
  • 307e33a fix(resources): prevent circular import (resource -> detector -> resource -> ...
  • See full diff in compare view

Updates @opentelemetry/sdk-metrics from 1.24.0 to 1.25.1

Release notes

Sourced from @​opentelemetry/sdk-metrics's releases.

v1.25.1

1.25.1

📚 (Refine Doc)

  • refactor(examples): added usage of @​opentelemetry/semantic-conventions and @​opentelemetry/resources to the examples in examples/opentelemetry-web for maintaining consistency across all examples. #4764 @​Zen-cronic

🏠 (Internal)

v1.25.0

1.25.0

🚀 (Enhancement)

📚 (Refine Doc)

  • refactor(examples): use new exported string constants for semconv in examples/esm-http-ts #4758 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/basic-tracer-node #4759 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/http #4750 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/grpc-js #4760 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/otlp-exporter-node #4762 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/opentracing-shim #4761 @​Zen-cronic

v1.24.1

1.24.1

🐛 (Bug Fix)

  • fix(core): align inconsistent behavior of getEnv() and getEnvWithoutDefaults() when a process polyfill is used #4648 @​pichlermarc
    • getEnvWithoutDefaults() would use process.env if it was defined when running in a browser, while getEnv() would always use _globalThis. Now both use _globalThis when running in a browser.
  • fix(resources): prevent circular import (resource -> detector -> resource -> ...) #4653 @​pichlermarc
    • fixes a circular import warning which would appear in rollup when bundling @opentelemetry/resources
  • fix(exporter-metrics-otlp-grpc): add explicit otlp-exporter-base dependency to exporter-metrics-otlp-grpc #4678 @​AkselAllas
Changelog

Sourced from @​opentelemetry/sdk-metrics's changelog.

1.25.1

📚 (Refine Doc)

  • refactor(examples): added usage of @​opentelemetry/semantic-conventions and @​opentelemetry/resources to the examples in examples/opentelemetry-web for maintaining consistency across all examples. #4764 @​Zen-cronic

🏠 (Internal)

1.25.0

🚀 (Enhancement)

📚 (Refine Doc)

  • refactor(examples): use new exported string constants for semconv in examples/esm-http-ts #4758 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/basic-tracer-node #4759 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/http #4750 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/grpc-js #4760 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/otlp-exporter-node #4762 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/opentracing-shim #4761 @​Zen-cronic

1.24.1

🐛 (Bug Fix)

  • fix(core): align inconsistent behavior of getEnv() and getEnvWithoutDefaults() when a process polyfill is used #4648 @​pichlermarc
    • getEnvWithoutDefaults() would use process.env if it was defined when running in a browser, while getEnv() would always use _globalThis. Now both use _globalThis when running in a browser.
  • fix(resources): prevent circular import (resource -> detector -> resource -> ...) #4653 @​pichlermarc
    • fixes a circular import warning which would appear in rollup when bundling @opentelemetry/resources
  • fix(exporter-metrics-otlp-grpc): add explicit otlp-exporter-base dependency to exporter-metrics-otlp-grpc #4678 @​AkselAllas
Commits
  • 0608f40 chore: prepare release 1.25.1/0.52.1 (#4809)
  • cdd5284 feat(instrumentation): Use a caret version for import-in-the-middle depende...
  • 81f78a6 chore(deps): update dependency chromedriver to v126 (#4800)
  • 1041ed4 chore(deps): lock file maintenance (#4801)
  • c07aa53 fix: Update import-in-the-middle (#4806)
  • 3cbc9c7 docs: add SimpleSpanProcessor warning (#4798)
  • 9e421f6 docs(exporter-logs-otlp-http): change OTLPLogsExporter to OTLPLogExporter (#4...
  • dd83751 docs: change to SEMRESATTRS_SERVICE_NAME (#4797)
  • 4fa7c13 refactor(examples/opentelemetry-web): use new exported string constants for s...
  • 812c774 refactor(context-zone-peer-dep): use explicit exports (#4787)
  • Additional commits viewable in compare view

Updates @opentelemetry/sdk-node from 0.51.0 to 0.51.1

Release notes

Sourced from @​opentelemetry/sdk-node's releases.

Experimental v0.51.1

0.51.1

🐛 (Bug Fix)

  • fix(instrumentation): update import-in-the-middle to 1.7.4
Commits
  • 41c2626 Merge pull request #4682 from dynatrace-oss-contrib/release/1.24.x-0.51.x-2
  • 7cb72a6 chore: prepare release 1.24.1/0.51.1
  • 8a6d03f chore: sync package-lock.json, adapt changelog
  • dfc883c fix(exporter-metrics-otlp-grpc) Add explicit otlp-exporter-base depen… (#4678)
  • 75817d7 fix(deps): update dependency import-in-the-middle to v1.7.4 (#4667)
  • fe132d7 fix(core): align inconsistent behavior of getEnv() and getEnvWithoutDefaults(...
  • 307e33a fix(resources): prevent circular import (resource -> detector -> resource -> ...
  • See full diff in compare view

Updates redis from 4.6.13 to 4.6.15

Release notes

Sourced from redis's releases.

[email protected]

Enhancements

  • Upgrade @redis/client from 1.5.16 to 1.5.17

[email protected]

Enhancements

  • Upgrade @redis/client from 1.5.14 to 1.5.16
Commits

Updates nodemon from 3.1.0 to 3.1.4

Release notes

Sourced from nodemon's releases.

v3.1.4

3.1.4 (2024-06-20)

Bug Fixes

v3.1.3

3.1.3 (2024-06-03)

Bug Fixes

  • cast the nodemon function as Nodemon type (eaa1d54), closes #2206

v3.1.2

3.1.2 (2024-05-29)

Bug Fixes

v3.1.1

3.1.1 (2024-05-25)

Bug Fixes

  • add types to help with required nodemon usage (#2204) (cd27c0b)
Commits
  • d7cfe08 docs: clarify how to handle SIGUSR2
  • 6020968 fix: ensure local env have priority
  • bb34032 chore: website
  • 4688b68 chore: website
  • eaa1d54 fix: cast the nodemon function as Nodemon type
  • 789663c fix: Type exports correctly (#2207)
  • 287db41 Merge branch 'main' of github.com:remy/nodemon
  • 9ecd9db chore: update website
  • cd27c0b fix: add types to help with required nodemon usage (#2204)
  • 1707f92 chore: website
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@danmoseley
Copy link
Member

2024-07-08T06:54:56.6799038Z [xUnit.net 00:07:16.29]     SamplesIntegrationTests.AppHostTests.TestEndpointsReturnOk(testEndpoints: AspireWithNode.AppHost (2 resources)) [FAIL]
2024-07-08T06:54:56.6857082Z info: Aspire.Hosting.DistributedApplication[0]
2024-07-08T06:54:56.6858030Z       Aspire version: 8.0.1+a6e341ebbf956bbcec0dda304109815fcbae70c9
2024-07-08T06:54:56.6859481Z info: Aspire.Hosting.DistributedApplication[0]
2024-07-08T06:54:56.6860215Z       Distributed application starting.
2024-07-08T06:54:56.6860991Z info: Aspire.Hosting.DistributedApplication[0]
2024-07-08T06:54:56.6862827Z       Application host directory is: /home/runner/work/aspire-samples/aspire-samples/samples/HealthChecksUI/HealthChecksUI.AppHost
2024-07-08T06:54:56.6872498Z   Failed SamplesIntegrationTests.AppHostTests.TestEndpointsReturnOk(testEndpoints: AspireWithNode.AppHost (2 resources)) [5 m 3 s]
2024-07-08T06:54:56.6874333Z   Error Message:
2024-07-08T06:54:56.6875887Z    Polly.Timeout.TimeoutRejectedException : The operation didn't complete within the allowed timeout of '00:05:00'.
2024-07-08T06:54:56.6877949Z ---- System.Threading.Tasks.TaskCanceledException : The operation was canceled.
2024-07-08T06:54:56.6879841Z -------- System.IO.IOException : Unable to read data from the transport connection: Operation canceled.
2024-07-08T06:54:56.6881951Z ------------ System.Net.Sockets.SocketException : Operation canceled
2024-07-08T06:54:56.6882951Z   Stack Trace:
2024-07-08T06:54:56.6883868Z      at Polly.Utils.ExceptionUtilities.TrySetStackTrace[T](T exception)
2024-07-08T06:54:56.6885778Z    at Polly.Timeout.TimeoutResilienceStrategy.ExecuteCore[TResult,TState](Func`3 callback, ResilienceContext context, TState state)
2024-07-08T06:54:56.6888080Z    at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.ExecutionContextCallback(Object s)
2024-07-08T06:54:56.6890846Z    at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/samples/AspireWithNode/NodeFrontend/all-dependencies-24601e7b22 branch 2 times, most recently from e359fbc to 83fa1bc Compare July 15, 2024 22:51
@danmoseley
Copy link
Member

@dependabot ignore eslint major version

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/samples/AspireWithNode/NodeFrontend/all-dependencies-24601e7b22 branch from 83fa1bc to 59e66f4 Compare July 20, 2024 15:14
@danmoseley
Copy link
Member

danmoseley commented Jul 20, 2024

 2024-07-20T15:19:15.9553081+00:00 Resource 'frontend' error: npm error Conflicting peer dependency: @opentelemetry/[email protected]
 2024-07-20T15:19:15.9553110+00:00 Resource 'frontend' error: npm error node_modules/@opentelemetry/api
 2024-07-20T15:19:15.9553136+00:00 Resource 'frontend' error: npm error   peer @opentelemetry/api@">=1.4.0 <1.9.0" from @opentelemetry/[email protected]

needs @opentelemetry/[email protected] update?

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/samples/AspireWithNode/NodeFrontend/all-dependencies-24601e7b22 branch 2 times, most recently from 02e7913 to fc72b5e Compare July 22, 2024 07:06
@danmoseley
Copy link
Member

[xUnit.net 00:07:33.12]     SamplesIntegrationTests.AppHostTests.TestEndpointsReturnOk(testEndpoints: AspireWithNode.AppHost (2 resources)) [FAIL]
info: Aspire.Hosting.DistributedApplication[0]
      Aspire version: 8.0.1+a6e341ebbf956bbcec0dda304109815fcbae70c9
info: Aspire.Hosting.DistributedApplication[0]
      Distributed application starting.
info: Aspire.Hosting.DistributedApplication[0]
      Application host directory is: /home/runner/work/aspire-samples/aspire-samples/samples/HealthChecksUI/HealthChecksUI.AppHost
  Failed SamplesIntegrationTests.AppHostTests.TestEndpointsReturnOk(testEndpoints: AspireWithNode.AppHost (2 resources)) [5 m 3 s]
  Error Message:
   Polly.Timeout.TimeoutRejectedException : The operation didn't complete within the allowed timeout of '00:05:00'.
---- System.Threading.Tasks.TaskCanceledException : The operation was canceled.
-------- System.IO.IOException : Unable to read data from the transport connection: Operation canceled.
------------ System.Net.Sockets.SocketException : Operation canceled
  Stack Trace:
     at Polly.Utils.ExceptionUtilities.TrySetStackTrace[T](T exception)
   at Polly.Timeout.TimeoutResilienceStrategy.ExecuteCore[TResult,TState](Func`3 callback, ResilienceContext context, TState state)
   at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.ExecutionContextCallback(Object s)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.MoveNext(Thread threadPoolThread)
   at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.MoveNext()
   at System.Threading.Tasks.AwaitTaskContinuation.RunOrScheduleAction(IAsyncStateMachineBox box, Boolean allowInlining)
   at System.Threading.Tasks.Task.RunContinuations(Object continuationObject)
   at System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetResult(TResult result)
   at Polly.Utils.StrategyHelper.<ExecuteCallbackSafeAsync>g__AwaitTask|0_0[TResult,TState,T](ValueTask`1 task, Boolean continueOnCapturedContext)

@radical don't know whether you're looking at aspire-samples tests.

Bumps the all-dependencies group with 7 updates in the /samples/AspireWithNode/NodeFrontend directory:

| Package | From | To |
| --- | --- | --- |
| [@opentelemetry/api](https://github.com/open-telemetry/opentelemetry-js) | `1.8.0` | `1.9.0` |
| [@opentelemetry/auto-instrumentations-node](https://github.com/open-telemetry/opentelemetry-js-contrib) | `0.46.0` | `0.48.0` |
| [@opentelemetry/exporter-logs-otlp-grpc](https://github.com/open-telemetry/opentelemetry-js) | `0.51.0` | `0.52.1` |
| [@opentelemetry/exporter-metrics-otlp-grpc](https://github.com/open-telemetry/opentelemetry-js) | `0.51.0` | `0.52.1` |
| [@opentelemetry/instrumentation-redis-4](https://github.com/open-telemetry/opentelemetry-js-contrib) | `0.39.0` | `0.41.0` |
| [redis](https://github.com/redis/node-redis) | `4.6.13` | `4.6.15` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.0` | `3.1.4` |



Updates `@opentelemetry/api` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v1.8.0...v1.9.0)

Updates `@opentelemetry/auto-instrumentations-node` from 0.46.0 to 0.48.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js-contrib@instrumentation-mongodb-v0.46.0...auto-instrumentations-node-v0.48.0)

Updates `@opentelemetry/exporter-logs-otlp-grpc` from 0.51.0 to 0.52.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.51.0...experimental/v0.52.1)

Updates `@opentelemetry/exporter-metrics-otlp-grpc` from 0.51.0 to 0.52.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.51.0...experimental/v0.52.1)

Updates `@opentelemetry/exporter-trace-otlp-grpc` from 0.51.0 to 0.51.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.51.0...experimental/v0.51.1)

Updates `@opentelemetry/instrumentation-redis-4` from 0.39.0 to 0.41.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js-contrib@instrumentation-pg-v0.39.0...instrumentation-pg-v0.41.0)

Updates `@opentelemetry/sdk-logs` from 0.51.0 to 0.51.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.51.0...experimental/v0.51.1)

Updates `@opentelemetry/sdk-metrics` from 1.24.0 to 1.25.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v1.24.0...v1.25.1)

Updates `@opentelemetry/sdk-node` from 0.51.0 to 0.51.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.51.0...experimental/v0.51.1)

Updates `redis` from 4.6.13 to 4.6.15
- [Release notes](https://github.com/redis/node-redis/releases)
- [Changelog](https://github.com/redis/node-redis/blob/master/CHANGELOG.md)
- [Commits](https://github.com/redis/node-redis/compare/[email protected]@4.6.15)

Updates `nodemon` from 3.1.0 to 3.1.4
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.0...v3.1.4)

---
updated-dependencies:
- dependency-name: "@opentelemetry/api"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/auto-instrumentations-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/exporter-logs-otlp-grpc"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/exporter-metrics-otlp-grpc"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/exporter-trace-otlp-grpc"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/instrumentation-redis-4"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/sdk-logs"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/sdk-metrics"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/sdk-node"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: redis
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: nodemon
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/samples/AspireWithNode/NodeFrontend/all-dependencies-24601e7b22 branch from fc72b5e to ddc3328 Compare July 29, 2024 06:15
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 5, 2024

Superseded by #398.

1 similar comment
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 5, 2024

Superseded by #398.

@dependabot dependabot bot closed this Aug 5, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 5, 2024

Superseded by #398.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/samples/AspireWithNode/NodeFrontend/all-dependencies-24601e7b22 branch August 5, 2024 06:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant