-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump bootstrap from 5.3.2 to 5.3.3 #48
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [bootstrap](https://github.com/twbs/bootstrap) from 5.3.2 to 5.3.3. - [Release notes](https://github.com/twbs/bootstrap/releases) - [Commits](twbs/bootstrap@v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: bootstrap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
bot
force-pushed
the
dependabot/npm_and_yarn/bootstrap-5.3.3
branch
from
August 6, 2024 13:19
334a7b7
to
0717067
Compare
Serhii-DV
pushed a commit
that referenced
this pull request
Aug 10, 2024
Bumps [bootstrap](https://github.com/twbs/bootstrap) from 5.3.2 to 5.3.3. - [Release notes](https://github.com/twbs/bootstrap/releases) - [Commits](twbs/bootstrap@v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: bootstrap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Serhii-DV
added a commit
that referenced
this pull request
Aug 16, 2024
* Create dependabot.yml * [Feature] Start using TypoScript (#51) * Install `ts-loader` * `npx tsc --init` * Configurate TS and webpack * Removed unused module * Rename `csv.js` to `csv.ts` * csv.js to ts * Update ts config * Ignore `dist/` folder * Revert "csv.js to ts" This reverts commit 452b7e9. * Revert "Rename `csv.js` to `csv.ts`" This reverts commit d4f770e. * Installed `source-map-loader` * Introduced `built` folder and use it for TS * Removed `dist` files from repo * Renamed `console.js` to `console.ts` * `npm install --save @types/chrome` * Added TS types * Resolve import module * Fix compile error * Renamed `clipboard.js` to `ts` * Fix TS script * Moved `csv.js` to `utils` folder and rename to `ts` * Convert JS to TS * Moved `chrome.js` to `utils/chrome.ts` * Convert JS to TS * Moved `utils.js` to `utils/utils.ts` * Convert JS to TS in `utils.ts` * Moved `key-generator.js` to `utils/key-generator.ts` * Convert JS to TS in `key-generator.ts` * Moved `html.js` to `utils/html.ts` * Convert JS to TS in `html.ts` * Moved `storage.js` to `utils/storage.ts` * Introduced `hasOwnProperty` method * Small fix * Fixed storage utils path * Convert JS to TS in `storage.ts` * Added new version `0.12.0` * Bump bootstrap from 5.3.2 to 5.3.3 (#48) Bumps [bootstrap](https://github.com/twbs/bootstrap) from 5.3.2 to 5.3.3. - [Release notes](https://github.com/twbs/bootstrap/releases) - [Commits](twbs/bootstrap@v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: bootstrap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump uuid from 9.0.1 to 10.0.0 (#49) Bumps [uuid](https://github.com/uuidjs/uuid) from 9.0.1 to 10.0.0. - [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md) - [Commits](uuidjs/uuid@v9.0.1...v10.0.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump webpack from 5.91.0 to 5.93.0 (#50) Bumps [webpack](https://github.com/webpack/webpack) from 5.91.0 to 5.93.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](webpack/webpack@v5.91.0...v5.93.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * [Feature. Core] Webpack usage improvements (#52) * `npm install --save-dev webpack-merge` * Use different webpack configs based on mode * Use source maps on prod * Use TS during dev * Moved chrome types to dev dependencies * `npm install --save-dev clean-webpack-plugin` * Added config for webpack cleaning plugin * Use webpack progress plugin * `npm install copy-webpack-plugin --save-dev` * Moved `manifest.json` to `src` folder * Copy `manifest.json` to the `dist` folder * Init extension from the `dist` folder * A better built assets name * `npm install isotope-layout --save-dev` * `npm install @types/isotope-layout --save-dev` * Load isotope from node modules * Copy data files * Fix initializin custom icon * Removed unused config * `npm install --save-dev html-webpack-plugin` * Use html webpack plugin for popup page * `npm install @webcomponents/custom-elements --save-dev` * Renamed `icon.js` to `icon.ts` * Convert JS to TS in `icon.ts` component * Check if `customElements` exists * Removed unused methods * Removed popup vendors * Use env variable * Back to one config. Now get mode version from CLI * Removed unused file * Use log * Get notification title header from the manifest * `npm install css-minimizer-webpack-plugin --save-dev` * Use css minimizer webpack plugin * `npm install --save-dev mini-css-extract-plugin` * `npm install css-loader --save-dev` * Combine discogs css files into one and load it * Moved css to it's subfolder * Load discogs content * Added current date time to the manifest in dev mode * Use bandcamp content.js * Moved bandcamp styles to it's subfolder * Output manifest version in the console * `npm install json-minimizer-webpack-plugin --save-dev` * Minimize also JSON files * Updated changelog * Move all scripts to dev dependencies * Create dependabot.yml * [Feature] Start using TypoScript (#51) * Install `ts-loader` * `npx tsc --init` * Configurate TS and webpack * Removed unused module * Rename `csv.js` to `csv.ts` * csv.js to ts * Update ts config * Ignore `dist/` folder * Revert "csv.js to ts" This reverts commit 452b7e9. * Revert "Rename `csv.js` to `csv.ts`" This reverts commit d4f770e. * Installed `source-map-loader` * Introduced `built` folder and use it for TS * Removed `dist` files from repo * Renamed `console.js` to `console.ts` * `npm install --save @types/chrome` * Added TS types * Resolve import module * Fix compile error * Renamed `clipboard.js` to `ts` * Fix TS script * Moved `csv.js` to `utils` folder and rename to `ts` * Convert JS to TS * Moved `chrome.js` to `utils/chrome.ts` * Convert JS to TS * Moved `utils.js` to `utils/utils.ts` * Convert JS to TS in `utils.ts` * Moved `key-generator.js` to `utils/key-generator.ts` * Convert JS to TS in `key-generator.ts` * Moved `html.js` to `utils/html.ts` * Convert JS to TS in `html.ts` * Moved `storage.js` to `utils/storage.ts` * Introduced `hasOwnProperty` method * Small fix * Fixed storage utils path * Convert JS to TS in `storage.ts` * Added new version `0.12.0` * Bump bootstrap from 5.3.2 to 5.3.3 (#48) Bumps [bootstrap](https://github.com/twbs/bootstrap) from 5.3.2 to 5.3.3. - [Release notes](https://github.com/twbs/bootstrap/releases) - [Commits](twbs/bootstrap@v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: bootstrap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump uuid from 9.0.1 to 10.0.0 (#49) Bumps [uuid](https://github.com/uuidjs/uuid) from 9.0.1 to 10.0.0. - [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md) - [Commits](uuidjs/uuid@v9.0.1...v10.0.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump webpack from 5.91.0 to 5.93.0 (#50) Bumps [webpack](https://github.com/webpack/webpack) from 5.91.0 to 5.93.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](webpack/webpack@v5.91.0...v5.93.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * [Feature. Core] Webpack usage improvements (#52) * `npm install --save-dev webpack-merge` * Use different webpack configs based on mode * Use source maps on prod * Use TS during dev * Moved chrome types to dev dependencies * `npm install --save-dev clean-webpack-plugin` * Added config for webpack cleaning plugin * Use webpack progress plugin * `npm install copy-webpack-plugin --save-dev` * Moved `manifest.json` to `src` folder * Copy `manifest.json` to the `dist` folder * Init extension from the `dist` folder * A better built assets name * `npm install isotope-layout --save-dev` * `npm install @types/isotope-layout --save-dev` * Load isotope from node modules * Copy data files * Fix initializin custom icon * Removed unused config * `npm install --save-dev html-webpack-plugin` * Use html webpack plugin for popup page * `npm install @webcomponents/custom-elements --save-dev` * Renamed `icon.js` to `icon.ts` * Convert JS to TS in `icon.ts` component * Check if `customElements` exists * Removed unused methods * Removed popup vendors * Use env variable * Back to one config. Now get mode version from CLI * Removed unused file * Use log * Get notification title header from the manifest * `npm install css-minimizer-webpack-plugin --save-dev` * Use css minimizer webpack plugin * `npm install --save-dev mini-css-extract-plugin` * `npm install css-loader --save-dev` * Combine discogs css files into one and load it * Moved css to it's subfolder * Load discogs content * Added current date time to the manifest in dev mode * Use bandcamp content.js * Moved bandcamp styles to it's subfolder * Output manifest version in the console * `npm install json-minimizer-webpack-plugin --save-dev` * Minimize also JSON files * Updated changelog * Move all scripts to dev dependencies * [Feature] `build-extension` workflow (#53) * Added `build-and-zip` workflow * Use node v20 * Update the artifact name * Zip only content of the folder `dist` * Do not create intermediate artifact `dist.zip` * Upload dist folder as an artifact * Rename action * Run action on `main` branch only * [Feature] Minimize code (#55) * `npm install html-webpack-plugin html-loader --save-dev` * Include and minimize popup html by using HtmlWebpackPlugin * Removed `External Content` custom component * No need to copy popup fragments * Moved loading `popup.css` as JS import * Small improve * Use built-in cleanup * Added some more image ext * Use evn var for production mode * Optimization * Use `inline-source-map` in dev mode * [Feature] Setup prettier and linter (#56) * Optimization * Install `eslint` and `prettier` * Setup eslint * Setup prettier * Apply prittier * Use inline source map * Prettier ignore data presentation * Updated extension version format in dev mode * [Feature] A better eslint setup (#57) * `npm install eslint-webpack-plugin --save-dev` * Ignore `dist/` folder in eslint * Use `mjs` extension instead of `js` for eslint * Run `eslint` from webpack * Added global browser and webextensions variables * Fixed `no-prototype-builtins` eslint * Ignore `webpack.config.js` * Fixed eslint `no-unused-vars` * Fixed eslint `no-constant-binary-expression` * Fixed eslint `no-unused-vars` (2) * Resolve utils path * `npm run prettier:fix` * Update changelog * [Feature] Minimize JS/TS (#58) * `npm install terser-webpack-plugin --save-dev` * Update tranliterate logic. Minimizer works now. * Removed unused parameter --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps bootstrap from 5.3.2 to 5.3.3.
Release notes
Sourced from bootstrap's releases.
... (truncated)
Commits
6e1f75f
Release v5.3.3 (#39524)3caef2b
Build(deps-dev): Bump terser from 5.27.1 to 5.27.2 (#39690)4abac9b
Build(deps-dev): Bump ip from 2.0.0 to 2.0.1 (#39691)c396a2a
Build(deps-dev): Bump sass from 1.70.0 to 1.71.0 (#39684)c9a8a40
Build(deps-dev): Bump rollup from 4.9.6 to 4.12.0 (#39683)6aecb37
Build(deps-dev): Bump eslint-plugin-html from 7.1.0 to 8.0.0 (#39672)4081168
Build(deps-dev): Bump terser from 5.27.0 to 5.27.1 (#39682)4605d71
Build(deps-dev): Bump postcss from 8.4.34 to 8.4.35 (#39673)08eeee3
Build(deps-dev): Bump lockfile-lint from 4.12.1 to 4.13.1 (#39675)f92d635
Build(deps-dev): Bump eslint-plugin-unicorn from 51.0.0 to 51.0.1 (#39676)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)