particle-api-js 10.5.1 → 11.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  version: 2.1
2
2
 
3
3
  orbs:
4
- browser-tools: circleci/browser-tools@1
4
+ browser-tools: circleci/browser-tools@1.4.8
5
5
 
6
6
  jobs:
7
7
  run-tests:
@@ -25,9 +25,7 @@ jobs:
25
25
  condition:
26
26
  equal: ["16.20.0", << parameters.node-version >>]
27
27
  steps:
28
- - browser-tools/install-browser-tools:
29
- # Workaround for circleCI automatically targeting unstalbe build https://github.com/CircleCI-Public/browser-tools-orb/issues/90
30
- chrome-version: 116.0.5845.96 # TODO: remove when chromedriver downloads are fixed
28
+ - browser-tools/install-browser-tools
31
29
  - run:
32
30
  name: Run tests with browser
33
31
  command: npm run test:browser
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # changelog
2
2
 
3
+ ## 11.0.0 - 1 October 2024
4
+ * Remove `listAccessTokens` and `deleteAccessToken` methods that relied on HTTP basic auth
5
+ * Update EventStream to send access_token in the Authorization header instead. No functional change
6
+
7
+ ## 10.6.0 - 21 August 2024
8
+ * Add DeviceOS versions endpoints
9
+
3
10
  ## 10.5.1 - 21 June 2024
4
11
  * Don't add an empty query string to the URL
5
12