Skip to content

Commit

Permalink
Release 3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
juliemturner committed Sep 11, 2023
1 parent c6dc7ee commit bef55e2
Show file tree
Hide file tree
Showing 7 changed files with 359 additions and 8,542 deletions.
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
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

0 comments on commit bef55e2

Please sign in to comment.