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

chore(main): release 3.3.0 #1756

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.2.1"
".": "3.3.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.3.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.2.1...v3.3.0) (2024-09-30)


### Features

* support authorization handler in middleware pipeline ([e0b5675](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/e0b56758d869a8621db3125d950dbe904777c833))

## [3.2.1](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.2.0...v3.2.1) (2024-09-09)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repositories {
dependencies {
// Include the sdk as a dependency
// x-release-please-start-version
implementation 'com.microsoft.graph:microsoft-graph-core:3.2.1'
implementation 'com.microsoft.graph:microsoft-graph-core:3.3.0'
// x-release-please-end
// This dependency is only needed if you are using the TokenCredentialAuthProvider
implementation 'com.azure:azure-identity:1.11.0'
Expand All @@ -40,7 +40,7 @@ Add the dependency in `dependencies` in pom.xml
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-core</artifactId>
<!--x-release-please-start-version-->
<version>3.2.1</version>
<version>3.3.0</version>
<!--x-release-please-end-->
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
<groupId>com.azure</groupId>
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ mavenArtifactId = microsoft-graph-core
mavenMajorVersion = 3
# x-release-please-end
# x-release-please-start-minor
mavenMinorVersion = 2
mavenMinorVersion = 3
# x-release-please-end
# x-release-please-start-patch
mavenPatchVersion = 1
mavenPatchVersion = 0
# x-release-please-end
mavenArtifactSuffix =

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-core</artifactId>
<!--x-release-please-start-version-->
<version>3.2.1</version>
<version>3.3.0</version>
<!--x-release-please-end-->
<packaging>pom</packaging>

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/microsoft/graph/core/CoreConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ private static class VersionValues {
private static final int MAJOR = 3;
// x-release-please-end
// x-release-please-start-minor
private static final int MINOR = 2;
private static final int MINOR = 3;
// x-release-please-end
// x-release-please-start-patch
private static final int PATCH = 1;
private static final int PATCH = 0;
// x-release-please-end
}

Expand Down