@aws-sdk/util-user-agent-browser 3.36.0 → 3.37.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/util-user-agent-browser
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.36.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.35.0...v3.36.0) (2021-10-08)
7
15
 
8
16
 
@@ -1,7 +1,4 @@
1
1
  import { Provider, UserAgent } from "@aws-sdk/types";
2
2
  import { DefaultUserAgentOptions } from "./configurations";
3
- /**
4
- * Default provider to the user agent in browsers. It's a best effort to infer
5
- * the device information. It uses bowser library to detect the browser and version
6
- */
3
+
7
4
  export declare const defaultUserAgent: ({ serviceId, clientVersion }: DefaultUserAgentOptions) => Provider<UserAgent>;
@@ -1,7 +1,4 @@
1
1
  import { Provider, UserAgent } from "@aws-sdk/types";
2
2
  import { DefaultUserAgentOptions } from "./configurations";
3
- /**
4
- * Default provider to the user agent in ReactNative. It's a best effort to infer
5
- * the device information. It uses bowser library to detect the browser and virsion
6
- */
3
+
7
4
  export declare const defaultUserAgent: ({ serviceId, clientVersion }: DefaultUserAgentOptions) => Provider<UserAgent>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-user-agent-browser",
3
- "version": "3.36.0",
3
+ "version": "3.37.0",
4
4
  "scripts": {
5
5
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
6
6
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,12 +19,12 @@
19
19
  "license": "Apache-2.0",
20
20
  "react-native": "dist-es/index.native.js",
21
21
  "dependencies": {
22
- "@aws-sdk/types": "3.36.0",
22
+ "@aws-sdk/types": "3.37.0",
23
23
  "bowser": "^2.11.0",
24
24
  "tslib": "^2.3.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@aws-sdk/protocol-http": "3.36.0",
27
+ "@aws-sdk/protocol-http": "3.37.0",
28
28
  "@types/jest": "^26.0.4",
29
29
  "jest": "^26.1.0",
30
30
  "typescript": "~4.3.5"