@fluentui/react-portal-compat-context 9.0.9 → 9.0.11

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
@@ -1,12 +1,30 @@
1
1
  # Change Log - @fluentui/react-portal-compat-context
2
2
 
3
- This log was last generated on Tue, 26 Sep 2023 17:44:14 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 03 Jan 2024 09:22:09 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal-compat-context_v9.0.11)
8
+
9
+ Wed, 03 Jan 2024 09:22:09 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal-compat-context_v9.0.10..@fluentui/react-portal-compat-context_v9.0.11)
11
+
12
+ ### Patches
13
+
14
+ - fix: re-introduce ecma transpilation to ES5 to make it work with v8 in ES5 only browsers ([PR #30053](https://github.com/microsoft/fluentui/pull/30053) by wfwf1997@gmail.com)
15
+
16
+ ## [9.0.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal-compat-context_v9.0.10)
17
+
18
+ Thu, 09 Nov 2023 17:29:40 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal-compat-context_v9.0.9..@fluentui/react-portal-compat-context_v9.0.10)
20
+
21
+ ### Patches
22
+
23
+ - chore: use package.json#files setup instead of npmignore for all v9 libraries ([PR #29734](https://github.com/microsoft/fluentui/pull/29734) by martinhochel@microsoft.com)
24
+
7
25
  ## [9.0.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal-compat-context_v9.0.9)
8
26
 
9
- Tue, 26 Sep 2023 17:44:14 GMT
27
+ Tue, 26 Sep 2023 17:49:09 GMT
10
28
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal-compat-context_v9.0.8..@fluentui/react-portal-compat-context_v9.0.9)
11
29
 
12
30
  ### Patches
@@ -1,7 +1,11 @@
1
- import * as React from 'react';
2
- const PortalCompatContext = React.createContext(undefined);
3
- const portalCompatContextDefaultValue = ()=>()=>undefined;
4
- export const PortalCompatContextProvider = PortalCompatContext.Provider;
1
+ import * as React from "react";
2
+ var PortalCompatContext = React.createContext(undefined);
3
+ var portalCompatContextDefaultValue = function() {
4
+ return function() {
5
+ return undefined;
6
+ };
7
+ };
8
+ export var PortalCompatContextProvider = PortalCompatContext.Provider;
5
9
  export function usePortalCompat() {
6
10
  var _React_useContext;
7
11
  return (_React_useContext = React.useContext(PortalCompatContext)) !== null && _React_useContext !== void 0 ? _React_useContext : portalCompatContextDefaultValue;
@@ -1 +1 @@
1
- {"version":3,"sources":["PortalCompatContext.ts"],"sourcesContent":["import * as React from 'react';\nimport type { RegisterPortalFn } from './types';\n\nconst PortalCompatContext = React.createContext<RegisterPortalFn | undefined>(\n undefined,\n) as React.Context<RegisterPortalFn>;\n\nconst portalCompatContextDefaultValue = () => () => undefined;\n\nexport const PortalCompatContextProvider = PortalCompatContext.Provider;\n\nexport function usePortalCompat() {\n return React.useContext(PortalCompatContext) ?? portalCompatContextDefaultValue;\n}\n"],"names":["React","PortalCompatContext","createContext","undefined","portalCompatContextDefaultValue","PortalCompatContextProvider","Provider","usePortalCompat","useContext"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAG/B,MAAMC,sBAAsBD,MAAME,aAAa,CAC7CC;AAGF,MAAMC,kCAAkC,IAAM,IAAMD;AAEpD,OAAO,MAAME,8BAA8BJ,oBAAoBK,QAAQ,CAAC;AAExE,OAAO,SAASC;QACPP;IAAP,OAAOA,CAAAA,oBAAAA,MAAMQ,UAAU,CAACP,kCAAjBD,+BAAAA,oBAAyCI;AAClD"}
1
+ {"version":3,"sources":["PortalCompatContext.ts"],"sourcesContent":["import * as React from 'react';\nimport type { RegisterPortalFn } from './types';\n\nconst PortalCompatContext = React.createContext<RegisterPortalFn | undefined>(\n undefined,\n) as React.Context<RegisterPortalFn>;\n\nconst portalCompatContextDefaultValue = () => () => undefined;\n\nexport const PortalCompatContextProvider = PortalCompatContext.Provider;\n\nexport function usePortalCompat() {\n return React.useContext(PortalCompatContext) ?? portalCompatContextDefaultValue;\n}\n"],"names":["React","PortalCompatContext","createContext","undefined","portalCompatContextDefaultValue","PortalCompatContextProvider","Provider","usePortalCompat","useContext"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAG/B,IAAMC,sBAAsBD,MAAME,aAAa,CAC7CC;AAGF,IAAMC,kCAAkC;WAAM;eAAMD;;;AAEpD,OAAO,IAAME,8BAA8BJ,oBAAoBK,QAAQ,CAAC;AAExE,OAAO,SAASC;QACPP;IAAP,OAAOA,CAAAA,oBAAAA,MAAMQ,UAAU,CAACP,kCAAjBD,+BAAAA,oBAAyCI;AAClD"}
package/lib/index.js CHANGED
@@ -1 +1 @@
1
- export { PortalCompatContextProvider, usePortalCompat } from './PortalCompatContext';
1
+ export { PortalCompatContextProvider, usePortalCompat } from "./PortalCompatContext";
@@ -23,9 +23,13 @@ define([
23
23
  }
24
24
  });
25
25
  _react = /*#__PURE__*/ _interop_require_wildcard._(_react);
26
- const PortalCompatContext = /*#__PURE__*/ _react.createContext(undefined);
27
- const portalCompatContextDefaultValue = ()=>()=>undefined;
28
- const PortalCompatContextProvider = PortalCompatContext.Provider;
26
+ var PortalCompatContext = /*#__PURE__*/ _react.createContext(undefined);
27
+ var portalCompatContextDefaultValue = function portalCompatContextDefaultValue() {
28
+ return function() {
29
+ return undefined;
30
+ };
31
+ };
32
+ var PortalCompatContextProvider = PortalCompatContext.Provider;
29
33
  function usePortalCompat() {
30
34
  var _React_useContext;
31
35
  return (_React_useContext = _react.useContext(PortalCompatContext)) !== null && _React_useContext !== void 0 ? _React_useContext : portalCompatContextDefaultValue;
@@ -1 +1 @@
1
- {"version":3,"sources":["PortalCompatContext.js"],"sourcesContent":["import * as React from 'react';\nconst PortalCompatContext = React.createContext(undefined);\nconst portalCompatContextDefaultValue = ()=>()=>undefined;\nexport const PortalCompatContextProvider = PortalCompatContext.Provider;\nexport function usePortalCompat() {\n var _React_useContext;\n return (_React_useContext = React.useContext(PortalCompatContext)) !== null && _React_useContext !== void 0 ? _React_useContext : portalCompatContextDefaultValue;\n}\n"],"names":["PortalCompatContextProvider","usePortalCompat","PortalCompatContext","React","createContext","undefined","portalCompatContextDefaultValue","Provider","_React_useContext","useContext"],"mappings":";;;;IAAuB;;;;;;;;;;;;;QAGVA,2BAA2B;mBAA3BA;;QACGC,eAAe;mBAAfA;;;;IAHhB,MAAMC,oCAAsBC,OAAMC,aAAa,CAACC;IAChD,MAAMC,kCAAkC,IAAI,IAAID;IACzC,MAAML,8BAA8BE,oBAAoBK,QAAQ;IAChE,SAASN;QACZ,IAAIO;QACJ,OAAO,AAACA,CAAAA,oBAAoBL,OAAMM,UAAU,CAACP,oBAAmB,MAAO,QAAQM,sBAAsB,KAAK,IAAIA,oBAAoBF;IACtI"}
1
+ {"version":3,"sources":["PortalCompatContext.js"],"sourcesContent":["import * as React from \"react\";\nvar PortalCompatContext = React.createContext(undefined);\nvar portalCompatContextDefaultValue = function() {\n return function() {\n return undefined;\n };\n};\nexport var PortalCompatContextProvider = PortalCompatContext.Provider;\nexport function usePortalCompat() {\n var _React_useContext;\n return (_React_useContext = React.useContext(PortalCompatContext)) !== null && _React_useContext !== void 0 ? _React_useContext : portalCompatContextDefaultValue;\n}\n"],"names":["PortalCompatContextProvider","usePortalCompat","PortalCompatContext","React","createContext","undefined","portalCompatContextDefaultValue","Provider","_React_useContext","useContext"],"mappings":";;;;IAAuB;;;;;;;;;;;;;QAOZA,2BAA2B;mBAA3BA;;QACKC,eAAe;mBAAfA;;;;IAPhB,IAAIC,oCAAsBC,OAAMC,aAAa,CAACC;IAC9C,IAAIC,kCAAkC;QAClC,OAAO;YACH,OAAOD;QACX;IACJ;IACO,IAAIL,8BAA8BE,oBAAoBK,QAAQ;IAC9D,SAASN;QACZ,IAAIO;QACJ,OAAO,AAACA,CAAAA,oBAAoBL,OAAMM,UAAU,CAACP,oBAAmB,MAAO,QAAQM,sBAAsB,KAAK,IAAIA,oBAAoBF;IACtI"}
@@ -1 +1 @@
1
- {"version":3,"sources":["index.js"],"sourcesContent":["export { PortalCompatContextProvider, usePortalCompat } from './PortalCompatContext';\n"],"names":["PortalCompatContextProvider","usePortalCompat"],"mappings":";;;IAA6D;;;;;;;;;;;;;QAApDA,2BAA2B;mBAA3BA,gDAA2B;;QAAEC,eAAe;mBAAfA,oCAAe"}
1
+ {"version":3,"sources":["index.js"],"sourcesContent":["export { PortalCompatContextProvider, usePortalCompat } from \"./PortalCompatContext\";\n"],"names":["PortalCompatContextProvider","usePortalCompat"],"mappings":";;;IAA6D;;;;;;;;;;;;;QAApDA,2BAA2B;mBAA3BA,gDAA2B;;QAAEC,eAAe;mBAAfA,oCAAe"}
@@ -16,11 +16,15 @@ _export(exports, {
16
16
  return usePortalCompat;
17
17
  }
18
18
  });
19
- const _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
20
- const _react = /*#__PURE__*/ _interop_require_wildcard._(require("react"));
21
- const PortalCompatContext = /*#__PURE__*/ _react.createContext(undefined);
22
- const portalCompatContextDefaultValue = ()=>()=>undefined;
23
- const PortalCompatContextProvider = PortalCompatContext.Provider;
19
+ var _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
20
+ var _react = /*#__PURE__*/ _interop_require_wildcard._(require("react"));
21
+ var PortalCompatContext = /*#__PURE__*/ _react.createContext(undefined);
22
+ var portalCompatContextDefaultValue = function portalCompatContextDefaultValue() {
23
+ return function() {
24
+ return undefined;
25
+ };
26
+ };
27
+ var PortalCompatContextProvider = PortalCompatContext.Provider;
24
28
  function usePortalCompat() {
25
29
  var _React_useContext;
26
30
  return (_React_useContext = _react.useContext(PortalCompatContext)) !== null && _React_useContext !== void 0 ? _React_useContext : portalCompatContextDefaultValue;
@@ -1 +1 @@
1
- {"version":3,"sources":["PortalCompatContext.js"],"sourcesContent":["import * as React from 'react';\nconst PortalCompatContext = React.createContext(undefined);\nconst portalCompatContextDefaultValue = ()=>()=>undefined;\nexport const PortalCompatContextProvider = PortalCompatContext.Provider;\nexport function usePortalCompat() {\n var _React_useContext;\n return (_React_useContext = React.useContext(PortalCompatContext)) !== null && _React_useContext !== void 0 ? _React_useContext : portalCompatContextDefaultValue;\n}\n"],"names":["PortalCompatContextProvider","usePortalCompat","PortalCompatContext","React","createContext","undefined","portalCompatContextDefaultValue","Provider","_React_useContext","useContext"],"mappings":";;;;;;;;;;;IAGaA,2BAA2B;eAA3BA;;IACGC,eAAe;eAAfA;;;;iEAJO;AACvB,MAAMC,oCAAsBC,OAAMC,aAAa,CAACC;AAChD,MAAMC,kCAAkC,IAAI,IAAID;AACzC,MAAML,8BAA8BE,oBAAoBK,QAAQ;AAChE,SAASN;IACZ,IAAIO;IACJ,OAAO,AAACA,CAAAA,oBAAoBL,OAAMM,UAAU,CAACP,oBAAmB,MAAO,QAAQM,sBAAsB,KAAK,IAAIA,oBAAoBF;AACtI"}
1
+ {"version":3,"sources":["PortalCompatContext.js"],"sourcesContent":["import * as React from \"react\";\nvar PortalCompatContext = React.createContext(undefined);\nvar portalCompatContextDefaultValue = function() {\n return function() {\n return undefined;\n };\n};\nexport var PortalCompatContextProvider = PortalCompatContext.Provider;\nexport function usePortalCompat() {\n var _React_useContext;\n return (_React_useContext = React.useContext(PortalCompatContext)) !== null && _React_useContext !== void 0 ? _React_useContext : portalCompatContextDefaultValue;\n}\n"],"names":["PortalCompatContextProvider","usePortalCompat","PortalCompatContext","React","createContext","undefined","portalCompatContextDefaultValue","Provider","_React_useContext","useContext"],"mappings":";;;;;;;;;;;IAOWA,2BAA2B;eAA3BA;;IACKC,eAAe;eAAfA;;;;+DARO;AACvB,IAAIC,oCAAsBC,OAAMC,aAAa,CAACC;AAC9C,IAAIC,kCAAkC;IAClC,OAAO;QACH,OAAOD;IACX;AACJ;AACO,IAAIL,8BAA8BE,oBAAoBK,QAAQ;AAC9D,SAASN;IACZ,IAAIO;IACJ,OAAO,AAACA,CAAAA,oBAAoBL,OAAMM,UAAU,CAACP,oBAAmB,MAAO,QAAQM,sBAAsB,KAAK,IAAIA,oBAAoBF;AACtI"}
@@ -16,4 +16,4 @@ _export(exports, {
16
16
  return _PortalCompatContext.usePortalCompat;
17
17
  }
18
18
  });
19
- const _PortalCompatContext = require("./PortalCompatContext");
19
+ var _PortalCompatContext = require("./PortalCompatContext");
@@ -1 +1 @@
1
- {"version":3,"sources":["index.js"],"sourcesContent":["export { PortalCompatContextProvider, usePortalCompat } from './PortalCompatContext';\n"],"names":["PortalCompatContextProvider","usePortalCompat"],"mappings":";;;;;;;;;;;IAASA,2BAA2B;eAA3BA,gDAA2B;;IAAEC,eAAe;eAAfA,oCAAe;;;qCAAQ"}
1
+ {"version":3,"sources":["index.js"],"sourcesContent":["export { PortalCompatContextProvider, usePortalCompat } from \"./PortalCompatContext\";\n"],"names":["PortalCompatContextProvider","usePortalCompat"],"mappings":";;;;;;;;;;;IAASA,2BAA2B;eAA3BA,gDAA2B;;IAAEC,eAAe;eAAfA,oCAAe;;;mCAAQ"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-portal-compat-context",
3
- "version": "9.0.9",
3
+ "version": "9.0.11",
4
4
  "description": "A package that holds React context for compatibility of React Contexts",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -48,5 +48,12 @@
48
48
  "require": "./lib-commonjs/index.js"
49
49
  },
50
50
  "./package.json": "./package.json"
51
- }
51
+ },
52
+ "files": [
53
+ "*.md",
54
+ "dist/*.d.ts",
55
+ "lib",
56
+ "lib-amd",
57
+ "lib-commonjs"
58
+ ]
52
59
  }
package/CHANGELOG.json DELETED
@@ -1,371 +0,0 @@
1
- {
2
- "name": "@fluentui/react-portal-compat-context",
3
- "entries": [
4
- {
5
- "date": "Tue, 26 Sep 2023 17:44:14 GMT",
6
- "tag": "@fluentui/react-portal-compat-context_v9.0.9",
7
- "version": "9.0.9",
8
- "comments": {
9
- "patch": [
10
- {
11
- "author": "yuanboxue@microsoft.com",
12
- "package": "@fluentui/react-portal-compat-context",
13
- "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d",
14
- "comment": "chore: trigger manual version bump after broken release"
15
- }
16
- ]
17
- }
18
- },
19
- {
20
- "date": "Tue, 26 Sep 2023 15:31:52 GMT",
21
- "tag": "@fluentui/react-portal-compat-context_v9.0.8",
22
- "version": "9.0.8",
23
- "comments": {
24
- "patch": [
25
- {
26
- "author": "martinhochel@microsoft.com",
27
- "package": "@fluentui/react-portal-compat-context",
28
- "commit": "e61473fa10195f6ebf2308205c1e72e91b711831",
29
- "comment": "fix: bump swc core to mitigate transpilation memory leaks"
30
- }
31
- ]
32
- }
33
- },
34
- {
35
- "date": "Tue, 05 Sep 2023 13:28:59 GMT",
36
- "tag": "@fluentui/react-portal-compat-context_v9.0.7",
37
- "version": "9.0.7",
38
- "comments": {
39
- "patch": [
40
- {
41
- "author": "bernardo.sunderhus@gmail.com",
42
- "package": "@fluentui/react-portal-compat-context",
43
- "commit": "b93c2ac22355b6cb6f33dd509c6cd9c21f4fffc8",
44
- "comment": "bumps @swc/helpers version to 0.5.1"
45
- },
46
- {
47
- "author": "bernardo.sunderhus@gmail.com",
48
- "package": "@fluentui/react-portal-compat-context",
49
- "commit": "eea6d93a62249ba4fba3347fb291c67ee1a3fb24",
50
- "comment": "bumps react peer dependencies to v16.14.0"
51
- }
52
- ]
53
- }
54
- },
55
- {
56
- "date": "Wed, 28 Jun 2023 11:12:30 GMT",
57
- "tag": "@fluentui/react-portal-compat-context_v9.0.6",
58
- "version": "9.0.6",
59
- "comments": {
60
- "none": [
61
- {
62
- "author": "martinhochel@microsoft.com",
63
- "package": "@fluentui/react-portal-compat-context",
64
- "commit": "fbe878e9c9785588197481f172c42c2c0a230292",
65
- "comment": "fix: update .npmignore to unify v8 packages and exclude project.json"
66
- }
67
- ]
68
- }
69
- },
70
- {
71
- "date": "Wed, 24 May 2023 20:45:31 GMT",
72
- "tag": "@fluentui/react-portal-compat-context_v9.0.6",
73
- "version": "9.0.6",
74
- "comments": {
75
- "none": [
76
- {
77
- "author": "olfedias@microsoft.com",
78
- "package": "@fluentui/react-portal-compat-context",
79
- "commit": "69e0617a93cb44ef42f3bd19284b7dc5fe27fed3",
80
- "comment": "chore: update test-ssr script"
81
- }
82
- ]
83
- }
84
- },
85
- {
86
- "date": "Thu, 18 May 2023 00:39:11 GMT",
87
- "tag": "@fluentui/react-portal-compat-context_v9.0.6",
88
- "version": "9.0.6",
89
- "comments": {
90
- "none": [
91
- {
92
- "author": "olfedias@microsoft.com",
93
- "package": "@fluentui/react-portal-compat-context",
94
- "commit": "06cd515eda59a3078bfe32f9cc7c1f281cd20208",
95
- "comment": "chore: add test-ssr script to v9 packages"
96
- }
97
- ]
98
- }
99
- },
100
- {
101
- "date": "Fri, 12 May 2023 20:27:35 GMT",
102
- "tag": "@fluentui/react-portal-compat-context_v9.0.6",
103
- "version": "9.0.6",
104
- "comments": {
105
- "none": [
106
- {
107
- "author": "martinhochel@microsoft.com",
108
- "package": "@fluentui/react-portal-compat-context",
109
- "commit": "dbda7fa69e3000aaf8dd4a061e254ebd35198b8e",
110
- "comment": "fix: update npmignore files to fix npm8/node16 regression how npm publish works"
111
- }
112
- ],
113
- "patch": [
114
- {
115
- "author": "olfedias@microsoft.com",
116
- "package": "@fluentui/react-portal-compat-context",
117
- "commit": "c28decb23d191a0daaaf6d5d1832429715102129",
118
- "comment": "chore: exclude .swcrc from being published"
119
- }
120
- ]
121
- }
122
- },
123
- {
124
- "date": "Tue, 21 Mar 2023 21:23:45 GMT",
125
- "tag": "@fluentui/react-portal-compat-context_v9.0.5",
126
- "version": "9.0.5",
127
- "comments": {
128
- "patch": [
129
- {
130
- "author": "tristan.watanabe@gmail.com",
131
- "package": "@fluentui/react-portal-compat-context",
132
- "commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f",
133
- "comment": "fix: add node field to package.json exports map."
134
- },
135
- {
136
- "author": "tristan.watanabe@gmail.com",
137
- "package": "@fluentui/react-portal-compat-context",
138
- "commit": "2fac1a139149bd13b76b1306207bc988dca9c72c",
139
- "comment": "chore: migrate to swc transpilation approach."
140
- }
141
- ]
142
- }
143
- },
144
- {
145
- "date": "Wed, 08 Mar 2023 17:42:37 GMT",
146
- "tag": "@fluentui/react-portal-compat-context_v9.0.4",
147
- "version": "9.0.4",
148
- "comments": {
149
- "none": [
150
- {
151
- "author": "martinhochel@microsoft.com",
152
- "package": "@fluentui/react-portal-compat-context",
153
- "commit": "db203b7c6eae1174b0bb910bf49eaee4dde14786",
154
- "comment": "chore: re-enable AMD import checks for only mixed and v8 packages"
155
- }
156
- ]
157
- }
158
- },
159
- {
160
- "date": "Mon, 16 Jan 2023 08:39:06 GMT",
161
- "tag": "@fluentui/react-portal-compat-context_v9.0.4",
162
- "version": "9.0.4",
163
- "comments": {
164
- "none": [
165
- {
166
- "author": "martinhochel@microsoft.com",
167
- "package": "@fluentui/react-portal-compat-context",
168
- "commit": "64bb45980d68de1219c6b36a7db5363f0a9cff9f",
169
- "comment": "chore: migrate to packaged scripts"
170
- }
171
- ]
172
- }
173
- },
174
- {
175
- "date": "Wed, 04 Jan 2023 01:40:19 GMT",
176
- "tag": "@fluentui/react-portal-compat-context_v9.0.4",
177
- "version": "9.0.4",
178
- "comments": {
179
- "none": [
180
- {
181
- "author": "martinhochel@microsoft.com",
182
- "package": "@fluentui/react-portal-compat-context",
183
- "commit": "4ec2b998b294d6d9c3196d3d82893bdd97d0c105",
184
- "comment": "chore(scripts): move index.ts to to follow sub-folder domain packaging"
185
- },
186
- {
187
- "author": "martinhochel@microsoft.com",
188
- "package": "@fluentui/react-portal-compat-context",
189
- "commit": "194b0cf0cc27c1c1233aa945f09b3ad29778d8ca",
190
- "comment": "chore(scripts): use for @fluentui/scripts version within all package.json"
191
- }
192
- ]
193
- }
194
- },
195
- {
196
- "date": "Thu, 17 Nov 2022 23:05:44 GMT",
197
- "tag": "@fluentui/react-portal-compat-context_v9.0.4",
198
- "version": "9.0.4",
199
- "comments": {
200
- "none": [
201
- {
202
- "author": "martinhochel@microsoft.com",
203
- "package": "@fluentui/react-portal-compat-context",
204
- "commit": "ea768501802d65d63ddc63fff3816fb6b5008ae4",
205
- "comment": "chore: update package scaffold"
206
- }
207
- ]
208
- }
209
- },
210
- {
211
- "date": "Fri, 11 Nov 2022 14:57:32 GMT",
212
- "tag": "@fluentui/react-portal-compat-context_v9.0.4",
213
- "version": "9.0.4",
214
- "comments": {
215
- "patch": [
216
- {
217
- "author": "tristan.watanabe@gmail.com",
218
- "package": "@fluentui/react-portal-compat-context",
219
- "commit": "792bd72b19e360afe9ac8e9da298dc3d85776c74",
220
- "comment": "chore: Migrate to new package structure."
221
- },
222
- {
223
- "author": "martinhochel@microsoft.com",
224
- "package": "@fluentui/react-portal-compat-context",
225
- "commit": "b3907043bd8d7b650c55e8e7c3119b14f2606c38",
226
- "comment": "fix: create valid export maps"
227
- }
228
- ]
229
- }
230
- },
231
- {
232
- "date": "Thu, 20 Oct 2022 08:39:41 GMT",
233
- "tag": "@fluentui/react-portal-compat-context_v9.0.3",
234
- "version": "9.0.3",
235
- "comments": {
236
- "patch": [
237
- {
238
- "author": "mgodbolt@microsoft.com",
239
- "package": "@fluentui/react-portal-compat-context",
240
- "commit": "772f9e3ebde2d5b8157a3204c1a4e007e56f5508",
241
- "comment": "chore: Bump react peer dependency to react 18."
242
- }
243
- ]
244
- }
245
- },
246
- {
247
- "date": "Thu, 15 Sep 2022 09:49:16 GMT",
248
- "tag": "@fluentui/react-portal-compat-context_v9.0.2",
249
- "version": "9.0.2",
250
- "comments": {
251
- "none": [
252
- {
253
- "author": "martinhochel@microsoft.com",
254
- "package": "@fluentui/react-portal-compat-context",
255
- "commit": "e6cf183695d6d67a24e038c49a876224e5ed35e5",
256
- "comment": "chore: update package scaffold"
257
- }
258
- ],
259
- "patch": [
260
- {
261
- "author": "lingfangao@hotmail.com",
262
- "package": "@fluentui/react-portal-compat-context",
263
- "commit": "a0cfab0e5f74e3a3bfa9c269fff574295042d7f2",
264
- "comment": "chore: fix no-context-default-value lint violations"
265
- }
266
- ]
267
- }
268
- },
269
- {
270
- "date": "Wed, 03 Aug 2022 16:03:55 GMT",
271
- "tag": "@fluentui/react-portal-compat-context_v9.0.1",
272
- "version": "9.0.1",
273
- "comments": {
274
- "none": [
275
- {
276
- "author": "bernardo.sunderhus@gmail.com",
277
- "package": "@fluentui/react-portal-compat-context",
278
- "commit": "d966ea3d9169f2e8d69f0d2a4daf86fe4ca328d6",
279
- "comment": "disables eslint rule @fluentui/no-context-default-value for local component context"
280
- },
281
- {
282
- "author": "lingfangao@hotmail.com",
283
- "package": "@fluentui/react-portal-compat-context",
284
- "commit": "99cc385631d04a76ee10ebc143cb9fecd99640b6",
285
- "comment": "chore: Add `prerelease` as disallowed changetype for 9.0.0 packages"
286
- },
287
- {
288
- "author": "martinhochel@microsoft.com",
289
- "package": "@fluentui/react-portal-compat-context",
290
- "commit": "30737a497e7787fe8b4efddeadb4a261ba19933f",
291
- "comment": "refactor(scripts): replace isCompatibilityPackage with new --module build flag"
292
- },
293
- {
294
- "author": "lingfangao@hotmail.com",
295
- "package": "@fluentui/react-portal-compat-context",
296
- "commit": "6731ada047afe1d79d2765d1464cfa9acb90bee8",
297
- "comment": "chore: Explicitly enable AMD lint-imports rule"
298
- }
299
- ]
300
- }
301
- },
302
- {
303
- "date": "Fri, 15 Jul 2022 18:27:27 GMT",
304
- "tag": "@fluentui/react-portal-compat-context_v9.0.1",
305
- "version": "9.0.1",
306
- "comments": {
307
- "patch": [
308
- {
309
- "author": "gcox@microsoft.com",
310
- "package": "@fluentui/react-portal-compat-context",
311
- "commit": "9252601953bb2462fec25d22748149665868fb89",
312
- "comment": "Added mechanism for marking fluent-compatibility packages"
313
- }
314
- ]
315
- }
316
- },
317
- {
318
- "date": "Tue, 28 Jun 2022 15:13:50 GMT",
319
- "tag": "@fluentui/react-portal-compat-context_v9.0.0",
320
- "version": "9.0.0",
321
- "comments": {
322
- "patch": [
323
- {
324
- "author": "lingfangao@hotmail.com",
325
- "package": "@fluentui/react-portal-compat-context",
326
- "commit": "c7b1348bdad7aa883c29bfbc96ef2a32e6ebc7dd",
327
- "comment": "feat: Initial 9.0.0 release"
328
- }
329
- ]
330
- }
331
- },
332
- {
333
- "date": "Mon, 23 May 2022 12:13:34 GMT",
334
- "tag": "@fluentui/react-portal-compat-context_v9.0.0-rc.2",
335
- "version": "9.0.0-rc.2",
336
- "comments": {
337
- "prerelease": [
338
- {
339
- "author": "martinhochel@microsoft.com",
340
- "package": "@fluentui/react-portal-compat-context",
341
- "commit": "e7b70cb06f4422e5574993fd2ad44d9073647417",
342
- "comment": "feat: ship rolluped only dts"
343
- }
344
- ]
345
- }
346
- },
347
- {
348
- "date": "Wed, 04 May 2022 13:26:46 GMT",
349
- "tag": "@fluentui/react-portal-compat-context_v9.0.0-rc.1",
350
- "version": "9.0.0-rc.1",
351
- "comments": {
352
- "none": [
353
- {
354
- "author": "tristan.watanabe@gmail.com",
355
- "package": "@fluentui/react-portal-compat-context",
356
- "commit": "8997f88bdd280b6831338d6c231b387fd554046e",
357
- "comment": "react-portal-compat-context: Move to new common folder."
358
- }
359
- ],
360
- "prerelease": [
361
- {
362
- "author": "olfedias@microsoft.com",
363
- "package": "@fluentui/react-portal-compat-context",
364
- "commit": "280cf2336d814d7380d5cbf4999ce56da763919c",
365
- "comment": "initial release"
366
- }
367
- ]
368
- }
369
- }
370
- ]
371
- }