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

Commit

Permalink
Updated to v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GitBrent authored and GitBrent committed Nov 28, 2017
1 parent 1b6dd31 commit 2c25781
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 16 deletions.
11 changes: 4 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
# Change Log

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

**Fixed Bugs:**
**Implemented Enhancements:**
- *BREAKING CHANGE*: `list().baseUrl()` removed! (use `baseUrl` param to `list()` now)
- *BREAKING CHANGE*: `version()` method removed! (use `version` property now)
- *BREAKING CHANGE*: `list().baseUrl()` removed! (new: `baseUrl` param to `list()`)
- *BREAKING CHANGE*: `version()` method removed! (new: `sprLib.version` property)
- `.list()` now accepts an object in addition to listname (string)
- Added new `metadata` option to `list().getItems()` and `rest()` methods
- Added new core method: `site()` - returns info, perms, users, groups, subsites, etc.


- Added new Site methods: `site()` - returns info, perms, users, groups, subsites, etc.



Expand Down
2 changes: 1 addition & 1 deletion dist/sprestlib.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sprestlib.bundle.js.map

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/sprestlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@

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

(function(){
// APP VERSION/BUILD
var APP_VER = "1.3.0-beta";
var APP_BLD = "20171121";
var APP_VER = "1.3.0";
var APP_BLD = "20171122";
var DEBUG = false; // (verbose mode/lots of logging)
// ENUMERATIONS
var ENUM_PRINCIPALTYPES = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sprestlib",
"version": "1.3.0-beta",
"version": "1.3.0",
"author": {
"name": "Brent Ely",
"url": "https://github.com/gitbrent/"
Expand Down

0 comments on commit 2c25781

Please sign in to comment.