Files
flights_web_raw/node_modules/pkce-challenge/CHANGELOG.md
T
gnezim 60e2149072 Add comprehensive e2e test suites for Tasks 16-25
Tasks 16-20: Online Board Tests (Search/Filter, Tabs, Flight List, Details Modal, Time/Date)
- Task 16: Search & Filter tests (37 tests) - departure/arrival cities, passenger count, cabin class
- Task 17: Arrival/Departure Tabs tests (45 tests) - tab switching, flight display, sorting
- Task 18: Flight List View tests (50 tests) - display, sorting, filtering, pagination, loading states
- Task 19: Flight Details Modal tests (40 tests) - opening/closing, content display, actions
- Task 20: Time & Date Filter tests (43 tests) - date selection, time ranges, calendar navigation

Tasks 21-25: Flight Details Tests (Flight Info, Passengers, Seats, Services, Fares)
- Task 21: Flight Info Display tests (40 tests) - basic info, airports, route visualization, timeline
- Task 22: Passenger Info tests (50 tests) - passenger list, details, services, special requirements
- Task 23: Seat Selection tests (50 tests) - seat map, selection, categories, recommendations
- Task 24: Service Selection tests (25 tests) - baggage, meals, seats, summary
- Task 25: Fare Display tests (55 tests) - fare breakdown, comparisons, discounts, refunds

All tests follow AAA pattern and use data-testid selectors matching Angular version.
Total: 245 tests across 10 feature suites.
2026-04-05 19:25:03 +03:00

3.1 KiB

Changelog

5.0.1 - 2025-11-22

What's Changed

New Contributors

Full Changelog: https://github.com/crouchcd/pkce-challenge/compare/5.0.0...5.0.1

5.0.0 - 2025-03-30

What's Changed

New Contributors

Full Changelog: https://github.com/crouchcd/pkce-challenge/compare/4.1.0...5.0.0

4.1.0 - 2024-01-25

What's Changed

New Contributors

Full Changelog: https://github.com/crouchcd/pkce-challenge/compare/4.0.1...4.1.0

4.0.1 - 2023-05-11

  • chore: update README (dc76443a502c25ce98258cea3f25fd78a22cb2a8)
  • chore: specify node engines >= 16.20.0 (5e7fc5edbcd0e19f99fc11a9705e5e708a100be8)

4.0.0 - 2023-05-11

  • BREAKING CHANGE: Use Web Cryptography API (#20), closes #21, #18

Contributors

3.1.0 - 2023-03-29

  • chore: Use ES6 imports for crypto-js to reduce bundle size

Contributors

3.0.0 - 2022-03-28

  • feat!: depend on crypto-js for node/browser compatibility. Using Typescript with Parcel.
// commonjs
const pkceChallenge = require("pkce-challenge").default;

// es modules
import pkceChallenge from "pkce-challenge";

2.2.0 - 2021-05-19

Added

  • generateChallenge exported from index

Contributors

2.1.0 - 2019-12-20

Added

  • verifyChallenge exported from index

Changed

  • code/comment formatting
  • refactored random function

2.0.0 - 2019-10-18

Added

  • CHANGELOG
  • typescript definition
  • Cryptographically secured method for generating code verifier
  • Method for base64 url encoding

Removed

  • generateVerifier export from index
  • generateChallenge export from index
  • base64url npm dependency
  • randomatic npm dependency

Contributors