@wordpress/date 5.36.1-next.8fd3f8831.0 → 5.36.2-next.76cff8c98.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
@@ -2,11 +2,15 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
- ## Bug Fixes
5
+ ## 5.36.1-next.0 (2026-01-07)
6
+
7
+ ### Bug Fixes
6
8
 
7
9
  - Fixed incorrect spacing for the time format. It was `g: i` (`14: 30`), and it's now `g:i` (`14:30`). ([#73924](https://github.com/WordPress/gutenberg/pull/73924))
8
10
  - Fixed `timezone` argument handling to properly treat `0` numeric timezone values as a valid UTC offset (UTC+0). Previously, these were treated as if the `timezone` argument was not passed. ([#73887](https://github.com/WordPress/gutenberg/pull/73887))
9
11
 
12
+ ## 5.37.0 (2025-12-23)
13
+
10
14
  ## 5.36.0 (2025-11-26)
11
15
 
12
16
  ### Bug Fixes
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Gutenberg
2
2
 
3
- Copyright 2016-2025 by the contributors
3
+ Copyright 2016-2026 by the contributors
4
4
 
5
5
  **License for Contributions (on and after April 15, 2021)**
6
6
 
package/build/index.cjs CHANGED
@@ -43,10 +43,10 @@ __export(index_exports, {
43
43
  setSettings: () => setSettings
44
44
  });
45
45
  module.exports = __toCommonJS(index_exports);
46
- var import_moment = __toESM(require("moment"), 1);
46
+ var import_moment = __toESM(require("moment"));
47
47
  var import_moment_timezone = require("moment-timezone/moment-timezone");
48
48
  var import_moment_timezone_utils = require("moment-timezone/moment-timezone-utils");
49
- var import_deprecated = __toESM(require("@wordpress/deprecated"), 1);
49
+ var import_deprecated = __toESM(require("@wordpress/deprecated"));
50
50
  var WP_ZONE = "WP";
51
51
  var VALID_UTC_OFFSET = /^[+-][0-1][0-9](:?[0-9][0-9])?$/;
52
52
  var settings = {
@@ -374,4 +374,4 @@ export {
374
374
  isInTheFuture,
375
375
  setSettings
376
376
  };
377
- //# sourceMappingURL=index.js.map
377
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=types.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/date",
3
- "version": "5.36.1-next.8fd3f8831.0",
3
+ "version": "5.36.2-next.76cff8c98.0",
4
4
  "description": "Date module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -29,13 +29,12 @@
29
29
  "build-types",
30
30
  "*.md"
31
31
  ],
32
- "type": "module",
33
32
  "main": "build/index.cjs",
34
- "module": "build-module/index.js",
33
+ "module": "build-module/index.mjs",
35
34
  "exports": {
36
35
  ".": {
37
36
  "types": "./build-types/index.d.ts",
38
- "import": "./build-module/index.js",
37
+ "import": "./build-module/index.mjs",
39
38
  "require": "./build/index.cjs"
40
39
  },
41
40
  "./package.json": "./package.json"
@@ -44,12 +43,12 @@
44
43
  "wpScript": true,
45
44
  "types": "build-types",
46
45
  "dependencies": {
47
- "@wordpress/deprecated": "^4.36.1-next.8fd3f8831.0",
46
+ "@wordpress/deprecated": "^4.36.1-next.76cff8c98.0",
48
47
  "moment": "^2.29.4",
49
48
  "moment-timezone": "^0.5.40"
50
49
  },
51
50
  "publishConfig": {
52
51
  "access": "public"
53
52
  },
54
- "gitHead": "e582b351bc4c4b8734bb087f63a3beec9875c3c7"
53
+ "gitHead": "368727f14b858e75179e140967c2d9ec965c8790"
55
54
  }
@@ -1 +0,0 @@
1
- //# sourceMappingURL=types.js.map
File without changes
File without changes