Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sharetribe/flex-sdk-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.21.0
Choose a base ref
...
head repository: sharetribe/flex-sdk-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 15 commits
  • 14 files changed
  • 1 contributor

Commits on May 20, 2024

  1. Docs: Login as

    rap1ds committed May 20, 2024
    Copy the full SHA
    985459b View commit details
  2. Improve docs update instructions

    rap1ds committed May 20, 2024
    Copy the full SHA
    e890e2c View commit details

Commits on May 27, 2024

  1. Fix Object with 'length' key bug

    This commit fixes a bug where SDK fails to serialize JavaScript Objects
    if they contain key 'length' with number value.
    
    The reason for this bug seems to be in lodash `_.reduce` function. See
    lodash/lodash#5870
    
    The solution is to use Object.entries + reduce instead of lodash reduce.
    rap1ds committed May 27, 2024
    Copy the full SHA
    e30d983 View commit details
  2. Fix copy-paste bug

    v -> params
    rap1ds committed May 27, 2024
    Copy the full SHA
    9961e7f View commit details
  3. Update CHANGELOG

    rap1ds committed May 27, 2024
    Copy the full SHA
    13f19cf View commit details
  4. Merge pull request #199 from sharetribe/length-key-bug

    Fix Object with 'length' key bug
    rap1ds authored May 27, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    49cd5d1 View commit details
  5. Build

    rap1ds committed May 27, 2024
    Copy the full SHA
    51ed948 View commit details
  6. Fix entry order

    rap1ds committed May 27, 2024
    Copy the full SHA
    8c22486 View commit details
  7. Build

    rap1ds committed May 27, 2024
    Copy the full SHA
    ef5ac29 View commit details
  8. Yet another build

    Forgot to run yarn install and accidentally upgraded transit-js
    rap1ds committed May 27, 2024
    Copy the full SHA
    af56ed5 View commit details
  9. Format

    rap1ds committed May 27, 2024
    Copy the full SHA
    d7e3df4 View commit details
  10. Version 1.21.1

    rap1ds committed May 27, 2024
    Copy the full SHA
    49975f5 View commit details

Commits on May 28, 2024

  1. Fix CHANGELOG version 1.21.1 link

    rap1ds authored May 28, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8975023 View commit details

Commits on Jun 10, 2024

  1. Fix CI badge

    rap1ds authored Jun 10, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    32d32dc View commit details

Commits on Jul 1, 2024

  1. Create CONTRIBUTING.md

    rap1ds authored Jul 1, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    485d976 View commit details
Showing with 664 additions and 671 deletions.
  1. +9 −1 CHANGELOG.md
  2. +34 −0 CONTRIBUTING.md
  3. +1 −1 README.md
  4. +550 −642 build/sharetribe-flex-sdk-node.js
  5. +1 −1 build/sharetribe-flex-sdk-web.js
  6. +12 −1 docs/authentication.md
  7. +5 −1 docs/developing-sdk.md
  8. +1 −1 package.json
  9. +6 −8 src/interceptors/multipart_request.js
  10. +6 −8 src/serializer.js
  11. +18 −0 src/serializer.test.js
  12. +15 −6 src/utils.js
  13. +5 −0 src/utils.test.js
  14. +1 −1 src/version.js
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -8,6 +8,13 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased] - xxxx-xx-xx

## [v1.21.1] - 2024-05-27

### Fixed

- Bug: SDK failed to send any extended data if it had a key `length` with a
number type value. [#199](https://github.com/sharetribe/flex-sdk-js/pull/199)

## [v1.21.0] - 2024-05-20

### Added
@@ -319,8 +326,9 @@ See: https://www.npmjs.com/package/sharetribe-flex-sdk
to prepare for publishing to NPM. Remember to check your existing
imports!

[unreleased]: https://github.com/sharetribe/flex-sdk-js/compare/v1.21.0...HEAD
[unreleased]: https://github.com/sharetribe/flex-sdk-js/compare/v1.21.1...HEAD

[v1.21.1]: https://github.com/sharetribe/flex-sdk-js/compare/v1.21.0...v1.21.1
[v1.21.0]: https://github.com/sharetribe/flex-sdk-js/compare/v1.20.1...v1.21.0
[v1.20.1]: https://github.com/sharetribe/flex-sdk-js/compare/v1.20.0...v1.20.1
[v1.20.0]: https://github.com/sharetribe/flex-sdk-js/compare/v1.19.0...v1.20.0
34 changes: 34 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Contributing to Sharetribe

First of all, thank you for your interest in Sharetribe!

Before you spend time working on Sharetribe repositories, please read over our
guidelines:

## Reporting issues :+1:

Issue reports are welcome! Please use the repository's issue template, if
provided.

## Bug fixes :+1:

If you encounter an issue caused by a bug in the code and can fix it in a simple
and backward-compatible way, you can open a PR for the bug fix.

If you are unsure that a bug causes the issue, or if the fix to it is not simple
or may cause breakage for the users of the repository, please open a new Issue
to discuss it first.

## Code refactoring :-1:

By default, we do not accept Pull Requests that do only code refactoring.

If you have a refactoring idea that you think should be implemented, please open
a new Issue to discuss it first.

## New features :-1:

By default, we do not accept Pull Requests that add new features.

If you have an idea for a new feature that you think should be implemented,
please open a new Issue to discuss it first.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

Use Sharetribe Marketplace API with ease.

[![CircleCI](https://circleci.com/gh/sharetribe/flex-sdk-js.svg?style=svg&circle-token=f2209b7cd8300d10f73d359072d7f03f81bff8f4)](https://circleci.com/gh/sharetribe/flex-sdk-js)
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/sharetribe/flex-sdk-js/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/sharetribe/flex-sdk-js/tree/master)

## Table of Contents

Loading