Skip to content
Open
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 @@
{
".": "2.4.0"
".": "3.0.0"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.0.0](https://github.com/microsoftgraph/msgraph-sdk-php-core/compare/v2.4.0...v3.0.0) (2026-03-30)


### ⚠ BREAKING CHANGES

* drop PHP 7.4–8.1 support to address insecure dependencies ([#224](https://github.com/microsoftgraph/msgraph-sdk-php-core/issues/224))

### Bug Fixes

* drop PHP 7.4–8.1 support to address insecure dependencies ([#224](https://github.com/microsoftgraph/msgraph-sdk-php-core/issues/224)) ([a640e86](https://github.com/microsoftgraph/msgraph-sdk-php-core/commit/a640e861f6acc244262c0c833320db3974aa6126))

## [2.4.0](https://github.com/microsoftgraph/msgraph-sdk-php-core/compare/v2.3.1...v2.4.0) (2025-03-28)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To install the `microsoft-graph-core` library with Composer, either run `compose
{
"require": {
// x-release-please-start-version
"microsoft/microsoft-graph-core": "^2.4.0"
"microsoft/microsoft-graph-core": "^3.0.0"
// x-release-please-end
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/GraphConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ final class GraphConstants

// Define HTTP request constants
// x-release-please-start-version
const SDK_VERSION = "2.4.0";
const SDK_VERSION = "3.0.0";
// x-release-please-end

// Define error constants
Expand Down
Loading