Skip to content

Commit

Permalink
Merge branch 'version-3' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
juliemturner committed Sep 11, 2023
2 parents bc4941c + bef55e2 commit 0e3fcfd
Show file tree
Hide file tree
Showing 11 changed files with 366 additions and 8,550 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 🐞 Bug or Error Report
description: Submit a bug or error report.
labels: ["type: something isn't working", "status: investigate"]
labels: ["type: someting isn't working", "status: investigate"]

body:
- type: markdown
Expand All @@ -19,7 +19,7 @@ body:
- 3.x
- 2.x (No longer supported)
- 1.x (No longer supported)
default: 3.x
default: 1
validations:
required: true
- type: input
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ body:
- 3.x
- 2.x (No longer supported)
- 1.x (No longer supported)
default: 3.x
default: 1
validations:
required: true
- type: input
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 3.18.0 - 2023-Sept-11

- queryable
- missing .js extensions on 2 files.

## 3.17.0 - 2023-Jul-24

- sp/graph
Expand Down
4 changes: 2 additions & 2 deletions docs/sp/profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,11 +380,11 @@ clientPeoplePickerResolveUser(queryParams: IClientPeoplePickerQueryParameters):

```typescript
const sp = spfi(...);
const result = await sp.profiles.clientPeoplePickerSearchUser({
const result = await sp.profiles.clientPeoplePickerResolveUser({
AllowEmailAddresses: true,
AllowMultipleEntities: false,
MaximumEntitySuggestions: 25,
QueryString: 'John'
QueryString: '[email protected]'
});
```

Expand Down
8,854 changes: 333 additions & 8,521 deletions package-lock.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,39 @@
"name": "@pnp/monorepo",
"private": true,
"type": "module",
"version": "3.17.0",
"version": "3.18.0",
"description": "A JavaScript library for SharePoint & Graph development.",
"devDependencies": {
"@azure/identity": "3.2.4",
"@azure/msal-node": "1.18.0",
"@microsoft/microsoft-graph-types": "2.35.0",
"@azure/identity": "3.3.0",
"@azure/msal-node": "1.18.3",
"@microsoft/microsoft-graph-types": "2.38.0",
"@pnp/buildsystem": "3.1.0",
"@types/chai": "4.3.5",
"@types/chai-as-promised": "7.1.5",
"@types/core-js": "2.5.5",
"@types/chai": "4.3.6",
"@types/chai-as-promised": "7.1.6",
"@types/core-js": "2.5.6",
"@types/findup-sync": "4.0.2",
"@types/gulp": "4.0.13",
"@types/mocha": "10.0.1",
"@types/node": "16.11.7",
"@types/webpack": "5.28.1",
"@types/webpack": "5.28.2",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"chai": "4.3.7",
"chai": "4.3.8",
"chai-as-promised": "7.1.1",
"del-cli": "5.0.0",
"eslint": "8.45.0",
"del-cli": "5.1.0",
"eslint": "8.49.0",
"findup-sync": "5.0.0",
"mocha": "10.2.0",
"msal": "1.4.18",
"node-fetch": "3.3.1",
"node-fetch": "3.3.2",
"prettyjson": "1.2.5",
"string-replace-loader": "3.1.0",
"tslib": "2.6.0",
"tslib": "2.6.2",
"typescript": "4.5.5",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.0",
"webpack-dev-server": "4.15.1",
"yargs": "17.7.2"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/azidjsclient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dependencies": {
"@pnp/core": "0.0.0-PLACEHOLDER",
"@pnp/queryable": "0.0.0-PLACEHOLDER",
"@azure/identity": "3.2.4",
"tslib": "2.6.0"
"@azure/identity": "3.3.0",
"tslib": "2.6.2"
}
}
6 changes: 3 additions & 3 deletions packages/nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"main": "./index.js",
"typings": "./index",
"dependencies": {
"@azure/msal-node": "1.18.0",
"@azure/msal-node": "1.18.3",
"@pnp/core": "0.0.0-PLACEHOLDER",
"@pnp/logging": "0.0.0-PLACEHOLDER",
"@pnp/queryable": "0.0.0-PLACEHOLDER",
"@pnp/sp": "0.0.0-PLACEHOLDER",
"@pnp/graph": "0.0.0-PLACEHOLDER",
"node-fetch": "3.3.1",
"tslib": "2.6.0"
"node-fetch": "3.3.2",
"tslib": "2.6.2"
}
}
2 changes: 1 addition & 1 deletion packages/queryable/behaviors/parsers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Queryable } from "../queryable";
import { Queryable } from "../queryable.js";
import { hOP, TimelinePipe } from "@pnp/core";
import { isFunc } from "@pnp/core";

Expand Down
2 changes: 1 addition & 1 deletion packages/queryable/operations.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IQueryableInternal } from "./queryable";
import { IQueryableInternal } from "./queryable.js";

function ensureInit(method: string, init: RequestInit = { headers: {} }): RequestInit {

Expand Down
5 changes: 2 additions & 3 deletions packages/sp/taxonomy/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,9 @@ export class _TermSets extends _SPCollection<ITermSetInfo[]> {
/**
* Adds a new term set to this collection
* @param props The set of properties
* @returns The information on the create group
* @returns The information on the created set
*/
public add(props: Partial<ITermSetCreateParams>): Promise<ITermGroupInfo> {

public add(props: Partial<ITermSetCreateParams>): Promise<ITermSetInfo> {
return spPost(this, body(props));
}
}
Expand Down

0 comments on commit 0e3fcfd

Please sign in to comment.