Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atlaskit/util-service-support

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlaskit/util-service-support - npm Package Compare versions

Comparing version 4.0.9 to 4.1.0

75

CHANGELOG.md
# @atlaskit/util-service-support
## 4.1.0
### Minor Changes
- [minor][c38928b077](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c38928b077):
ED-7631: fixed code to build headers to run in Chrome in serviceUtils.requestService- [minor][ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
**FABDODGEM-13 Editor Damask Release** - [Internal post](http://go.atlassian.com/damask-release)
**BREAKING CHANGES**
- **Media:** Removed deprecated "context" property from media components in favor of "mediaClientConfig". This affects all public media UI components.
- https://product-fabric.atlassian.net/browse/MS-2038
- **Tasks & Decisions:** Removed containerAri for task-decisions components.
- https://product-fabric.atlassian.net/browse/ED-7631
- **Renderer:** Adapts to task-decision changes.
- **Editor Mobile Bridge:** Adapts to task-decision changes.
- **Util Data Test:** Adapts to task-decision changes.
---
**Affected Editor Components:**
tables, media, mobile, emoji, tasks & decisions, analytics
**Editor**
- Support nested actions in stage-0 schema; Change DOM representation of actions
- https://product-fabric.atlassian.net/browse/ED-7674
- Updated i18n translations
- https://product-fabric.atlassian.net/browse/ED-7750
- Improved analytics & crash reporting (via a new error boundary)
- https://product-fabric.atlassian.net/browse/ED-7766
- https://product-fabric.atlassian.net/browse/ED-7806
- Improvements to heading anchor links.
- https://product-fabric.atlassian.net/browse/ED-7849
- https://product-fabric.atlassian.net/browse/ED-7860
- Copy/Paste improvements
- https://product-fabric.atlassian.net/browse/ED-7840
- https://product-fabric.atlassian.net/browse/ED-7849
- Fixes for the selection state of Smart links.
- https://product-fabric.atlassian.net/browse/ED-7602?src=confmacro
- Improvements for table resizing & column creation.
- https://product-fabric.atlassian.net/browse/ED-7698
- https://product-fabric.atlassian.net/browse/ED-7319
- https://product-fabric.atlassian.net/browse/ED-7799
**Mobile**
- GASv3 Analytics Events are now relayed from the web to the native context, ready for dispatching.
- https://product-fabric.atlassian.net/browse/FM-2502
- Hybrid Renderer Recycler view now handles invalid ADF nodes gracefully.
- https://product-fabric.atlassian.net/browse/FM-2370
**Media**
- Improved analytics
- https://product-fabric.atlassian.net/browse/MS-2036
- https://product-fabric.atlassian.net/browse/MS-2145
- https://product-fabric.atlassian.net/browse/MS-2416
- https://product-fabric.atlassian.net/browse/MS-2487
- Added shouldOpenMediaViewer property to renderer
- https://product-fabric.atlassian.net/browse/MS-2393
- Implemented analytics for file copy
- https://product-fabric.atlassian.net/browse/MS-2036
- New `media-viewed` event dispatched when media is interacted with via the media card or viewer.
- https://product-fabric.atlassian.net/browse/MS-2284
- Support for `alt` text attribute on media image elements.
- https://product-fabric.atlassian.net/browse/ED-7776
**i18n-tools**
Bumped dependencies.
## 4.0.9

@@ -4,0 +79,0 @@

6

dist/cjs/serviceUtils.js

@@ -52,7 +52,7 @@ "use strict";

for (var i = 0; i < values.length; i++) {
headers.append(key, values[i]);
headers[key] = values[i];
}
}
else {
headers.append(key, values);
headers[key] = values;
}

@@ -64,3 +64,3 @@ }

var buildHeaders = function (secOptions, extraHeaders) {
var headers = new Headers();
var headers = {};
addToHeaders(headers, extraHeaders);

@@ -67,0 +67,0 @@ if (secOptions) {

{
"name": "@atlaskit/util-service-support",
"version": "4.0.9"
"version": "4.1.0"
}

@@ -50,7 +50,7 @@ import { __assign } from "tslib";

for (var i = 0; i < values.length; i++) {
headers.append(key, values[i]);
headers[key] = values[i];
}
}
else {
headers.append(key, values);
headers[key] = values;
}

@@ -62,3 +62,3 @@ }

var buildHeaders = function (secOptions, extraHeaders) {
var headers = new Headers();
var headers = {};
addToHeaders(headers, extraHeaders);

@@ -65,0 +65,0 @@ if (secOptions) {

{
"name": "@atlaskit/util-service-support",
"version": "4.0.9"
"version": "4.1.0"
}
{
"name": "@atlaskit/util-service-support",
"version": "4.0.9",
"version": "4.1.0",
"description": "A library of support classes for integrating React components with REST HTTP services",

@@ -5,0 +5,0 @@ "config": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc