Skip to content

Commit

Permalink
Update dependency glob to v10.4.1 (#37706)
Browse files Browse the repository at this point in the history
* Update dependency glob to v10.4.1
* Update for changes in v9 and v10
  * v9 changed the `glob()` function from being callback-based to
    promise-based. Thus, `promisify( glob )()` → `glob()`.
  * v10 removed the default export, thus `import glob from 'glob';` →
    `import { glob } from 'glob';`. Fortunately `glob.sync` continues
    to exist.
* `projects/plugins/jetpack/tools/copy-block-editor-assets.js` wound
  up being significantly updated. Previously it used the wrong webpack
  hook and effectively ran "in the background" without properly reporting
  errors back to Webpack. Now it does things properly. The rewrite also
  drops the dep on `fs-extra` as `fs/promises` has existed for a long time
  now.
* Add missing dev-deps on `glob`
* connection: Add path.resolve in webpack config
* github-actions/test-results-to-slack: Add `.sort()` to make tests pass again

---------

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com>

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/9372731682

Upstream-Ref: Automattic/jetpack@b6ab8c1
  • Loading branch information
anomiex authored and matticbot committed Jun 4, 2024
1 parent 2a49acf commit 9c17181
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 142 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [3.0.2-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

### Changed
- Updated package dependencies.

## [3.0.1] - 2024-05-27
### Added
- Added TypeScript support. [#37528]
Expand Down Expand Up @@ -25,62 +32,79 @@
- Example files are rewritten. [#36964]

## 2.5.9 - 2024-03-05

- New icon: `sms`

## 2.5.8 - 2023-12-20

- New icon: `bluesky`

## 2.5.7 - 2023-12-11

- Updated icon: `patreon`

## 2.5.6 - 2023-10-13

- Updated icon: `x`
- Removed unnecessary aria label attributes from Threads and X SVGs.

## 2.5.5 - 2023-09-15

- New icon: `x`

## 2.5.4 - 2023-07-10

- New icon: `threads`

## 2.5.3 - 2023-06-15

- New icon: `fediverse`
- New icon: `nextdoor`
- Updated dev dependencies and build tools.
- Updated icon font.

## 2.5.2 - 2023-02-01

- New icon: `mastadon`

## 2.5.1 - 2023-01-13

- React 18 support.

## 2.5.0 - 2022-02-01

- Added copy post url button.

## 2.4.0 - 2021-09-01

- Updated icon: `medium`
- Updated icon: `facebook`
- React 17 support.
- Update dev dependencies and build tools.

## 2.3.0 - 2021-01-27

- New icon: `medium-alt`
- New icon: `tiktok`
- New icon: `tiktok-alt`
- Updated icon: `medium`

## 2.2.0 - 2021-01-19

- New icon: `patreon`

## 2.1.2 - 2020-03-12

- Built the package with updated dependencies.

## 2.1.1 - 2020-03-10

- Build: Fixed bug where React component would render no icon at all (despite properly passed properties).

## 2.1.0 - 2018-01-31

- Build: Refactored (aligned build system with Gridicons).

[3.0.2-alpha]: https://github.com/Automattic/social-logos/compare/v3.0.1...v3.0.2-alpha
[3.0.1]: https://github.com/Automattic/social-logos/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/Automattic/social-logos/compare/v2.5.9...v3.0.0
65 changes: 0 additions & 65 deletions build/font/codepoints.json

This file was deleted.

75 changes: 0 additions & 75 deletions build/font/social-logos.css

This file was deleted.

Binary file removed build/font/social-logos.woff2
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "social-logos",
"version": "3.0.1",
"version": "3.0.2-alpha",
"description": "A repository of all the social logos used on WordPress.com.",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/social-logos/",
"bugs": {
Expand Down Expand Up @@ -29,7 +29,7 @@
"devDependencies": {
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"glob": "7.1.6",
"glob": "10.4.1",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^12.0.0",
"svgo": "^3.3.2",
Expand Down

0 comments on commit 9c17181

Please sign in to comment.