Skip to content
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 @@
{
".": "11.1.1"
".": "11.1.3"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [11.1.3](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.2...v11.1.3) (2025-07-10)


### Bug Fixes

* punctuation in readme ([9609793](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/9609793273311a51ab8592adbd109110cace4c6c))

## [11.1.2](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.1...v11.1.2) (2025-07-08)


### Bug Fixes

* removes the CLI generation ([#3906](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3906)) ([1650a0d](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/1650a0da0c607df49b19fdcaab817d0a58b474b9))

## [11.1.1](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.0...v11.1.1) (2025-05-14)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Microsoft Graph Explorer is built and developed using node v18.
## Other commands

- `npm test` to run tests from the command line for scenarios like parsing metadata and functional explorer tests.
- `npm run lint` linting your files
- `npm run lint` linting your files.

## Getting Help & Guides

Expand Down
12 changes: 10 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph-explorer-v2",
"version": "11.1.1",
"version": "11.1.3",
"private": true,
"dependencies": {
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sonar.projectKey=microsoftgraph_microsoft-graph-explorer-v4
sonar.organization=microsoftgraph2
sonar.projectName=microsoft-graph-explorer-v4
// x-release-please-start-version
sonar.projectVersion=11.1.1
sonar.projectVersion=11.1.3
// x-release-please-end
sonar.host.url=https://sonarcloud.io

Expand Down
18 changes: 14 additions & 4 deletions src/app/views/main-header/MainHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import { makeStyles, Text, tokens } from '@fluentui/react-components';
import { Text, makeStyles, tokens } from '@fluentui/react-components';
import { useAppDispatch, useAppSelector } from '../../../store';

import Authentication from '../authentication/Authentication';
import { FeedbackButton } from './FeedbackButton';
import { Help } from './Help';
import { PanelLeftExpand20Regular } from '@fluentui/react-icons';
import { Settings } from './settings/Settings';
import { Tenant } from './Tenant';
import { useAppDispatch, useAppSelector } from '../../../store';
import { toggleSidebar } from '../../services/slices/sidebar-properties.slice';
import { PanelLeftExpand20Regular } from '@fluentui/react-icons';
import { translateMessage } from '../../utils/translate-messages';

const useStyles = makeStyles({
root: {
display: 'flex',
Expand Down Expand Up @@ -58,7 +61,14 @@ const MainHeader = ()=>{
{mobileScreen && (
<PanelLeftExpand20Regular className={styles.menuIcon} onClick={handleSidebarToggle} />
)}
<Text size={mobileScreen ? 500 : 600} as="h1" className={styles.headerText}>Graph Explorer</Text>
<Text
size={mobileScreen ? 500 : 600} as="h1"
style={{lineHeight: '28px',
color: tokens.colorBrandForeground1
}}
className="notranslate">
{translateMessage('Graph Explorer')}
</Text>
</div>
<HeaderIcons />
</div>
Expand Down
4 changes: 0 additions & 4 deletions src/app/views/query-response/snippets/Snippets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ const supportedLanguages: LanguageSnippet = {
Python: {
sdkDownloadLink: 'https://aka.ms/msgraphpythonsdk',
sdkDocLink: 'https://aka.ms/sdk-doc'
},
CLI: {
sdkDownloadLink: 'https://aka.ms/msgraphclisdk',
sdkDocLink: 'https://aka.ms/sdk-doc'
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/app/views/sidebar/sample-queries/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export function getTokens(user?: any) {
},
{
placeholder: 'user-mail',
demoTenantValue: 'MiriamG@M365x214355.onmicrosoft.com',
demoTenantValue: 'AdeleV@M365x63639251.OnMicrosoft.com',
authenticatedUserValueFn: () => {
return emailAddress;
}
Expand Down
2 changes: 1 addition & 1 deletion src/messages/GE.json
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
"sample queries group has ": "sample queries group has ",
"Getting profile details":"Getting profile details",
"Banner notification 1 header": "New to Graph Explorer?",
"Banner notification 1 content": "Graph Explorer is a developer tool that let's you learn about Microsoft Graph APIs. Use Graph Explorer to try the APIs on the default sample tenant to explore capabilities.",
"Banner notification 1 content": "Graph Explorer is a developer tool that lets you learn about Microsoft Graph APIs. Use Graph Explorer to try the APIs on the default sample tenant to explore capabilities.",
"Banner notification 1 link text": "Follow a step-by-step tutorial",
"Banner notification 1 link": "https://learn.microsoft.com/graph/graph-explorer/graph-explorer-overview?view=graph-rest-1.0/?WT.mc_id=msgraph_inproduct_graphex",
"Dismiss banner": "Dismiss banner",
Expand Down
Loading