Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Dec 20, 2022

Bumps azure-functions-java-library from 1.4.2 to 3.0.0.

Release notes

Sourced from azure-functions-java-library's releases.

Release 2.8.1

Updates

Fix potential NPE Azure/azure-functions-java-worker#684

Full Changelog: Azure/azure-functions-java-worker@2.8.0...2.8.1

Release 2.8.0

New

Updates

  • update java library, core library, spi versions #673
  • update distribute agent version to 3.4.4 #681

Full Changelog: Azure/azure-functions-java-worker@2.7.0...2.8.0


Function instance injector for dependency injection

azure-function-java-spi contains an interface FunctionInstanceInjector

/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 */
package com.microsoft.azure.functions.spi.inject;
/**

The instance factory used by DI framework to initialize function instance.

@​since 1.0.0
/
public interface FunctionInstanceInjector {
/*

This method is used by DI framework to initialize the function instance. This method takes in the customer class and returns
an instance create by the DI framework, later customer functions will be invoked on this instance.
@​param functionClass the class that contains customer functions
@​param <T> customer functions class type
@​return the instance that will be invoked on by azure functions java worker
@​throws Exception any exception that is thrown by the DI framework during instance creation
*/
<T> T getInstance(Class<T> functionClass) throws Exception;
}

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [azure-functions-java-library](https://github.com/Azure/azure-functions-java-worker) from 1.4.2 to 3.0.0.
- [Release notes](https://github.com/Azure/azure-functions-java-worker/releases)
- [Commits](https://github.com/Azure/azure-functions-java-worker/commits)

---
updated-dependencies:
- dependency-name: com.microsoft.azure.functions:azure-functions-java-library
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Dec 20, 2022

The following labels could not be found: area/dependencies.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant