Skip to content

Commit 126aa98

Browse files
Highbury1993Wenfeng Zhu
andauthored
chore(dev): release 11.1.3 (#3915)
Co-authored-by: Wenfeng Zhu <[email protected]>
1 parent a4d2f20 commit 126aa98

File tree

10 files changed

+44
-16
lines changed

10 files changed

+44
-16
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "11.1.1"
2+
".": "11.1.3"
33
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
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.
44

5+
## [11.1.3](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.2...v11.1.3) (2025-07-10)
6+
7+
8+
### Bug Fixes
9+
10+
* punctuation in readme ([9609793](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/9609793273311a51ab8592adbd109110cace4c6c))
11+
12+
## [11.1.2](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.1...v11.1.2) (2025-07-08)
13+
14+
15+
### Bug Fixes
16+
17+
* 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))
18+
519
## [11.1.1](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.0...v11.1.1) (2025-05-14)
620

721

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Microsoft Graph Explorer is built and developed using node v18.
2727
## Other commands
2828

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

3232
## Getting Help & Guides
3333

package-lock.json

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph-explorer-v2",
3-
"version": "11.1.1",
3+
"version": "11.1.3",
44
"private": true,
55
"dependencies": {
66
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ sonar.projectKey=microsoftgraph_microsoft-graph-explorer-v4
22
sonar.organization=microsoftgraph2
33
sonar.projectName=microsoft-graph-explorer-v4
44
// x-release-please-start-version
5-
sonar.projectVersion=11.1.1
5+
sonar.projectVersion=11.1.3
66
// x-release-please-end
77
sonar.host.url=https://sonarcloud.io
88

src/app/views/main-header/MainHeader.tsx

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
import { makeStyles, Text, tokens } from '@fluentui/react-components';
1+
import { Text, makeStyles, tokens } from '@fluentui/react-components';
2+
import { useAppDispatch, useAppSelector } from '../../../store';
3+
24
import Authentication from '../authentication/Authentication';
35
import { FeedbackButton } from './FeedbackButton';
46
import { Help } from './Help';
7+
import { PanelLeftExpand20Regular } from '@fluentui/react-icons';
58
import { Settings } from './settings/Settings';
69
import { Tenant } from './Tenant';
7-
import { useAppDispatch, useAppSelector } from '../../../store';
810
import { toggleSidebar } from '../../services/slices/sidebar-properties.slice';
9-
import { PanelLeftExpand20Regular } from '@fluentui/react-icons';
11+
import { translateMessage } from '../../utils/translate-messages';
12+
1013
const useStyles = makeStyles({
1114
root: {
1215
display: 'flex',
@@ -58,7 +61,14 @@ const MainHeader = ()=>{
5861
{mobileScreen && (
5962
<PanelLeftExpand20Regular className={styles.menuIcon} onClick={handleSidebarToggle} />
6063
)}
61-
<Text size={mobileScreen ? 500 : 600} as="h1" className={styles.headerText}>Graph Explorer</Text>
64+
<Text
65+
size={mobileScreen ? 500 : 600} as="h1"
66+
style={{lineHeight: '28px',
67+
color: tokens.colorBrandForeground1
68+
}}
69+
className="notranslate">
70+
{translateMessage('Graph Explorer')}
71+
</Text>
6272
</div>
6373
<HeaderIcons />
6474
</div>

src/app/views/query-response/snippets/Snippets.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ const supportedLanguages: LanguageSnippet = {
5555
Python: {
5656
sdkDownloadLink: 'https://aka.ms/msgraphpythonsdk',
5757
sdkDocLink: 'https://aka.ms/sdk-doc'
58-
},
59-
CLI: {
60-
sdkDownloadLink: 'https://aka.ms/msgraphclisdk',
61-
sdkDocLink: 'https://aka.ms/sdk-doc'
6258
}
6359
};
6460

src/app/views/sidebar/sample-queries/tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export function getTokens(user?: any) {
150150
},
151151
{
152152
placeholder: 'user-mail',
153-
demoTenantValue: '[email protected].com',
153+
demoTenantValue: '[email protected].com',
154154
authenticatedUserValueFn: () => {
155155
return emailAddress;
156156
}

src/messages/GE.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@
515515
"sample queries group has ": "sample queries group has ",
516516
"Getting profile details":"Getting profile details",
517517
"Banner notification 1 header": "New to Graph Explorer?",
518-
"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.",
518+
"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.",
519519
"Banner notification 1 link text": "Follow a step-by-step tutorial",
520520
"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",
521521
"Dismiss banner": "Dismiss banner",

0 commit comments

Comments
 (0)