Skip to content
This repository was archived by the owner on Jan 18, 2021. It is now read-only.

Commit 2c25781

Browse files
GitBrentGitBrent
GitBrent
authored and
GitBrent
committed
Updated to v1.3.0
1 parent 1b6dd31 commit 2c25781

File tree

5 files changed

+13
-16
lines changed

5 files changed

+13
-16
lines changed

CHANGELOG.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
# Change Log
22

3-
## [v1.3.0](https://github.com/gitbrent/sprestlib/tree/v1.3.0) (2017-11-??)
3+
## [v1.3.0](https://github.com/gitbrent/sprestlib/tree/v1.3.0) (2017-11-27)
44
[Full Changelog](https://github.com/gitbrent/sprestlib/compare/v1.2.1...v1.3.0)
55

6-
**Fixed Bugs:**
76
**Implemented Enhancements:**
8-
- *BREAKING CHANGE*: `list().baseUrl()` removed! (use `baseUrl` param to `list()` now)
9-
- *BREAKING CHANGE*: `version()` method removed! (use `version` property now)
7+
- *BREAKING CHANGE*: `list().baseUrl()` removed! (new: `baseUrl` param to `list()`)
8+
- *BREAKING CHANGE*: `version()` method removed! (new: `sprLib.version` property)
109
- `.list()` now accepts an object in addition to listname (string)
1110
- Added new `metadata` option to `list().getItems()` and `rest()` methods
12-
- Added new core method: `site()` - returns info, perms, users, groups, subsites, etc.
13-
14-
11+
- Added new Site methods: `site()` - returns info, perms, users, groups, subsites, etc.
1512

1613

1714

dist/sprestlib.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sprestlib.bundle.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sprestlib.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929

3030
/*
3131
DEVLIST:
32-
- Add `$skip` (https://sharepoint.stackexchange.com/questions/45719/paging-using-rest-odata-with-sp-2013)
33-
-- @see: https://dev.office.com/sharepoint/docs/sp-add-ins/use-odata-query-operations-in-sharepoint-rest-requests#page-through-returned-items
34-
-- Only working SOLN is to get '__next' URI from results (or store prev ID and construct a similar URI using code)
35-
-- Very ugly and not at all elegant
32+
- Add `$skip` (https://sharepoint.stackexchange.com/questions/45719/paging-using-rest-odata-with-sp-2013)
33+
-- @see: https://dev.office.com/sharepoint/docs/sp-add-ins/use-odata-query-operations-in-sharepoint-rest-requests#page-through-returned-items
34+
? SOLN: use new opts: `skipId` & `skipLimit`
35+
? SOLN: then we can construct: "items?$skiptoken=Paged=TRUE&p_ID="+ 2 +"&$select=ID&$orderby=ID&$top=" + 2
3636
3737
- Add `Intl` (i18n) support (its supported in IE11!!) - Date and Currency formats are awesome (add Direction for our R->L users too?)
3838
*/
@@ -42,8 +42,8 @@ var NODEJS = ( typeof module !== 'undefined' && module.exports );
4242

4343
(function(){
4444
// APP VERSION/BUILD
45-
var APP_VER = "1.3.0-beta";
46-
var APP_BLD = "20171121";
45+
var APP_VER = "1.3.0";
46+
var APP_BLD = "20171122";
4747
var DEBUG = false; // (verbose mode/lots of logging)
4848
// ENUMERATIONS
4949
var ENUM_PRINCIPALTYPES = {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprestlib",
3-
"version": "1.3.0-beta",
3+
"version": "1.3.0",
44
"author": {
55
"name": "Brent Ely",
66
"url": "https://github.com/gitbrent/"

0 commit comments

Comments
 (0)