@parca/profile 0.16.76 → 0.16.77

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,10 @@
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
+ ## [0.16.77](https://github.com/parca-dev/parca/compare/@parca/profile@0.16.76...@parca/profile@0.16.77) (2022-11-29)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## [0.16.76](https://github.com/parca-dev/parca/compare/@parca/profile@0.16.75...@parca/profile@0.16.76) (2022-11-29)
7
11
 
8
12
  **Note:** Version bump only for package @parca/profile
@@ -60,7 +60,7 @@ var SingleProfileSelection = /** @class */ (function () {
60
60
  SingleProfileSelection.prototype.HistoryParams = function () {
61
61
  return {
62
62
  profile_name: this.profileName,
63
- labels: this.labels.map(function (label) { return "".concat(label.name, "=").concat(label.value); }),
63
+ labels: this.labels.map(function (label) { return "".concat(label.name, "=").concat(encodeURIComponent(label.value)); }),
64
64
  time: this.time,
65
65
  };
66
66
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.16.76",
3
+ "version": "0.16.77",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@parca/client": "^0.16.56",
@@ -42,5 +42,5 @@
42
42
  "access": "public",
43
43
  "registry": "https://registry.npmjs.org/"
44
44
  },
45
- "gitHead": "8e5664f7075f265960e7e0c77e14cc6fc58121e9"
45
+ "gitHead": "32660c63e7b5d189c3e29abb0321d8e49bbcbc28"
46
46
  }
@@ -113,7 +113,7 @@ export class SingleProfileSelection implements ProfileSelection {
113
113
  HistoryParams(): {[key: string]: any} {
114
114
  return {
115
115
  profile_name: this.profileName,
116
- labels: this.labels.map(label => `${label.name}=${label.value}`),
116
+ labels: this.labels.map(label => `${label.name}=${encodeURIComponent(label.value)}`),
117
117
  time: this.time,
118
118
  };
119
119
  }