Sourced from org.apache.maven.plugins:maven-gpg-plugin's releases.
3.2.4
Release Notes - Maven GPG Plugin - Version 3.2.4
- [MGPG-125] - Fix "bestPractices" (#95)
@​cstamas
📦 Dependency updates
- Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#94)
@​dependabot
3.2.3
... (truncated)
789149e
[maven-release-plugin] prepare release maven-gpg-plugin-3.2.4893aedc
[MGPG-125] Fix "bestPractices" (#95)b6f0324
[MGPG-126] Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#94)3c5878b
[maven-release-plugin] prepare for next development iteration89b91a4
[maven-release-plugin] prepare release maven-gpg-plugin-3.2.3fc2efa3
[MGPG-123][MGPG-124] Dependency upgrades (#93)50222d3
[MGPG-120] New mojo sign-deployed (#88)a6c3a09
[MGPG-122] Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.0
to 3...78f5e37
[MGPG-121] Return the workaround for pseudo security (#90)582df74
[MGPG-117] Improve passphrase handling (#86)Sourced from io.github.bonigarcia:webdrivermanager's changelog.
[5.8.0] - 2024-04-04
Fixed
- Check resolved browser version in Firefox manager (#1240)
Changed
- Updated how we check if Docker is running to work with the new cgroup v2 system (#1259)
Added
- Support for chromedriver 115+ (CfT endpoints) for NPM mirror (#1264)
d5bc6c8
[maven-release-plugin] prepare release webdrivermanager-5.8.00c034d9
Update doc for version 5.8.0ff656a7
Change Java version condition in workflowfb0c96f
Remove Java version condition in several steps in build workflow530e923
Fix condition to check CfT mirror in URL handler9193a3b
Support for chromedriver 115+ (CfT endpoints) for NPM mirror (#1264)55fb8f3
Bump codecov/codecov-action from 4.1.1 to 4.2.0 (#1271)d5deec3
Bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12 (#1270)70108fb
Update mirror info (Tue Apr 2 12:03:02 UTC 2024)a08a645
Update mirror info (Mon Apr 1 12:03:21 UTC 2024)f80596e
[maven-release-plugin] prepare release maven-source-plugin-3.3.17626998
Bump apache/maven-gh-actions-shared from 3 to 483c963c
Bump org.apache.maven.plugins:maven-plugins from 39 to 41 (#18)40ae495
Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.1 (#20)073462b
Bump org.apache.maven:maven-archiver from 3.6.0 to 3.6.1 (#21)0b1c823
Fix typos in AbstractSourceJarMojo exception099c65a
[MSOURCES-142] Bump org.codehaus.plexus:plexus-archiver from 4.7.1 to
4.8.0 (...1edeea4
[MSOURCES-139] Fix typo in AbstractSourceJarMojo exception436966e
[maven-release-plugin] prepare for next development iterationSourced from com.microsoft.playwright:playwright's releases.
v1.43.0
New APIs
Method browserContext.clearCookies([options]) now supports filters to remove only some cookies.
// Clear all cookies. context.clearCookies(); // New: clear cookies with a particular name. context.clearCookies(new BrowserContext.ClearCookiesOptions().setName("session-id")); // New: clear cookies for a particular domain. context.clearCookies(new BrowserContext.ClearCookiesOptions().setDomain("my-origin.com"));
New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.
Locator locator = page.locator("iframe[name='embedded']"); // ... FrameLocator frameLocator = locator.contentFrame(); frameLocator.getByRole(AriaRole.BUTTON).click();
New method frameLocator.owner() converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the
iframe
element.FrameLocator frameLocator = page.frameLocator("iframe[name='embedded']"); // ... Locator locator = frameLocator.owner(); assertThat(locator).isVisible();
Browser Versions
- Chromium 124.0.6367.8
- Mozilla Firefox 124.0
- WebKit 17.4
This version was also tested against the following stable channels:
- Google Chrome 123
- Microsoft Edge 123
26861a2
chore: roll 1.43.0 (#1545)04e77b9
chore: set release version to 1.43.0 (#1540)ccf4575
chore(1.43): roll 1.43-beta driver (#1539)90aa457
chore: move junit impl to com.microsoft.playwright.impl.junit (#1538)1a8f5f7
docs: fix broken class links, format details and usage (#1536)a917f2e
fix(docs): generate javadocs (#1534)452effb
chore: implement context.backgroundPages (#1532)f497bcc
chore(deps): bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.1
to 3.2...240f8d0
feat(junit): make getOrCreate fixture methods public (#1527)e7653dd
chore: roll driver to 1.43.0-beta, implement clearCookie(filter) (#1525)Sourced from commons-codec:commons-codec's changelog.
Apache Commons Codec 1.17.0 RELEASE NOTES
The Apache Commons Codec component contains encoders and decoders for various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.
Feature and fix release. Requires a minimum of Java 8.
New features
Add override org.apache.commons.codec.language.bm.Rule.PhonemeExpr.size(). Thanks to Gary Gregory.
Add support for Base64 custom alphabets [#266](https://github.com/apache/commons-codec/issues/266). Thanks to Chris Kocel, Gary Gregory.
Add Base64.Builder (allows custom alphabets). Thanks to Gary Gregory.
Add Base32.Builder (allows custom alphabets). Thanks to Gary Gregory.
Add Base64 support for a custom padding byte (like Base32). Thanks to Gary Gregory.
Fixed Bugs
- CODEC-320: Wrong output of DoubleMetaphone in 1.16.1. Thanks to Martin Frydl, Gary Gregory.
Optimize memory allocation in PhoneticEngine. Thanks to Gary Gregory.
BCodec and QCodec encode() methods throw UnsupportedCharsetException instead of EncoderException. Thanks to Gary Gregory.
Set Javadoc link to latest Java API LTS version. Thanks to Gary Gregory.
Base32 constructor fails-fast with a NullPointerException if the custom alphabet array is null. Thanks to Gary Gregory.
Base32 constructor makes a defensive copy of the line separator array. Thanks to Gary Gregory.
Base64 constructor makes a defensive copy of the line separator array. Thanks to Gary Gregory.
Base64 constructor makes a defensive copy of a custom alphabet array. Thanks to Gary Gregory.
Changes
Bump org.apache.commons:commons-parent from 66 to 69 [#250](https://github.com/apache/commons-codec/issues/250), [#261](https://github.com/apache/commons-codec/issues/261). Thanks to Dependabot, Gary Gregory.
Bump commons-io:commons-io from 2.15.1 to 2.16.1 [#258](https://github.com/apache/commons-codec/issues/258), [#265](https://github.com/apache/commons-codec/issues/265). Thanks to Dependabot, Gary Gregory.
For complete information on Apache Commons Codec, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Commons Codec website:
https://commons.apache.org/proper/commons-codec/
Download page: https://commons.apache.org/proper/commons-codec/download_codec.cgi
5d809fe
Prepare for the next release candidate9a59c1c
Prepare for the next release candidate5f0cfd4
Longer lines8714b5f
Remove dead commentc56b956
Bullet-proof internalsd2215d5
Base32 constructor fails-fast with a NullPointerException if the
customfcc70e6
Base32 constructor makes a defensive copy of the line separatorebe805a
Base64 constructor makes a defensive copy of a custom alphabet
array5504333
Better exception messagec6c5f11
Base64 constructor makes a better defensive copy of the line
separatorSourced from org.jacoco:jacoco-maven-plugin's releases.
0.8.12
New Features
- JaCoCo now officially supports Java 22 (GitHub #1596).
- Experimental support for Java 23 class files (GitHub #1553).
Fixed bugs
- Branches added by the Kotlin compiler for functions with default arguments and having more than 32 parameters are filtered out during generation of report (GitHub #1556).
- Branch added by the Kotlin compiler version 1.5.0 and above for reading from lateinit property is filtered out during generation of report (GitHub #1568).
Non-functional Changes
- JaCoCo now depends on ASM 9.7 (GitHub #1600).
dbfb6f2
Prepare release 0.8.12a50585b
Upgrade maven-plugin-plugin to 3.6.4 (#1604)fd63cc5
Configure labels that Dependabot assigns to PRs (#1603)03a5333
Add configuration for Dependabot to simplify updates of ASM (#1601)40ff9fb
Upgrade ASM to 9.7 (#1600)9077178
Happy birthday Java 22! (#1596)7edd1b5
Bump actions/setup-java from 4.1.0 to 4.2.1 (#1594)e50b547
Upgrade ECJ to 3.37.0 (#1590)a1144d0
Upgrade maven-site-plugin to 3.12.1 (#1586)04b0141
Bump actions/setup-java from 4.0.0 to 4.1.0 (#1587)Sourced from conventional-changelog-cli's releases.
conventional-changelog-cli: v5.0.0
âš BREAKING CHANGES
- Node >= 18 is required
- cleanup presets interface (#1215)
- Now all packages, except gulp-conventional-changelog, are ESM-only.
Features
- cleanup presets interface (#1215) (0e4f293)
- drop node 16 support (#1226) (ec69cfd)
- move from CommonJS to ESM (#1144) (c5b859d)
Bug Fixes
Sourced from conventional-changelog-cli's changelog.
5.0.0 (2024-04-26)
âš BREAKING CHANGES
- Node >= 18 is required
- cleanup presets interface (#1215)
- Now all packages, except gulp-conventional-changelog, are ESM-only.
Features
- cleanup presets interface (#1215) (0e4f293)
- drop node 16 support (#1226) (ec69cfd)
- move from CommonJS to ESM (#1144) (c5b859d)
Bug Fixes
a75cef6
chore: release conventional-changelog-cli 5.0.0 (#1240)c2c4b3a
fix(conventional-changelog-cli,conventional-recommended-bump,standard-changel...4fec5d3
ci: add clean-publish (#1232)4c3e82f
ci: package.json lint (#1231)862f66b
fix(deps): update dependency meow to v13 (#1190)ec69cfd
feat!: drop node 16 support (#1226)0e4f293
feat!: cleanup presets interface (#1215)a149b76
test: proper cleanups after tests (#1206)8052c60
test: move test tools to TS (#1170)7e51c6d
fix(conventional-changelog-cli): fix link for option prompt (#1159)2c28b8d
[maven-release-plugin] prepare release maven-javadoc-plugin-3.7.05530d68
[MJAVADOC-793] java.lang.NullPointerException: Cannot invoke
"String.length()...08cf68e
Revert "Bump org.codehaus.plexus:plexus-archiver from 4.9.1 to
4.9.2"6446822
Bump org.apache.maven.shared:maven-invoker from 3.2.0 to 3.3.049c93ad
Bump org.assertj:assertj-core from 3.25.3 to 3.26.04e72048
[MJAVADOC-795] Upgrade to Parent 42 and Maven 3.6.3b55dd96
Bump org.codehaus.plexus:plexus-archiver from 4.9.1 to 4.9.277ad410
Bump org.apache.commons:commons-text from 1.11.0 to 1.12.0c21568a
Bump commons-io:commons-io from 2.16.0 to 2.16.1ded56a9
Exclude JDK 8 - temurin, adopt-openj9 on macosSourced from com.microsoft.playwright:playwright's releases.
v1.44.0
New APIs
Accessibility assertions
assertThat(locator).toHaveAccessibleName() checks if the element has the specified accessible name:
Locator locator = page.getByRole(AriaRole.BUTTON); assertThat(locator).hasAccessibleName("Submit");
assertThat(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:
Locator locator = page.getByRole(AriaRole.BUTTON); assertThat(locator).hasAccessibleDescription("Upload a photo");
assertThat(locator).toHaveRole() checks if the element has the specified ARIA role:
Locator locator = page.getByTestId("save-button"); assertThat(locator).hasRole(AriaRole.BUTTON);
Locator handler
- After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new
setNoWaitAfter
option.- You can use new
setTimes
option in page.addLocatorHandler() to specify maximum number of times the handler should be run.- The handler in page.addLocatorHandler() now accepts the locator as argument.
- New page.removeLocatorHandler() method for removing previously added locator handlers.
Locator locator = page.getByText("This interstitial covers the button"); page.addLocatorHandler(locator, overlay -> { overlay.locator("#close").click(); }, new Page.AddLocatorHandlerOptions().setTimes(3).setNoWaitAfter(true)); // Run your tests that can be interrupted by the overlay. // ... page.removeLocatorHandler(locator);
Miscellaneous options
New method formData.append() allows to specify repeating fields with the same name in
setMultipart
option inRequestOptions
:FormData formData = FormData.create(); formData.append("file", new FilePayload("f1.js", "text/javascript", "var x = 2024;".getBytes(StandardCharsets.UTF_8))); formData.append("file", new FilePayload("f2.txt", "text/plain", "hello".getBytes(StandardCharsets.UTF_8)));
... (truncated)
af2dd24
chore: set version 1.44.0 (#1578)75062c4
chore: roll 1.44.0 (#1575)c9ea56a
devops: stop producing .sha256 files, they are not required anymore (#1570)e4c427a
devops: fix ESRP publishing (#1569)0471c5e
devops: update to EsrpRelease@7 (#1566)5636edf
test: ControlOrMeta modifier (#1564)abfe50c
chore(deps): bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0
to 3.4...d723646
chore: roll driver to 1.44.0-beta-1714435420000 (#1563)fe51fb4
chore(deps): bump org.apache.maven.plugins:maven-install-plugin from
3.1.1 to...764cc8c
chore(deps): bump org.apache.maven.plugins:maven-deploy-plugin from
3.1.1 to ...851ced0
chore(release): 1.0.2 (#49)555ebb3
chore(release): 1.0.28c3b9fe
chore: merge master into develop (#48)0453a2a
chore: update dependencies (including circle -> gha) (#47)5395589
fix: avoid "Error: Not Found" when octokit gives status as
string instead of ...afa6750
chore(deps): bump lodash from 4.17.19 to 4.17.21 (#28)46955fc
chore(deps): bump handlebars from 4.7.6 to 4.7.7 (#27)42009ca
chore(deps): bump y18n from 4.0.0 to 4.0.1 (#26)1e6a8a7
chore(deps): bump hosted-git-info from 2.8.5 to 2.8.9 (#29)26fce9d
chore(deps): bump ini from 1.3.5 to 1.3.8 (#25)